How AI is applied across API Evangelist and APIs.io. Read my AI disclosure →
API Evangelist API Evangelist
Discovery
Learnings
Guidance
Toolbox
Alignment
API Evangelist LLC

OpenLattice edm API

API endpoints to the entity data model.

OpenLattice edm API is one of 7 APIs that OpenLattice publishes on the APIs.io network, described by a machine-readable OpenAPI specification.

Tagged areas include edm. The published artifact set on APIs.io includes an OpenAPI specification and an API reference.

This API exposes 50 operations across 31 paths. It is described by OpenAPI 3.0.0, at version 0.0.1.

Requests are made against 3 base URLs: https://api.openlattice.com, https://api.staging.openlattice.com, http://localhost:8080.

50 operations 31 paths 0 schemas 9 DELETE23 GET7 PATCH7 POST4 PUT

Metadata

The identity and technical contract details declared by the specification.

Specification
OpenAPI 3.0.0
API Version
0.0.1
Base URL
https://api.openlattice.com
Authentication
HTTP Bearer, API Key
License
Terms of Service
Resource Areas
1

Authentication & Security 2

OpenLattice edm API declares 2 security schemes for authenticating requests. It accepts HTTP bearer tokens (JWT) (http_auth). An API key is passed in the header as Authorization (openlattice_auth).

Paths & Operations 50

Across 31 paths, the API surfaces 50 operations — 9 DELETE, 23 GET, 7 PATCH, 7 POST, 4 PUT. Each is listed below with its method, path, parameters, and response codes.

edm 50

API endpoints to the entity data model.

