@rapharacing/schemas
Version:
OpenAPI to JSON Schema to be used with middy for CC response validation
33 lines • 759 B
JSON
{
"type": "object",
"properties": {
"count": {
"type": "integer",
"format": "int32",
"description": "Count"
},
"isoCode": {
"type": "string",
"description": "Iso code of store"
},
"name": {
"type": "string",
"description": "Name of store count"
},
"storeCountDataList": {
"type": "array",
"description": "List of store counts",
"items": {
"$ref": "_definitions.json#/definitions/StoreCount",
"originalRef": "StoreCount"
}
},
"type": {
"type": "string",
"description": "Type of store count"
}
},
"title": "StoreCount",
"description": "Representation of a Store Count",
"$schema": "http://json-schema.org/schema#"
}