Added missing modules, including some as submodules.
[yaffs-website] / web / modules / contrib / migrate_plus / config / schema / migrate_plus.data_types.schema.yml
1 # Basic data types for Migrate.
2
3 migrate_plugin:
4   type: mapping
5   mapping:
6     plugin:
7       type: string
8       label: 'Plugin'
9
10 migrate_destination:
11   type: migrate_plugin
12   label: 'Destination'
13   mapping:
14     overwrite_properties:
15       type: sequence
16       label: 'Properties to overwrite'
17       sequence:
18         type: string
19         label: 'Property'
20
21 migrate_source:
22   type: migrate_plugin
23   label: 'Source'
24   mapping:
25     constants:
26       type: ignore
27       label: 'Constants'
28
29 migrate_process:
30   type: migrate_plugin
31   label: 'Process'
32
33 # Base schema for migrate source plugins that extend
34 # \Drupal\migrate\Plugin\migrate\source\SqlBase.
35 migrate_source_sql:
36   type: migrate_source
37   mapping:
38     target:
39       type: string
40       label: 'The migration database target'