GetQualificationScoreRequest

GetQualificationScoreRequest schema from Amazon Mechanical Turk API

CrowdsourcingHuman IntelligenceLaborMachine LearningTasks

Properties

Name Type Description
QualificationTypeId object
WorkerId object
View JSON Schema on GitHub

JSON Schema

amazon-mechanical-turk-get-qualification-score-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-get-qualification-score-request-schema.json",
  "title": "GetQualificationScoreRequest",
  "description": "GetQualificationScoreRequest schema from Amazon Mechanical Turk API",
  "type": "object",
  "properties": {
    "QualificationTypeId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/EntityId"
        },
        {
          "description": "The ID of the QualificationType."
        }
      ]
    },
    "WorkerId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/CustomerId"
        },
        {
          "description": "The ID of the Worker whose Qualification is being updated."
        }
      ]
    }
  },
  "required": [
    "QualificationTypeId",
    "WorkerId"
  ]
}