Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

log.json 591B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "$id": "log.json#",
  3. "$schema": "http://json-schema.org/draft-06/schema#",
  4. "type": "object",
  5. "required": [
  6. "version",
  7. "creator",
  8. "entries"
  9. ],
  10. "properties": {
  11. "version": {
  12. "type": "string"
  13. },
  14. "creator": {
  15. "$ref": "creator.json#"
  16. },
  17. "browser": {
  18. "$ref": "browser.json#"
  19. },
  20. "pages": {
  21. "type": "array",
  22. "items": {
  23. "$ref": "page.json#"
  24. }
  25. },
  26. "entries": {
  27. "type": "array",
  28. "items": {
  29. "$ref": "entry.json#"
  30. }
  31. },
  32. "comment": {
  33. "type": "string"
  34. }
  35. }
  36. }