{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-storage-gateway/refs/heads/main/json-schema/amazon-storage-gateway-list-tapes-input-schema.json", "title": "ListTapesInput", "description": "
A JSON object that contains one or more of the following fields:
", "type": "object", "properties": { "TapeARNs": { "$ref": "#/components/schemas/TapeARNs" }, "Marker": { "allOf": [ { "$ref": "#/components/schemas/Marker" }, { "description": "A string that indicates the position at which to begin the returned list of tapes." } ] }, "Limit": { "allOf": [ { "$ref": "#/components/schemas/PositiveIntObject" }, { "description": "An optional number limit for the tapes in the list returned by this call." } ] } } }