Atlassian · Schema

CreateCustomFieldContext

The details of a created custom field context.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
description string The description of the context.
id string The ID of the context.
issueTypeIds array The list of issue types IDs for the context. If the list is empty, the context refers to all issue types.
name string The name of the context.
projectIds array The list of project IDs associated with the context. If the list is empty, the context is global.
View JSON Schema on GitHub

JSON Schema

atlassian-createcustomfieldcontext-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateCustomFieldContext",
  "title": "CreateCustomFieldContext",
  "additionalProperties": false,
  "description": "The details of a created custom field context.",
  "properties": {
    "description": {
      "description": "The description of the context.",
      "type": "string"
    },
    "id": {
      "description": "The ID of the context.",
      "readOnly": true,
      "type": "string"
    },
    "issueTypeIds": {
      "description": "The list of issue types IDs for the context. If the list is empty, the context refers to all issue types.",
      "items": {
        "type": "string"
      },
      "type": "array"
    },
    "name": {
      "description": "The name of the context.",
      "type": "string"
    },
    "projectIds": {
      "description": "The list of project IDs associated with the context. If the list is empty, the context is global.",
      "items": {
        "type": "string"
      },
      "type": "array"
    }
  },
  "required": [
    "name"
  ],
  "type": "object"
}