@rapharacing/schemas
Version:
OpenAPI to JSON Schema to be used with middy for CC response validation
39 lines • 1.07 kB
JSON
{
"type": "object",
"properties": {
"closed": {
"type": "boolean",
"description": "Flag stating if special opening day is closed"
},
"closingTime": {
"description": "Closing time of opening day",
"$ref": "_definitions.json#/definitions/Time",
"originalRef": "Time"
},
"comment": {
"type": "string",
"description": "Comment field"
},
"date": {
"type": "string",
"format": "date-time",
"description": "Date of special opening day"
},
"formattedDate": {
"type": "string",
"description": "Text representation of the date of special opening day"
},
"name": {
"type": "string",
"description": "Name of the special opening day event"
},
"openingTime": {
"description": "Starting time of opening day",
"$ref": "_definitions.json#/definitions/Time",
"originalRef": "Time"
}
},
"title": "SpecialOpeningDay",
"description": "Representation of a special opening day",
"$schema": "http://json-schema.org/schema#"
}