You are here

checklistapi.schema.yml in Checklist API 8

config/schema/checklistapi.schema.yml

File

config/schema/checklistapi.schema.yml
View source
  1. # Schema for the configuration files of the Checklist API module.
  2. checklistapi.progress.*:
  3. type: config_object
  4. label: 'Checklist saved progress'
  5. mapping:
  6. progress:
  7. type: mapping
  8. label: 'The saved progress data.'
  9. mapping:
  10. '#changed':
  11. type: integer
  12. label: 'Last changed timestamp'
  13. '#changed_by':
  14. type: string
  15. label: 'Last change user ID'
  16. '#completed_items':
  17. type: integer
  18. label: 'Number of completed items'
  19. '#items':
  20. type: sequence
  21. label: 'Checklist items'
  22. sequence:
  23. type: mapping
  24. mapping:
  25. '#completed':
  26. type: integer
  27. label: 'Completed timestamp'
  28. '#uid':
  29. type: string
  30. label: 'Completed user ID'