@rapharacing/schemas
Version:
OpenAPI to JSON Schema to be used with middy for CC response validation
26 lines • 659 B
JSON
{
"type": "object",
"properties": {
"count": {
"type": "integer",
"format": "int64",
"description": "Count of the facet value"
},
"name": {
"type": "string",
"description": "Name of the facet value"
},
"query": {
"description": "Query of the facet value",
"$ref": "_definitions.json#/definitions/SearchState",
"originalRef": "SearchState"
},
"selected": {
"type": "boolean",
"description": "Flag stating if facet value is selected"
}
},
"title": "FacetValue",
"description": "Representation of a Facet Value",
"$schema": "http://json-schema.org/schema#"
}