Skip to content
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"
Comment thread
VitaliyKurokhtin marked this conversation as 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"
Comment thread
VitaliyKurokhtin marked this conversation as resolved.
Outdated
}
]
},
Expand Down Expand Up @@ -3526,7 +3536,10 @@
"swagger-json",
"swagger-link-json",
"wsdl",
"wsdl-link"
"wsdl-link",
"openapi",
"openapi+json",
Comment thread
VitaliyKurokhtin marked this conversation as 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