Atlassian · Schema

CustomFieldContextDefaultValueLabels

Default value for a labels custom field.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
labels array The default labels value.
type string
View JSON Schema on GitHub

JSON Schema

atlassian-customfieldcontextdefaultvaluelabels-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CustomFieldContextDefaultValueLabels",
  "title": "CustomFieldContextDefaultValueLabels",
  "description": "Default value for a labels custom field.",
  "properties": {
    "labels": {
      "description": "The default labels value.",
      "items": {
        "description": "The default labels value.",
        "type": "string"
      },
      "type": "array"
    },
    "type": {
      "type": "string"
    }
  },
  "required": [
    "labels",
    "type"
  ],
  "type": "object"
}