Files
payload/test/fields/collections/JSON/index.tsx

29 lines
459 B
TypeScript

import type { CollectionConfig } from '../../../../packages/payload/src/collections/config/types'
import { jsonFieldsSlug } from '../../slugs'
type JSONField = {
createdAt: string
id: string
json?: any
updatedAt: string
}
const JSON: CollectionConfig = {
access: {
read: () => true,
},
fields: [
{
name: 'json',
type: 'json',
},
],
slug: jsonFieldsSlug,
versions: {
maxPerDoc: 1,
},
}
export default JSON