Autodesk · Schema

JobResponse

Fortune 10003D ModelingArchitectureBIMCADConstructionDesignDigital TwinsEngineeringManufacturingMedia and EntertainmentSustainability

Properties

Name Type Description
result string Result status of the job submission.
urn string The URN of the source design.
acceptedJobs object
View JSON Schema on GitHub

JSON Schema

autodesk-jobresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/JobResponse",
  "title": "JobResponse",
  "type": "object",
  "properties": {
    "result": {
      "type": "string",
      "description": "Result status of the job submission."
    },
    "urn": {
      "type": "string",
      "description": "The URN of the source design."
    },
    "acceptedJobs": {
      "type": "object",
      "properties": {
        "output": {
          "type": "object",
          "properties": {
            "formats": {
              "type": "array",
              "items": {
                "type": "object",
                "properties": {
                  "type": {
                    "type": "string"
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}