Skip to main content
Glama
kintone

kintone MCP Server

Official
by kintone

Add Form Fields

kintone-add-form-fields

Add new fields to a kintone app form to customize data capture. Configure field types, options, and defaults in preview; deploy to apply changes.

Instructions

Add new fields to a kintone app (preview environment only). Requires App Management permissions. Field codes must be unique, max 128 chars, cannot start with numbers, and only '_' symbol allowed. For selection fields (DROP_DOWN/RADIO_BUTTON/CHECK_BOX/MULTI_SELECT), option keys must exactly match their label values. Options require 'label' and 'index' properties. For lookup fields, use appropriate field type (NUMBER for RECORD_NUMBER, SINGLE_LINE_TEXT for text fields). Use kintone-get-form-fields first to check existing fields. Changes require kintone-deploy-app to apply to live app.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
appYesThe ID of the app to add fields to (numeric value as string)
revisionNoExpected app configuration revision number. If the specified revision number does not match the current app's revision, an error will occur and the update will not be performed. If not specified or set to '-1', the revision number will not be checked.
propertiesYesObject containing field configurations to add

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
revisionYesUpdated app configuration revision number

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed5 schema fields changedv1.9.3
    • changedInput schema / $schema
      Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • changedInput schema / properties / properties / additionalProperties / anyOf
      Previous value: -[
      -  {
      -    "additionalProperties": false,
      -    "properties": {
      -      "code": {
      -        "description": "Field code",
      -        "type": "string"
      -      },
      -      "label": {
      -        "description": "Field label",
      -        "type": "string"
      -      },
      -      "noLabel": {
      -        "description": "Whether to hide the label (true: hide, false: show)",
      -        "type": "boolean"
      -      },
      -      "type": {
      -        "const": "RECORD_NUMBER",
      -        "type": "string"
      -      }
      -    },
      -    "required": [
      -      "type",
      -      "code",
      -      "label"
      -    ],
      -    "type": "object"
      -  },
      -  {
      -    "additionalProperties": false,
      -    "properties": {
      -      "code": {
      -        "description": "Field code",
      -        "type": "string"
      -      },
      -      "label": {
      -        "description": "Field label",
      -        "type": "string"
      -      },
      -      "noLabel": {
      -        "description": "Whether to hide the label (true: hide, false: show)",
      -        "type": "boolean"
      -      },
      -      "type": {
      -        "const": "CREATOR",
      -        "type": "string"
      -      }
      -    },
      -    "required": [
      -      "type",
      -      "code",
      -      "label"
      -    ],
      -    "type": "object"
      -  },
      -  {
      -    "additionalProperties": false,
      -    "properties": {
      -      "code": {
      -        "description": "Field code",
      -        "type": "string"
      -      },
      -      "label": {
      -        "description": "Field label",
      -        "type": "string"
      -      },
      -      "noLabel": {
      -        "description": "Whether to hide the label (true: hide, false: show)",
      -        "type": "boolean"
      -      },
      -      "type": {
      -        "const": "CREATED_TIME",
      -        "type": "string"
      -      }
      -    },
      -    "required": [
      -      "type",
      -      "code",
      -      "label"
      -    ],
      -    "type": "object"
      -  },
      -  {
      -    "additionalProperties": false,
      -    "properties": {
      -      "code": {
      -        "description": "Field code",
      -        "type": "string"
      -      },
      -      "label": {
      -        "description": "Field label",
      -        "type": "string"
      -      },
      -      "noLabel": {
      -        "description": "Whether to hide the label (true: hide, false: show)",
      -        "type": "boolean"
      -      },
      -      "type": {
      -        "const": "MODIFIER",
      -        "type": "string"
      -      }
      -    },
      -    "required": [
      -      "type",
      -      "code",
      -      "label"
      -    ],
      -    "type": "object"
      -  },
      -  {
      -    "additionalProperties": false,
      -    "properties": {
      -      "code": {
      -        "description": "Field code",
      -        "type": "string"
      -      },
      -      "label": {
      -        "description": "Field label",
      -        "type": "string"
      -      },
      -      "noLabel": {
      -        "description": "Whether to hide the label (true: hide, false: show)",
      -        "type": "boolean"
      -      },
      -      "type": {
      -        "const": "UPDATED_TIME",
      -        "type": "string"
      -      }
      -    },
      -    "required": [
      -      "type",
      -      "code",
      -      "label"
      -    ],
      -    "type": "object"
      -  },
      -  {
      -    "additionalProperties": false,
      -    "properties": {
      -      "code": {
      -        "description": "Field code",
      -        "type": "string"
      -      },
      -      "enabled": {
      -        "description": "Enable/disable setting",
      -        "type": "boolean"
      -      },
      -      "label": {
      -        "description": "Field label",
      -        "type": "string"
      -      },
      -      "type": {
      -        "const": "CATEGORY",
      -        "type": "string"
      -      }
      -    },
      -    "required": [
      -      "type",
      -      "code",
      -      "label"
      -    ],
      -    "type": "object"
      -  },
      -  {
      -    "additionalProperties": false,
      -    "properties": {
      -      "code": {
      -        "description": "Field code",
      -        "type": "string"
      -      },
      -      "enabled": {
      -        "description": "Enable/disable setting",
      -        "type": "boolean"
      -      },
      -      "label": {
      -        "description": "Field label",
      -        "type": "string"
      -      },
      -      "type": {
      -        "const": "STATUS",
      -        "type": "string"
      -      }
      -    },
      -    "required": [
      -      "type",
      -      "code",
      -      "label"
      -    ],
      -    "type": "object"
      -  },
      -  {
      -    "additionalProperties": false,
      -    "properties": {
      -      "code": {
      -        "description": "Field code",
      -        "type": "string"
      -      },
      -      "enabled": {
      -        "description": "Enable/disable setting",
      -        "type": "boolean"
      -      },
      -      "label": {
      -        "description": "Field label",
      -        "type": "string"
      -      },
      -      "type": {
      -        "const": "STATUS_ASSIGNEE",
      -        "type": "string"
      -      }
      -    },
      -    "required": [
      -      "type",
      -      "code",
      -      "label"
      -    ],
      -    "type": "object"
      -  },
      -  {
      -    "additionalProperties": false,
      -    "properties": {
      -      "code": {
      -        "description": "Field code",
      -        "type": "string"
      -      },
      -      "label": {
      -        "description": "Field label",
      -        "type": "string"
      -      },
      -      "lookup": {
      -        "additionalProperties": false,
      -        "description": "Lookup configuration",
      -        "properties": {
      -          "fieldMappings": {
      -            "description": "Configuration of field copy source and destination",
      -            "items": {
      -              "additionalProperties": false,
      -              "properties": {
      -                "field": {
      -                  "description": "Field code in this app",
      -                  "type": "string"
      -                },
      -                "relatedField": {
      -                  "description": "Field code in the referenced app",
      -                  "type": "string"
      -                }
      -              },
      -              "required": [
      -                "field",
      -                "relatedField"
      -              ],
      -              "type": "object"
      -            },
      -            "type": "array"
      -          },
      -          "filterCond": {
      -            "description": "Query for filtering records in the referenced app",
      -            "type": "string"
      -          },
      -          "lookupPickerFields": {
      -            "description": "Array of field codes to display in the lookup picker of the referenced app",
      -            "items": {
      -              "type": "string"
      -            },
      -            "type": "array"
      -          },
      -          "relatedApp": {
      -            "additionalProperties": false,
      -            "description": "Referenced app configuration",
      -            "properties": {
      -              "app": {
      -                "description": "App ID of the referenced app",
      -                "type": "string"
      -              },
      -              "code": {
      -                "description": "Field code in the referenced app",
      -                "type": "string"
      -              }
      -            },
      -            "required": [
      -              "app",
      -              "code"
      -            ],
      -            "type": "object"
      -          },
      -          "relatedKeyField": {
      -            "description": "Field code of the key field in the referenced app",
      -            "type": "string"
      -          },
      -          "sort": {
      -            "description": "Sort condition",
      -            "type": "string"
      -          }
      -        },
      -        "required": [
      -          "relatedApp",
      -          "relatedKeyField",
      -          "fieldMappings",
      -          "lookupPickerFields",
      -          "filterCond",
      -          "sort"
      -        ],
      -        "type": "object"
      -      },
      -      "noLabel": {
      -        "description": "Whether to hide the label (true: hide, false: show)",
      -        "type": "boolean"
      -      },
      -      "required": {
      -        "description": "Whether the field is required (true: required, false: optional)",
      -        "type": "boolean"
      -      },
      -      "type": {
      -        "description": "Type of lookup field",
      -        "enum": [
      -          "NUMBER",
      -          "SINGLE_LINE_TEXT"
      -        ],
      -        "type": "string"
      -      }
      -    },
      -    "required": [
      -      "type",
      -      "code",
      -      "label",
      -      "lookup"
      -    ],
      -    "type": "object"
      -  },
      -  {
      -    "additionalProperties": false,
      -    "properties": {
      -      "code": {
      -        "description": "Field code",
      -        "type": "string"
      -      },
      -      "defaultValue": {
      -        "description": "Default value",
      -        "type": "string"
      -      },
      -      "expression": {
      -        "description": "Auto-calculation formula",
      -        "type": "string"
      -      },
      -      "hideExpression": {
      -        "description": "Whether to hide the formula (true: hide, false: show)",
      -        "type": "boolean"
      -      },
      -      "label": {
      -        "description": "Field label",
      -        "type": "string"
      -      },
      -      "maxLength": {
      -        "description": "Maximum character length",
      -        "type": "string"
      -      },
      -      "minLength": {
      -        "description": "Minimum character length",
      -        "type": "string"
      -      },
      -      "noLabel": {
      -        "description": "Whether to hide the label (true: hide, false: show)",
      -        "type": "boolean"
      -      },
      -      "required": {
      -        "description": "Whether the field is required (true: required, false: optional)",
      -        "type": "boolean"
      -      },
      -      "type": {
      -        "const": "SINGLE_LINE_TEXT",
      -        "type": "string"
      -      },
      -      "unique": {
      -        "description": "Whether to prohibit duplicate values (true: prohibit, false: allow)",
      -        "type": "boolean"
      -      }
      -    },
      -    "required": [
      -      "type",
      -      "code",
      -      "label"
      -    ],
      -    "type": "object"
      -  },
      -  {
      -    "additionalProperties": false,
      -    "properties": {
      -      "code": {
      -        "description": "Field code",
      -        "type": "string"
      -      },
      -      "defaultValue": {
      -        "description": "Default value",
      -        "type": "string"
      -      },
      -      "digit": {
      -        "description": "Whether to display digit separators (true: show, false: hide)",
      -        "type": "boolean"
      -      },
      -      "displayScale": {
      -        "description": "Number of decimal places to display",
      -        "type": "string"
      -      },
      -      "label": {
      -        "description": "Field label",
      -        "type": "string"
      -      },
      -      "maxValue": {
      -        "description": "Maximum value",
      -        "type": "string"
      -      },
      -      "minValue": {
      -        "description": "Minimum value",
      -        "type": "string"
      -      },
      -      "noLabel": {
      -        "description": "Whether to hide the label (true: hide, false: show)",
      -        "type": "boolean"
      -      },
      -      "required": {
      -        "description": "Whether the field is required (true: required, false: optional)",
      -        "type": "boolean"
      -      },
      -      "type": {
      -        "const": "NUMBER",
      -        "type": "string"
      -      },
      -      "unique": {
      -        "description": "Whether to prohibit duplicate values (true: prohibit, false: allow)",
      -        "type": "boolean"
      -      },
      -      "unit": {
      -        "description": "Unit symbol",
      -        "type": "string"
      -      },
      -      "unitPosition": {
      -        "description": "Position of unit (BEFORE: before field, AFTER: after field)",
      -        "enum": [
      -          "BEFORE",
      -          "AFTER"
      -        ],
      -        "type": "string"
      -      }
      -    },
      -    "required": [
      -      "type",
      -      "code",
      -      "label"
      -    ],
      -    "type": "object"
      -  },
      -  {
      -    "additionalProperties": false,
      -    "properties": {
      -      "code": {
      -        "description": "Field code",
      -        "type": "string"
      -      },
      -      "displayScale": {
      -        "description": "Number of decimal places to display",
      -        "type": "string"
      -      },
      -      "expression": {
      -        "description": "Auto-calculation formula",
      -        "type": "string"
      -      },
      -      "format": {
      -        "description": "Display format of calculation result",
      -        "enum": [
      -          "NUMBER",
      -          "NUMBER_DIGIT",
      -          "DATETIME",
      -          "DATE",
      -          "TIME",
      -          "HOUR_MINUTE",
      -          "DAY_HOUR_MINUTE"
      -        ],
      -        "type": "string"
      -      },
      -      "hideExpression": {
      -        "description": "Whether to hide the formula (true: hide, false: show)",
      -        "type": "boolean"
      -      },
      -      "label": {
      -        "description": "Field label",
      -        "type": "string"
      -      },
      -      "noLabel": {
      -        "description": "Whether to hide the label (true: hide, false: show)",
      -        "type": "boolean"
      -      },
      -      "required": {
      -        "description": "Whether the field is required (true: required, false: optional)",
      -        "type": "boolean"
      -      },
      -      "type": {
      -        "const": "CALC",
      -        "type": "string"
      -      },
      -      "unit": {
      -        "description": "Unit symbol",
      -        "type": "string"
      -      },
      -      "unitPosition": {
      -        "description": "Position of unit (BEFORE: before field, AFTER: after field)",
      -        "enum": [
      -          "BEFORE",
      -          "AFTER"
      -        ],
      -        "type": "string"
      -      }
      -    },
      -    "required": [
      -      "type",
      -      "code",
      -      "label"
      -    ],
      -    "type": "object"
      -  },
      -  {
      -    "additionalProperties": false,
      -    "properties": {
      -      "code": {
      -        "description": "Field code",
      -        "type": "string"
      -      },
      -      "defaultValue": {
      -        "description": "Default value",
      -        "type": "string"
      -      },
      -      "label": {
      -        "description": "Field label",
      -        "type": "string"
      -      },
      -      "noLabel": {
      -        "description": "Whether to hide the label (true: hide, false: show)",
      -        "type": "boolean"
      -      },
      -      "required": {
      -        "description": "Whether the field is required (true: required, false: optional)",
      -        "type": "boolean"
      -      },
      -      "type": {
      -        "const": "MULTI_LINE_TEXT",
      -        "type": "string"
      -      }
      -    },
      -    "required": [
      -      "type",
      -      "code",
      -      "label"
      -    ],
      -    "type": "object"
      -  },
      -  {
      -    "additionalProperties": false,
      -    "properties": {
      -      "code": {
      -        "description": "Field code",
      -        "type": "string"
      -      },
      -      "defaultValue": {
      -        "description": "Default value",
      -        "type": "string"
      -      },
      -      "label": {
      -        "description": "Field label",
      -        "type": "string"
      -      },
      -      "noLabel": {
      -        "description": "Whether to hide the label (true: hide, false: show)",
      -        "type": "boolean"
      -      },
      -      "required": {
      -        "description": "Whether the field is required (true: required, false: optional)",
      -        "type": "boolean"
      -      },
      -      "type": {
      -        "const": "RICH_TEXT",
      -        "type": "string"
      -      }
      -    },
      -    "required": [
      -      "type",
      -      "code",
      -      "label"
      -    ],
      -    "type": "object"
      -  },
      -  {
      -    "additionalProperties": false,
      -    "properties": {
      -      "code": {
      -        "description": "Field code",
      -        "type": "string"
      -      },
      -      "defaultValue": {
      -        "description": "Default value",
      -        "type": "string"
      -      },
      -      "label": {
      -        "description": "Field label",
      -        "type": "string"
      -      },
      -      "maxLength": {
      -        "description": "Maximum character length",
      -        "type": "string"
      -      },
      -      "minLength": {
      -        "description": "Minimum character length",
      -        "type": "string"
      -      },
      -      "noLabel": {
      -        "description": "Whether to hide the label (true: hide, false: show)",
      -        "type": "boolean"
      -      },
      -      "protocol": {
      -        "description": "Link protocol (WEB: http/https, CALL: tel, MAIL: mailto)",
      -        "enum": [
      -          "WEB",
      -          "CALL",
      -          "MAIL"
      -        ],
      -        "type": "string"
      -      },
      -      "required": {
      -        "description": "Whether the field is required (true: required, false: optional)",
      -        "type": "boolean"
      -      },
      -      "type": {
      -        "const": "LINK",
      -        "type": "string"
      -      },
      -      "unique": {
      -        "description": "Whether to prohibit duplicate values (true: prohibit, false: allow)",
      -        "type": "boolean"
      -      }
      -    },
      -    "required": [
      -      "type",
      -      "code",
      -      "label"
      -    ],
      -    "type": "object"
      -  },
      -  {
      -    "additionalProperties": false,
      -    "properties": {
      -      "align": {
      -        "description": "Alignment of options (HORIZONTAL: horizontal, VERTICAL: vertical)",
      -        "enum": [
      -          "HORIZONTAL",
      -          "VERTICAL"
      -        ],
      -        "type": "string"
      -      },
      -      "code": {
      -        "description": "Field code",
      -        "type": "string"
      -      },
      -      "defaultValue": {
      -        "description": "Array of default values",
      -        "items": {
      -          "type": "string"
      -        },
      -        "type": "array"
      -      },
      -      "label": {
      -        "description": "Field label",
      -        "type": "string"
      -      },
      -      "noLabel": {
      -        "description": "Whether to hide the label (true: hide, false: show)",
      -        "type": "boolean"
      -      },
      -      "options": {
      -        "additionalProperties": {
      -          "additionalProperties": false,
      -          "properties": {
      -            "index": {
      -              "description": "Display order of the option",
      -              "type": "string"
      -            },
      -            "label": {
      -              "description": "Display name of the option",
      -              "type": "string"
      -            }
      -          },
      -          "required": [
      -            "label",
      -            "index"
      -          ],
      -          "type": "object"
      -        },
      -        "description": "Options configuration",
      -        "type": "object"
      -      },
      -      "required": {
      -        "description": "Whether the field is required (true: required, false: optional)",
      -        "type": "boolean"
      -      },
      -      "type": {
      -        "const": "CHECK_BOX",
      -        "type": "string"
      -      }
      -    },
      -    "required": [
      -      "type",
      -      "code",
      -      "label"
      -    ],
      -    "type": "object"
      -  },
      -  {
      -    "additionalProperties": false,
      -    "properties": {
      -      "align": {
      -        "description": "Alignment of options (HORIZONTAL: horizontal, VERTICAL: vertical)",
      -        "enum": [
      -          "HORIZONTAL",
      -          "VERTICAL"
      -        ],
      -        "type": "string"
      -      },
      -      "code": {
      -        "description": "Field code",
      -        "type": "string"
      -      },
      -      "defaultValue": {
      -        "description": "Default value",
      -        "type": "string"
      -      },
      -      "label": {
      -        "description": "Field label",
      -        "type": "string"
      -      },
      -      "noLabel": {
      -        "description": "Whether to hide the label (true: hide, false: show)",
      -        "type": "boolean"
      -      },
      -      "options": {
      -        "$ref": "#/properties/properties/additionalProperties/anyOf/15/properties/options",
      -        "description": "Options configuration"
      -      },
      -      "required": {
      -        "description": "Whether the field is required (true: required, false: optional)",
      -        "type": "boolean"
      -      },
      -      "type": {
      -        "const": "RADIO_BUTTON",
      -        "type": "string"
      -      }
      -    },
      -    "required": [
      -      "type",
      -      "code",
      -      "label"
      -    ],
      -    "type": "object"
      -  },
      -  {
      -    "additionalProperties": false,
      -    "properties": {
      -      "code": {
      -        "description": "Field code",
      -        "type": "string"
      -      },
      -      "defaultValue": {
      -        "description": "Default value",
      -        "type": "string"
      -      },
      -      "label": {
      -        "description": "Field label",
      -        "type": "string"
      -      },
      -      "noLabel": {
      -        "description": "Whether to hide the label (true: hide, false: show)",
      -        "type": "boolean"
      -      },
      -      "options": {
      -        "$ref": "#/properties/properties/additionalProperties/anyOf/15/properties/options",
      -        "description": "Options configuration"
      -      },
      -      "required": {
      -        "description": "Whether the field is required (true: required, false: optional)",
      -        "type": "boolean"
      -      },
      -      "type": {
      -        "const": "DROP_DOWN",
      -        "type": "string"
      -      }
      -    },
      -    "required": [
      -      "type",
      -      "code",
      -      "label"
      -    ],
      -    "type": "object"
      -  },
      -  {
      -    "additionalProperties": false,
      -    "properties": {
      -      "code": {
      -        "description": "Field code",
      -        "type": "string"
      -      },
      -      "defaultValue": {
      -        "description": "Array of default values",
      -        "items": {
      -          "type": "string"
      -        },
      -        "type": "array"
      -      },
      -      "label": {
      -        "description": "Field label",
      -        "type": "string"
      -      },
      -      "noLabel": {
      -        "description": "Whether to hide the label (true: hide, false: show)",
      -        "type": "boolean"
      -      },
      -      "options": {
      -        "$ref": "#/properties/properties/additionalProperties/anyOf/15/properties/options",
      -        "description": "Options configuration"
      -      },
      -      "required": {
      -        "description": "Whether the field is required (true: required, false: optional)",
      -        "type": "boolean"
      -      },
      -      "type": {
      -        "const": "MULTI_SELECT",
      -        "type": "string"
      -      }
      -    },
      -    "required": [
      -      "type",
      -      "code",
      -      "label"
      -    ],
      -    "type": "object"
      -  },
      -  {
      -    "additionalProperties": false,
      -    "properties": {
      -      "code": {
      -        "description": "Field code",
      -        "type": "string"
      -      },
      -      "label": {
      -        "description": "Field label",
      -        "type": "string"
      -      },
      -      "noLabel": {
      -        "description": "Whether to hide the label (true: hide, false: show)",
      -        "type": "boolean"
      -      },
      -      "required": {
      -        "description": "Whether the field is required (true: required, false: optional)",
      -        "type": "boolean"
      -      },
      -      "thumbnailSize": {
      -        "description": "Thumbnail size (pixels)",
      -        "enum": [
      -          "50",
      -          "150",
      -          "250",
      -          "500"
      -        ],
      -        "type": "string"
      -      },
      -      "type": {
      -        "const": "FILE",
      -        "type": "string"
      -      }
      -    },
      -    "required": [
      -      "type",
      -      "code",
      -      "label"
      -    ],
      -    "type": "object"
      -  },
      -  {
      -    "additionalProperties": false,
      -    "properties": {
      -      "code": {
      -        "description": "Field code",
      -        "type": "string"
      -      },
      -      "defaultNowValue": {
      -        "description": "Whether to automatically set the current date (true: auto-set, false: manual)",
      -        "type": "boolean"
      -      },
      -      "defaultValue": {
      -        "description": "Default value (YYYY-MM-DD format)",
      -        "type": "string"
      -      },
      -      "label": {
      -        "description": "Field label",
      -        "type": "string"
      -      },
      -      "noLabel": {
      -        "description": "Whether to hide the label (true: hide, false: show)",
      -        "type": "boolean"
      -      },
      -      "required": {
      -        "description": "Whether the field is required (true: required, false: optional)",
      -        "type": "boolean"
      -      },
      -      "type": {
      -        "const": "DATE",
      -        "type": "string"
      -      },
      -      "unique": {
      -        "description": "Whether to prohibit duplicate values (true: prohibit, false: allow)",
      -        "type": "boolean"
      -      }
      -    },
      -    "required": [
      -      "type",
      -      "code",
      -      "label"
      -    ],
      -    "type": "object"
      -  },
      -  {
      -    "additionalProperties": false,
      -    "properties": {
      -      "code": {
      -        "description": "Field code",
      -        "type": "string"
      -      },
      -      "defaultNowValue": {
      -        "description": "Whether to automatically set the current time (true: auto-set, false: manual)",
      -        "type": "boolean"
      -      },
      -      "defaultValue": {
      -        "description": "Default value (HH:MM format)",
      -        "type": "string"
      -      },
      -      "label": {
      -        "description": "Field label",
      -        "type": "string"
      -      },
      -      "noLabel": {
      -        "description": "Whether to hide the label (true: hide, false: show)",
      -        "type": "boolean"
      -      },
      -      "required": {
      -        "description": "Whether the field is required (true: required, false: optional)",
      -        "type": "boolean"
      -      },
      -      "type": {
      -        "const": "TIME",
      -        "type": "string"
      -      }
      -    },
      -    "required": [
      -      "type",
      -      "code",
      -      "label"
      -    ],
      -    "type": "object"
      -  },
      -  {
      -    "additionalProperties": false,
      -    "properties": {
      -      "code": {
      -        "description": "Field code",
      -        "type": "string"
      -      },
      -      "defaultNowValue": {
      -        "description": "Whether to automatically set the current datetime (true: auto-set, false: manual)",
      -        "type": "boolean"
      -      },
      -      "defaultValue": {
      -        "description": "Default value (YYYY-MM-DDTHH:MM:SSZ format)",
      -        "type": "string"
      -      },
      -      "label": {
      -        "description": "Field label",
      -        "type": "string"
      -      },
      -      "noLabel": {
      -        "description": "Whether to hide the label (true: hide, false: show)",
      -        "type": "boolean"
      -      },
      -      "required": {
      -        "description": "Whether the field is required (true: required, false: optional)",
      -        "type": "boolean"
      -      },
      -      "type": {
      -        "const": "DATETIME",
      -        "type": "string"
      -      },
      -      "unique": {
      -        "description": "Whether to prohibit duplicate values (true: prohibit, false: allow)",
      -        "type": "boolean"
      -      }
      -    },
      -    "required": [
      -      "type",
      -      "code",
      -      "label"
      -    ],
      -    "type": "object"
      -  },
      -  {
      -    "additionalProperties": false,
      -    "properties": {
      -      "code": {
      -        "description": "Field code",
      -        "type": "string"
      -      },
      -      "defaultValue": {
      -        "description": "Array of default users/groups/organizations, or LOGINUSER() function",
      -        "items": {
      -          "anyOf": [
      -            {
      -              "additionalProperties": false,
      -              "properties": {
      -                "code": {
      -                  "description": "Code of user/group/organization",
      -                  "type": "string"
      -                },
      -                "type": {
      -                  "description": "Type of entity",
      -                  "enum": [
      -                    "USER",
      -                    "GROUP",
      -                    "ORGANIZATION"
      -                  ],
      -                  "type": "string"
      -                }
      -              },
      -              "required": [
      -                "code",
      -                "type"
      -              ],
      -              "type": "object"
      -            },
      -            {
      -              "additionalProperties": false,
      -              "properties": {
      -                "code": {
      -                  "const": "LOGINUSER()",
      -                  "description": "Function representing the logged-in user",
      -                  "type": "string"
      -                },
      -                "type": {
      -                  "const": "FUNCTION",
      -                  "description": "Function type",
      -                  "type": "string"
      -                }
      -              },
      -              "required": [
      -                "code",
      -                "type"
      -              ],
      -              "type": "object"
      -            }
      -          ]
      -        },
      -        "type": "array"
      -      },
      -      "entities": {
      -        "description": "List of selectable users/groups/organizations",
      -        "items": {
      -          "$ref": "#/properties/properties/additionalProperties/anyOf/23/properties/defaultValue/items/anyOf/0"
      -        },
      -        "type": "array"
      -      },
      -      "label": {
      -        "description": "Field label",
      -        "type": "string"
      -      },
      -      "noLabel": {
      -        "description": "Whether to hide the label (true: hide, false: show)",
      -        "type": "boolean"
      -      },
      -      "required": {
      -        "description": "Whether the field is required (true: required, false: optional)",
      -        "type": "boolean"
      -      },
      -      "type": {
      -        "const": "USER_SELECT",
      -        "type": "string"
      -      }
      -    },
      -    "required": [
      -      "type",
      -      "code",
      -      "label"
      -    ],
      -    "type": "object"
      -  },
      -  {
      -    "additionalProperties": false,
      -    "properties": {
      -      "code": {
      -        "description": "Field code",
      -        "type": "string"
      -      },
      -      "defaultValue": {
      -        "description": "Array of default organizations, or PRIMARY_ORGANIZATION() function",
      -        "items": {
      -          "anyOf": [
      -            {
      -              "additionalProperties": false,
      -              "properties": {
      -                "code": {
      -                  "description": "Organization code",
      -                  "type": "string"
      -                },
      -                "type": {
      -                  "const": "ORGANIZATION",
      -                  "description": "Organization type",
      -                  "type": "string"
      -                }
      -              },
      -              "required": [
      -                "code",
      -                "type"
      -              ],
      -              "type": "object"
      -            },
      -            {
      -              "additionalProperties": false,
      -              "properties": {
      -                "code": {
      -                  "const": "PRIMARY_ORGANIZATION()",
      -                  "description": "Function representing the primary organization of the logged-in user",
      -                  "type": "string"
      -                },
      -                "type": {
      -                  "const": "FUNCTION",
      -                  "description": "Function type",
      -                  "type": "string"
      -                }
      -              },
      -              "required": [
      -                "code",
      -                "type"
      -              ],
      -              "type": "object"
      -            }
      -          ]
      -        },
      -        "type": "array"
      -      },
      -      "entities": {
      -        "description": "List of selectable organizations",
      -        "items": {
      -          "additionalProperties": false,
      -          "properties": {
      -            "code": {
      -              "description": "Organization code",
      -              "type": "string"
      -            },
      -            "type": {
      -              "const": "ORGANIZATION",
      -              "description": "Organization type",
      -              "type": "string"
      -            }
      -          },
      -          "required": [
      -            "code",
      -            "type"
      -          ],
      -          "type": "object"
      -        },
      -        "type": "array"
      -      },
      -      "label": {
      -        "description": "Field label",
      -        "type": "string"
      -      },
      -      "noLabel": {
      -        "description": "Whether to hide the label (true: hide, false: show)",
      -        "type": "boolean"
      -      },
      -      "required": {
      -        "description": "Whether the field is required (true: required, false: optional)",
      -        "type": "boolean"
      -      },
      -      "type": {
      -        "const": "ORGANIZATION_SELECT",
      -        "type": "string"
      -      }
      -    },
      -    "required": [
      -      "type",
      -      "code",
      -      "label"
      -    ],
      -    "type": "object"
      -  },
      -  {
      -    "additionalProperties": false,
      -    "properties": {
      -      "code": {
      -        "description": "Field code",
      -        "type": "string"
      -      },
      -      "defaultValue": {
      -        "description": "Array of default groups",
      -        "items": {
      -          "additionalProperties": false,
      -          "properties": {
      -            "code": {
      -              "description": "Group code",
      -              "type": "string"
      -            },
      -            "type": {
      -              "const": "GROUP",
      -              "description": "Group type",
      -              "type": "string"
      -            }
      -          },
      -          "required": [
      -            "code",
      -            "type"
      -          ],
      -          "type": "object"
      -        },
      -        "type": "array"
      -      },
      -      "entities": {
      -        "description": "List of selectable groups",
      -        "items": {
      -          "additionalProperties": false,
      -          "properties": {
      -            "code": {
      -              "description": "Group code",
      -              "type": "string"
      -            },
      -            "type": {
      -              "const": "GROUP",
      -              "description": "Group type",
      -              "type": "string"
      -            }
      -          },
      -          "required": [
      -            "code",
      -            "type"
      -          ],
      -          "type": "object"
      -        },
      -        "type": "array"
      -      },
      -      "label": {
      -        "description": "Field label",
      -        "type": "string"
      -      },
      -      "noLabel": {
      -        "description": "Whether to hide the label (true: hide, false: show)",
      -        "type": "boolean"
      -      },
      -      "required": {
      -        "description": "Whether the field is required (true: required, false: optional)",
      -        "type": "boolean"
      -      },
      -      "type": {
      -        "const": "GROUP_SELECT",
      -        "type": "string"
      -      }
      -    },
      -    "required": [
      -      "type",
      -      "code",
      -      "label"
      -    ],
      -    "type": "object"
      -  },
      -  {
      -    "additionalProperties": false,
      -    "properties": {
      -      "code": {
      -        "description": "Field code",
      -        "type": "string"
      -      },
      -      "label": {
      -        "description": "Field label",
      -        "type": "string"
      -      },
      -      "noLabel": {
      -        "description": "Whether to hide the label (true: hide, false: show)",
      -        "type": "boolean"
      -      },
      -      "openGroup": {
      -        "description": "Whether to display the group in an open state (true: open, false: closed)",
      -        "type": "boolean"
      -      },
      -      "type": {
      -        "const": "GROUP",
      -        "type": "string"
      -      }
      -    },
      -    "required": [
      -      "type",
      -      "code",
      -      "label"
      -    ],
      -    "type": "object"
      -  },
      -  {
      -    "additionalProperties": false,
      -    "properties": {
      -      "code": {
      -        "description": "Field code",
      -        "type": "string"
      -      },
      -      "label": {
      -        "description": "Field label",
      -        "type": "string"
      -      },
      -      "noLabel": {
      -        "description": "Whether to hide the label (true: hide, false: show)",
      -        "type": "boolean"
      -      },
      -      "referenceTable": {
      -        "additionalProperties": false,
      -        "description": "Related records list configuration",
      -        "properties": {
      -          "condition": {
      -            "additionalProperties": false,
      -            "description": "Condition for filtering related records",
      -            "properties": {
      -              "field": {
      -                "description": "Field code in this app",
      -                "type": "string"
      -              },
      -              "relatedField": {
      -                "description": "Field code in the related app",
      -                "type": "string"
      -              }
      -            },
      -            "required": [
      -              "field",
      -              "relatedField"
      -            ],
      -            "type": "object"
      -          },
      -          "displayFields": {
      -            "description": "Array of field codes to display",
      -            "items": {
      -              "type": "string"
      -            },
      -            "type": "array"
      -          },
      -          "filterCond": {
      -            "description": "Query for filtering related records",
      -            "type": "string"
      -          },
      -          "relatedApp": {
      -            "additionalProperties": false,
      -            "properties": {
      -              "app": {
      -                "description": "App ID of the related app",
      -                "type": "string"
      -              },
      -              "code": {
      -                "description": "Field code of the related records list field in this app",
      -                "type": "string"
      -              }
      -            },
      -            "required": [
      -              "app",
      -              "code"
      -            ],
      -            "type": "object"
      -          },
      -          "size": {
      -            "description": "Number of records to display",
      -            "enum": [
      -              "1",
      -              "3",
      -              "5",
      -              "10",
      -              "20",
      -              "30",
      -              "40",
      -              "50"
      -            ],
      -            "type": "string"
      -          },
      -          "sort": {
      -            "description": "Sort condition",
      -            "type": "string"
      -          }
      -        },
      -        "required": [
      -          "relatedApp",
      -          "condition",
      -          "filterCond",
      -          "displayFields",
      -          "sort",
      -          "size"
      -        ],
      -        "type": "object"
      -      },
      -      "type": {
      -        "const": "REFERENCE_TABLE",
      -        "type": "string"
      -      }
      -    },
      -    "required": [
      -      "type",
      -      "code",
      -      "label"
      -    ],
      -    "type": "object"
      -  },
      -  {
      -    "additionalProperties": false,
      -    "properties": {
      -      "code": {
      -        "description": "Field code",
      -        "type": "string"
      -      },
      -      "fields": {
      -        "additionalProperties": {
      -          "anyOf": [
      -            {
      -              "$ref": "#/properties/properties/additionalProperties/anyOf/8"
      -            },
      -            {
      -              "$ref": "#/properties/properties/additionalProperties/anyOf/9"
      -            },
      -            {
      -              "$ref": "#/properties/properties/additionalProperties/anyOf/10"
      -            },
      -            {
      -              "$ref": "#/properties/properties/additionalProperties/anyOf/11"
      -            },
      -            {
      -              "$ref": "#/properties/properties/additionalProperties/anyOf/12"
      -            },
      -            {
      -              "$ref": "#/properties/properties/additionalProperties/anyOf/13"
      -            },
      -            {
      -              "$ref": "#/properties/properties/additionalProperties/anyOf/14"
      -            },
      -            {
      -              "$ref": "#/properties/properties/additionalProperties/anyOf/15"
      -            },
      -            {
      -              "$ref": "#/properties/properties/additionalProperties/anyOf/16"
      -            },
      -            {
      -              "$ref": "#/properties/properties/additionalProperties/anyOf/17"
      -            },
      -            {
      -              "$ref": "#/properties/properties/additionalProperties/anyOf/18"
      -            },
      -            {
      -              "$ref": "#/properties/properties/additionalProperties/anyOf/19"
      -            },
      -            {
      -              "$ref": "#/properties/properties/additionalProperties/anyOf/20"
      -            },
      -            {
      -              "$ref": "#/properties/properties/additionalProperties/anyOf/21"
      -            },
      -            {
      -              "$ref": "#/properties/properties/additionalProperties/anyOf/22"
      -            },
      -            {
      -              "$ref": "#/properties/properties/additionalProperties/anyOf/23"
      -            },
      -            {
      -              "$ref": "#/properties/properties/additionalProperties/anyOf/24"
      -            },
      -            {
      -              "$ref": "#/properties/properties/additionalProperties/anyOf/25"
      -            }
      -          ]
      -        },
      -        "description": "Configuration of fields within the subtable",
      -        "type": "object"
      -      },
      -      "label": {
      -        "description": "Field label",
      -        "type": "string"
      -      },
      -      "noLabel": {
      -        "description": "Whether to hide the label (true: hide, false: show)",
      -        "type": "boolean"
      -      },
      -      "type": {
      -        "const": "SUBTABLE",
      -        "type": "string"
      -      }
      -    },
      -    "required": [
      -      "type",
      -      "code",
      -      "label"
      -    ],
      -    "type": "object"
      -  }
      -]New value: +[
      +  {
      +    "properties": {
      +      "code": {
      +        "description": "Field code",
      +        "type": "string"
      +      },
      +      "label": {
      +        "description": "Field label",
      +        "type": "string"
      +      },
      +      "noLabel": {
      +        "description": "Whether to hide the label (true: hide, false: show)",
      +        "type": "boolean"
      +      },
      +      "type": {
      +        "const": "RECORD_NUMBER",
      +        "type": "string"
      +      }
      +    },
      +    "required": [
      +      "type",
      +      "code",
      +      "label"
      +    ],
      +    "type": "object"
      +  },
      +  {
      +    "properties": {
      +      "code": {
      +        "description": "Field code",
      +        "type": "string"
      +      },
      +      "label": {
      +        "description": "Field label",
      +        "type": "string"
      +      },
      +      "noLabel": {
      +        "description": "Whether to hide the label (true: hide, false: show)",
      +        "type": "boolean"
      +      },
      +      "type": {
      +        "const": "CREATOR",
      +        "type": "string"
      +      }
      +    },
      +    "required": [
      +      "type",
      +      "code",
      +      "label"
      +    ],
      +    "type": "object"
      +  },
      +  {
      +    "properties": {
      +      "code": {
      +        "description": "Field code",
      +        "type": "string"
      +      },
      +      "label": {
      +        "description": "Field label",
      +        "type": "string"
      +      },
      +      "noLabel": {
      +        "description": "Whether to hide the label (true: hide, false: show)",
      +        "type": "boolean"
      +      },
      +      "type": {
      +        "const": "CREATED_TIME",
      +        "type": "string"
      +      }
      +    },
      +    "required": [
      +      "type",
      +      "code",
      +      "label"
      +    ],
      +    "type": "object"
      +  },
      +  {
      +    "properties": {
      +      "code": {
      +        "description": "Field code",
      +        "type": "string"
      +      },
      +      "label": {
      +        "description": "Field label",
      +        "type": "string"
      +      },
      +      "noLabel": {
      +        "description": "Whether to hide the label (true: hide, false: show)",
      +        "type": "boolean"
      +      },
      +      "type": {
      +        "const": "MODIFIER",
      +        "type": "string"
      +      }
      +    },
      +    "required": [
      +      "type",
      +      "code",
      +      "label"
      +    ],
      +    "type": "object"
      +  },
      +  {
      +    "properties": {
      +      "code": {
      +        "description": "Field code",
      +        "type": "string"
      +      },
      +      "label": {
      +        "description": "Field label",
      +        "type": "string"
      +      },
      +      "noLabel": {
      +        "description": "Whether to hide the label (true: hide, false: show)",
      +        "type": "boolean"
      +      },
      +      "type": {
      +        "const": "UPDATED_TIME",
      +        "type": "string"
      +      }
      +    },
      +    "required": [
      +      "type",
      +      "code",
      +      "label"
      +    ],
      +    "type": "object"
      +  },
      +  {
      +    "properties": {
      +      "code": {
      +        "description": "Field code",
      +        "type": "string"
      +      },
      +      "enabled": {
      +        "description": "Enable/disable setting",
      +        "type": "boolean"
      +      },
      +      "label": {
      +        "description": "Field label",
      +        "type": "string"
      +      },
      +      "type": {
      +        "const": "CATEGORY",
      +        "type": "string"
      +      }
      +    },
      +    "required": [
      +      "type",
      +      "code",
      +      "label"
      +    ],
      +    "type": "object"
      +  },
      +  {
      +    "properties": {
      +      "code": {
      +        "description": "Field code",
      +        "type": "string"
      +      },
      +      "enabled": {
      +        "description": "Enable/disable setting",
      +        "type": "boolean"
      +      },
      +      "label": {
      +        "description": "Field label",
      +        "type": "string"
      +      },
      +      "type": {
      +        "const": "STATUS",
      +        "type": "string"
      +      }
      +    },
      +    "required": [
      +      "type",
      +      "code",
      +      "label"
      +    ],
      +    "type": "object"
      +  },
      +  {
      +    "properties": {
      +      "code": {
      +        "description": "Field code",
      +        "type": "string"
      +      },
      +      "enabled": {
      +        "description": "Enable/disable setting",
      +        "type": "boolean"
      +      },
      +      "label": {
      +        "description": "Field label",
      +        "type": "string"
      +      },
      +      "type": {
      +        "const": "STATUS_ASSIGNEE",
      +        "type": "string"
      +      }
      +    },
      +    "required": [
      +      "type",
      +      "code",
      +      "label"
      +    ],
      +    "type": "object"
      +  },
      +  {
      +    "properties": {
      +      "code": {
      +        "description": "Field code",
      +        "type": "string"
      +      },
      +      "label": {
      +        "description": "Field label",
      +        "type": "string"
      +      },
      +      "lookup": {
      +        "description": "Lookup configuration",
      +        "properties": {
      +          "fieldMappings": {
      +            "description": "Configuration of field copy source and destination",
      +            "items": {
      +              "properties": {
      +                "field": {
      +                  "description": "Field code in this app",
      +                  "type": "string"
      +                },
      +                "relatedField": {
      +                  "description": "Field code in the referenced app",
      +                  "type": "string"
      +                }
      +              },
      +              "required": [
      +                "field",
      +                "relatedField"
      +              ],
      +              "type": "object"
      +            },
      +            "type": "array"
      +          },
      +          "filterCond": {
      +            "description": "Query for filtering records in the referenced app",
      +            "type": "string"
      +          },
      +          "lookupPickerFields": {
      +            "description": "Array of field codes to display in the lookup picker of the referenced app",
      +            "items": {
      +              "type": "string"
      +            },
      +            "type": "array"
      +          },
      +          "relatedApp": {
      +            "description": "Referenced app configuration",
      +            "properties": {
      +              "app": {
      +                "description": "App ID of the referenced app",
      +                "type": "string"
      +              },
      +              "code": {
      +                "description": "Field code in the referenced app",
      +                "type": "string"
      +              }
      +            },
      +            "required": [
      +              "app",
      +              "code"
      +            ],
      +            "type": "object"
      +          },
      +          "relatedKeyField": {
      +            "description": "Field code of the key field in the referenced app",
      +            "type": "string"
      +          },
      +          "sort": {
      +            "description": "Sort condition",
      +            "type": "string"
      +          }
      +        },
      +        "required": [
      +          "relatedApp",
      +          "relatedKeyField",
      +          "fieldMappings",
      +          "lookupPickerFields",
      +          "filterCond",
      +          "sort"
      +        ],
      +        "type": "object"
      +      },
      +      "noLabel": {
      +        "description": "Whether to hide the label (true: hide, false: show)",
      +        "type": "boolean"
      +      },
      +      "required": {
      +        "description": "Whether the field is required (true: required, false: optional)",
      +        "type": "boolean"
      +      },
      +      "type": {
      +        "description": "Type of lookup field",
      +        "enum": [
      +          "NUMBER",
      +          "SINGLE_LINE_TEXT"
      +        ],
      +        "type": "string"
      +      }
      +    },
      +    "required": [
      +      "type",
      +      "code",
      +      "label",
      +      "lookup"
      +    ],
      +    "type": "object"
      +  },
      +  {
      +    "properties": {
      +      "code": {
      +        "description": "Field code",
      +        "type": "string"
      +      },
      +      "defaultValue": {
      +        "description": "Default value",
      +        "type": "string"
      +      },
      +      "expression": {
      +        "description": "Auto-calculation formula",
      +        "type": "string"
      +      },
      +      "hideExpression": {
      +        "description": "Whether to hide the formula (true: hide, false: show)",
      +        "type": "boolean"
      +      },
      +      "label": {
      +        "description": "Field label",
      +        "type": "string"
      +      },
      +      "maxLength": {
      +        "description": "Maximum character length",
      +        "type": "string"
      +      },
      +      "minLength": {
      +        "description": "Minimum character length",
      +        "type": "string"
      +      },
      +      "noLabel": {
      +        "description": "Whether to hide the label (true: hide, false: show)",
      +        "type": "boolean"
      +      },
      +      "required": {
      +        "description": "Whether the field is required (true: required, false: optional)",
      +        "type": "boolean"
      +      },
      +      "type": {
      +        "const": "SINGLE_LINE_TEXT",
      +        "type": "string"
      +      },
      +      "unique": {
      +        "description": "Whether to prohibit duplicate values (true: prohibit, false: allow)",
      +        "type": "boolean"
      +      }
      +    },
      +    "required": [
      +      "type",
      +      "code",
      +      "label"
      +    ],
      +    "type": "object"
      +  },
      +  {
      +    "properties": {
      +      "code": {
      +        "description": "Field code",
      +        "type": "string"
      +      },
      +      "defaultValue": {
      +        "description": "Default value",
      +        "type": "string"
      +      },
      +      "digit": {
      +        "description": "Whether to display digit separators (true: show, false: hide)",
      +        "type": "boolean"
      +      },
      +      "displayScale": {
      +        "description": "Number of decimal places to display",
      +        "type": "string"
      +      },
      +      "label": {
      +        "description": "Field label",
      +        "type": "string"
      +      },
      +      "maxValue": {
      +        "description": "Maximum value",
      +        "type": "string"
      +      },
      +      "minValue": {
      +        "description": "Minimum value",
      +        "type": "string"
      +      },
      +      "noLabel": {
      +        "description": "Whether to hide the label (true: hide, false: show)",
      +        "type": "boolean"
      +      },
      +      "required": {
      +        "description": "Whether the field is required (true: required, false: optional)",
      +        "type": "boolean"
      +      },
      +      "type": {
      +        "const": "NUMBER",
      +        "type": "string"
      +      },
      +      "unique": {
      +        "description": "Whether to prohibit duplicate values (true: prohibit, false: allow)",
      +        "type": "boolean"
      +      },
      +      "unit": {
      +        "description": "Unit symbol",
      +        "type": "string"
      +      },
      +      "unitPosition": {
      +        "description": "Position of unit (BEFORE: before field, AFTER: after field)",
      +        "enum": [
      +          "BEFORE",
      +          "AFTER"
      +        ],
      +        "type": "string"
      +      }
      +    },
      +    "required": [
      +      "type",
      +      "code",
      +      "label"
      +    ],
      +    "type": "object"
      +  },
      +  {
      +    "properties": {
      +      "code": {
      +        "description": "Field code",
      +        "type": "string"
      +      },
      +      "displayScale": {
      +        "description": "Number of decimal places to display",
      +        "type": "string"
      +      },
      +      "expression": {
      +        "description": "Auto-calculation formula",
      +        "type": "string"
      +      },
      +      "format": {
      +        "description": "Display format of calculation result",
      +        "enum": [
      +          "NUMBER",
      +          "NUMBER_DIGIT",
      +          "DATETIME",
      +          "DATE",
      +          "TIME",
      +          "HOUR_MINUTE",
      +          "DAY_HOUR_MINUTE"
      +        ],
      +        "type": "string"
      +      },
      +      "hideExpression": {
      +        "description": "Whether to hide the formula (true: hide, false: show)",
      +        "type": "boolean"
      +      },
      +      "label": {
      +        "description": "Field label",
      +        "type": "string"
      +      },
      +      "noLabel": {
      +        "description": "Whether to hide the label (true: hide, false: show)",
      +        "type": "boolean"
      +      },
      +      "required": {
      +        "description": "Whether the field is required (true: required, false: optional)",
      +        "type": "boolean"
      +      },
      +      "type": {
      +        "const": "CALC",
      +        "type": "string"
      +      },
      +      "unit": {
      +        "description": "Unit symbol",
      +        "type": "string"
      +      },
      +      "unitPosition": {
      +        "description": "Position of unit (BEFORE: before field, AFTER: after field)",
      +        "enum": [
      +          "BEFORE",
      +          "AFTER"
      +        ],
      +        "type": "string"
      +      }
      +    },
      +    "required": [
      +      "type",
      +      "code",
      +      "label"
      +    ],
      +    "type": "object"
      +  },
      +  {
      +    "properties": {
      +      "code": {
      +        "description": "Field code",
      +        "type": "string"
      +      },
      +      "defaultValue": {
      +        "description": "Default value",
      +        "type": "string"
      +      },
      +      "label": {
      +        "description": "Field label",
      +        "type": "string"
      +      },
      +      "noLabel": {
      +        "description": "Whether to hide the label (true: hide, false: show)",
      +        "type": "boolean"
      +      },
      +      "required": {
      +        "description": "Whether the field is required (true: required, false: optional)",
      +        "type": "boolean"
      +      },
      +      "type": {
      +        "const": "MULTI_LINE_TEXT",
      +        "type": "string"
      +      }
      +    },
      +    "required": [
      +      "type",
      +      "code",
      +      "label"
      +    ],
      +    "type": "object"
      +  },
      +  {
      +    "properties": {
      +      "code": {
      +        "description": "Field code",
      +        "type": "string"
      +      },
      +      "defaultValue": {
      +        "description": "Default value",
      +        "type": "string"
      +      },
      +      "label": {
      +        "description": "Field label",
      +        "type": "string"
      +      },
      +      "noLabel": {
      +        "description": "Whether to hide the label (true: hide, false: show)",
      +        "type": "boolean"
      +      },
      +      "required": {
      +        "description": "Whether the field is required (true: required, false: optional)",
      +        "type": "boolean"
      +      },
      +      "type": {
      +        "const": "RICH_TEXT",
      +        "type": "string"
      +      }
      +    },
      +    "required": [
      +      "type",
      +      "code",
      +      "label"
      +    ],
      +    "type": "object"
      +  },
      +  {
      +    "properties": {
      +      "code": {
      +        "description": "Field code",
      +        "type": "string"
      +      },
      +      "defaultValue": {
      +        "description": "Default value",
      +        "type": "string"
      +      },
      +      "label": {
      +        "description": "Field label",
      +        "type": "string"
      +      },
      +      "maxLength": {
      +        "description": "Maximum character length",
      +        "type": "string"
      +      },
      +      "minLength": {
      +        "description": "Minimum character length",
      +        "type": "string"
      +      },
      +      "noLabel": {
      +        "description": "Whether to hide the label (true: hide, false: show)",
      +        "type": "boolean"
      +      },
      +      "protocol": {
      +        "description": "Link protocol (WEB: http/https, CALL: tel, MAIL: mailto)",
      +        "enum": [
      +          "WEB",
      +          "CALL",
      +          "MAIL"
      +        ],
      +        "type": "string"
      +      },
      +      "required": {
      +        "description": "Whether the field is required (true: required, false: optional)",
      +        "type": "boolean"
      +      },
      +      "type": {
      +        "const": "LINK",
      +        "type": "string"
      +      },
      +      "unique": {
      +        "description": "Whether to prohibit duplicate values (true: prohibit, false: allow)",
      +        "type": "boolean"
      +      }
      +    },
      +    "required": [
      +      "type",
      +      "code",
      +      "label"
      +    ],
      +    "type": "object"
      +  },
      +  {
      +    "properties": {
      +      "align": {
      +        "description": "Alignment of options (HORIZONTAL: horizontal, VERTICAL: vertical)",
      +        "enum": [
      +          "HORIZONTAL",
      +          "VERTICAL"
      +        ],
      +        "type": "string"
      +      },
      +      "code": {
      +        "description": "Field code",
      +        "type": "string"
      +      },
      +      "defaultValue": {
      +        "description": "Array of default values",
      +        "items": {
      +          "type": "string"
      +        },
      +        "type": "array"
      +      },
      +      "label": {
      +        "description": "Field label",
      +        "type": "string"
      +      },
      +      "noLabel": {
      +        "description": "Whether to hide the label (true: hide, false: show)",
      +        "type": "boolean"
      +      },
      +      "options": {
      +        "additionalProperties": {
      +          "properties": {
      +            "index": {
      +              "description": "Display order of the option",
      +              "type": "string"
      +            },
      +            "label": {
      +              "description": "Display name of the option",
      +              "type": "string"
      +            }
      +          },
      +          "required": [
      +            "label",
      +            "index"
      +          ],
      +          "type": "object"
      +        },
      +        "description": "Options configuration",
      +        "propertyNames": {
      +          "type": "string"
      +        },
      +        "type": "object"
      +      },
      +      "required": {
      +        "description": "Whether the field is required (true: required, false: optional)",
      +        "type": "boolean"
      +      },
      +      "type": {
      +        "const": "CHECK_BOX",
      +        "type": "string"
      +      }
      +    },
      +    "required": [
      +      "type",
      +      "code",
      +      "label"
      +    ],
      +    "type": "object"
      +  },
      +  {
      +    "properties": {
      +      "align": {
      +        "description": "Alignment of options (HORIZONTAL: horizontal, VERTICAL: vertical)",
      +        "enum": [
      +          "HORIZONTAL",
      +          "VERTICAL"
      +        ],
      +        "type": "string"
      +      },
      +      "code": {
      +        "description": "Field code",
      +        "type": "string"
      +      },
      +      "defaultValue": {
      +        "description": "Default value",
      +        "type": "string"
      +      },
      +      "label": {
      +        "description": "Field label",
      +        "type": "string"
      +      },
      +      "noLabel": {
      +        "description": "Whether to hide the label (true: hide, false: show)",
      +        "type": "boolean"
      +      },
      +      "options": {
      +        "additionalProperties": {
      +          "properties": {
      +            "index": {
      +              "description": "Display order of the option",
      +              "type": "string"
      +            },
      +            "label": {
      +              "description": "Display name of the option",
      +              "type": "string"
      +            }
      +          },
      +          "required": [
      +            "label",
      +            "index"
      +          ],
      +          "type": "object"
      +        },
      +        "description": "Options configuration",
      +        "propertyNames": {
      +          "type": "string"
      +        },
      +        "type": "object"
      +      },
      +      "required": {
      +        "description": "Whether the field is required (true: required, false: optional)",
      +        "type": "boolean"
      +      },
      +      "type": {
      +        "const": "RADIO_BUTTON",
      +        "type": "string"
      +      }
      +    },
      +    "required": [
      +      "type",
      +      "code",
      +      "label"
      +    ],
      +    "type": "object"
      +  },
      +  {
      +    "properties": {
      +      "code": {
      +        "description": "Field code",
      +        "type": "string"
      +      },
      +      "defaultValue": {
      +        "description": "Default value",
      +        "type": "string"
      +      },
      +      "label": {
      +        "description": "Field label",
      +        "type": "string"
      +      },
      +      "noLabel": {
      +        "description": "Whether to hide the label (true: hide, false: show)",
      +        "type": "boolean"
      +      },
      +      "options": {
      +        "additionalProperties": {
      +          "properties": {
      +            "index": {
      +              "description": "Display order of the option",
      +              "type": "string"
      +            },
      +            "label": {
      +              "description": "Display name of the option",
      +              "type": "string"
      +            }
      +          },
      +          "required": [
      +            "label",
      +            "index"
      +          ],
      +          "type": "object"
      +        },
      +        "description": "Options configuration",
      +        "propertyNames": {
      +          "type": "string"
      +        },
      +        "type": "object"
      +      },
      +      "required": {
      +        "description": "Whether the field is required (true: required, false: optional)",
      +        "type": "boolean"
      +      },
      +      "type": {
      +        "const": "DROP_DOWN",
      +        "type": "string"
      +      }
      +    },
      +    "required": [
      +      "type",
      +      "code",
      +      "label"
      +    ],
      +    "type": "object"
      +  },
      +  {
      +    "properties": {
      +      "code": {
      +        "description": "Field code",
      +        "type": "string"
      +      },
      +      "defaultValue": {
      +        "description": "Array of default values",
      +        "items": {
      +          "type": "string"
      +        },
      +        "type": "array"
      +      },
      +      "label": {
      +        "description": "Field label",
      +        "type": "string"
      +      },
      +      "noLabel": {
      +        "description": "Whether to hide the label (true: hide, false: show)",
      +        "type": "boolean"
      +      },
      +      "options": {
      +        "additionalProperties": {
      +          "properties": {
      +            "index": {
      +              "description": "Display order of the option",
      +              "type": "string"
      +            },
      +            "label": {
      +              "description": "Display name of the option",
      +              "type": "string"
      +            }
      +          },
      +          "required": [
      +            "label",
      +            "index"
      +          ],
      +          "type": "object"
      +        },
      +        "description": "Options configuration",
      +        "propertyNames": {
      +          "type": "string"
      +        },
      +        "type": "object"
      +      },
      +      "required": {
      +        "description": "Whether the field is required (true: required, false: optional)",
      +        "type": "boolean"
      +      },
      +      "type": {
      +        "const": "MULTI_SELECT",
      +        "type": "string"
      +      }
      +    },
      +    "required": [
      +      "type",
      +      "code",
      +      "label"
      +    ],
      +    "type": "object"
      +  },
      +  {
      +    "properties": {
      +      "code": {
      +        "description": "Field code",
      +        "type": "string"
      +      },
      +      "label": {
      +        "description": "Field label",
      +        "type": "string"
      +      },
      +      "noLabel": {
      +        "description": "Whether to hide the label (true: hide, false: show)",
      +        "type": "boolean"
      +      },
      +      "required": {
      +        "description": "Whether the field is required (true: required, false: optional)",
      +        "type": "boolean"
      +      },
      +      "thumbnailSize": {
      +        "description": "Thumbnail size (pixels)",
      +        "enum": [
      +          "50",
      +          "150",
      +          "250",
      +          "500"
      +        ],
      +        "type": "string"
      +      },
      +      "type": {
      +        "const": "FILE",
      +        "type": "string"
      +      }
      +    },
      +    "required": [
      +      "type",
      +      "code",
      +      "label"
      +    ],
      +    "type": "object"
      +  },
      +  {
      +    "properties": {
      +      "code": {
      +        "description": "Field code",
      +        "type": "string"
      +      },
      +      "defaultNowValue": {
      +        "description": "Whether to automatically set the current date (true: auto-set, false: manual)",
      +        "type": "boolean"
      +      },
      +      "defaultValue": {
      +        "description": "Default value (YYYY-MM-DD format)",
      +        "type": "string"
      +      },
      +      "label": {
      +        "description": "Field label",
      +        "type": "string"
      +      },
      +      "noLabel": {
      +        "description": "Whether to hide the label (true: hide, false: show)",
      +        "type": "boolean"
      +      },
      +      "required": {
      +        "description": "Whether the field is required (true: required, false: optional)",
      +        "type": "boolean"
      +      },
      +      "type": {
      +        "const": "DATE",
      +        "type": "string"
      +      },
      +      "unique": {
      +        "description": "Whether to prohibit duplicate values (true: prohibit, false: allow)",
      +        "type": "boolean"
      +      }
      +    },
      +    "required": [
      +      "type",
      +      "code",
      +      "label"
      +    ],
      +    "type": "object"
      +  },
      +  {
      +    "properties": {
      +      "code": {
      +        "description": "Field code",
      +        "type": "string"
      +      },
      +      "defaultNowValue": {
      +        "description": "Whether to automatically set the current time (true: auto-set, false: manual)",
      +        "type": "boolean"
      +      },
      +      "defaultValue": {
      +        "description": "Default value (HH:MM format)",
      +        "type": "string"
      +      },
      +      "label": {
      +        "description": "Field label",
      +        "type": "string"
      +      },
      +      "noLabel": {
      +        "description": "Whether to hide the label (true: hide, false: show)",
      +        "type": "boolean"
      +      },
      +      "required": {
      +        "description": "Whether the field is required (true: required, false: optional)",
      +        "type": "boolean"
      +      },
      +      "type": {
      +        "const": "TIME",
      +        "type": "string"
      +      }
      +    },
      +    "required": [
      +      "type",
      +      "code",
      +      "label"
      +    ],
      +    "type": "object"
      +  },
      +  {
      +    "properties": {
      +      "code": {
      +        "description": "Field code",
      +        "type": "string"
      +      },
      +      "defaultNowValue": {
      +        "description": "Whether to automatically set the current datetime (true: auto-set, false: manual)",
      +        "type": "boolean"
      +      },
      +      "defaultValue": {
      +        "description": "Default value (YYYY-MM-DDTHH:MM:SSZ format)",
      +        "type": "string"
      +      },
      +      "label": {
      +        "description": "Field label",
      +        "type": "string"
      +      },
      +      "noLabel": {
      +        "description": "Whether to hide the label (true: hide, false: show)",
      +        "type": "boolean"
      +      },
      +      "required": {
      +        "description": "Whether the field is required (true: required, false: optional)",
      +        "type": "boolean"
      +      },
      +      "type": {
      +        "const": "DATETIME",
      +        "type": "string"
      +      },
      +      "unique": {
      +        "description": "Whether to prohibit duplicate values (true: prohibit, false: allow)",
      +        "type": "boolean"
      +      }
      +    },
      +    "required": [
      +      "type",
      +      "code",
      +      "label"
      +    ],
      +    "type": "object"
      +  },
      +  {
      +    "properties": {
      +      "code": {
      +        "description": "Field code",
      +        "type": "string"
      +      },
      +      "defaultValue": {
      +        "description": "Array of default users/groups/organizations, or LOGINUSER() function",
      +        "items": {
      +          "anyOf": [
      +            {
      +              "properties": {
      +                "code": {
      +                  "description": "Code of user/group/organization",
      +                  "type": "string"
      +                },
      +                "type": {
      +                  "description": "Type of entity",
      +                  "enum": [
      +                    "USER",
      +                    "GROUP",
      +                    "ORGANIZATION"
      +                  ],
      +                  "type": "string"
      +                }
      +              },
      +              "required": [
      +                "code",
      +                "type"
      +              ],
      +              "type": "object"
      +            },
      +            {
      +              "properties": {
      +                "code": {
      +                  "const": "LOGINUSER()",
      +                  "description": "Function representing the logged-in user",
      +                  "type": "string"
      +                },
      +                "type": {
      +                  "const": "FUNCTION",
      +                  "description": "Function type",
      +                  "type": "string"
      +                }
      +              },
      +              "required": [
      +                "code",
      +                "type"
      +              ],
      +              "type": "object"
      +            }
      +          ],
      +          "type": "object"
      +        },
      +        "type": "array"
      +      },
      +      "entities": {
      +        "description": "List of selectable users/groups/organizations",
      +        "items": {
      +          "properties": {
      +            "code": {
      +              "description": "Code of user/group/organization",
      +              "type": "string"
      +            },
      +            "type": {
      +              "description": "Type of entity",
      +              "enum": [
      +                "USER",
      +                "GROUP",
      +                "ORGANIZATION"
      +              ],
      +              "type": "string"
      +            }
      +          },
      +          "required": [
      +            "code",
      +            "type"
      +          ],
      +          "type": "object"
      +        },
      +        "type": "array"
      +      },
      +      "label": {
      +        "description": "Field label",
      +        "type": "string"
      +      },
      +      "noLabel": {
      +        "description": "Whether to hide the label (true: hide, false: show)",
      +        "type": "boolean"
      +      },
      +      "required": {
      +        "description": "Whether the field is required (true: required, false: optional)",
      +        "type": "boolean"
      +      },
      +      "type": {
      +        "const": "USER_SELECT",
      +        "type": "string"
      +      }
      +    },
      +    "required": [
      +      "type",
      +      "code",
      +      "label"
      +    ],
      +    "type": "object"
      +  },
      +  {
      +    "properties": {
      +      "code": {
      +        "description": "Field code",
      +        "type": "string"
      +      },
      +      "defaultValue": {
      +        "description": "Array of default organizations, or PRIMARY_ORGANIZATION() function",
      +        "items": {
      +          "anyOf": [
      +            {
      +              "properties": {
      +                "code": {
      +                  "description": "Organization code",
      +                  "type": "string"
      +                },
      +                "type": {
      +                  "const": "ORGANIZATION",
      +                  "description": "Organization type",
      +                  "type": "string"
      +                }
      +              },
      +              "required": [
      +                "code",
      +                "type"
      +              ],
      +              "type": "object"
      +            },
      +            {
      +              "properties": {
      +                "code": {
      +                  "const": "PRIMARY_ORGANIZATION()",
      +                  "description": "Function representing the primary organization of the logged-in user",
      +                  "type": "string"
      +                },
      +                "type": {
      +                  "const": "FUNCTION",
      +                  "description": "Function type",
      +                  "type": "string"
      +                }
      +              },
      +              "required": [
      +                "code",
      +                "type"
      +              ],
      +              "type": "object"
      +            }
      +          ],
      +          "type": "object"
      +        },
      +        "type": "array"
      +      },
      +      "entities": {
      +        "description": "List of selectable organizations",
      +        "items": {
      +          "properties": {
      +            "code": {
      +              "description": "Organization code",
      +              "type": "string"
      +            },
      +            "type": {
      +              "const": "ORGANIZATION",
      +              "description": "Organization type",
      +              "type": "string"
      +            }
      +          },
      +          "required": [
      +            "code",
      +            "type"
      +          ],
      +          "type": "object"
      +        },
      +        "type": "array"
      +      },
      +      "label": {
      +        "description": "Field label",
      +        "type": "string"
      +      },
      +      "noLabel": {
      +        "description": "Whether to hide the label (true: hide, false: show)",
      +        "type": "boolean"
      +      },
      +      "required": {
      +        "description": "Whether the field is required (true: required, false: optional)",
      +        "type": "boolean"
      +      },
      +      "type": {
      +        "const": "ORGANIZATION_SELECT",
      +        "type": "string"
      +      }
      +    },
      +    "required": [
      +      "type",
      +      "code",
      +      "label"
      +    ],
      +    "type": "object"
      +  },
      +  {
      +    "properties": {
      +      "code": {
      +        "description": "Field code",
      +        "type": "string"
      +      },
      +      "defaultValue": {
      +        "description": "Array of default groups",
      +        "items": {
      +          "properties": {
      +            "code": {
      +              "description": "Group code",
      +              "type": "string"
      +            },
      +            "type": {
      +              "const": "GROUP",
      +              "description": "Group type",
      +              "type": "string"
      +            }
      +          },
      +          "required": [
      +            "code",
      +            "type"
      +          ],
      +          "type": "object"
      +        },
      +        "type": "array"
      +      },
      +      "entities": {
      +        "description": "List of selectable groups",
      +        "items": {
      +          "properties": {
      +            "code": {
      +              "description": "Group code",
      +              "type": "string"
      +            },
      +            "type": {
      +              "const": "GROUP",
      +              "description": "Group type",
      +              "type": "string"
      +            }
      +          },
      +          "required": [
      +            "code",
      +            "type"
      +          ],
      +          "type": "object"
      +        },
      +        "type": "array"
      +      },
      +      "label": {
      +        "description": "Field label",
      +        "type": "string"
      +      },
      +      "noLabel": {
      +        "description": "Whether to hide the label (true: hide, false: show)",
      +        "type": "boolean"
      +      },
      +      "required": {
      +        "description": "Whether the field is required (true: required, false: optional)",
      +        "type": "boolean"
      +      },
      +      "type": {
      +        "const": "GROUP_SELECT",
      +        "type": "string"
      +      }
      +    },
      +    "required": [
      +      "type",
      +      "code",
      +      "label"
      +    ],
      +    "type": "object"
      +  },
      +  {
      +    "properties": {
      +      "code": {
      +        "description": "Field code",
      +        "type": "string"
      +      },
      +      "label": {
      +        "description": "Field label",
      +        "type": "string"
      +      },
      +      "noLabel": {
      +        "description": "Whether to hide the label (true: hide, false: show)",
      +        "type": "boolean"
      +      },
      +      "openGroup": {
      +        "description": "Whether to display the group in an open state (true: open, false: closed)",
      +        "type": "boolean"
      +      },
      +      "type": {
      +        "const": "GROUP",
      +        "type": "string"
      +      }
      +    },
      +    "required": [
      +      "type",
      +      "code",
      +      "label"
      +    ],
      +    "type": "object"
      +  },
      +  {
      +    "properties": {
      +      "code": {
      +        "description": "Field code",
      +        "type": "string"
      +      },
      +      "label": {
      +        "description": "Field label",
      +        "type": "string"
      +      },
      +      "noLabel": {
      +        "description": "Whether to hide the label (true: hide, false: show)",
      +        "type": "boolean"
      +      },
      +      "referenceTable": {
      +        "description": "Related records list configuration",
      +        "properties": {
      +          "condition": {
      +            "description": "Condition for filtering related records",
      +            "properties": {
      +              "field": {
      +                "description": "Field code in this app",
      +                "type": "string"
      +              },
      +              "relatedField": {
      +                "description": "Field code in the related app",
      +                "type": "string"
      +              }
      +            },
      +            "required": [
      +              "field",
      +              "relatedField"
      +            ],
      +            "type": "object"
      +          },
      +          "displayFields": {
      +            "description": "Array of field codes to display",
      +            "items": {
      +              "type": "string"
      +            },
      +            "type": "array"
      +          },
      +          "filterCond": {
      +            "description": "Query for filtering related records",
      +            "type": "string"
      +          },
      +          "relatedApp": {
      +            "properties": {
      +              "app": {
      +                "description": "App ID of the related app",
      +                "type": "string"
      +              },
      +              "code": {
      +                "description": "Field code of the related records list field in this app",
      +                "type": "string"
      +              }
      +            },
      +            "required": [
      +              "app",
      +              "code"
      +            ],
      +            "type": "object"
      +          },
      +          "size": {
      +            "description": "Number of records to display",
      +            "enum": [
      +              "1",
      +              "3",
      +              "5",
      +              "10",
      +              "20",
      +              "30",
      +              "40",
      +              "50"
      +            ],
      +            "type": "string"
      +          },
      +          "sort": {
      +            "description": "Sort condition",
      +            "type": "string"
      +          }
      +        },
      +        "required": [
      +          "relatedApp",
      +          "condition",
      +          "filterCond",
      +          "displayFields",
      +          "sort",
      +          "size"
      +        ],
      +        "type": "object"
      +      },
      +      "type": {
      +        "const": "REFERENCE_TABLE",
      +        "type": "string"
      +      }
      +    },
      +    "required": [
      +      "type",
      +      "code",
      +      "label"
      +    ],
      +    "type": "object"
      +  },
      +  {
      +    "properties": {
      +      "code": {
      +        "description": "Field code",
      +        "type": "string"
      +      },
      +      "fields": {
      +        "additionalProperties": {
      +          "anyOf": [
      +            {
      +              "properties": {
      +                "code": {
      +                  "description": "Field code",
      +                  "type": "string"
      +                },
      +                "label": {
      +                  "description": "Field label",
      +                  "type": "string"
      +                },
      +                "lookup": {
      +                  "description": "Lookup configuration",
      +                  "properties": {
      +                    "fieldMappings": {
      +                      "description": "Configuration of field copy source and destination",
      +                      "items": {
      +                        "properties": {
      +                          "field": {
      +                            "description": "Field code in this app",
      +                            "type": "string"
      +                          },
      +                          "relatedField": {
      +                            "description": "Field code in the referenced app",
      +                            "type": "string"
      +                          }
      +                        },
      +                        "required": [
      +                          "field",
      +                          "relatedField"
      +                        ],
      +                        "type": "object"
      +                      },
      +                      "type": "array"
      +                    },
      +                    "filterCond": {
      +                      "description": "Query for filtering records in the referenced app",
      +                      "type": "string"
      +                    },
      +                    "lookupPickerFields": {
      +                      "description": "Array of field codes to display in the lookup picker of the referenced app",
      +                      "items": {
      +                        "type": "string"
      +                      },
      +                      "type": "array"
      +                    },
      +                    "relatedApp": {
      +                      "description": "Referenced app configuration",
      +                      "properties": {
      +                        "app": {
      +                          "description": "App ID of the referenced app",
      +                          "type": "string"
      +                        },
      +                        "code": {
      +                          "description": "Field code in the referenced app",
      +                          "type": "string"
      +                        }
      +                      },
      +                      "required": [
      +                        "app",
      +                        "code"
      +                      ],
      +                      "type": "object"
      +                    },
      +                    "relatedKeyField": {
      +                      "description": "Field code of the key field in the referenced app",
      +                      "type": "string"
      +                    },
      +                    "sort": {
      +                      "description": "Sort condition",
      +                      "type": "string"
      +                    }
      +                  },
      +                  "required": [
      +                    "relatedApp",
      +                    "relatedKeyField",
      +                    "fieldMappings",
      +                    "lookupPickerFields",
      +                    "filterCond",
      +                    "sort"
      +                  ],
      +                  "type": "object"
      +                },
      +                "noLabel": {
      +                  "description": "Whether to hide the label (true: hide, false: show)",
      +                  "type": "boolean"
      +                },
      +                "required": {
      +                  "description": "Whether the field is required (true: required, false: optional)",
      +                  "type": "boolean"
      +                },
      +                "type": {
      +                  "description": "Type of lookup field",
      +                  "enum": [
      +                    "NUMBER",
      +                    "SINGLE_LINE_TEXT"
      +                  ],
      +                  "type": "string"
      +                }
      +              },
      +              "required": [
      +                "type",
      +                "code",
      +                "label",
      +                "lookup"
      +              ],
      +              "type": "object"
      +            },
      +            {
      +              "properties": {
      +                "code": {
      +                  "description": "Field code",
      +                  "type": "string"
      +                },
      +                "defaultValue": {
      +                  "description": "Default value",
      +                  "type": "string"
      +                },
      +                "expression": {
      +                  "description": "Auto-calculation formula",
      +                  "type": "string"
      +                },
      +                "hideExpression": {
      +                  "description": "Whether to hide the formula (true: hide, false: show)",
      +                  "type": "boolean"
      +                },
      +                "label": {
      +                  "description": "Field label",
      +                  "type": "string"
      +                },
      +                "maxLength": {
      +                  "description": "Maximum character length",
      +                  "type": "string"
      +                },
      +                "minLength": {
      +                  "description": "Minimum character length",
      +                  "type": "string"
      +                },
      +                "noLabel": {
      +                  "description": "Whether to hide the label (true: hide, false: show)",
      +                  "type": "boolean"
      +                },
      +                "required": {
      +                  "description": "Whether the field is required (true: required, false: optional)",
      +                  "type": "boolean"
      +                },
      +                "type": {
      +                  "const": "SINGLE_LINE_TEXT",
      +                  "type": "string"
      +                },
      +                "unique": {
      +                  "description": "Whether to prohibit duplicate values (true: prohibit, false: allow)",
      +                  "type": "boolean"
      +                }
      +              },
      +              "required": [
      +                "type",
      +                "code",
      +                "label"
      +              ],
      +              "type": "object"
      +            },
      +            {
      +              "properties": {
      +                "code": {
      +                  "description": "Field code",
      +                  "type": "string"
      +                },
      +                "defaultValue": {
      +                  "description": "Default value",
      +                  "type": "string"
      +                },
      +                "digit": {
      +                  "description": "Whether to display digit separators (true: show, false: hide)",
      +                  "type": "boolean"
      +                },
      +                "displayScale": {
      +                  "description": "Number of decimal places to display",
      +                  "type": "string"
      +                },
      +                "label": {
      +                  "description": "Field label",
      +                  "type": "string"
      +                },
      +                "maxValue": {
      +                  "description": "Maximum value",
      +                  "type": "string"
      +                },
      +                "minValue": {
      +                  "description": "Minimum value",
      +                  "type": "string"
      +                },
      +                "noLabel": {
      +                  "description": "Whether to hide the label (true: hide, false: show)",
      +                  "type": "boolean"
      +                },
      +                "required": {
      +                  "description": "Whether the field is required (true: required, false: optional)",
      +                  "type": "boolean"
      +                },
      +                "type": {
      +                  "const": "NUMBER",
      +                  "type": "string"
      +                },
      +                "unique": {
      +                  "description": "Whether to prohibit duplicate values (true: prohibit, false: allow)",
      +                  "type": "boolean"
      +                },
      +                "unit": {
      +                  "description": "Unit symbol",
      +                  "type": "string"
      +                },
      +                "unitPosition": {
      +                  "description": "Position of unit (BEFORE: before field, AFTER: after field)",
      +                  "enum": [
      +                    "BEFORE",
      +                    "AFTER"
      +                  ],
      +                  "type": "string"
      +                }
      +              },
      +              "required": [
      +                "type",
      +                "code",
      +                "label"
      +              ],
      +              "type": "object"
      +            },
      +            {
      +              "properties": {
      +                "code": {
      +                  "description": "Field code",
      +                  "type": "string"
      +                },
      +                "displayScale": {
      +                  "description": "Number of decimal places to display",
      +                  "type": "string"
      +                },
      +                "expression": {
      +                  "description": "Auto-calculation formula",
      +                  "type": "string"
      +                },
      +                "format": {
      +                  "description": "Display format of calculation result",
      +                  "enum": [
      +                    "NUMBER",
      +                    "NUMBER_DIGIT",
      +                    "DATETIME",
      +                    "DATE",
      +                    "TIME",
      +                    "HOUR_MINUTE",
      +                    "DAY_HOUR_MINUTE"
      +                  ],
      +                  "type": "string"
      +                },
      +                "hideExpression": {
      +                  "description": "Whether to hide the formula (true: hide, false: show)",
      +                  "type": "boolean"
      +                },
      +                "label": {
      +                  "description": "Field label",
      +                  "type": "string"
      +                },
      +                "noLabel": {
      +                  "description": "Whether to hide the label (true: hide, false: show)",
      +                  "type": "boolean"
      +                },
      +                "required": {
      +                  "description": "Whether the field is required (true: required, false: optional)",
      +                  "type": "boolean"
      +                },
      +                "type": {
      +                  "const": "CALC",
      +                  "type": "string"
      +                },
      +                "unit": {
      +                  "description": "Unit symbol",
      +                  "type": "string"
      +                },
      +                "unitPosition": {
      +                  "description": "Position of unit (BEFORE: before field, AFTER: after field)",
      +                  "enum": [
      +                    "BEFORE",
      +                    "AFTER"
      +                  ],
      +                  "type": "string"
      +                }
      +              },
      +              "required": [
      +                "type",
      +                "code",
      +                "label"
      +              ],
      +              "type": "object"
      +            },
      +            {
      +              "properties": {
      +                "code": {
      +                  "description": "Field code",
      +                  "type": "string"
      +                },
      +                "defaultValue": {
      +                  "description": "Default value",
      +                  "type": "string"
      +                },
      +                "label": {
      +                  "description": "Field label",
      +                  "type": "string"
      +                },
      +                "noLabel": {
      +                  "description": "Whether to hide the label (true: hide, false: show)",
      +                  "type": "boolean"
      +                },
      +                "required": {
      +                  "description": "Whether the field is required (true: required, false: optional)",
      +                  "type": "boolean"
      +                },
      +                "type": {
      +                  "const": "MULTI_LINE_TEXT",
      +                  "type": "string"
      +                }
      +              },
      +              "required": [
      +                "type",
      +                "code",
      +                "label"
      +              ],
      +              "type": "object"
      +            },
      +            {
      +              "properties": {
      +                "code": {
      +                  "description": "Field code",
      +                  "type": "string"
      +                },
      +                "defaultValue": {
      +                  "description": "Default value",
      +                  "type": "string"
      +                },
      +                "label": {
      +                  "description": "Field label",
      +                  "type": "string"
      +                },
      +                "noLabel": {
      +                  "description": "Whether to hide the label (true: hide, false: show)",
      +                  "type": "boolean"
      +                },
      +                "required": {
      +                  "description": "Whether the field is required (true: required, false: optional)",
      +                  "type": "boolean"
      +                },
      +                "type": {
      +                  "const": "RICH_TEXT",
      +                  "type": "string"
      +                }
      +              },
      +              "required": [
      +                "type",
      +                "code",
      +                "label"
      +              ],
      +              "type": "object"
      +            },
      +            {
      +              "properties": {
      +                "code": {
      +                  "description": "Field code",
      +                  "type": "string"
      +                },
      +                "defaultValue": {
      +                  "description": "Default value",
      +                  "type": "string"
      +                },
      +                "label": {
      +                  "description": "Field label",
      +                  "type": "string"
      +                },
      +                "maxLength": {
      +                  "description": "Maximum character length",
      +                  "type": "string"
      +                },
      +                "minLength": {
      +                  "description": "Minimum character length",
      +                  "type": "string"
      +                },
      +                "noLabel": {
      +                  "description": "Whether to hide the label (true: hide, false: show)",
      +                  "type": "boolean"
      +                },
      +                "protocol": {
      +                  "description": "Link protocol (WEB: http/https, CALL: tel, MAIL: mailto)",
      +                  "enum": [
      +                    "WEB",
      +                    "CALL",
      +                    "MAIL"
      +                  ],
      +                  "type": "string"
      +                },
      +                "required": {
      +                  "description": "Whether the field is required (true: required, false: optional)",
      +                  "type": "boolean"
      +                },
      +                "type": {
      +                  "const": "LINK",
      +                  "type": "string"
      +                },
      +                "unique": {
      +                  "description": "Whether to prohibit duplicate values (true: prohibit, false: allow)",
      +                  "type": "boolean"
      +                }
      +              },
      +              "required": [
      +                "type",
      +                "code",
      +                "label"
      +              ],
      +              "type": "object"
      +            },
      +            {
      +              "properties": {
      +                "align": {
      +                  "description": "Alignment of options (HORIZONTAL: horizontal, VERTICAL: vertical)",
      +                  "enum": [
      +                    "HORIZONTAL",
      +                    "VERTICAL"
      +                  ],
      +                  "type": "string"
      +                },
      +                "code": {
      +                  "description": "Field code",
      +                  "type": "string"
      +                },
      +                "defaultValue": {
      +                  "description": "Array of default values",
      +                  "items": {
      +                    "type": "string"
      +                  },
      +                  "type": "array"
      +                },
      +                "label": {
      +                  "description": "Field label",
      +                  "type": "string"
      +                },
      +                "noLabel": {
      +                  "description": "Whether to hide the label (true: hide, false: show)",
      +                  "type": "boolean"
      +                },
      +                "options": {
      +                  "additionalProperties": {
      +                    "properties": {
      +                      "index": {
      +                        "description": "Display order of the option",
      +                        "type": "string"
      +                      },
      +                      "label": {
      +                        "description": "Display name of the option",
      +                        "type": "string"
      +                      }
      +                    },
      +                    "required": [
      +                      "label",
      +                      "index"
      +                    ],
      +                    "type": "object"
      +                  },
      +                  "description": "Options configuration",
      +                  "propertyNames": {
      +                    "type": "string"
      +                  },
      +                  "type": "object"
      +                },
      +                "required": {
      +                  "description": "Whether the field is required (true: required, false: optional)",
      +                  "type": "boolean"
      +                },
      +                "type": {
      +                  "const": "CHECK_BOX",
      +                  "type": "string"
      +                }
      +              },
      +              "required": [
      +                "type",
      +                "code",
      +                "label"
      +              ],
      +              "type": "object"
      +            },
      +            {
      +              "properties": {
      +                "align": {
      +                  "description": "Alignment of options (HORIZONTAL: horizontal, VERTICAL: vertical)",
      +                  "enum": [
      +                    "HORIZONTAL",
      +                    "VERTICAL"
      +                  ],
      +                  "type": "string"
      +                },
      +                "code": {
      +                  "description": "Field code",
      +                  "type": "string"
      +                },
      +                "defaultValue": {
      +                  "description": "Default value",
      +                  "type": "string"
      +                },
      +                "label": {
      +                  "description": "Field label",
      +                  "type": "string"
      +                },
      +                "noLabel": {
      +                  "description": "Whether to hide the label (true: hide, false: show)",
      +                  "type": "boolean"
      +                },
      +                "options": {
      +                  "additionalProperties": {
      +                    "properties": {
      +                      "index": {
      +                        "description": "Display order of the option",
      +                        "type": "string"
      +                      },
      +                      "label": {
      +                        "description": "Display name of the option",
      +                        "type": "string"
      +                      }
      +                    },
      +                    "required": [
      +                      "label",
      +                      "index"
      +                    ],
      +                    "type": "object"
      +                  },
      +                  "description": "Options configuration",
      +                  "propertyNames": {
      +                    "type": "string"
      +                  },
      +                  "type": "object"
      +                },
      +                "required": {
      +                  "description": "Whether the field is required (true: required, false: optional)",
      +                  "type": "boolean"
      +                },
      +                "type": {
      +                  "const": "RADIO_BUTTON",
      +                  "type": "string"
      +                }
      +              },
      +              "required": [
      +                "type",
      +                "code",
      +                "label"
      +              ],
      +              "type": "object"
      +            },
      +            {
      +              "properties": {
      +                "code": {
      +                  "description": "Field code",
      +                  "type": "string"
      +                },
      +                "defaultValue": {
      +                  "description": "Default value",
      +                  "type": "string"
      +                },
      +                "label": {
      +                  "description": "Field label",
      +                  "type": "string"
      +                },
      +                "noLabel": {
      +                  "description": "Whether to hide the label (true: hide, false: show)",
      +                  "type": "boolean"
      +                },
      +                "options": {
      +                  "additionalProperties": {
      +                    "properties": {
      +                      "index": {
      +                        "description": "Display order of the option",
      +                        "type": "string"
      +                      },
      +                      "label": {
      +                        "description": "Display name of the option",
      +                        "type": "string"
      +                      }
      +                    },
      +                    "required": [
      +                      "label",
      +                      "index"
      +                    ],
      +                    "type": "object"
      +                  },
      +                  "description": "Options configuration",
      +                  "propertyNames": {
      +                    "type": "string"
      +                  },
      +                  "type": "object"
      +                },
      +                "required": {
      +                  "description": "Whether the field is required (true: required, false: optional)",
      +                  "type": "boolean"
      +                },
      +                "type": {
      +                  "const": "DROP_DOWN",
      +                  "type": "string"
      +                }
      +              },
      +              "required": [
      +                "type",
      +                "code",
      +                "label"
      +              ],
      +              "type": "object"
      +            },
      +            {
      +              "properties": {
      +                "code": {
      +                  "description": "Field code",
      +                  "type": "string"
      +                },
      +                "defaultValue": {
      +                  "description": "Array of default values",
      +                  "items": {
      +                    "type": "string"
      +                  },
      +                  "type": "array"
      +                },
      +                "label": {
      +                  "description": "Field label",
      +                  "type": "string"
      +                },
      +                "noLabel": {
      +                  "description": "Whether to hide the label (true: hide, false: show)",
      +                  "type": "boolean"
      +                },
      +                "options": {
      +                  "additionalProperties": {
      +                    "properties": {
      +                      "index": {
      +                        "description": "Display order of the option",
      +                        "type": "string"
      +                      },
      +                      "label": {
      +                        "description": "Display name of the option",
      +                        "type": "string"
      +                      }
      +                    },
      +                    "required": [
      +                      "label",
      +                      "index"
      +                    ],
      +                    "type": "object"
      +                  },
      +                  "description": "Options configuration",
      +                  "propertyNames": {
      +                    "type": "string"
      +                  },
      +                  "type": "object"
      +                },
      +                "required": {
      +                  "description": "Whether the field is required (true: required, false: optional)",
      +                  "type": "boolean"
      +                },
      +                "type": {
      +                  "const": "MULTI_SELECT",
      +                  "type": "string"
      +                }
      +              },
      +              "required": [
      +                "type",
      +                "code",
      +                "label"
      +              ],
      +              "type": "object"
      +            },
      +            {
      +              "properties": {
      +                "code": {
      +                  "description": "Field code",
      +                  "type": "string"
      +                },
      +                "label": {
      +                  "description": "Field label",
      +                  "type": "string"
      +                },
      +                "noLabel": {
      +                  "description": "Whether to hide the label (true: hide, false: show)",
      +                  "type": "boolean"
      +                },
      +                "required": {
      +                  "description": "Whether the field is required (true: required, false: optional)",
      +                  "type": "boolean"
      +                },
      +                "thumbnailSize": {
      +                  "description": "Thumbnail size (pixels)",
      +                  "enum": [
      +                    "50",
      +                    "150",
      +                    "250",
      +                    "500"
      +                  ],
      +                  "type": "string"
      +                },
      +                "type": {
      +                  "const": "FILE",
      +                  "type": "string"
      +                }
      +              },
      +              "required": [
      +                "type",
      +                "code",
      +                "label"
      +              ],
      +              "type": "object"
      +            },
      +            {
      +              "properties": {
      +                "code": {
      +                  "description": "Field code",
      +                  "type": "string"
      +                },
      +                "defaultNowValue": {
      +                  "description": "Whether to automatically set the current date (true: auto-set, false: manual)",
      +                  "type": "boolean"
      +                },
      +                "defaultValue": {
      +                  "description": "Default value (YYYY-MM-DD format)",
      +                  "type": "string"
      +                },
      +                "label": {
      +                  "description": "Field label",
      +                  "type": "string"
      +                },
      +                "noLabel": {
      +                  "description": "Whether to hide the label (true: hide, false: show)",
      +                  "type": "boolean"
      +                },
      +                "required": {
      +                  "description": "Whether the field is required (true: required, false: optional)",
      +                  "type": "boolean"
      +                },
      +                "type": {
      +                  "const": "DATE",
      +                  "type": "string"
      +                },
      +                "unique": {
      +                  "description": "Whether to prohibit duplicate values (true: prohibit, false: allow)",
      +                  "type": "boolean"
      +                }
      +              },
      +              "required": [
      +                "type",
      +                "code",
      +                "label"
      +              ],
      +              "type": "object"
      +            },
      +            {
      +              "properties": {
      +                "code": {
      +                  "description": "Field code",
      +                  "type": "string"
      +                },
      +                "defaultNowValue": {
      +                  "description": "Whether to automatically set the current time (true: auto-set, false: manual)",
      +                  "type": "boolean"
      +                },
      +                "defaultValue": {
      +                  "description": "Default value (HH:MM format)",
      +                  "type": "string"
      +                },
      +                "label": {
      +                  "description": "Field label",
      +                  "type": "string"
      +                },
      +                "noLabel": {
      +                  "description": "Whether to hide the label (true: hide, false: show)",
      +                  "type": "boolean"
      +                },
      +                "required": {
      +                  "description": "Whether the field is required (true: required, false: optional)",
      +                  "type": "boolean"
      +                },
      +                "type": {
      +                  "const": "TIME",
      +                  "type": "string"
      +                }
      +              },
      +              "required": [
      +                "type",
      +                "code",
      +                "label"
      +              ],
      +              "type": "object"
      +            },
      +            {
      +              "properties": {
      +                "code": {
      +                  "description": "Field code",
      +                  "type": "string"
      +                },
      +                "defaultNowValue": {
      +                  "description": "Whether to automatically set the current datetime (true: auto-set, false: manual)",
      +                  "type": "boolean"
      +                },
      +                "defaultValue": {
      +                  "description": "Default value (YYYY-MM-DDTHH:MM:SSZ format)",
      +                  "type": "string"
      +                },
      +                "label": {
      +                  "description": "Field label",
      +                  "type": "string"
      +                },
      +                "noLabel": {
      +                  "description": "Whether to hide the label (true: hide, false: show)",
      +                  "type": "boolean"
      +                },
      +                "required": {
      +                  "description": "Whether the field is required (true: required, false: optional)",
      +                  "type": "boolean"
      +                },
      +                "type": {
      +                  "const": "DATETIME",
      +                  "type": "string"
      +                },
      +                "unique": {
      +                  "description": "Whether to prohibit duplicate values (true: prohibit, false: allow)",
      +                  "type": "boolean"
      +                }
      +              },
      +              "required": [
      +                "type",
      +                "code",
      +                "label"
      +              ],
      +              "type": "object"
      +            },
      +            {
      +              "properties": {
      +                "code": {
      +                  "description": "Field code",
      +                  "type": "string"
      +                },
      +                "defaultValue": {
      +                  "description": "Array of default users/groups/organizations, or LOGINUSER() function",
      +                  "items": {
      +                    "anyOf": [
      +                      {
      +                        "properties": {
      +                          "code": {
      +                            "description": "Code of user/group/organization",
      +                            "type": "string"
      +                          },
      +                          "type": {
      +                            "description": "Type of entity",
      +                            "enum": [
      +                              "USER",
      +                              "GROUP",
      +                              "ORGANIZATION"
      +                            ],
      +                            "type": "string"
      +                          }
      +                        },
      +                        "required": [
      +                          "code",
      +                          "type"
      +                        ],
      +                        "type": "object"
      +                      },
      +                      {
      +                        "properties": {
      +                          "code": {
      +                            "const": "LOGINUSER()",
      +                            "description": "Function representing the logged-in user",
      +                            "type": "string"
      +                          },
      +                          "type": {
      +                            "const": "FUNCTION",
      +                            "description": "Function type",
      +                            "type": "string"
      +                          }
      +                        },
      +                        "required": [
      +                          "code",
      +                          "type"
      +                        ],
      +                        "type": "object"
      +                      }
      +                    ],
      +                    "type": "object"
      +                  },
      +                  "type": "array"
      +                },
      +                "entities": {
      +                  "description": "List of selectable users/groups/organizations",
      +                  "items": {
      +                    "properties": {
      +                      "code": {
      +                        "description": "Code of user/group/organization",
      +                        "type": "string"
      +                      },
      +                      "type": {
      +                        "description": "Type of entity",
      +                        "enum": [
      +                          "USER",
      +                          "GROUP",
      +                          "ORGANIZATION"
      +                        ],
      +                        "type": "string"
      +                      }
      +                    },
      +                    "required": [
      +                      "code",
      +                      "type"
      +                    ],
      +                    "type": "object"
      +                  },
      +                  "type": "array"
      +                },
      +                "label": {
      +                  "description": "Field label",
      +                  "type": "string"
      +                },
      +                "noLabel": {
      +                  "description": "Whether to hide the label (true: hide, false: show)",
      +                  "type": "boolean"
      +                },
      +                "required": {
      +                  "description": "Whether the field is required (true: required, false: optional)",
      +                  "type": "boolean"
      +                },
      +                "type": {
      +                  "const": "USER_SELECT",
      +                  "type": "string"
      +                }
      +              },
      +              "required": [
      +                "type",
      +                "code",
      +                "label"
      +              ],
      +              "type": "object"
      +            },
      +            {
      +              "properties": {
      +                "code": {
      +                  "description": "Field code",
      +                  "type": "string"
      +                },
      +                "defaultValue": {
      +                  "description": "Array of default organizations, or PRIMARY_ORGANIZATION() function",
      +                  "items": {
      +                    "anyOf": [
      +                      {
      +                        "properties": {
      +                          "code": {
      +                            "description": "Organization code",
      +                            "type": "string"
      +                          },
      +                          "type": {
      +                            "const": "ORGANIZATION",
      +                            "description": "Organization type",
      +                            "type": "string"
      +                          }
      +                        },
      +                        "required": [
      +                          "code",
      +                          "type"
      +                        ],
      +                        "type": "object"
      +                      },
      +                      {
      +                        "properties": {
      +                          "code": {
      +                            "const": "PRIMARY_ORGANIZATION()",
      +                            "description": "Function representing the primary organization of the logged-in user",
      +                            "type": "string"
      +                          },
      +                          "type": {
      +                            "const": "FUNCTION",
      +                            "description": "Function type",
      +                            "type": "string"
      +                          }
      +                        },
      +                        "required": [
      +                          "code",
      +                          "type"
      +                        ],
      +                        "type": "object"
      +                      }
      +                    ],
      +                    "type": "object"
      +                  },
      +                  "type": "array"
      +                },
      +                "entities": {
      +                  "description": "List of selectable organizations",
      +                  "items": {
      +                    "properties": {
      +                      "code": {
      +                        "description": "Organization code",
      +                        "type": "string"
      +                      },
      +                      "type": {
      +                        "const": "ORGANIZATION",
      +                        "description": "Organization type",
      +                        "type": "string"
      +                      }
      +                    },
      +                    "required": [
      +                      "code",
      +                      "type"
      +                    ],
      +                    "type": "object"
      +                  },
      +                  "type": "array"
      +                },
      +                "label": {
      +                  "description": "Field label",
      +                  "type": "string"
      +                },
      +                "noLabel": {
      +                  "description": "Whether to hide the label (true: hide, false: show)",
      +                  "type": "boolean"
      +                },
      +                "required": {
      +                  "description": "Whether the field is required (true: required, false: optional)",
      +                  "type": "boolean"
      +                },
      +                "type": {
      +                  "const": "ORGANIZATION_SELECT",
      +                  "type": "string"
      +                }
      +              },
      +              "required": [
      +                "type",
      +                "code",
      +                "label"
      +              ],
      +              "type": "object"
      +            },
      +            {
      +              "properties": {
      +                "code": {
      +                  "description": "Field code",
      +                  "type": "string"
      +                },
      +                "defaultValue": {
      +                  "description": "Array of default groups",
      +                  "items": {
      +                    "properties": {
      +                      "code": {
      +                        "description": "Group code",
      +                        "type": "string"
      +                      },
      +                      "type": {
      +                        "const": "GROUP",
      +                        "description": "Group type",
      +                        "type": "string"
      +                      }
      +                    },
      +                    "required": [
      +                      "code",
      +                      "type"
      +                    ],
      +                    "type": "object"
      +                  },
      +                  "type": "array"
      +                },
      +                "entities": {
      +                  "description": "List of selectable groups",
      +                  "items": {
      +                    "properties": {
      +                      "code": {
      +                        "description": "Group code",
      +                        "type": "string"
      +                      },
      +                      "type": {
      +                        "const": "GROUP",
      +                        "description": "Group type",
      +                        "type": "string"
      +                      }
      +                    },
      +                    "required": [
      +                      "code",
      +                      "type"
      +                    ],
      +                    "type": "object"
      +                  },
      +                  "type": "array"
      +                },
      +                "label": {
      +                  "description": "Field label",
      +                  "type": "string"
      +                },
      +                "noLabel": {
      +                  "description": "Whether to hide the label (true: hide, false: show)",
      +                  "type": "boolean"
      +                },
      +                "required": {
      +                  "description": "Whether the field is required (true: required, false: optional)",
      +                  "type": "boolean"
      +                },
      +                "type": {
      +                  "const": "GROUP_SELECT",
      +                  "type": "string"
      +                }
      +              },
      +              "required": [
      +                "type",
      +                "code",
      +                "label"
      +              ],
      +              "type": "object"
      +            }
      +          ],
      +          "type": "object"
      +        },
      +        "description": "Configuration of fields within the subtable",
      +        "propertyNames": {
      +          "type": "string"
      +        },
      +        "type": "object"
      +      },
      +      "label": {
      +        "description": "Field label",
      +        "type": "string"
      +      },
      +      "noLabel": {
      +        "description": "Whether to hide the label (true: hide, false: show)",
      +        "type": "boolean"
      +      },
      +      "type": {
      +        "const": "SUBTABLE",
      +        "type": "string"
      +      }
      +    },
      +    "required": [
      +      "type",
      +      "code",
      +      "label"
      +    ],
      +    "type": "object"
      +  }
      +]
    • addedInput schema / properties / properties / additionalProperties / type
      Added value: +"object"
    • addedInput schema / properties / properties / propertyNames
      Added value: +{
      +  "description": "Field code",
      +  "type": "string"
      +}
    • changedOutput schema / $schema
      Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
  2. First observedv1.4.0

