page.json (661B)
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 }