{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "DeleteStudyRespondentsResponse", "type": "object", "properties": { "errorMessage": { "type": "string", "nullable": true }, "failedDeletions": { "type": "array", "items": { "$ref": "#/components/schemas/DeleteStudyRespondentFailure" }, "description": "List of Respondent Ids that failed to be deleted", "nullable": true }, "notFoundRespondentIds": { "type": "array", "items": { "type": "string" }, "description": "Array of respondents with no responses found", "nullable": true } }, "additionalProperties": false, "description": "Response of DeleteStudyRespondents API method" }