{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "PutResponsesBatchResponse", "required": [ "questionResponses" ], "type": "object", "properties": { "errorMessage": { "type": "string", "nullable": true }, "questionResponses": { "type": "array", "items": { "$ref": "#/components/schemas/PutResponsesBatchResult" }, "description": "Array of questions with their responses which were added/updated" } }, "additionalProperties": false, "description": "Response contains information about updated responses in target study questions" }