{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PersonUpdatePropertyRequest", "title": "PersonUpdatePropertyRequest", "type": "object", "properties": { "key": { "type": "string", "description": "The property key to set." }, "value": { "description": "The property value. Can be a string, number, boolean, or object." } }, "required": [ "key", "value" ] }