AckdbEntity
A company/account entity in ackDB's entity store.
Properties
entityIdstringrequiredInternal ULID identifier for the entity.
namestring | nullrequiredHuman-readable entity name (e.g. company name). May be null for auto-created entities.
createdAtstring <date-time>requiredWhen the entity was first created.
updatedAtstring <date-time>requiredWhen the entity was last updated.
Example
AckdbEntity example
{
"entityId": "01HXYZ123456789ABCDEFGH",
"name": "Acme Corp",
"createdAt": "1970-01-01T00:00:00.000Z",
"updatedAt": "1970-01-01T00:00:00.000Z"
}