import  { {{builderFunction}} } from '@sprucelabs/schema'


export default {{builderFunction}}({
	id: '{{nameCamel}}',
	name: '{{{escape nameReadable}}}',{{#if description}}
    description: '{{{escape description}}}',{{/if}}{{#if moduleToImportFromWhenRemote}}
	moduleToImportFromWhenRemote: '{{{escape moduleToImportFromWhenRemote}}}',{{/if}}
	fields: {
		fieldName1: {
			type: 'text',
			label: 'First Field',
			isRequired: true
		},
		fieldName2: {
			type: 'number',
			label: 'Second Field',
			isRequired: true,
			hint:
				'A hint'
		}
	}
})

