UNPKG

netlify-cms-widget-relation

Version:

Widget for linking related entries in Netlify CMS.

22 lines (21 loc) 605 B
export default { properties: { collection: { type: 'string' }, value_field: { type: 'string' }, search_fields: { type: 'array', minItems: 1, items: { type: 'string' } }, file: { type: 'string' }, multiple: { type: 'boolean' }, min: { type: 'integer' }, max: { type: 'integer' }, display_fields: { type: 'array', minItems: 1, items: { type: 'string' } }, options_length: { type: 'integer' }, }, oneOf: [ { required: ['collection', 'value_field', 'search_fields'], }, { required: ['collection', 'valueField', 'searchFields'], }, ], };