{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "UpdateQuestionsBatchResponse", "type": "object", "properties": { "errorMessage": { "type": "string", "nullable": true }, "failedQuestions": { "type": "array", "items": { "$ref": "#/components/schemas/FailedQuestionKeyBatch" }, "description": "Failed questions", "nullable": true }, "newQuestions": { "type": "array", "items": { "$ref": "#/components/schemas/CreateQuestionResponse" }, "description": "Newly created questions", "nullable": true } }, "additionalProperties": false, "description": "Response contains information about failed questions i.e. questions that could not be updated be some error/reason." }