You are here

tour.schema.yml in Drupal 10

core/modules/tour/config/schema/tour.schema.yml

File

core/modules/tour/config/schema/tour.schema.yml
View source
  1. # Schema for the configuration files of the Tour module.
  2. tour.tour.*:
  3. type: config_entity
  4. label: 'Tour settings'
  5. mapping:
  6. id:
  7. type: string
  8. label: 'ID'
  9. label:
  10. type: label
  11. label: 'Label'
  12. module:
  13. type: string
  14. label: 'Providing module'
  15. routes:
  16. type: sequence
  17. label: 'Route settings'
  18. sequence:
  19. type: route
  20. label: 'Route'
  21. tips:
  22. type: sequence
  23. label: 'Tips'
  24. sequence:
  25. type: tour.tip.[plugin]
  26. label: 'Tour tip'
  27. tour.tip:
  28. type: mapping
  29. label: 'Tour tip'
  30. mapping:
  31. id:
  32. type: string
  33. label: 'ID'
  34. plugin:
  35. type: string
  36. label: 'Plugin'
  37. label:
  38. type: label
  39. label: 'Label'
  40. weight:
  41. type: integer
  42. label: 'Weight'
  43. position:
  44. type: string
  45. label: 'Position'
  46. selector:
  47. type: string
  48. label: 'Selector'
  49. tour.tip.text:
  50. type: tour.tip
  51. label: 'Textual tour tip'
  52. mapping:
  53. body:
  54. type: text
  55. label: 'Body'