{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CreateDocumentationVersionRequest",
"title": "CreateDocumentationVersionRequest",
"type": "object",
"required": [
"documentationVersion"
],
"properties": {
"documentationVersion": {
"allOf": [
{
"$ref": "#/components/schemas/String"
},
{
"description": "The version identifier of the new snapshot."
}
]
},
"stageName": {
"allOf": [
{
"$ref": "#/components/schemas/String"
},
{
"description": "The stage name to be associated with the new documentation snapshot."
}
]
},
"description": {
"allOf": [
{
"$ref": "#/components/schemas/String"
},
{
"description": "A description about the new documentation snapshot."
}
]
}
},
"description": "Creates a new documentation version of a given API."
}