Details of a context to project association.
{ "$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" }