Autodesk Construction Cloud · Schema
ProjectUser
ConstructionBIMProject ManagementAECCADArchitectureEngineeringField Management
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| userId | string | |
| string | ||
| name | string | |
| firstName | string | |
| lastName | string | |
| status | string | |
| roleIds | array | |
| companyId | string | |
| createdAt | string |
JSON Schema
{
"$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"
}
}
}