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.

page.json 661B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "$id": "page.json#",
  3. "$schema": "http://json-schema.org/draft-06/schema#",
  4. "type": "object",
  5. "optional": true,
  6. "required": [
  7. "startedDateTime",
  8. "id",
  9. "title",
  10. "pageTimings"
  11. ],
  12. "properties": {
  13. "startedDateTime": {
  14. "type": "string",
  15. "format": "date-time",
  16. "pattern": "^(\\d{4})(-)?(\\d\\d)(-)?(\\d\\d)(T)?(\\d\\d)(:)?(\\d\\d)(:)?(\\d\\d)(\\.\\d+)?(Z|([+-])(\\d\\d)(:)?(\\d\\d))"
  17. },
  18. "id": {
  19. "type": "string",
  20. "unique": true
  21. },
  22. "title": {
  23. "type": "string"
  24. },
  25. "pageTimings": {
  26. "$ref": "pageTimings.json#"
  27. },
  28. "comment": {
  29. "type": "string"
  30. }
  31. }
  32. }