@cognigy/rest-api-client
Version:
Cognigy REST-Client
23 lines • 683 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.entityMetaSchema = exports.entityMetaKeys = void 0;
exports.entityMetaKeys = [
"_id",
"createdBy",
"createdAt",
"lastChanged",
"lastChangedBy",
];
exports.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