UNPKG

@cognigy/rest-api-client

Version:

Cognigy REST-Client

20 lines 556 B
export const entityMetaKeys = [ "_id", "createdBy", "createdAt", "lastChanged", "lastChangedBy", ]; export const entityMetaSchema = { title: "entityMetaSchema", type: "object", additionalProperties: false, properties: { _id: { format: "mongo-id" }, createdBy: { format: "mongo-id" }, createdAt: { type: "integer", format: "timestamp" }, lastChanged: { type: "integer", format: "timestamp" }, lastChangedBy: { format: "mongo-id" }, }, }; //# sourceMappingURL=IEntityMeta.js.map