{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/TestNotificationDetailsResponse", "title": "TestNotificationDetailsResponse", "type": "object", "required": [ "state" ], "properties": { "state": { "type": "string", "description": "The overall state of the test notification." }, "completedTime": { "type": "string", "format": "date-time", "description": "The completed time." }, "createdTime": { "type": "string", "format": "date-time", "description": "The created time." }, "actionDetails": { "type": "array", "items": { "type": "object", "properties": { "mechanismType": { "type": "string", "description": "The mechanism type." }, "name": { "type": "string", "description": "The name of the action." }, "status": { "type": "string", "description": "The send status." }, "subState": { "type": "string", "description": "The sub state." }, "sendTime": { "type": "string", "format": "date-time", "description": "The send time." }, "detail": { "type": "string", "description": "The detail of the action." } } } } } }