{ "$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" ] }