page.json 604 B

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