Autodesk · Schema

ActivityPayload

Fortune 10003D ModelingArchitectureBIMCADConstructionDesignDigital TwinsEngineeringManufacturingMedia and EntertainmentSustainability

Properties

Name Type Description
id string
engine string
commandLine array Command line instructions for the engine.
description string
appbundles array List of AppBundles to load.
parameters object
settings object
View JSON Schema on GitHub

JSON Schema

autodesk-activitypayload-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ActivityPayload",
  "title": "ActivityPayload",
  "type": "object",
  "required": [
    "id",
    "engine",
    "commandLine",
    "parameters"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "engine": {
      "type": "string"
    },
    "commandLine": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Command line instructions for the engine."
    },
    "description": {
      "type": "string"
    },
    "appbundles": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "List of AppBundles to load."
    },
    "parameters": {
      "type": "object",
      "additionalProperties": {
        "$ref": "#/components/schemas/Parameter"
      }
    },
    "settings": {
      "type": "object",
      "additionalProperties": {
        "type": "object"
      }
    }
  }
}