AtlasBaseTypeDef Data Type

Base class that captures common-attributes for all Atlas types.

Abstract Type
Subtypes
AtlasEntityDef, AtlasStructDef, AtlasEnumDef, AtlasClassificationDef
Properties
name data type description
category TypeCategory
guid string
createdBy string
updatedBy string
createTime number
updateTime number
version number
name string
description string
typeVersion string
options map of string

Example

This data type is abstract. The example below may be incomplete. More accurate examples can be found in subtypes pages.
{
  "category" : "OBJECT_ID_TYPE",
  "guid" : "...",
  "createdBy" : "...",
  "updatedBy" : "...",
  "createTime" : 12345,
  "updateTime" : 12345,
  "version" : 12345,
  "name" : "...",
  "description" : "...",
  "typeVersion" : "...",
  "options" : {
    "property1" : "...",
    "property2" : "..."
  }
}