SAP Concur · Schema
FormField
A configured form field with its metadata, display properties, and validation rules.
Business TravelExpense ManagementFinancial ServicesInvoice ManagementTravel Management
Properties
| Name | Type | Description |
|---|---|---|
| id | string | The field identifier |
| label | string | The localized display label |
| controlType | string | The UI control type for rendering |
| dataType | string | The data type of the field value |
| isRequired | boolean | Whether the field is mandatory |
| isCustom | boolean | Whether this is a customer-configured custom field |
| maxLength | integer | Maximum allowed character length |
| sequence | integer | Display order sequence number |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "FormField",
"type": "object",
"description": "A configured form field with its metadata, display properties, and validation rules.",
"properties": {
"id": {
"type": "string",
"description": "The field identifier"
},
"label": {
"type": "string",
"description": "The localized display label"
},
"controlType": {
"type": "string",
"description": "The UI control type for rendering"
},
"dataType": {
"type": "string",
"description": "The data type of the field value"
},
"isRequired": {
"type": "boolean",
"description": "Whether the field is mandatory"
},
"isCustom": {
"type": "boolean",
"description": "Whether this is a customer-configured custom field"
},
"maxLength": {
"type": "integer",
"description": "Maximum allowed character length"
},
"sequence": {
"type": "integer",
"description": "Display order sequence number"
}
}
}