{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "CreateQuestionsBatchResponse", "type": "object", "properties": { "errorMessage": { "type": "string", "nullable": true }, "studyKey": { "type": "integer", "description": "Key of study", "format": "int32" }, "questions": { "type": "array", "items": { "$ref": "#/components/schemas/CreateQuestionResponse" }, "description": "Array of questions", "nullable": true }, "failedQuestions": { "type": "array", "items": { "$ref": "#/components/schemas/FailedQuestionIdBatch" }, "description": "Array of failed questions", "nullable": true } }, "additionalProperties": false, "description": "Response contains information about newly created study questions" }