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.

afterRequest.json 717B

123456789101112131415161718192021222324252627282930
  1. {
  2. "$id": "afterRequest.json#",
  3. "$schema": "http://json-schema.org/draft-06/schema#",
  4. "type": "object",
  5. "optional": true,
  6. "required": [
  7. "lastAccess",
  8. "eTag",
  9. "hitCount"
  10. ],
  11. "properties": {
  12. "expires": {
  13. "type": "string",
  14. "pattern": "^(\\d{4})(-)?(\\d\\d)(-)?(\\d\\d)(T)?(\\d\\d)(:)?(\\d\\d)(:)?(\\d\\d)(\\.\\d+)?(Z|([+-])(\\d\\d)(:)?(\\d\\d))?"
  15. },
  16. "lastAccess": {
  17. "type": "string",
  18. "pattern": "^(\\d{4})(-)?(\\d\\d)(-)?(\\d\\d)(T)?(\\d\\d)(:)?(\\d\\d)(:)?(\\d\\d)(\\.\\d+)?(Z|([+-])(\\d\\d)(:)?(\\d\\d))?"
  19. },
  20. "eTag": {
  21. "type": "string"
  22. },
  23. "hitCount": {
  24. "type": "integer"
  25. },
  26. "comment": {
  27. "type": "string"
  28. }
  29. }
  30. }