{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PutRecordBatchInput", "title": "PutRecordBatchInput", "type": "object", "required": [ "DeliveryStreamName", "Records" ], "properties": { "DeliveryStreamName": { "allOf": [ { "$ref": "#/components/schemas/DeliveryStreamName" }, { "description": "The name of the delivery stream." } ] }, "Records": { "allOf": [ { "$ref": "#/components/schemas/PutRecordBatchRequestEntryList" }, { "description": "One or more records." } ] } } }