ProjectUser

ConstructionBIMProject ManagementAECCADArchitectureEngineeringField Management

Properties

Name Type Description
id string
userId string
email string
name string
firstName string
lastName string
status string
roleIds array
companyId string
createdAt string
View JSON Schema on GitHub

JSON Schema

autodesk-construction-cloud-projectuser-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ProjectUser",
  "title": "ProjectUser",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "userId": {
      "type": "string"
    },
    "email": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "firstName": {
      "type": "string"
    },
    "lastName": {
      "type": "string"
    },
    "status": {
      "type": "string",
      "enum": [
        "active",
        "inactive",
        "pending"
      ]
    },
    "roleIds": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "companyId": {
      "type": "string"
    },
    "createdAt": {
      "type": "string",
      "format": "date-time"
    }
  }
}