Mercurial > hg > isophonics-drupal-site
annotate core/modules/field/config/schema/field.schema.yml @ 19:fa3358dc1485 tip
Add ndrum files
author | Chris Cannam |
---|---|
date | Wed, 28 Aug 2019 13:14:47 +0100 |
parents | 4c8ae668cc8c |
children |
rev | line source |
---|---|
Chris@0 | 1 # Schema for configuration files of the Field module. |
Chris@0 | 2 |
Chris@0 | 3 field.settings: |
Chris@0 | 4 type: config_object |
Chris@0 | 5 label: 'Field settings' |
Chris@0 | 6 mapping: |
Chris@0 | 7 purge_batch_size: |
Chris@0 | 8 type: integer |
Chris@0 | 9 label: 'Maximum number of field data records to purge' |
Chris@0 | 10 |
Chris@0 | 11 field.storage.*.*: |
Chris@0 | 12 type: config_entity |
Chris@0 | 13 label: 'Field' |
Chris@0 | 14 mapping: |
Chris@0 | 15 id: |
Chris@0 | 16 type: string |
Chris@0 | 17 label: 'ID' |
Chris@0 | 18 field_name: |
Chris@0 | 19 type: string |
Chris@0 | 20 label: 'Field name' |
Chris@0 | 21 entity_type: |
Chris@0 | 22 type: string |
Chris@0 | 23 label: 'Entity type' |
Chris@0 | 24 type: |
Chris@0 | 25 type: string |
Chris@0 | 26 label: 'Type' |
Chris@0 | 27 settings: |
Chris@0 | 28 type: field.storage_settings.[%parent.type] |
Chris@0 | 29 module: |
Chris@0 | 30 type: string |
Chris@0 | 31 label: 'Module' |
Chris@0 | 32 locked: |
Chris@0 | 33 type: boolean |
Chris@0 | 34 label: 'Locked' |
Chris@0 | 35 cardinality: |
Chris@0 | 36 type: integer |
Chris@0 | 37 label: 'Maximum number of values users can enter' |
Chris@0 | 38 translatable: |
Chris@0 | 39 type: boolean |
Chris@0 | 40 label: 'Translatable' |
Chris@0 | 41 indexes: |
Chris@0 | 42 type: sequence |
Chris@0 | 43 label: 'Indexes' |
Chris@0 | 44 sequence: |
Chris@0 | 45 type: sequence |
Chris@0 | 46 label: 'Indexes' |
Chris@0 | 47 sequence: |
Chris@0 | 48 type: ignore |
Chris@0 | 49 label: 'Index' |
Chris@0 | 50 persist_with_no_fields: |
Chris@0 | 51 type: boolean |
Chris@0 | 52 label: 'Persist field storage with no fields' |
Chris@0 | 53 custom_storage: |
Chris@0 | 54 type: boolean |
Chris@0 | 55 label: 'Enable custom storage' |
Chris@0 | 56 |
Chris@0 | 57 field.field.*.*.*: |
Chris@0 | 58 type: field_config_base |
Chris@0 | 59 label: 'Field' |