{ "$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-disassociate-qualification-from-worker-request-schema.json", "title": "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" ] }