Autodesk · Schema

Parameter

Fortune 10003D ModelingArchitectureBIMCADConstructionDesignDigital TwinsEngineeringManufacturingMedia and EntertainmentSustainability

Properties

Name Type Description
zip boolean Whether the parameter is a zip file.
ondemand boolean
verb string HTTP verb for accessing the parameter.
description string
required boolean
localName string Local filename for the parameter.
View JSON Schema on GitHub

JSON Schema

autodesk-parameter-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Parameter",
  "title": "Parameter",
  "type": "object",
  "properties": {
    "zip": {
      "type": "boolean",
      "description": "Whether the parameter is a zip file."
    },
    "ondemand": {
      "type": "boolean"
    },
    "verb": {
      "type": "string",
      "description": "HTTP verb for accessing the parameter.",
      "enum": [
        "get",
        "put",
        "post",
        "patch",
        "read"
      ]
    },
    "description": {
      "type": "string"
    },
    "required": {
      "type": "boolean"
    },
    "localName": {
      "type": "string",
      "description": "Local filename for the parameter."
    }
  }
}