ListBonusPaymentsResponse

ListBonusPaymentsResponse schema from Amazon Mechanical Turk API

CrowdsourcingHuman IntelligenceLaborMachine LearningTasks

Properties

Name Type Description
NumResults object
NextToken object
BonusPayments object
View JSON Schema on GitHub

JSON Schema

amazon-mechanical-turk-list-bonus-payments-response-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-list-bonus-payments-response-schema.json",
  "title": "ListBonusPaymentsResponse",
  "description": "ListBonusPaymentsResponse schema from Amazon Mechanical Turk API",
  "type": "object",
  "properties": {
    "NumResults": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Integer"
        },
        {
          "description": "The number of bonus payments on this page in the filtered results list, equivalent to the number of bonus payments being returned by this call. "
        }
      ]
    },
    "NextToken": {
      "$ref": "#/components/schemas/PaginationToken"
    },
    "BonusPayments": {
      "allOf": [
        {
          "$ref": "#/components/schemas/BonusPaymentList"
        },
        {
          "description": "A successful request to the ListBonusPayments operation returns a list of BonusPayment objects. "
        }
      ]
    }
  }
}