Autodesk · Schema

WorkItemArgument

Fortune 10003D ModelingArchitectureBIMCADConstructionDesignDigital TwinsEngineeringManufacturingMedia and EntertainmentSustainability

Properties

Name Type Description
url string URL to download input or upload output.
verb string
headers object
localName string
pathInZip string
optional boolean
View JSON Schema on GitHub

JSON Schema

autodesk-workitemargument-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/WorkItemArgument",
  "title": "WorkItemArgument",
  "type": "object",
  "properties": {
    "url": {
      "type": "string",
      "format": "uri",
      "description": "URL to download input or upload output."
    },
    "verb": {
      "type": "string",
      "enum": [
        "get",
        "put",
        "post",
        "patch",
        "read"
      ]
    },
    "headers": {
      "type": "object",
      "additionalProperties": {
        "type": "string"
      }
    },
    "localName": {
      "type": "string"
    },
    "pathInZip": {
      "type": "string"
    },
    "optional": {
      "type": "boolean"
    }
  }
}