@rapharacing/schemas
Version:
OpenAPI to JSON Schema to be used with middy for CC response validation
21 lines • 516 B
JSON
{
"type": "object",
"properties": {
"isValueRounded": {
"type": "boolean",
"description": "Indicate whether Stock level value is rounded"
},
"stockLevel": {
"type": "integer",
"format": "int64",
"description": "Stock level expressed as number"
},
"stockLevelStatus": {
"type": "string",
"description": "Status of stock level"
}
},
"title": "Stock",
"description": "Representation of a Stock",
"$schema": "http://json-schema.org/schema#"
}