Autodesk · Schema
CreateProjectRequest
Fortune 10003D ModelingArchitectureBIMCADConstructionDesignDigital TwinsEngineeringManufacturingMedia and EntertainmentSustainability
Properties
| Name | Type | Description |
|---|---|---|
| name | string | |
| type | string | |
| status | string | |
| jobNumber | string | |
| addressLine1 | string | |
| city | string | |
| stateOrProvince | string | |
| postalCode | string | |
| country | string | |
| timezone | string | |
| constructionType | string | |
| deliveryMethod | string | |
| startDate | string | |
| endDate | string | |
| value | number | |
| currency | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CreateProjectRequest",
"title": "CreateProjectRequest",
"type": "object",
"required": [
"name"
],
"properties": {
"name": {
"type": "string"
},
"type": {
"type": "string"
},
"status": {
"type": "string",
"enum": [
"active",
"inactive"
]
},
"jobNumber": {
"type": "string"
},
"addressLine1": {
"type": "string"
},
"city": {
"type": "string"
},
"stateOrProvince": {
"type": "string"
},
"postalCode": {
"type": "string"
},
"country": {
"type": "string"
},
"timezone": {
"type": "string"
},
"constructionType": {
"type": "string"
},
"deliveryMethod": {
"type": "string"
},
"startDate": {
"type": "string",
"format": "date"
},
"endDate": {
"type": "string",
"format": "date"
},
"value": {
"type": "number"
},
"currency": {
"type": "string"
}
}
}