Autodesk Construction Cloud · Schema
ProjectRequest
ConstructionBIMProject ManagementAECCADArchitectureEngineeringField Management
Properties
| Name | Type | Description |
|---|---|---|
| name | string | |
| startDate | string | |
| endDate | string | |
| projectValue | object | |
| status | string | |
| jobNumber | string | |
| timezone | string | |
| language | string | |
| constructionType | string | |
| deliveryMethod | string | |
| contractType | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ProjectRequest",
"title": "ProjectRequest",
"type": "object",
"required": [
"name",
"startDate",
"projectType"
],
"properties": {
"name": {
"type": "string"
},
"startDate": {
"type": "string",
"format": "date"
},
"endDate": {
"type": "string",
"format": "date"
},
"projectValue": {
"type": "object",
"properties": {
"value": {
"type": "number"
},
"currency": {
"type": "string"
}
}
},
"status": {
"type": "string",
"enum": [
"active",
"inactive"
]
},
"jobNumber": {
"type": "string"
},
"timezone": {
"type": "string"
},
"language": {
"type": "string"
},
"constructionType": {
"type": "string"
},
"deliveryMethod": {
"type": "string"
},
"contractType": {
"type": "string"
}
}
}