@rapharacing/schemas
Version:
OpenAPI to JSON Schema to be used with middy for CC response validation
28 lines • 551 B
JSON
{
"type": "object",
"properties": {
"managerAccess": {
"type": "boolean"
},
"name": {
"type": "string"
},
"products": {
"type": "array",
"items": {
"$ref": "_definitions.json#/definitions/CustomProduct",
"originalRef": "CustomProduct"
}
},
"totalItems": {
"type": "integer",
"format": "int32"
},
"totalPages": {
"type": "integer",
"format": "int32"
}
},
"title": "CustomTeamDashboard",
"$schema": "http://json-schema.org/schema#"
}