{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/EnterprisePropertyDefinition", "title": "EnterprisePropertyDefinition", "type": "object", "description": "Serializer mixin that handles tags for objects.", "properties": { "id": { "type": "string", "format": "uuid", "readOnly": true }, "name": { "type": "string", "readOnly": true }, "description": { "type": "string", "nullable": true }, "tags": { "type": "array", "items": {} }, "is_numerical": { "type": "boolean", "readOnly": true }, "updated_at": { "type": "string", "format": "date-time", "readOnly": true }, "updated_by": { "allOf": [ { "$ref": "#/components/schemas/UserBasic" } ], "readOnly": true }, "is_seen_on_filtered_events": { "type": "boolean", "readOnly": true, "nullable": true }, "property_type": { "nullable": true, "oneOf": [ { "$ref": "#/components/schemas/PropertyDefinitionTypeEnum" }, { "$ref": "#/components/schemas/BlankEnum" }, { "$ref": "#/components/schemas/NullEnum" } ] }, "verified": { "type": "boolean" }, "verified_at": { "type": "string", "format": "date-time", "readOnly": true, "nullable": true }, "verified_by": { "allOf": [ { "$ref": "#/components/schemas/UserBasic" } ], "readOnly": true }, "hidden": { "type": "boolean", "nullable": true } }, "required": [ "id", "is_numerical", "is_seen_on_filtered_events", "name", "updated_at", "updated_by", "verified_at", "verified_by" ] }