CodeCollaborationPlatformProductivitySoftware Development
Properties
Name
Type
Description
fieldConfigurationId
string
The ID of the field configuration.
issueTypeId
string
The ID of the issue type or *default*. When set to *default* this field configuration issue type item applies to all issue types without a field configuration. An issue type can be included only once
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/FieldConfigurationToIssueTypeMapping",
"title": "FieldConfigurationToIssueTypeMapping",
"additionalProperties": false,
"description": "The field configuration to issue type mapping.",
"properties": {
"fieldConfigurationId": {
"description": "The ID of the field configuration.",
"type": "string",
"writeOnly": true
},
"issueTypeId": {
"description": "The ID of the issue type or *default*. When set to *default* this field configuration issue type item applies to all issue types without a field configuration. An issue type can be included only once in a request.",
"type": "string",
"writeOnly": true
}
},
"required": [
"fieldConfigurationId",
"issueTypeId"
],
"type": "object",
"writeOnly": true
}