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

OpenAPIv3 support documented #5000

Merged
merged 2 commits into from
Jan 9, 2019
Merged
Changes from 1 commit
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
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,9 @@
"application/json",
"application/vnd.sun.wadl+xml",
"application/vnd.swagger.doc+json",
"application/wsdl+xml"
"application/wsdl+xml",
"application/vnd.oai.openapi",
"application/vnd.oai.openapi+json"
],
"parameters": [
{
Expand Down Expand Up @@ -242,7 +244,9 @@
"application/json",
"application/vnd.sun.wadl+xml",
"application/vnd.swagger.doc+json",
"application/wsdl+xml"
"application/wsdl+xml",
"application/vnd.oai.openapi",
"application/vnd.oai.openapi+json"
],
"parameters": [
{
Expand Down Expand Up @@ -3395,7 +3399,8 @@
"enum": [
"swagger-link",
"wadl-link",
"wsdl-link"
"wsdl-link",
"openapi-link"
VitaliyKurokhtin marked this conversation as resolved.
Show resolved Hide resolved
],
"x-ms-enum": {
"name": "ExportFormat",
Expand All @@ -3415,6 +3420,11 @@
"value": "wadl-link",
"description": "Export the Api Definition in WADL Schema to Storage Blob.",
"name": "Wadl"
},
{
"value": "openapi-link",
"description": "Export the Api Definition in OpenApi Specification 3.0 to Storage Blob.",
"name": "Wadl"
VitaliyKurokhtin marked this conversation as resolved.
Show resolved Hide resolved
}
]
},
Expand Down Expand Up @@ -3526,7 +3536,10 @@
"swagger-json",
"swagger-link-json",
"wsdl",
"wsdl-link"
"wsdl-link",
"openapi",
"openapi+json",
VitaliyKurokhtin marked this conversation as resolved.
Show resolved Hide resolved
"openapi-link"
],
"x-ms-enum": {
"name": "ContentFormat",
Expand Down Expand Up @@ -3555,6 +3568,18 @@
{
"value": "wsdl-link",
"description": "The WSDL document is hosted on a publicly accessible internet address."
},
{
"value": "openapi",
"description": "The contents are inline and Content Type is a OpenApi 3.0 Document in YAML format."
},
{
"value": "openapi+json",
"description": "The contents are inline and Content Type is a OpenApi 3.0 Document in JSON format."
},
{
"value": "openapi-link",
"description": "The Open Api 3.0 document is hosted on a publicly accessible internet address."
}
]
}
Expand Down