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