SendTestEventNotificationRequest

SendTestEventNotificationRequest schema from Amazon Mechanical Turk API

CrowdsourcingHuman IntelligenceLaborMachine LearningTasks

Properties

Name Type Description
Notification object
TestEventType object
View JSON Schema on GitHub

JSON Schema

amazon-mechanical-turk-send-test-event-notification-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-mechanical-turk/refs/heads/main/json-schema/amazon-mechanical-turk-send-test-event-notification-request-schema.json",
  "title": "SendTestEventNotificationRequest",
  "description": "SendTestEventNotificationRequest schema from Amazon Mechanical Turk API",
  "type": "object",
  "properties": {
    "Notification": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NotificationSpecification"
        },
        {
          "description": " The notification specification to test. This value is identical to the value you would provide to the UpdateNotificationSettings operation when you establish the notification specification for a HIT type. "
        }
      ]
    },
    "TestEventType": {
      "allOf": [
        {
          "$ref": "#/components/schemas/EventType"
        },
        {
          "description": " The event to simulate to test the notification specification. This event is included in the test message even if the notification specification does not include the event type. The notification specification does not filter out the test event. "
        }
      ]
    }
  },
  "required": [
    "Notification",
    "TestEventType"
  ]
}