@rapharacing/schemas
Version:
OpenAPI to JSON Schema to be used with middy for CC response validation
24 lines • 575 B
JSON
{
"type": "object",
"properties": {
"active": {
"type": "boolean",
"description": "true/false indicator when the language is active"
},
"isocode": {
"type": "string",
"description": "iso code of the language"
},
"name": {
"type": "string",
"description": "name of the language"
},
"nativeName": {
"type": "string",
"description": "name the language in native form"
}
},
"title": "Language",
"description": "Representation of a Language",
"$schema": "http://json-schema.org/schema#"
}