mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2026-04-06 01:25:31 +00:00
8 lines
324 B
TypeScript
8 lines
324 B
TypeScript
export default {
|
|
id: { type: 'string', primary: true, lowercase: true },
|
|
type: { type: 'string', valid: ['verification', 'trophy'] },
|
|
icon: { type: 'string', required: true },
|
|
description: { type: 'string', required: true },
|
|
createdAt: { type: 'string', isoDate: true, default: () => new Date().toISOString() },
|
|
}
|