{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/FloatCharacteristic", "title": "FloatCharacteristic", "allOf": [ { "$ref": "#/components/schemas/Characteristic" }, { "type": "object", "description": "A characteristic which value is a Float.", "properties": { "value": { "type": "number", "format": "float", "description": "Value of the characteristic" } } } ] }