importExportFile

APIs.ioEngineeringPlatform

Properties

Name Type Description
type string The `file` type value.
input string A .zip file containing the definition file.
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-importexportfile-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/importExportFile",
  "title": "importExportFile",
  "type": "object",
  "required": [
    "type",
    "input"
  ],
  "properties": {
    "type": {
      "type": "string",
      "description": "The `file` type value.",
      "enum": [
        "file"
      ],
      "example": "file"
    },
    "input": {
      "type": "string",
      "description": "A .zip file containing the definition file.",
      "format": "binary"
    }
  }
}