Project

ConstructionBIMProject ManagementAECCADArchitectureEngineeringField Management

Properties

Name Type Description
id string Unique project identifier
accountId string
name string
startDate string
endDate string
projectValue object
status string
jobNumber string
addressLine1 string
addressLine2 string
city string
stateOrProvince string
postalCode string
country string
timezone string
language string
constructionType string
deliveryMethod string
contractType string
currentPhase string
businessUnitsId string
imageUrl string
createdAt string
updatedAt string
View JSON Schema on GitHub

JSON Schema

autodesk-construction-cloud-project-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Project",
  "title": "Project",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique project identifier"
    },
    "accountId": {
      "type": "string"
    },
    "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",
        "suspended"
      ]
    },
    "jobNumber": {
      "type": "string"
    },
    "addressLine1": {
      "type": "string"
    },
    "addressLine2": {
      "type": "string"
    },
    "city": {
      "type": "string"
    },
    "stateOrProvince": {
      "type": "string"
    },
    "postalCode": {
      "type": "string"
    },
    "country": {
      "type": "string"
    },
    "timezone": {
      "type": "string"
    },
    "language": {
      "type": "string"
    },
    "constructionType": {
      "type": "string"
    },
    "deliveryMethod": {
      "type": "string"
    },
    "contractType": {
      "type": "string"
    },
    "currentPhase": {
      "type": "string"
    },
    "businessUnitsId": {
      "type": "string"
    },
    "imageUrl": {
      "type": "string"
    },
    "createdAt": {
      "type": "string",
      "format": "date-time"
    },
    "updatedAt": {
      "type": "string",
      "format": "date-time"
    }
  }
}