Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change default MIME type to "application/vnd.api+json" #877

Merged
merged 6 commits into from
Jul 15, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 16 additions & 16 deletions openapi/index_openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"200": {
"description": "Successful Response",
"content": {
"application/json": {
"application/vnd.api+json": {
"schema": {
"$ref": "#/components/schemas/IndexInfoResponse"
}
Expand All @@ -27,7 +27,7 @@
"400": {
"description": "Bad Request",
"content": {
"application/json": {
"application/vnd.api+json": {
"schema": {
"$ref": "#/components/schemas/ErrorResponse"
}
Expand All @@ -37,7 +37,7 @@
"403": {
"description": "Forbidden",
"content": {
"application/json": {
"application/vnd.api+json": {
"schema": {
"$ref": "#/components/schemas/ErrorResponse"
}
Expand All @@ -47,7 +47,7 @@
"404": {
"description": "Not Found",
"content": {
"application/json": {
"application/vnd.api+json": {
"schema": {
"$ref": "#/components/schemas/ErrorResponse"
}
Expand All @@ -57,7 +57,7 @@
"422": {
"description": "Unprocessable Entity",
"content": {
"application/json": {
"application/vnd.api+json": {
"schema": {
"$ref": "#/components/schemas/ErrorResponse"
}
Expand All @@ -67,7 +67,7 @@
"500": {
"description": "Internal Server Error",
"content": {
"application/json": {
"application/vnd.api+json": {
"schema": {
"$ref": "#/components/schemas/ErrorResponse"
}
Expand All @@ -77,7 +77,7 @@
"501": {
"description": "Not Implemented",
"content": {
"application/json": {
"application/vnd.api+json": {
"schema": {
"$ref": "#/components/schemas/ErrorResponse"
}
Expand All @@ -87,7 +87,7 @@
"553": {
"description": "Version Not Supported",
"content": {
"application/json": {
"application/vnd.api+json": {
"schema": {
"$ref": "#/components/schemas/ErrorResponse"
}
Expand Down Expand Up @@ -276,7 +276,7 @@
"200": {
"description": "Successful Response",
"content": {
"application/json": {
"application/vnd.api+json": {
"schema": {
"$ref": "#/components/schemas/LinksResponse"
}
Expand All @@ -286,7 +286,7 @@
"400": {
"description": "Bad Request",
"content": {
"application/json": {
"application/vnd.api+json": {
"schema": {
"$ref": "#/components/schemas/ErrorResponse"
}
Expand All @@ -296,7 +296,7 @@
"403": {
"description": "Forbidden",
"content": {
"application/json": {
"application/vnd.api+json": {
"schema": {
"$ref": "#/components/schemas/ErrorResponse"
}
Expand All @@ -306,7 +306,7 @@
"404": {
"description": "Not Found",
"content": {
"application/json": {
"application/vnd.api+json": {
"schema": {
"$ref": "#/components/schemas/ErrorResponse"
}
Expand All @@ -316,7 +316,7 @@
"422": {
"description": "Unprocessable Entity",
"content": {
"application/json": {
"application/vnd.api+json": {
"schema": {
"$ref": "#/components/schemas/ErrorResponse"
}
Expand All @@ -326,7 +326,7 @@
"500": {
"description": "Internal Server Error",
"content": {
"application/json": {
"application/vnd.api+json": {
"schema": {
"$ref": "#/components/schemas/ErrorResponse"
}
Expand All @@ -336,7 +336,7 @@
"501": {
"description": "Not Implemented",
"content": {
"application/json": {
"application/vnd.api+json": {
"schema": {
"$ref": "#/components/schemas/ErrorResponse"
}
Expand All @@ -346,7 +346,7 @@
"553": {
"description": "Version Not Supported",
"content": {
"application/json": {
"application/vnd.api+json": {
"schema": {
"$ref": "#/components/schemas/ErrorResponse"
}
Expand Down
Loading