EntitySpecification Data Type

Abstract Type
Properties
name data type description
propertySpecifications array of PropertySpecification
propertyGroup string
entitySpecType string
uniqueKeyProps array of string
propertyNames array of string
requiredProps array of string
entitySchemaJson string
Properties inherited from Entity
timeOfLastChange number
timeOfCreation number
key string
description string
type string
restricted array of string
viewAble array of string
updateable array of string
richDescription string
score number
customProperties array of CustomProperty

Example

This data type is abstract. The example below may be incomplete. More accurate examples can be found in subtypes pages.
{
  "propertySpecifications" : [ {
    "name" : "...",
    "supports_special_chars" : true,
    "permission_group" : "...",
    "facetable" : true,
    "_case_sensitive" : true,
    "description" : "...",
    "groupKey" : "...",
    "label" : "...",
    "is_custom_property" : true,
    "_custom_property" : true,
    "item_type" : "...",
    "property_type" : "...",
    "searchable" : true
  }, {
    "name" : "...",
    "supports_special_chars" : true,
    "permission_group" : "...",
    "facetable" : true,
    "_case_sensitive" : true,
    "description" : "...",
    "groupKey" : "...",
    "label" : "...",
    "is_custom_property" : true,
    "_custom_property" : true,
    "item_type" : "...",
    "property_type" : "...",
    "searchable" : true
  } ],
  "propertyGroup" : "...",
  "entitySpecType" : "...",
  "uniqueKeyProps" : [ "...", "..." ],
  "propertyNames" : [ "...", "..." ],
  "requiredProps" : [ "...", "..." ],
  "entitySchemaJson" : "...",
  "timeOfLastChange" : 12345,
  "timeOfCreation" : 12345,
  "key" : "...",
  "description" : "...",
  "type" : "...",
  "restricted" : [ "...", "..." ],
  "viewAble" : [ "...", "..." ],
  "updateable" : [ "...", "..." ],
  "richDescription" : "...",
  "score" : 12345.0,
  "customProperties" : [ {
    "description" : "...",
    "value" : { },
    "facetAble" : true,
    "name" : "...",
    "type" : "...",
    "displayName" : "..."
  }, {
    "description" : "...",
    "value" : { },
    "facetAble" : true,
    "name" : "...",
    "type" : "...",
    "displayName" : "..."
  } ]
}