You are here

migrate.data_types.schema.yml in Zircon Profile 8.0

Same filename and directory in other branches
  1. 8 core/modules/migrate/config/schema/migrate.data_types.schema.yml
core/modules/migrate/config/schema/migrate.data_types.schema.yml

File

core/modules/migrate/config/schema/migrate.data_types.schema.yml
View source
  1. # Basic data types for Migrate.
  2. migrate_plugin:
  3. type: mapping
  4. mapping:
  5. plugin:
  6. type: string
  7. label: 'Plugin'
  8. migrate_destination:
  9. type: migrate_plugin
  10. label: 'Destination'
  11. mapping:
  12. overwrite_properties:
  13. type: sequence
  14. label: 'Properties to overwrite'
  15. sequence:
  16. type: string
  17. label: 'Property'
  18. migrate_source:
  19. type: migrate_plugin
  20. label: 'Source'
  21. mapping:
  22. constants:
  23. type: ignore
  24. label: 'Constants'
  25. # Base schema for migrate source plugins that extend
  26. # \Drupal\migrate\Plugin\migrate\source\SqlBase.
  27. migrate_source_sql:
  28. type: migrate_source
  29. mapping:
  30. target:
  31. type: string
  32. label: 'The migration database target'