GET
/datastore/edm/
Gets the entity data model, including namespaces, schemas, entity types, association types, and property types.
getEntityDataModel → 200
PATCH
/datastore/edm/
Updates the entity data model, including schemas, entity types, association types, and property types.
updateEntityDataModel body → 200
POST
/datastore/edm/diff/
Gets the changes between the existing entity data model and the entity data model passed in, including schemas, association types, entity types, and property types.
getEntityDataModelDiff body → 200
GET
/datastore/edm/version/
Returns the current entity data model version.
getEntityDataModelVersion → 200
GET
/datastore/edm/entity/set/{entitySetId}
Get the EntitySet definition for the given EntitySet UUID.
getEntitySet 1 param → 200
DELETE
/datastore/edm/entity/set/{entitySetId}
Deletes the EntitySet definition for the given EntitySet UUID.
deleteEntitySet 1 param → 200
PATCH
/datastore/edm/entity/set/{entitySetId}
Updates the EntityType definition for the given EntitySet UUID with the given metadata.
updateEntitySetMetaData 1 param body → 200
GET
/datastore/edm/ids/entity/set/{entitySetName}
Gets the EntitySet UUID for the given EntitySet name.
getEntitySetId 1 param → 200
GET
/datastore/edm/entity/set
Get all EntitySet definitions.
getAllEntitySets → 200
POST
/datastore/edm/entity/set
Create new EntitySet definitions if they don"t exist.
createEntitySets body → 200
GET
/datastore/edm/entity/set/{entitySetId}/property/type
Get all property type metadata for an entity set.
getAllEntitySetPropertyMetadata 1 param → 200
GET
/datastore/edm/entity/set/{entitySetId}/property/type/{propertyTypeId}/
Get specified property type metadata for an entity set.
getEntitySetPropertyMetadata 2 params → 200
POST
/datastore/edm/entity/set/{entitySetId}/property/type/{propertyTypeId}/
Updates the property type metadata for the given entity set.
updateEntitySetPropertyMetadata 2 params body → 200
GET
/datastore/edm/entity/type/{entityTypeId}
Gets the EntityType definition for the given EntityType UUID.
getEntityType 1 param → 200
DELETE
/datastore/edm/entity/type/{entityTypeId}
Deletes the EntityType definition for the given EntityType UUID.
deleteEntityType 1 param → 200
PATCH
/datastore/edm/entity/type/{entityTypeId}
Updates the EntityType definition for the given EntityType UUID with the given metadata.
updateEntityTypeMetaData 1 param body → 200
GET
/datastore/edm/ids/entity/type/{namespace}/{name}
Gets the EntityType UUID for the given EntityType FQN.
getEntityTypeId 2 params → 200
PUT
/datastore/edm/entity/type/{entityTypeId}/{propertyTypeId}
Updates the EntityType definition for the given EntityType UUID by adding the given PropertyType UUID.
addPropertyTypeToEntityType 2 params → 200
DELETE
/datastore/edm/entity/type/{entityTypeId}/{propertyTypeId}
Updates the EntityType definition for the given EntityType UUID by removing the given PropertyType UUID.
removePropertyTypeFromEntityType 2 params → 200
DELETE
/datastore/edm/entity/type/{entityTypeId}/{propertyTypeId}/force
Updates the EntityType definition for the given EntityType UUID by removing the given PropertyType UUID, regardless of whether or not there is data associated with the entity type.
forceRemovePropertyTypeFromEntityType 2 params → 200
GET
/datastore/edm/entity/type/
Gets all EntityType definitions.
getAllEntityTypes → 200
POST
/datastore/edm/entity/type/
Creates a new EntityType definition, if it doesn't exist.
createEntityType body → 200
GET
/datastore/edm/association/type/
Gets all association EntityType definitions.
getAllAssociationEntityTypes → 200
POST
/datastore/edm/association/type/
Creates a new AssociationType definition, if it doesn"t exist.
createAssociationType body → 200
PATCH
/datastore/edm/entity/type/{entityTypeId}/property/type
Updates the EntityType definition for the given EntityType UUID by reordering its properties as specified by the provided list.
reorderPropertyTypesInEntityType 2 params → 200
PATCH
/datastore/edm/entity/type/{entityTypeId}/hierarchy
Get the EntityType hierarchy for the given EntityType UUID.
getEntityTypeHierarchy 1 param → 200
GET
/datastore/edm/property/type/{propertyTypeId}
Gets the PropertyType definition for the given PropertyType UUID.
getPropertyType 1 param → 200
DELETE
/datastore/edm/property/type/{propertyTypeId}
Deletes the PropertyType definition for the given PropertyType UUID.
deletePropertyType 1 param → 200
PATCH
/datastore/edm/property/type/{propertyTypeId}
Updates the PropertyType definition for the given PropertyType UUID with the given metadata.
updatePropertyTypeMetaData 1 param body → 200
DELETE
/datastore/edm/property/type/{propertyTypeId}/force
Deletes the PropertyType definition for the given PropertyType UUID regardless of whether or not there is data associated with it.
forceDeletePropertyType 1 param → 200
GET
/datastore/edm/ids/property/type/{namespace}/{name}
Gets the PropertyType UUID for the given PropertyType FQN.
getPropertyTypeId 2 params → 200
GET
/datastore/edm/property/type/
Gets all PropertyType definitions.
getAllPropertyTypes → 200
POST
/datastore/edm/property/type/
Creates a new PropertyType definition, if it doesn"t exist.
createPropertyType body → 200
GET
/datastore/edm/property/type/namespace/{namespace}
Gets all PropertyType definitions under the given namespace.
getAllPropertyTypesInNamespace 1 param → 200
GET
/datastore/edm/association/type/{associationTypeId}
Get the AssociationType definition for the given AssociationType UUID.
getAssociationType 1 param → 200
DELETE
/datastore/edm/association/type/{associationTypeId}
Delete the AssociationType definition for the given AssociationType UUID.
deleteAssociationType 1 param → 200
GET
/datastore/edm/association/type/{associationTypeId}/detailed
Get details about the AssociationType for the given AssociationType UUID.
getAssociationTypeDetails 1 param → 200
GET
/datastore/edm/association/type/{associationTypeId}/available
Get all available associations for the given AssociationType UUID.
getAllAvailableAssociationTypes 1 param → 200
PUT
/datastore/edm/association/type/{associationTypeId}/dst/{entityTypeId}
Update the AssociationType dst entity types for the given AssociationType UUID by adding the given EntityType UUID.
addDstEntityTypeToAssociationType 2 params → 200
DELETE
/datastore/edm/association/type/{associationTypeId}/dst/{entityTypeId}
Updates the AssociationType dst entity types for the given AssociationType UUID by removing the given EntityType UUID.
removeDstEntityTypeFromAssociationType 2 params → 200
PUT
/datastore/edm/association/type/{associationTypeId}/src/{entityTypeId}
Update the AssociationType src entity types for the given AssociationType UUID by adding the given EntityType UUID.
addSrcEntityTypeToAssociationType 2 params → 200
DELETE
/datastore/edm/association/type/{associationTypeId}/src/{entityTypeId}
Updates the AssociationType src entity types for the given AssociationType UUID by removing the given EntityType UUID.
removeSrcEntityTypeFromAssociationType 2 params → 200
GET
/datastore/edm/summary
Get Property Usage Summary for all properties.
getAllPropertyUsageSummaries → 200
GET
/datastore/edm/summary/{propertyTypeId}
Get Property Usage Summary for property with given ID.
getPropertyUsageSummary 1 param → 200
GET
/datastore/edm/schema/{namespace}/{name}
Gets the schema contents for a corresponding namespace and name.
getSchemaContents 3 params → 200
PUT
/datastore/edm/schema/{namespace}/{name}
Creates an empty schema, if it doesn't exist. If schema exists then no action is taken.
createEmptySchema 2 params → 200
PATCH
/datastore/edm/schema/{namespace}/{name}
Edits the schema contents for a corresponding namespace and name.
updateSchema 2 params body → 200
GET
/datastore/edm/schema
Gets all schemas.
getSchemas → 200
POST
/datastore/edm/schema
Creates an empty schema, if it doesn't exist. If schema exists then no action is taken.
createSchemaIfNotExists body → 200
GET
/datastore/edm/schema/{namespace}
Gets all schemas associated with a given namespace and accessible by the caller.
getSchemasInNamespace 1 param → 200

Specification

The full machine-readable OpenAPI contract behind this narrative.

Source

openlattice-edm-api-openapi.yml Raw ↑

Other APIs OpenLattice publishes across the network.

OpenLattice authorizations API
OpenLattice data API
OpenLattice organizations API
OpenLattice permissions API
OpenLattice principal API
OpenLattice search API
Where this information came from

This is an independent, third-party profile of OpenLattice edm API, published by API Evangelist. We do not operate, host, resell, or support these APIs, and we are not affiliated with or endorsed by the company unless stated above. Everything here is built from publicly available information — the company's own site, developer portal, documentation, public repositories, and the specifications it publishes for public use. Nothing is obtained by breaching a system, defeating an access control, or using credentials.

The Kin Score and Agent Readiness rating are independently calculated assessments of a company's public API artifacts, scored against a published rubric. They are not certifications, endorsements, security assessments, or audits.

Corrections, re-scores, and removal are free — no partnership or purchase required, and you do not need to justify the request. A removed company is recorded as unrated, never scored zero for having asked. Acknowledgement within one business day; removal within two.

info@apievangelist.com · Read the full data-sourcing policy →
On a security or compliance team? Put security in the subject line and you will get a person, not a form — we will tell you exactly which public URLs this profile was built from.