{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ImportApiKeysRequest", "title": "ImportApiKeysRequest", "type": "object", "required": [ "body" ], "properties": { "body": { "allOf": [ { "$ref": "#/components/schemas/Blob" }, { "description": "The payload of the POST request to import API keys. For the payload format, see API Key File Format." } ] } }, "description": "The POST request to import API keys from an external source, such as a CSV-formatted file." }