{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ImportDocumentationPartsRequest", "title": "ImportDocumentationPartsRequest", "type": "object", "required": [ "body" ], "properties": { "body": { "allOf": [ { "$ref": "#/components/schemas/Blob" }, { "description": "Raw byte array representing the to-be-imported documentation parts. To import from an OpenAPI file, this is a JSON object." } ] } }, "description": "Import documentation parts from an external (e.g., OpenAPI) definition file. " }