Autodesk · Schema

AppBundlePayload

Fortune 10003D ModelingArchitectureBIMCADConstructionDesignDigital TwinsEngineeringManufacturingMedia and EntertainmentSustainability

Properties

Name Type Description
id string The AppBundle name.
engine string The target engine (e.g., Autodesk.AutoCAD+24_1).
description string
appbundles array
View JSON Schema on GitHub

JSON Schema

autodesk-appbundlepayload-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AppBundlePayload",
  "title": "AppBundlePayload",
  "type": "object",
  "required": [
    "id",
    "engine"
  ],
  "properties": {
    "id": {
      "type": "string",
      "description": "The AppBundle name."
    },
    "engine": {
      "type": "string",
      "description": "The target engine (e.g., Autodesk.AutoCAD+24_1)."
    },
    "description": {
      "type": "string"
    },
    "appbundles": {
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  }
}