TDQS

A4.5/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the burden. It discloses the preview-only scope, permission requirements, field-code constraints, option key-label matching requirement, and deployment requirement. This is substantial behavioral context beyond the schema.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a tight paragraph of about 80 words covering scope, permissions, constraints, option rules, lookup guidance, and workflow. It is not front-loaded with excessive introductory text; everything earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's extreme complexity (nested objects, many field-type variants), the description cannot fully document everything, but it covers the pitfalls that would cause errors: uniqueness, naming rules, option key-label matching, preview-only deployment, and the pre-check with kintone-get-form-fields. The output schema exists, so return values are covered there. Minor gaps: no mention of how many fields can be added at once or default behaviors (e.g., 'label' vs 'code'), but none are essential for a competent call.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so the baseline is 3, but the description adds critical meaning not obvious from schema: field code uniqueness and format rules, the exact-match requirement for selection options, and guidance on which field type to use for lookup fields. This meaningfully helps an agent construct correct property objects.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific verb ('Add'), resource ('new fields to a kintone app'), and a clear scope ('preview environment only'). It clearly distinguishes from sibling tools like kintone-get-form-fields and kintone-update-form-fields.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly instructs to use kintone-get-form-fields first to check existing fields, and states that changes require kintone-deploy-app to apply to the live app. This gives clear 'when to use' context and alternatives.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.