{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/MetadataMetadata", "title": "MetadataMetadata", "properties": { "created_at": { "format": "date-time", "type": "string" }, "format": { "enum": [ "TEXT", "NUMBER", "DATE", "BOOLEAN", "FILE", "TEXTAREA", "SINGLE_SELECT", "MULTIPLE_SELECT", "MEASUREMENT", "PRICE", "YES_NO", "CURRENCY", "URL" ], "type": "string", "x-speakeasy-unknown-values": "allow" }, "id": { "type": "string" }, "is_required": { "type": "boolean" }, "name": { "type": "string" }, "object_type": { "type": "string" }, "objects": { "$ref": "#/components/schemas/property_MetadataMetadata_objects" }, "options": { "$ref": "#/components/schemas/property_MetadataMetadata_options" }, "original_format": { "type": "string" }, "raw": { "additionalProperties": true, "type": "object" }, "slug": { "type": "string" }, "updated_at": { "format": "date-time", "type": "string" } }, "required": [ "name", "object_type" ], "type": "object" }