{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ScreenableTab", "title": "ScreenableTab", "additionalProperties": false, "description": "A screen tab.", "properties": { "id": { "description": "The ID of the screen tab.", "format": "int64", "readOnly": true, "type": "integer" }, "name": { "description": "The name of the screen tab. The maximum length is 255 characters.", "type": "string" } }, "required": [ "name" ], "type": "object" }