{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/TransitionScreenDetails",
"title": "TransitionScreenDetails",
"additionalProperties": false,
"description": "The details of a transition screen.",
"properties": {
"id": {
"description": "The ID of the screen.",
"type": "string"
},
"name": {
"description": "The name of the screen.",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}