Atlassian · Schema

CustomFieldContextDefaultValueSingleOption

The default value for a single select custom field.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
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-customfieldcontextdefaultvaluesingleoption-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CustomFieldContextDefaultValueSingleOption",
  "title": "CustomFieldContextDefaultValueSingleOption",
  "description": "The default value for a single select custom field.",
  "properties": {
    "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"
}