ProjectUpdateRequest

ConstructionBIMProject ManagementAECCADArchitectureEngineeringField Management

Properties

Name Type Description
name string
status string
endDate string
currentPhase string
View JSON Schema on GitHub

JSON Schema

autodesk-construction-cloud-projectupdaterequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ProjectUpdateRequest",
  "title": "ProjectUpdateRequest",
  "type": "object",
  "properties": {
    "name": {
      "type": "string"
    },
    "status": {
      "type": "string",
      "enum": [
        "active",
        "inactive",
        "suspended"
      ]
    },
    "endDate": {
      "type": "string",
      "format": "date"
    },
    "currentPhase": {
      "type": "string"
    }
  }
}