Atlassian · Schema
FieldConfigurationItem
A field within a field configuration.
CodeCollaborationPlatformProductivitySoftware Development
Properties
| Name | Type | Description |
|---|---|---|
| description | string | The description of the field within the field configuration. |
| id | string | The ID of the field within the field configuration. |
| isHidden | boolean | Whether the field is hidden in the field configuration. |
| isRequired | boolean | Whether the field is required in the field configuration. |
| renderer | string | The renderer type for the field within the field configuration. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/FieldConfigurationItem",
"title": "FieldConfigurationItem",
"additionalProperties": false,
"description": "A field within a field configuration.",
"properties": {
"description": {
"description": "The description of the field within the field configuration.",
"type": "string"
},
"id": {
"description": "The ID of the field within the field configuration.",
"type": "string"
},
"isHidden": {
"description": "Whether the field is hidden in the field configuration.",
"type": "boolean"
},
"isRequired": {
"description": "Whether the field is required in the field configuration.",
"type": "boolean"
},
"renderer": {
"description": "The renderer type for the field within the field configuration.",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}