@rapharacing/schemas
Version:
OpenAPI to JSON Schema to be used with middy for CC response validation
24 lines • 595 B
JSON
{
"type": "object",
"properties": {
"code": {
"type": "string",
"description": "Code of the classification"
},
"features": {
"type": "array",
"description": "List of features for given classification",
"items": {
"$ref": "_definitions.json#/definitions/Feature",
"originalRef": "Feature"
}
},
"name": {
"type": "string",
"description": "Name of the classification"
}
},
"title": "Classification",
"description": "Representation of a Classification",
"$schema": "http://json-schema.org/schema#"
}