{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Context", "title": "Context", "additionalProperties": false, "description": "A context.", "properties": { "id": { "description": "The ID of the context.", "format": "int64", "readOnly": true, "type": "integer" }, "name": { "description": "The name of the context.", "readOnly": true, "type": "string" }, "scope": { "allOf": [ { "$ref": "#/components/schemas/Scope" } ], "description": "The scope of the context." } }, "type": "object" }