AtlasEnumDef Data Type

class that captures details of an enum-type.

Properties
name data type description
elementDefs array of AtlasEnumElementDef
defaultValue string
Properties inherited from AtlasBaseTypeDef
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

{
  "elementDefs" : [ {
    "value" : "...",
    "description" : "...",
    "ordinal" : 12345
  }, {
    "value" : "...",
    "description" : "...",
    "ordinal" : 12345
  } ],
  "defaultValue" : "...",
  "category" : "PRIMITIVE",
  "guid" : "...",
  "createdBy" : "...",
  "updatedBy" : "...",
  "createTime" : 12345,
  "updateTime" : 12345,
  "version" : 12345,
  "name" : "...",
  "description" : "...",
  "typeVersion" : "...",
  "options" : {
    "property1" : "...",
    "property2" : "..."
  }
}