Bentley Systems · Schema

NamedVersion

A NamedVersion pins a named, immutable point in an iModel's changeset history.

Infrastructure EngineeringDigital TwinBIMCADReality CaptureConstructionAsset ManagementGeospatialiTwiniModel

Properties

Name Type Description
id string
displayName string
name string
description string
changesetId string
changesetIndex integer
createdDateTime string
state string
View JSON Schema on GitHub

JSON Schema

bentley-named-version-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://developer.bentley.com/schemas/named-version.json",
  "title": "NamedVersion",
  "type": "object",
  "description": "A NamedVersion pins a named, immutable point in an iModel's changeset history.",
  "required": [
    "id",
    "name",
    "changesetId"
  ],
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid"
    },
    "displayName": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "changesetId": {
      "type": "string"
    },
    "changesetIndex": {
      "type": "integer"
    },
    "createdDateTime": {
      "type": "string",
      "format": "date-time"
    },
    "state": {
      "type": "string",
      "enum": [
        "visible",
        "hidden"
      ]
    }
  }
}