mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
9 lines
333 B
JavaScript
9 lines
333 B
JavaScript
export default {
|
|
url: { primary: true, type: 'string', uri: { allowRelative: true } },
|
|
alt: { type: 'string' },
|
|
sensitive: { type: 'boolean', default: false },
|
|
aspectRatio: { type: 'float', default: 1.0 },
|
|
type: { type: 'string' },
|
|
createdAt: { type: 'string', isoDate: true, default: () => new Date().toISOString() },
|
|
}
|