ListWorkersWithQualificationTypeRequest

ListWorkersWithQualificationTypeRequest schema from Amazon Mechanical Turk API

CrowdsourcingHuman IntelligenceLaborMachine LearningTasks

Properties

Name Type Description
QualificationTypeId object
Status object
NextToken object
MaxResults object
View JSON Schema on GitHub

JSON Schema

amazon-mechanical-turk-list-workers-with-qualification-type-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-list-workers-with-qualification-type-request-schema.json",
  "title": "ListWorkersWithQualificationTypeRequest",
  "description": "ListWorkersWithQualificationTypeRequest schema from Amazon Mechanical Turk API",
  "type": "object",
  "properties": {
    "QualificationTypeId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/EntityId"
        },
        {
          "description": "The ID of the Qualification type of the Qualifications to return."
        }
      ]
    },
    "Status": {
      "allOf": [
        {
          "$ref": "#/components/schemas/QualificationStatus"
        },
        {
          "description": " The status of the Qualifications to return. Can be <code>Granted | Revoked</code>. "
        }
      ]
    },
    "NextToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PaginationToken"
        },
        {
          "description": "Pagination Token"
        }
      ]
    },
    "MaxResults": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ResultSize"
        },
        {
          "description": " Limit the number of results returned. "
        }
      ]
    }
  },
  "required": [
    "QualificationTypeId"
  ]
}