2020-06-03 14:43:34 +01:00
|
|
|
export default {
|
|
|
|
properties: {
|
|
|
|
collection: { type: 'string' },
|
2020-08-31 19:25:48 +08:00
|
|
|
value_field: { type: 'string' },
|
|
|
|
search_fields: { type: 'array', minItems: 1, items: { type: 'string' } },
|
2020-06-03 14:43:34 +01:00
|
|
|
file: { type: 'string' },
|
|
|
|
multiple: { type: 'boolean' },
|
2020-08-31 19:25:48 +08:00
|
|
|
display_fields: { type: 'array', minItems: 1, items: { type: 'string' } },
|
|
|
|
options_length: { type: 'integer' },
|
2020-06-03 14:43:34 +01:00
|
|
|
},
|
2020-08-31 19:25:48 +08:00
|
|
|
oneOf: [
|
|
|
|
{
|
|
|
|
required: ['collection', 'value_field', 'search_fields'],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
required: ['collection', 'valueField', 'searchFields'],
|
|
|
|
},
|
|
|
|
],
|
2020-06-03 14:43:34 +01:00
|
|
|
};
|