{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/EntityPropertyDetails", "title": "EntityPropertyDetails", "properties": { "entityId": { "description": "The entity property ID.", "example": 123, "type": "number" }, "key": { "description": "The entity property key.", "example": "mykey", "type": "string" }, "value": { "description": "The new value of the entity property.", "example": "newValue", "type": "string" } }, "required": [ "entityId", "key", "value" ], "type": "object" }