Amazon Mechanical Turk · JSON Structure

Amazon Mechanical Turk List Workers With Qualification Type Request Structure

ListWorkersWithQualificationTypeRequest schema from Amazon Mechanical Turk API

Type: object Properties: 4 Required: 1
CrowdsourcingHuman IntelligenceLaborMachine LearningTasks

ListWorkersWithQualificationTypeRequest is a JSON Structure definition published by Amazon Mechanical Turk, describing 4 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

QualificationTypeId Status NextToken MaxResults

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-mechanical-turk/refs/heads/main/json-structure/amazon-mechanical-turk-list-workers-with-qualification-type-request-structure.json",
  "name": "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"
  ]
}