Amazon Mechanical Turk · JSON Structure

Amazon Mechanical Turk Disassociate Qualification From Worker Request Structure

DisassociateQualificationFromWorkerRequest schema from Amazon Mechanical Turk API

Type: object Properties: 3 Required: 2
CrowdsourcingHuman IntelligenceLaborMachine LearningTasks

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

Properties

WorkerId QualificationTypeId Reason

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-disassociate-qualification-from-worker-request-structure.json",
  "name": "DisassociateQualificationFromWorkerRequest",
  "description": "DisassociateQualificationFromWorkerRequest schema from Amazon Mechanical Turk API",
  "type": "object",
  "properties": {
    "WorkerId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/CustomerId"
        },
        {
          "description": "The ID of the Worker who possesses the Qualification to be revoked."
        }
      ]
    },
    "QualificationTypeId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/EntityId"
        },
        {
          "description": "The ID of the Qualification type of the Qualification to be revoked."
        }
      ]
    },
    "Reason": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "A text message that explains why the Qualification was revoked. The user who had the Qualification sees this message."
        }
      ]
    }
  },
  "required": [
    "WorkerId",
    "QualificationTypeId"
  ]
}