Bentley Systems · JSON Structure

Bentley Changeset Structure

Structural definition of an iModel changeset — atomic set of edits in an authoring session.

Type: Properties: 0
Infrastructure EngineeringDigital TwinBIMCADReality CaptureConstructionAsset ManagementGeospatialiTwiniModel

Changeset is a JSON Structure definition published by Bentley Systems. It conforms to the https://json-structure.org/schema meta-schema.

Meta-schema: https://json-structure.org/schema

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/schema",
  "name": "Changeset",
  "description": "Structural definition of an iModel changeset \u2014 atomic set of edits in an authoring session.",
  "fields": [
    {
      "name": "id",
      "type": "string",
      "required": true
    },
    {
      "name": "index",
      "type": "integer",
      "required": true,
      "description": "Sequential index in the iModel timeline."
    },
    {
      "name": "parentId",
      "type": "string",
      "required": false
    },
    {
      "name": "briefcaseId",
      "type": "integer",
      "required": true
    },
    {
      "name": "pushDateTime",
      "type": "datetime",
      "required": true
    },
    {
      "name": "fileSize",
      "type": "long",
      "required": true
    },
    {
      "name": "state",
      "type": "enum",
      "values": [
        "waitingForFile",
        "fileUploaded"
      ]
    }
  ]
}