Atlassian · Schema

LabelCreate

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
prefix string The prefix for the label. `global`, `my` `team`, etc.
name string The name of the label, which will be shown in the UI.
View JSON Schema on GitHub

JSON Schema

atlassian-labelcreate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LabelCreate",
  "title": "LabelCreate",
  "required": [
    "name",
    "prefix"
  ],
  "type": "object",
  "additionalProperties": true,
  "properties": {
    "prefix": {
      "type": "string",
      "description": "The prefix for the label. `global`, `my` `team`, etc.",
      "example": "example_value"
    },
    "name": {
      "type": "string",
      "description": "The name of the label, which will be shown in the UI.",
      "example": "Example Title"
    }
  }
}