{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/IssueTypeToContextMapping",
"title": "IssueTypeToContextMapping",
"additionalProperties": false,
"description": "Mapping of an issue type to a context.",
"properties": {
"contextId": {
"description": "The ID of the context.",
"type": "string"
},
"isAnyIssueType": {
"description": "Whether the context is mapped to any issue type.",
"type": "boolean"
},
"issueTypeId": {
"description": "The ID of the issue type.",
"type": "string"
}
},
"required": [
"contextId"
],
"type": "object"
}