Atlassian · Schema

CustomFieldContextProjectMapping

Details of a context to project association.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
contextId string The ID of the context.
isGlobalContext boolean Whether context is global.
projectId string The ID of the project.
View JSON Schema on GitHub

JSON Schema

atlassian-customfieldcontextprojectmapping-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CustomFieldContextProjectMapping",
  "title": "CustomFieldContextProjectMapping",
  "additionalProperties": false,
  "description": "Details of a context to project association.",
  "properties": {
    "contextId": {
      "description": "The ID of the context.",
      "readOnly": true,
      "type": "string"
    },
    "isGlobalContext": {
      "description": "Whether context is global.",
      "readOnly": true,
      "type": "boolean"
    },
    "projectId": {
      "description": "The ID of the project.",
      "readOnly": true,
      "type": "string"
    }
  },
  "required": [
    "contextId"
  ],
  "type": "object"
}