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