{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/IntegerCharacteristic_FVO", "title": "IntegerCharacteristic_FVO", "allOf": [ { "$ref": "#/components/schemas/Characteristic_FVO" }, { "type": "object", "description": "A characteristic which value is a Integer.", "properties": { "value": { "type": "integer", "description": "Value of the characteristic" } }, "required": [ "value" ] } ] }