addedOutput schema / properties / option / 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"
+ }
+ ]
+ },
+ "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": "null"
+ }
+]
removedOutput schema / properties / option / 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"
- },
- "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"
- }
-}