Atlassian · Schema

FieldConfigurationSchemeProjectAssociation

Associated field configuration scheme and project.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
fieldConfigurationSchemeId string The ID of the field configuration scheme. If the field configuration scheme ID is `null`, the operation assigns the default field configuration scheme.
projectId string The ID of the project.
View JSON Schema on GitHub

JSON Schema

atlassian-fieldconfigurationschemeprojectassociation-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FieldConfigurationSchemeProjectAssociation",
  "title": "FieldConfigurationSchemeProjectAssociation",
  "additionalProperties": false,
  "description": "Associated field configuration scheme and project.",
  "properties": {
    "fieldConfigurationSchemeId": {
      "description": "The ID of the field configuration scheme. If the field configuration scheme ID is `null`, the operation assigns the default field configuration scheme.",
      "type": "string",
      "writeOnly": true
    },
    "projectId": {
      "description": "The ID of the project.",
      "type": "string",
      "writeOnly": true
    }
  },
  "required": [
    "projectId"
  ],
  "type": "object"
}