@appsemble/utils
Version:
Utility functions used in Appsemble internally
17 lines • 526 B
JavaScript
export const TrainingCompleted = {
type: 'object',
description: 'Object which stores that a user has completed a certain training',
additionalProperties: false,
properties: {
trainingId: {
type: 'string',
description: 'The training that the user has completed.',
readOnly: true,
},
userId: {
type: 'string',
description: 'The user who completed the training',
},
},
};
//# sourceMappingURL=TrainingCompleted.js.map