ImportDocumentationPartsRequest

Import documentation parts from an external (e.g., OpenAPI) definition file.

APIs.ioEngineeringPlatform

Properties

Name Type Description
body object
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-importdocumentationpartsrequest-schema.json Raw ↑
{
  "$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. "
}