ClassificationAssociateRequest Data Type

Properties
name data type description
classification AtlasClassification
entitiesUniqueAttributes array of map of object
entityGuids array of string
entityTypeName string

Example

{
  "classification" : {
    "entityGuid" : "...",
    "entityStatus" : "ACTIVE",
    "propagate" : true,
    "removePropagationsOnEntityDelete" : true,
    "validityPeriods" : [ {
      "endTime" : "...",
      "startTime" : "...",
      "timeZone" : "..."
    }, {
      "endTime" : "...",
      "startTime" : "...",
      "timeZone" : "..."
    } ],
    "attributes" : {
      "property1" : { },
      "property2" : { }
    },
    "typeName" : "..."
  },
  "entitiesUniqueAttributes" : [ {
    "property1" : { },
    "property2" : { }
  }, {
    "property1" : { },
    "property2" : { }
  } ],
  "entityGuids" : [ "...", "..." ],
  "entityTypeName" : "..."
}