Atlassian · Schema

CustomFieldContext

The details of a custom field context.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
description string The description of the context.
id string The ID of the context.
isAnyIssueType boolean Whether the context apply to all issue types.
isGlobalContext boolean Whether the context is global.
name string The name of the context.
View JSON Schema on GitHub

JSON Schema

atlassian-customfieldcontext-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CustomFieldContext",
  "title": "CustomFieldContext",
  "additionalProperties": false,
  "description": "The details of a custom field context.",
  "properties": {
    "description": {
      "description": "The description of the context.",
      "type": "string"
    },
    "id": {
      "description": "The ID of the context.",
      "type": "string"
    },
    "isAnyIssueType": {
      "description": "Whether the context apply to all issue types.",
      "type": "boolean"
    },
    "isGlobalContext": {
      "description": "Whether the context is global.",
      "type": "boolean"
    },
    "name": {
      "description": "The name of the context.",
      "type": "string"
    }
  },
  "required": [
    "description",
    "id",
    "isAnyIssueType",
    "isGlobalContext",
    "name"
  ],
  "type": "object"
}