Atlassian · Schema

CustomFieldContextDefaultValueCascadingOption

The default value for a cascading select custom field.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
cascadingOptionId string The ID of the default cascading option.
contextId string The ID of the context.
optionId string The ID of the default option.
type string
View JSON Schema on GitHub

JSON Schema

atlassian-customfieldcontextdefaultvaluecascadingoption-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CustomFieldContextDefaultValueCascadingOption",
  "title": "CustomFieldContextDefaultValueCascadingOption",
  "description": "The default value for a cascading select custom field.",
  "properties": {
    "cascadingOptionId": {
      "description": "The ID of the default cascading option.",
      "type": "string"
    },
    "contextId": {
      "description": "The ID of the context.",
      "type": "string"
    },
    "optionId": {
      "description": "The ID of the default option.",
      "type": "string"
    },
    "type": {
      "type": "string"
    }
  },
  "required": [
    "contextId",
    "optionId",
    "type"
  ],
  "type": "object"
}