Autodesk · Schema

AddProjectUserRequest

Fortune 10003D ModelingArchitectureBIMCADConstructionDesignDigital TwinsEngineeringManufacturingMedia and EntertainmentSustainability

Properties

Name Type Description
email string
products array
industryRoles array
companyId string
View JSON Schema on GitHub

JSON Schema

autodesk-addprojectuserrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AddProjectUserRequest",
  "title": "AddProjectUserRequest",
  "type": "object",
  "required": [
    "email"
  ],
  "properties": {
    "email": {
      "type": "string"
    },
    "products": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "key": {
            "type": "string"
          },
          "access": {
            "type": "string",
            "enum": [
              "administrator",
              "member"
            ]
          }
        }
      }
    },
    "industryRoles": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "companyId": {
      "type": "string"
    }
  }
}