{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/GlobalTargetPropertyCreateRequest", "title": "GlobalTargetPropertyCreateRequest", "type": "object", "description": "Request body for creating a global target property.", "required": [ "propertyName" ], "properties": { "propertyName": { "type": "string", "example": "example_value" }, "propertyDisplayName": { "type": "string", "example": "example_value" }, "description": { "type": "string", "example": "A sample description." }, "propertyType": { "type": "string", "enum": [ "STRING", "NUMBER", "BOOLEAN" ], "example": "STRING" }, "validValues": { "type": "array", "items": { "type": "string" }, "example": [] } } }