Atlassian · Schema
IssueFieldOptionCreateBean
CodeCollaborationPlatformProductivitySoftware Development
Properties
| Name | Type | Description |
|---|---|---|
| config | object | |
| properties | object | The properties of the option as arbitrary key-value pairs. These properties can be searched using JQL, if the extractions (see https://developer.atlassian.com/cloud/jira/platform/modules/issue-field-o |
| value | string | The option's name, which is displayed in Jira. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/IssueFieldOptionCreateBean",
"title": "IssueFieldOptionCreateBean",
"additionalProperties": true,
"properties": {
"config": {
"$ref": "#/components/schemas/IssueFieldOptionConfiguration"
},
"properties": {
"additionalProperties": {},
"description": "The properties of the option as arbitrary key-value pairs. These properties can be searched using JQL, if the extractions (see https://developer.atlassian.com/cloud/jira/platform/modules/issue-field-option-property-index/) are defined in the descriptor for the issue field module.",
"type": "object"
},
"value": {
"description": "The option's name, which is displayed in Jira.",
"type": "string"
}
},
"required": [
"value"
],
"type": "object"
}