{ "$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" }