@rapharacing/schemas
Version:
OpenAPI to JSON Schema to be used with middy for CC response validation
25 lines • 685 B
JSON
{
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Name of the variant value category"
},
"sequence": {
"type": "integer",
"format": "int32",
"description": "Sequence number of variant value category"
},
"superCategories": {
"type": "array",
"description": "Parent category of variant value category",
"items": {
"$ref": "_definitions.json#/definitions/VariantCategory",
"originalRef": "VariantCategory"
}
}
},
"title": "VariantValueCategory",
"description": "Representation of a Variant Value Category",
"$schema": "http://json-schema.org/schema#"
}