migrate_plus.data_types.schema.yml 778 B

12345678910111213141516171819202122232425262728293031323334353637383940
  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. migrate_process:
  26. type: migrate_plugin
  27. label: 'Process'
  28. # Base schema for migrate source plugins that extend
  29. # \Drupal\migrate\Plugin\migrate\source\SqlBase.
  30. migrate_source_sql:
  31. type: migrate_source
  32. mapping:
  33. target:
  34. type: string
  35. label: 'The migration database target'