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