{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ReportSendBackRequest", "title": "ReportSendBackRequest", "type": "object", "description": "Request body for sending a report back to the submitter", "required": [ "comment" ], "properties": { "comment": { "type": "string", "description": "Explanation of why the report is being returned for corrections", "example": "example_value" }, "expectedStepCode": { "type": "string", "description": "The expected current workflow step code", "example": "example_value" }, "expectedStepSequence": { "type": "integer", "description": "The expected current workflow step sequence number", "example": 10 } } }