Skip to content

Commit

Permalink
Linting fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosdelest committed Aug 11, 2023
1 parent 275f8c4 commit 97b9092
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 54 deletions.
8 changes: 2 additions & 6 deletions specification/_json_spec/synonyms.delete_synonym.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,13 @@
"stability": "experimental",
"visibility": "public",
"headers": {
"accept": [
"application/json"
]
"accept": ["application/json"]
},
"url": {
"paths": [
{
"path": "/_synonyms/{id}",
"methods": [
"DELETE"
],
"methods": ["DELETE"],
"parts": {
"id": {
"type": "string",
Expand Down
12 changes: 3 additions & 9 deletions specification/_json_spec/synonyms.delete_synonym_rule.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,20 +7,14 @@
"stability": "experimental",
"visibility": "public",
"headers": {
"accept": [
"application/json"
],
"content_type": [
"application/json"
]
"accept": ["application/json"],
"content_type": ["application/json"]
},
"url": {
"paths": [
{
"path": "/_synonyms/{set_id}/{rule_id}",
"methods": [
"DELETE"
],
"methods": ["DELETE"],
"parts": {
"set_id": {
"type": "string",
Expand Down
8 changes: 2 additions & 6 deletions specification/_json_spec/synonyms.get_synonym.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,13 @@
"stability": "experimental",
"visibility": "public",
"headers": {
"accept": [
"application/json"
]
"accept": ["application/json"]
},
"url": {
"paths": [
{
"path": "/_synonyms/{id}",
"methods": [
"GET"
],
"methods": ["GET"],
"parts": {
"id": {
"type": "string",
Expand Down
12 changes: 3 additions & 9 deletions specification/_json_spec/synonyms.get_synonym_rule.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,20 +7,14 @@
"stability": "experimental",
"visibility": "public",
"headers": {
"accept": [
"application/json"
],
"content_type": [
"application/json"
]
"accept": ["application/json"],
"content_type": ["application/json"]
},
"url": {
"paths": [
{
"path": "/_synonyms/{set_id}/{rule_id}",
"methods": [
"GET"
],
"methods": ["GET"],
"parts": {
"set_id": {
"type": "string",
Expand Down
8 changes: 2 additions & 6 deletions specification/_json_spec/synonyms.get_synonyms_sets.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,13 @@
"stability": "experimental",
"visibility": "public",
"headers": {
"accept": [
"application/json"
]
"accept": ["application/json"]
},
"url": {
"paths": [
{
"path": "/_synonyms",
"methods": [
"GET"
]
"methods": ["GET"]
}
]
},
Expand Down
12 changes: 3 additions & 9 deletions specification/_json_spec/synonyms.put_synonym.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,20 +7,14 @@
"stability": "experimental",
"visibility": "public",
"headers": {
"accept": [
"application/json"
],
"content_type": [
"application/json"
]
"accept": ["application/json"],
"content_type": ["application/json"]
},
"url": {
"paths": [
{
"path": "/_synonyms/{id}",
"methods": [
"PUT"
],
"methods": ["PUT"],
"parts": {
"id": {
"type": "string",
Expand Down
12 changes: 3 additions & 9 deletions specification/_json_spec/synonyms.put_synonym_rule.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,20 +7,14 @@
"stability": "experimental",
"visibility": "public",
"headers": {
"accept": [
"application/json"
],
"content_type": [
"application/json"
]
"accept": ["application/json"],
"content_type": ["application/json"]
},
"url": {
"paths": [
{
"path": "/_synonyms/{set_id}/{rule_id}",
"methods": [
"PUT"
],
"methods": ["PUT"],
"parts": {
"set_id": {
"type": "string",
Expand Down

0 comments on commit 97b9092

Please sign in to comment.