@rapharacing/schemas
Version:
OpenAPI to JSON Schema to be used with middy for CC response validation
26 lines • 583 B
JSON
{
"type": "object",
"properties": {
"formattedHour": {
"type": "string",
"description": "Formatted hour"
},
"hour": {
"type": "integer",
"format": "int32",
"description": "Hour part of the time data",
"minimum": -128,
"maximum": 127
},
"minute": {
"type": "integer",
"format": "int32",
"description": "Minute part of the time data",
"minimum": -128,
"maximum": 127
}
},
"title": "Time",
"description": "Representation of a Time",
"$schema": "http://json-schema.org/schema#"
}