addedOutput schema / properties / fields / items / properties / binding / anyOf
Added value: +[
+ {
+ "properties": {
+ "companyId": {
+ "anyOf": [
+ {
+ "description": "UUID value wrapper.",
+ "properties": {
+ "value": {
+ "format": "uuid",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "createdAt": {
+ "anyOf": [
+ {
+ "format": "date-time",
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "datatableId": {
+ "anyOf": [
+ {
+ "description": "UUID value wrapper.",
+ "properties": {
+ "value": {
+ "format": "uuid",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "fieldId": {
+ "anyOf": [
+ {
+ "description": "UUID value wrapper.",
+ "properties": {
+ "value": {
+ "format": "uuid",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "id": {
+ "anyOf": [
+ {
+ "description": "UUID value wrapper.",
+ "properties": {
+ "value": {
+ "format": "uuid",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "readOnly": {
+ "type": "boolean"
+ },
+ "sortOrder": {
+ "type": "integer"
+ },
+ "source": {
+ "enum": [
+ "BINDING_SOURCE_UNSPECIFIED",
+ "BINDING_SOURCE_PLATFORM",
+ "BINDING_SOURCE_USER",
+ "BINDING_SOURCE_INTEGRATION"
+ ],
+ "type": "string"
+ },
+ "updatedAt": {
+ "anyOf": [
+ {
+ "format": "date-time",
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "visibilityOverride": {
+ "enum": [
+ "FIELD_VISIBILITY_UNSPECIFIED",
+ "FIELD_VISIBILITY_VISIBLE",
+ "FIELD_VISIBILITY_HIDDEN",
+ "FIELD_VISIBILITY_SYSTEM"
+ ],
+ "type": "string"
+ }
+ },
+ "required": [
+ "datatableId",
+ "fieldId"
+ ],
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+]
removedOutput schema / properties / fields / items / properties / binding / properties
Removed value: -{
- "companyId": {
- "description": "UUID value wrapper.",
- "properties": {
- "value": {
- "format": "uuid",
- "type": "string"
- }
- },
- "type": "object"
- },
- "createdAt": {
- "format": "date-time",
- "type": "string"
- },
- "datatableId": {
- "description": "UUID value wrapper.",
- "properties": {
- "value": {
- "format": "uuid",
- "type": "string"
- }
- },
- "type": "object"
- },
- "fieldId": {
- "description": "UUID value wrapper.",
- "properties": {
- "value": {
- "format": "uuid",
- "type": "string"
- }
- },
- "type": "object"
- },
- "id": {
- "description": "UUID value wrapper.",
- "properties": {
- "value": {
- "format": "uuid",
- "type": "string"
- }
- },
- "type": "object"
- },
- "readOnly": {
- "type": "boolean"
- },
- "sortOrder": {
- "type": "integer"
- },
- "source": {
- "enum": [
- "BINDING_SOURCE_UNSPECIFIED",
- "BINDING_SOURCE_PLATFORM",
- "BINDING_SOURCE_USER",
- "BINDING_SOURCE_INTEGRATION"
- ],
- "type": "string"
- },
- "updatedAt": {
- "format": "date-time",
- "type": "string"
- },
- "visibilityOverride": {
- "enum": [
- "FIELD_VISIBILITY_UNSPECIFIED",
- "FIELD_VISIBILITY_VISIBLE",
- "FIELD_VISIBILITY_HIDDEN",
- "FIELD_VISIBILITY_SYSTEM"
- ],
- "type": "string"
- }
-}
removedOutput schema / properties / fields / items / properties / binding / required
Removed value: -[
- "datatableId",
- "fieldId"
-]
removedOutput schema / properties / fields / items / properties / binding / type
Removed value: -"object"
addedOutput schema / properties / fields / items / properties / field / anyOf
Added value: +[
+ {
+ "properties": {
+ "code": {
+ "anyOf": [
+ {
+ "description": "Lowercase kebab-case code identifier.",
+ "properties": {
+ "value": {
+ "pattern": "^[a-z0-9]+(-[a-z0-9]+)*$",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "companyId": {
+ "anyOf": [
+ {
+ "description": "UUID value wrapper.",
+ "properties": {
+ "value": {
+ "format": "uuid",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "createdAt": {
+ "anyOf": [
+ {
+ "format": "date-time",
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "description": {
+ "anyOf": [
+ {
+ "description": "Free-form description (max 5000 chars).",
+ "properties": {
+ "value": {
+ "maxLength": 5000,
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "id": {
+ "anyOf": [
+ {
+ "description": "UUID value wrapper.",
+ "properties": {
+ "value": {
+ "format": "uuid",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "metadata": {
+ "anyOf": [
+ {
+ "properties": {
+ "values": {
+ "additionalProperties": {
+ "type": "string"
+ },
+ "type": "object"
+ }
+ },
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "name": {
+ "anyOf": [
+ {
+ "description": "Human-readable name (1-255 Unicode chars).",
+ "properties": {
+ "value": {
+ "maxLength": 255,
+ "minLength": 1,
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "options": {
+ "items": {
+ "properties": {
+ "code": {
+ "anyOf": [
+ {
+ "description": "Lowercase kebab-case code identifier.",
+ "properties": {
+ "value": {
+ "pattern": "^[a-z0-9]+(-[a-z0-9]+)*$",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "companyId": {
+ "anyOf": [
+ {
+ "description": "UUID value wrapper.",
+ "properties": {
+ "value": {
+ "format": "uuid",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "createdAt": {
+ "anyOf": [
+ {
+ "format": "date-time",
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "depth": {
+ "type": "integer"
+ },
+ "description": {
+ "anyOf": [
+ {
+ "description": "Free-form description (max 5000 chars).",
+ "properties": {
+ "value": {
+ "maxLength": 5000,
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "fieldId": {
+ "anyOf": [
+ {
+ "description": "UUID value wrapper.",
+ "properties": {
+ "value": {
+ "format": "uuid",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "id": {
+ "anyOf": [
+ {
+ "description": "UUID value wrapper.",
+ "properties": {
+ "value": {
+ "format": "uuid",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "metadata": {
+ "anyOf": [
+ {
+ "properties": {
+ "values": {
+ "additionalProperties": {
+ "type": "string"
+ },
+ "type": "object"
+ }
+ },
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "name": {
+ "anyOf": [
+ {
+ "description": "Human-readable name (1-255 Unicode chars).",
+ "properties": {
+ "value": {
+ "maxLength": 255,
+ "minLength": 1,
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "parentId": {
+ "anyOf": [
+ {
+ "description": "UUID value wrapper.",
+ "properties": {
+ "value": {
+ "format": "uuid",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "path": {
+ "type": "string"
+ },
+ "sortOrder": {
+ "type": "integer"
+ },
+ "updatedAt": {
+ "anyOf": [
+ {
+ "format": "date-time",
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ }
+ },
+ "required": [
+ "fieldId",
+ "name",
+ "code"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "parentFieldId": {
+ "anyOf": [
+ {
+ "description": "UUID value wrapper.",
+ "properties": {
+ "value": {
+ "format": "uuid",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "type": {
+ "enum": [
+ "FIELD_TYPE_UNSPECIFIED",
+ "FIELD_TYPE_STRING",
+ "FIELD_TYPE_NUMBER",
+ "FIELD_TYPE_DATE",
+ "FIELD_TYPE_SELECT"
+ ],
+ "type": "string"
+ },
+ "updatedAt": {
+ "anyOf": [
+ {
+ "format": "date-time",
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "valueMode": {
+ "enum": [
+ "FIELD_VALUE_MODE_UNSPECIFIED",
+ "FIELD_VALUE_MODE_SINGLE",
+ "FIELD_VALUE_MODE_MULTI"
+ ],
+ "type": "string"
+ },
+ "visibility": {
+ "enum": [
+ "FIELD_VISIBILITY_UNSPECIFIED",
+ "FIELD_VISIBILITY_VISIBLE",
+ "FIELD_VISIBILITY_HIDDEN",
+ "FIELD_VISIBILITY_SYSTEM"
+ ],
+ "type": "string"
+ }
+ },
+ "required": [
+ "name",
+ "code"
+ ],
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+]
removedOutput schema / properties / fields / items / properties / field / properties
Removed value: -{
- "code": {
- "description": "Lowercase kebab-case code identifier.",
- "properties": {
- "value": {
- "pattern": "^[a-z0-9]+(-[a-z0-9]+)*$",
- "type": "string"
- }
- },
- "type": "object"
- },
- "companyId": {
- "description": "UUID value wrapper.",
- "properties": {
- "value": {
- "format": "uuid",
- "type": "string"
- }
- },
- "type": "object"
- },
- "createdAt": {
- "format": "date-time",
- "type": "string"
- },
- "description": {
- "description": "Free-form description (max 5000 chars).",
- "properties": {
- "value": {
- "maxLength": 5000,
- "type": "string"
- }
- },
- "type": "object"
- },
- "id": {
- "description": "UUID value wrapper.",
- "properties": {
- "value": {
- "format": "uuid",
- "type": "string"
- }
- },
- "type": "object"
- },
- "metadata": {
- "properties": {
- "values": {
- "additionalProperties": {
- "type": "string"
- },
- "type": "object"
- }
- },
- "type": "object"
- },
- "name": {
- "description": "Human-readable name (1-255 Unicode chars).",
- "properties": {
- "value": {
- "maxLength": 255,
- "minLength": 1,
- "type": "string"
- }
- },
- "type": "object"
- },
- "options": {
- "items": {
- "properties": {
- "code": {
- "description": "Lowercase kebab-case code identifier.",
- "properties": {
- "value": {
- "pattern": "^[a-z0-9]+(-[a-z0-9]+)*$",
- "type": "string"
- }
- },
- "type": "object"
- },
- "companyId": {
- "description": "UUID value wrapper.",
- "properties": {
- "value": {
- "format": "uuid",
- "type": "string"
- }
- },
- "type": "object"
- },
- "createdAt": {
- "format": "date-time",
- "type": "string"
- },
- "depth": {
- "type": "integer"
- },
- "description": {
- "description": "Free-form description (max 5000 chars).",
- "properties": {
- "value": {
- "maxLength": 5000,
- "type": "string"
- }
- },
- "type": "object"
- },
- "fieldId": {
- "description": "UUID value wrapper.",
- "properties": {
- "value": {
- "format": "uuid",
- "type": "string"
- }
- },
- "type": "object"
- },
- "id": {
- "description": "UUID value wrapper.",
- "properties": {
- "value": {
- "format": "uuid",
- "type": "string"
- }
- },
- "type": "object"
- },
- "metadata": {
- "properties": {
- "values": {
- "additionalProperties": {
- "type": "string"
- },
- "type": "object"
- }
- },
- "type": "object"
- },
- "name": {
- "description": "Human-readable name (1-255 Unicode chars).",
- "properties": {
- "value": {
- "maxLength": 255,
- "minLength": 1,
- "type": "string"
- }
- },
- "type": "object"
- },
- "parentId": {
- "description": "UUID value wrapper.",
- "properties": {
- "value": {
- "format": "uuid",
- "type": "string"
- }
- },
- "type": "object"
- },
- "path": {
- "type": "string"
- },
- "sortOrder": {
- "type": "integer"
- },
- "updatedAt": {
- "format": "date-time",
- "type": "string"
- }
- },
- "required": [
- "fieldId",
- "name",
- "code"
- ],
- "type": "object"
- },
- "type": "array"
- },
- "parentFieldId": {
- "description": "UUID value wrapper.",
- "properties": {
- "value": {
- "format": "uuid",
- "type": "string"
- }
- },
- "type": "object"
- },
- "type": {
- "enum": [
- "FIELD_TYPE_UNSPECIFIED",
- "FIELD_TYPE_STRING",
- "FIELD_TYPE_NUMBER",
- "FIELD_TYPE_DATE",
- "FIELD_TYPE_SELECT"
- ],
- "type": "string"
- },
- "updatedAt": {
- "format": "date-time",
- "type": "string"
- },
- "valueMode": {
- "enum": [
- "FIELD_VALUE_MODE_UNSPECIFIED",
- "FIELD_VALUE_MODE_SINGLE",
- "FIELD_VALUE_MODE_MULTI"
- ],
- "type": "string"
- },
- "visibility": {
- "enum": [
- "FIELD_VISIBILITY_UNSPECIFIED",
- "FIELD_VISIBILITY_VISIBLE",
- "FIELD_VISIBILITY_HIDDEN",
- "FIELD_VISIBILITY_SYSTEM"
- ],
- "type": "string"
- }
-}
removedOutput schema / properties / fields / items / properties / field / required
Removed value: -[
- "name",
- "code"
-]
removedOutput schema / properties / fields / items / properties / field / type
Removed value: -"object"