log.json 534 B

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