Bentley Systems · Schema

ScheduleTask

A 4D construction schedule task representing planned work over a time interval, optionally linked to iModel elements.

Infrastructure EngineeringDigital TwinBIMCADReality CaptureConstructionAsset ManagementGeospatialiTwiniModel

Properties

Name Type Description
id string
name string
description string
plannedStart string
plannedFinish string
actualStart string
actualFinish string
duration string
percentComplete number
wbsCode string
predecessors array
View JSON Schema on GitHub

JSON Schema

bentley-schedule-task-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://developer.bentley.com/schemas/schedule-task.json",
  "title": "ScheduleTask",
  "type": "object",
  "description": "A 4D construction schedule task representing planned work over a time interval, optionally linked to iModel elements.",
  "required": [
    "id",
    "name"
  ],
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid"
    },
    "name": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "plannedStart": {
      "type": "string",
      "format": "date-time"
    },
    "plannedFinish": {
      "type": "string",
      "format": "date-time"
    },
    "actualStart": {
      "type": "string",
      "format": "date-time"
    },
    "actualFinish": {
      "type": "string",
      "format": "date-time"
    },
    "duration": {
      "type": "string"
    },
    "percentComplete": {
      "type": "number"
    },
    "wbsCode": {
      "type": "string"
    },
    "predecessors": {
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  }
}