{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ScreenTypes",
"title": "ScreenTypes",
"additionalProperties": false,
"description": "The IDs of the screens for the screen types of the screen scheme.",
"properties": {
"create": {
"description": "The ID of the create screen.",
"format": "int64",
"type": "integer"
},
"default": {
"description": "The ID of the default screen. Required when creating a screen scheme.",
"format": "int64",
"type": "integer"
},
"edit": {
"description": "The ID of the edit screen.",
"format": "int64",
"type": "integer"
},
"view": {
"description": "The ID of the view screen.",
"format": "int64",
"type": "integer"
}
},
"required": [
"defaultScreen"
],
"type": "object",
"writeOnly": true
}