{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PropertyValue", "title": "PropertyValue", "oneOf": [ { "type": "array", "items": { "type": "string" } }, { "type": "boolean" }, { "type": "object", "additionalProperties": true, "properties": {} }, { "type": "string" } ], "description": "The value of the property. This can be empty or a complex object. 64KB Size Limit\nFor example,\n```\n\"value\": {\n \"example1\": \"value\",\n \"example2\": true,\n \"example3\": 123,\n \"example4\": [\"value1\", \"value2\"],\n}\n```" }