rules.action.schema.yml

config/schema/rules.action.schema.yml

File

config/schema/rules.action.schema.yml

View source
  1. # Per default the schema of arbitrary context values of an action cannot be
  2. # typed. Actions that need translatability or other features of the config
  3. # system must specify their context value schema explicitly, see examples below.
  4. rules.action.context_values.*:
  5. type: ignore
  6. label: Context values
  7. rules.action.context_values.rules_system_message:
  8. type: mapping
  9. label: Message action context values
  10. mapping:
  11. message:
  12. type: text
  13. type:
  14. type: string
  15. repeat:
  16. type: boolean
  17. rules.action.context_values.rules_send_email:
  18. type: mapping
  19. label: Send email action context values
  20. mapping:
  21. to:
  22. type: sequence
  23. sequence:
  24. type: email
  25. subject:
  26. type: text
  27. message:
  28. type: text
  29. reply:
  30. type: email
  31. language:
  32. type: string