@rapharacing/schemas
Version:
OpenAPI to JSON Schema to be used with middy for CC response validation
24 lines • 412 B
JSON
{
"type": "object",
"properties": {
"country": {
"type": "string"
},
"name": {
"type": "string"
},
"teamId": {
"type": "integer",
"format": "int64"
},
"teamSize": {
"type": "integer",
"format": "int32"
},
"termsAgreement": {
"type": "boolean"
}
},
"title": "CustomTeamShop",
"$schema": "http://json-schema.org/schema#"
}