{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/InstanceViewStatus", "title": "InstanceViewStatus", "type": "object", "description": "Instance view status.", "properties": { "code": { "type": "string", "description": "The status code." }, "level": { "type": "string", "description": "The level code.", "enum": [ "Info", "Warning", "Error" ] }, "displayStatus": { "type": "string", "description": "The short localizable label for the status." }, "message": { "type": "string", "description": "The detailed status message." }, "time": { "type": "string", "format": "date-time", "description": "The time of the status." } } }