Autodesk · Schema

CreateParameterRequest

Fortune 10003D ModelingArchitectureBIMCADConstructionDesignDigital TwinsEngineeringManufacturingMedia and EntertainmentSustainability

Properties

Name Type Description
name string
description string
specId string
groupId string
isInstance boolean
categories array
disciplines array
View JSON Schema on GitHub

JSON Schema

autodesk-createparameterrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateParameterRequest",
  "title": "CreateParameterRequest",
  "type": "object",
  "required": [
    "name",
    "specId"
  ],
  "properties": {
    "name": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "specId": {
      "type": "string"
    },
    "groupId": {
      "type": "string"
    },
    "isInstance": {
      "type": "boolean"
    },
    "categories": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "disciplines": {
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  }
}