ListWorkersWithQualificationTypeResponse

ListWorkersWithQualificationTypeResponse schema from Amazon Mechanical Turk API

CrowdsourcingHuman IntelligenceLaborMachine LearningTasks

Properties

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

JSON Schema

amazon-mechanical-turk-list-workers-with-qualification-type-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-workers-with-qualification-type-response-schema.json",
  "title": "ListWorkersWithQualificationTypeResponse",
  "description": "ListWorkersWithQualificationTypeResponse schema from Amazon Mechanical Turk API",
  "type": "object",
  "properties": {
    "NextToken": {
      "$ref": "#/components/schemas/PaginationToken"
    },
    "NumResults": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Integer"
        },
        {
          "description": " The number of Qualifications on this page in the filtered results list, equivalent to the number of Qualifications being returned by this call."
        }
      ]
    },
    "Qualifications": {
      "allOf": [
        {
          "$ref": "#/components/schemas/QualificationList"
        },
        {
          "description": " The list of Qualification elements returned by this call. "
        }
      ]
    }
  }
}