{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Property", "title": "Property", "type": "object", "required": [ "name", "value" ], "properties": { "name": { "type": "string", "description": "Property name" }, "value": { "type": "string", "description": "Property value" } } }