``` event: { name: 'event', ...
# community-help
m
Copy code
event: {
            name: 'event',
            num_documents: 0,
            enable_nested_fields: true,
            fields: [
                { name: 'title', type: 'string' },
                { name: 'logoUrl', type: 'string', optional: true },
                { name: 'bannerUrl', type: 'string', optional: true },
                { name: 'published', type: 'bool' },
                { name: 'place', type: 'object' },
                { name: 'place.formattedAddress', type: 'string' },
                {
                    name: 'place.location',
                    type: 'geopoint',
                },
                { name: 'place.lat', type: 'float' },
                { name: 'place.lng', type: 'float' },
                { name: 'startAtUnix', type: 'int64' },
                { name: 'startAtUtc', type: 'string' },
                { name: 'startAtLocal', type: 'string' },
                { name: 'endAtUnix', type: 'int64' },
                { name: 'endAtUtc', type: 'string' },
                { name: 'endAtLocal', type: 'string' },
                { name: 'iana', type: 'string' },
            ] as const,
        },