Source file json_schema.ml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
open Json_query
exception Duplicate_definition of path
exception Bad_reference of string
exception Cannot_parse of path * exn
exception Dangling_reference of Uri.t
exception Unexpected of string * string
let rec print_error ?print_unknown ppf = function
| Cannot_parse (path, exn) ->
Format.fprintf ppf
"@[<v 2>Schema parse error:@,At %a@,%a@]"
(Json_query.print_path_as_json_path ~wildcards:true) path
(print_error ?print_unknown) exn
| Dangling_reference uri ->
Format.fprintf ppf
"Dangling reference %s" (Uri.to_string uri)
| Bad_reference str ->
Format.fprintf ppf
"Illegal reference notation %s" str
| Unexpected (unex, ex) ->
Format.fprintf ppf
"Unexpected %s instead of %s" unex ex
| exn ->
Json_query.print_error ?print_unknown ppf exn
let version = "http://json-schema.org/draft-04/schema#"
type schema =
{ root : element ;
source : Uri.t ;
definitions : (path * element) list ;
ids : (string * element) list ;
world : schema list }
and element =
{ title : string option ;
description : string option ;
default : Json_repr.any option ;
enum : Json_repr.any list option ;
kind : element_kind ;
format : string option ;
id : string option }
and element_kind =
| Object of object_specs
| Array of element list * array_specs
| Monomorphic_array of element * array_specs
| Combine of combinator * element list
| Def_ref of path
| Id_ref of string
| Ext_ref of Uri.t
| String of string_specs
| Integer of numeric_specs
| Number of numeric_specs
| Boolean | Null | Any
| Dummy
and combinator =
| Any_of | One_of | All_of | Not
and array_specs =
{ min_items : int ;
max_items : int option ;
unique_items : bool ;
additional_items : element option }
and numeric_specs =
{ multiple_of : float option ;
minimum : (float * [ `Inclusive | `Exclusive ]) option ;
maximum : (float * [ `Inclusive | `Exclusive ]) option }
and object_specs =
{ properties : (string * element * bool * Json_repr.any option) list ;
pattern_properties : (string * element) list ;
additional_properties : element option ;
min_properties : int ;
max_properties : int option ;
schema_dependencies : (string * element) list ;
property_dependencies : (string * string list) list }
and string_specs =
{ pattern : string option ;
min_length : int ;
max_length : int option }
let element kind =
{ title = None ; description = None ; default = None ; kind ;
format = None ; enum = None ; id = None }
let find_definition name defs =
List.assoc name defs
let definition_exists name defs =
List.mem_assoc name defs
let insert_definition name elt defs =
let rec insert = function
| [] ->
[ (name, elt) ]
| (defname, _) as def :: rem when defname <> name ->
def :: insert rem
| (_, { kind = Dummy }) :: rem ->
(name, elt) :: rem
| (_, defelt) :: rem ->
if elt <> defelt then raise (Duplicate_definition name) ;
(name, elt) :: rem in
insert defs
module Make (Repr : Json_repr.Repr) = struct
module Query = Json_query.Make (Repr)
open Query
let to_json schema =
let obj l = Repr.repr (`O l) in
let set_always f v =
[ f, Repr.repr v ] in
let set_if_some f v cb =
match v with None -> [] | Some v -> [ f, Repr.repr (cb v) ] in
let set_if_cons f v cb =
match v with [] -> [] | v -> [ f, Repr.repr (cb v) ] in
let set_if_neq f v v' cb =
if v <> v' then [ f, Repr.repr (cb v) ] else [] in
let rec format_element
{ title ; description ; default ; enum ; kind ; format } =
set_if_some "title" title (fun s -> `String s) @
set_if_some "description" description (fun s -> `String s) @
begin match kind with
| Object specs ->
let required = List.fold_left
(fun r (n, _, p, _) -> if p then Repr.repr (`String n) :: r else r)
[] specs.properties in
let properties =
List.map
(fun (n, elt, _, _) -> n, obj (format_element elt))
specs.properties in
set_always "type" (`String "object") @
set_always "properties" (`O properties) @
set_if_cons "required" required (fun l -> `A l) @
set_if_cons "patternProperties" specs.pattern_properties
(fun fs -> `O (List.map (fun (n, elt) -> n, obj (format_element elt)) fs)) @
set_if_neq "additionalProperties" specs.additional_properties (Some (element Any))
(function
| None -> `Bool false
| Some elt -> `O (format_element elt)) @
set_if_neq "minProperties" specs.min_properties 0
(fun i -> `Float (float i)) @
set_if_some "maxProperties" specs.max_properties
(fun i -> `Float (float i)) @
set_if_cons "schemaDependencies" specs.schema_dependencies
(fun fs -> `O (List.map (fun (n, elt) -> n, obj (format_element elt)) fs)) @
set_if_cons "propertyDependencies" specs.property_dependencies
(fun fs ->
let property_dependencies =
let strings ls = List.map (fun s -> Repr.repr (`String s)) ls in
List.map (fun (n, ls) -> n, Repr.repr (`A (strings ls))) fs in
`O property_dependencies)
| Array (elts, specs) ->
set_always "type" (`String "array") @
set_always "items" (`A (List.map (fun elt -> obj (format_element elt)) elts)) @
set_if_neq "minItems" specs.min_items 0 (fun i -> `Float (float i)) @
set_if_some "maxItems" specs.max_items (fun i -> `Float (float i)) @
set_if_neq "uniqueItems" specs.unique_items false (fun b -> `Bool b) @
set_if_neq "additionalItems"
specs.additional_items (Some (element Any))
(function
| None -> `Bool false
| Some elt -> `O (format_element elt))
| Monomorphic_array (elt, {min_items ; max_items ; unique_items }) ->
set_always "type" (`String "array") @
set_always "items" (`O (format_element elt)) @
set_if_neq "minItems"
min_items 0
(fun i -> `Float (float i)) @
set_if_some "maxItems"
max_items
(fun i -> `Float (float i)) @
set_if_neq "uniqueItems"
unique_items false
(fun b -> `Bool b)
| Combine (c, elts) ->
let combinator = function
| Any_of -> "anyOf"
| One_of -> "oneOf"
| All_of -> "allOf"
| Not -> "not" in
set_always (combinator c) (`A (List.map (fun elt -> obj (format_element elt)) elts))
| Def_ref path ->
set_always "$ref" (`String ("#" ^ (json_pointer_of_path path)))
| Id_ref name ->
set_always "$ref" (`String ("#" ^ name))
| Ext_ref uri ->
set_always "$ref" (`String (Uri.to_string uri))
| Integer specs ->
set_always "type" (`String "integer") @
set_if_some "multipleOf" specs.multiple_of (fun v -> `Float v) @
(match specs.minimum with
| None -> []
| Some (v, `Inclusive) ->
[ "minimum", Repr.repr (`Float v) ]
| Some (v, `Exclusive) ->
[ "minimum", Repr.repr (`Float v) ;
"exclusiveMinimum", Repr.repr (`Bool true) ] ) @
(match specs.maximum with
| None -> []
| Some (v, `Inclusive) ->
[ "maximum", Repr.repr (`Float v) ]
| Some (v, `Exclusive) ->
[ "maximum", Repr.repr (`Float v) ;
"exclusiveMaximum", Repr.repr (`Bool true) ] )
| Number specs ->
set_always "type" (`String "number") @
set_if_some "multipleOf" specs.multiple_of (fun v -> `Float v) @
(match specs.minimum with
| None -> []
| Some (v, `Inclusive) ->
[ "minimum", Repr.repr (`Float v) ]
| Some (v, `Exclusive) ->
[ "minimum", Repr.repr (`Float v) ;
"exclusiveMinimum", Repr.repr (`Bool true) ] ) @
(match specs.maximum with
| None -> []
| Some (v, `Inclusive) ->
[ "maximum", Repr.repr (`Float v) ]
| Some (v, `Exclusive) ->
[ "maximum", Repr.repr (`Float v) ;
"exclusiveMaximum", Repr.repr (`Bool true) ] )
| String { pattern ; min_length ; max_length } ->
set_always "type" (`String "string") @
set_if_neq "minLength" min_length 0 (fun i -> `Float (float i)) @
set_if_some "maxLength" max_length (fun i -> `Float (float i)) @
set_if_some "pattern" pattern (fun s -> `String s)
| Boolean ->
set_always "type" (`String "boolean")
| Null ->
set_always "type" (`String "null")
| Dummy ->
invalid_arg "Json_schema.to_json: remaining dummy element"
| Any -> [] end @
set_if_some "default" default (fun j ->
Repr.view (Json_repr.any_to_repr (module Repr) j)) @
set_if_some "enum" enum (fun js ->
`A (List.map (Json_repr.any_to_repr (module Repr)) js)) @
set_if_some "format" format (fun s -> `String s) in
List.fold_left
(fun acc (n, elt) -> insert n (obj (format_element elt)) acc)
(obj (set_always "$schema" (`String version) @
format_element schema.root))
schema.definitions
let unexpected kind expected =
let kind =match kind with
| `O [] -> "empty object"
| `A [] -> "empty array"
| `O _ -> "object"
| `A _ -> "array"
| `Null -> "null"
| `String "" -> "empty string"
| `String _ -> "string"
| `Float _ -> "number"
| `Bool _ -> "boolean" in
Cannot_parse ([], Unexpected (kind, expected))
let at_path p = function Cannot_parse (l, err) -> Cannot_parse (p @ l, err) | exn -> exn
let at_field n = at_path [ `Field n ]
let at_index i = at_path [ `Index i ]
let of_json json =
let opt_field obj n = match Repr.view obj with
| `O ls -> (try Some (List.assoc n ls) with Not_found -> None)
| _ -> None in
let opt_field_view obj n = match Repr.view obj with
| `O ls -> (try Some (Repr.view (List.assoc n ls)) with Not_found -> None)
| _ -> None in
let opt_string_field obj n = match opt_field_view obj n with
| Some (`String s) -> Some s
| Some k -> raise (at_field n @@ unexpected k "string")
| None -> None in
let opt_bool_field def obj n = match opt_field_view obj n with
| Some (`Bool b) -> b
| Some k -> raise (at_field n @@ unexpected k "bool")
| None -> def in
let opt_int_field obj n = match opt_field_view obj n with
| Some (`Float f) when (fst (modf f) = 0.) -> Some (int_of_float f)
| Some k -> raise (at_field n @@ unexpected k "integer")
| None -> None in
let opt_float_field obj n = match opt_field_view obj n with
| Some (`Float f) -> Some f
| Some k -> raise (at_field n @@ unexpected k "number")
| None -> None in
let opt_array_field obj n = match opt_field_view obj n with
| Some (`A s) -> Some s
| Some k -> raise (at_field n @@ unexpected k "array")
| None -> None in
let opt_uri_field obj n = match opt_string_field obj n with
| None -> None
| Some uri ->
match Uri.canonicalize (Uri.of_string uri) with
| exception _ -> raise (Cannot_parse ([], Bad_reference (uri ^ " is not a valid URI")))
| uri -> Some uri in
let schema_source = match opt_uri_field json "id" with
| Some uri -> Uri.with_fragment uri None
| None -> Uri.empty in
let collected_definitions = ref [] in
let collected_id_defs = ref [] in
let collected_id_refs = ref [] in
let rec collect_definition : Uri.t -> element_kind = fun uri ->
match Uri.host uri, Uri.fragment uri with
| Some _ , _ ->
Ext_ref uri
| None, None ->
raise (Cannot_parse ([], Bad_reference (Uri.to_string uri ^ " has no fragment")))
| None, Some fragment when not (String.contains fragment '/') ->
collected_id_refs := fragment :: !collected_id_refs ;
Id_ref fragment
| None, Some fragment ->
let path =
try path_of_json_pointer ~wildcards:false fragment
with err -> raise (Cannot_parse ([], err)) in
try
let raw = query path json in
if not (definition_exists path !collected_definitions) then begin
collected_definitions := insert_definition path (element Dummy) !collected_definitions ;
let elt = try parse_element schema_source raw
with err -> raise (at_path path err) in
collected_definitions := insert_definition path elt !collected_definitions
end ;
Def_ref path
with Not_found -> raise (Cannot_parse ([], Dangling_reference uri))
and parse_element : Uri.t -> Repr.value -> element = fun source json ->
let id = opt_uri_field json "id" in
let id, source = match id with
| None -> None, source
| Some uri ->
let uri = Uri.canonicalize (Uri.resolve "http" source uri) in
Uri.fragment uri, Uri.with_fragment uri None in
if source <> schema_source then
element (Ext_ref (Uri.with_fragment source id))
else
let id = match id with
| None -> None
| Some id when String.contains id '/' ->
raise (at_field "id" @@ Cannot_parse ([], Bad_reference (id ^ " is not a valid ID")))
| Some id -> Some id in
let as_kind =
match opt_field_view json "type" with
| Some (`String name) ->
Some (element (parse_element_kind source json name))
| Some (`A [] as k) ->
raise (at_field "type" @@ unexpected k "type, type array or operator")
| Some (`A l) ->
let rec items i acc = function
| [] ->
let kind = Combine (Any_of, List.rev acc) in
Some (element kind)
| `String name :: tl ->
let kind = parse_element_kind source json name in
let case = element kind in
items (succ i) (case :: acc) tl
| k :: tl ->
raise (at_field "type" @@ at_index i @@ unexpected k "type")
in items 0 [] (List.map Repr.view l)
| Some k ->
raise (at_field "type" @@ unexpected k "type, type array or operator")
| None -> None in
let as_ref =
match opt_uri_field json "$ref" with
| Some uri ->
let path = collect_definition uri in
Some (element path)
| None -> None in
let rec as_nary name combinator others =
let build = function
| [] -> None
| [ case ] -> Some case
| cases ->
let kind = Combine (combinator, cases) in
Some (element kind) in
match opt_field_view json name with
| Some (`A (_ :: _ as cases)) ->
let rec items i acc = function
| elt :: tl ->
let elt = try parse_element source elt
with err -> raise (at_field name @@ at_index i @@ err) in
items (succ i) (elt :: acc) tl
| [] ->
build (others @ List.rev acc)
in items 0 [] cases
| None -> build others
| Some k -> raise (at_field name @@ unexpected k "a list of elements") in
let rec as_not =
match opt_field_view json "not" with
| None -> None
| Some elt ->
let elt = try parse_element source (Repr.repr elt)
with err -> raise (at_field "not" err) in
let kind = Combine (Not, [ elt ]) in
Some (element kind) in
let title = opt_string_field json "title" in
let description = opt_string_field json "description" in
let default = match opt_field json "default" with
| Some v -> Some (Json_repr.repr_to_any (module Repr) v)
| None -> None in
let enum =match opt_array_field json "enum" with
| Some v -> Some (List.map (Json_repr.repr_to_any (module Repr)) v)
| None -> None in
let format = opt_string_field json "format" in
let as_one_of = as_nary "oneOf" One_of [] in
let as_any_of = as_nary "anyOf" Any_of [] in
let all = [ as_kind ; as_ref ; as_not ; as_one_of ; as_any_of ] in
let cases = List.flatten (List.map (function None -> [] | Some e -> [ e ]) all) in
let kind = match as_nary "allOf" All_of cases with
| None -> Any
| Some { kind } -> kind in
{ title ; description ; default ; format ; kind ; enum ; id }
and parse_element_kind
: type a. Uri.t -> Repr.value -> string -> element_kind
= fun source json name ->
let numeric_specs json =
let multiple_of = opt_float_field json "multipleOf" in
let minimum =
if opt_bool_field false json "exclusiveMinimum" then
match opt_float_field json "minimum" with
| None ->
let err =
"minimum field required when exclusiveMinimum is true" in
raise (Failure err)
| Some v -> Some (v, `Inclusive)
else
match opt_float_field json "minimum" with
| None -> None
| Some v -> Some (v, `Exclusive) in
let maximum =
if opt_bool_field false json "exclusiveMaximum" then
match opt_float_field json "maximum" with
| None ->
let err =
"maximum field required when exclusiveMaximum is true" in
raise (Failure err)
| Some v -> Some (v, `Inclusive)
else
match opt_float_field json "maximum" with
| None -> None
| Some v -> Some (v, `Exclusive) in
{ multiple_of ; minimum ; maximum} in
match name with
| "integer" ->
Integer (numeric_specs json)
| "number" ->
Number (numeric_specs json)
| "boolean" -> Boolean
| "null" -> Null
| "string" ->
let specs =
let pattern = opt_string_field json "pattern" in
let min_length = opt_int_field json "minLength" in
let max_length = opt_int_field json "maxLength" in
let min_length = match min_length with None -> 0 | Some l -> l in
{ pattern ; min_length ; max_length } in
String specs
| "array" ->
let specs =
let unique_items = opt_bool_field false json "uniqueItems" in
let min_items = opt_int_field json "minItems" in
let max_items = opt_int_field json "maxItems" in
let min_items = match min_items with None -> 0 | Some l -> l in
match opt_field_view json "additionalItems" with
| None | Some (`Bool true) ->
{ min_items ; max_items ; unique_items ; additional_items = Some (element Any) }
| Some (`Bool false) ->
{ min_items ; max_items ; unique_items ; additional_items = None }
| Some elt ->
let elt = try parse_element source (Repr.repr elt)
with err -> raise (at_field "additionalItems" err) in
{ min_items ; max_items ; unique_items ; additional_items = Some elt } in
begin match opt_field_view json "items" with
| Some (`A elts) ->
let rec elements i acc = function
| [] ->
Array (List.rev acc, specs)
| elt :: tl ->
let elt = try parse_element source elt
with err -> raise (at_field "items" @@ at_index i err) in
elements (succ i) (elt :: acc) tl
in elements 0 [] elts
| Some elt ->
let elt = try parse_element source (Repr.repr elt)
with err -> raise (at_field "items" err) in
Monomorphic_array (elt, specs)
| None ->
Monomorphic_array (element Any, specs) end
| "object" ->
let required =
match opt_array_field json "required" with
| None -> []
| Some l ->
let rec items i acc = function
| `String s :: tl -> items (succ i) (s :: acc) tl
| [] -> List.rev acc
| k :: _ -> raise (at_field "required" @@ at_index i @@ unexpected k "string")
in items 0 [] (List.map Repr.view l) in
let properties =
match opt_field_view json "properties" with
| Some (`O props) ->
let rec items acc = function
| [] -> List.rev acc
| (n, elt) :: tl ->
let elt = try parse_element source elt
with err -> raise (at_field "properties" @@ at_field n @@ err) in
let req = List.mem n required in
items ((n, elt, req, None) :: acc) tl
in items [] props
| None -> []
| Some k -> raise (at_field "properties" @@ unexpected k "object") in
let additional_properties =
match opt_field_view json "additionalProperties" with
| Some (`Bool false) -> None
| None | Some (`Bool true) -> Some (element Any)
| Some elt ->
let elt = try parse_element source (Repr.repr elt)
with err -> raise (at_field "additionalProperties" err) in
Some elt in
let property_dependencies =
match opt_field_view json "propertyDependencies" with
| None -> []
| Some (`O l) ->
let rec sets sacc = function
| (n, `A l) :: tl ->
let rec strings j acc = function
| [] -> sets ((n, List.rev acc) :: sacc) tl
| `String s :: tl -> strings (succ j) (s :: acc) tl
| k :: _ ->
raise (at_field "propertyDependencies" @@
at_field n @@
at_index j @@
unexpected k "string")
in strings 0 [] (List.map Repr.view l)
| (n, k) :: tl ->
raise (at_field "propertyDependencies" @@
at_field n @@
unexpected k "string array")
| [] -> List.rev sacc
in sets [] (List.map (fun (n, v) -> (n, Repr.view v)) l)
| Some k ->
raise (at_field "propertyDependencies" @@
unexpected k "object") in
let parse_element_assoc field =
match opt_field_view json field with
| None -> []
| Some (`O props) ->
let rec items acc = function
| [] -> List.rev acc
| (n, elt) :: tl ->
let elt = try parse_element source elt
with err -> raise (at_field field @@
at_field n err) in
items ((n, elt) :: acc) tl
in items [] props
| Some k -> raise (at_field field @@ unexpected k "object") in
let pattern_properties = parse_element_assoc "patternProperties" in
let schema_dependencies = parse_element_assoc "schemaDependencies" in
let min_properties =
match opt_int_field json "minProperties" with
| None -> 0
| Some l -> l in
let max_properties = opt_int_field json "maxProperties" in
Object { properties ; pattern_properties ;
additional_properties ;
min_properties ; max_properties ;
schema_dependencies ; property_dependencies }
| n -> raise (Cannot_parse ([], Unexpected (n, "a known type"))) in
let root = parse_element Uri.empty json in
(match Repr.view (query [ `Field "definitions" ] json) with
| `O all ->
let all = List.map (fun (n, _) -> Uri.of_string ("#/definitions/" ^ n)) all in
List.iter (fun uri -> collect_definition uri |> ignore) all
| _ -> ()
| exception Not_found -> ()) ;
List.iter
(fun id ->
if not (List.mem_assoc id !collected_id_defs) then
raise (Cannot_parse ([], Dangling_reference (Uri.(with_fragment empty (Some id))))))
!collected_id_refs ;
let ids = !collected_id_defs in
let source = schema_source in
let world = [] in
let definitions = !collected_definitions in
{ root ; definitions ; source ; ids ; world }
let check_definitions root definitions =
let collected_id_defs = ref [] in
let collected_id_refs = ref [] in
let rec check ({ kind ; id } as elt) =
begin match id with
| None -> ()
| Some id -> collected_id_defs := (id, elt) :: !collected_id_defs end ;
begin match kind with
| Object { properties ; pattern_properties ;
additional_properties ; schema_dependencies } ->
List.iter (fun (_, e, _, _) -> check e) properties ;
List.iter (fun (_, e) -> check e) pattern_properties ;
List.iter (fun (_, e) -> check e) schema_dependencies ;
(match additional_properties with Some e -> check e | None -> ())
| Array (es, { additional_items }) ->
List.iter check es ;
(match additional_items with Some e -> check e | None -> ())
| Monomorphic_array (e, { additional_items }) ->
check e ;
(match additional_items with Some e -> check e | None -> ())
| Combine (_, es) ->
List.iter check es
| Def_ref path ->
if not (definition_exists path definitions) then
let path = json_pointer_of_path path in
raise (Dangling_reference (Uri.(with_fragment empty) (Some path)))
| Id_ref id ->
collected_id_refs := id :: !collected_id_refs ;
| Ext_ref _ | String _ | Integer _ | Number _ | Boolean | Null | Any | Dummy -> ()
end in
check root ;
List.iter (fun (_, root) -> check root) definitions ;
List.iter
(fun id ->
if not (List.mem_assoc id !collected_id_defs) then
raise (Dangling_reference (Uri.(with_fragment empty (Some id)))))
!collected_id_refs ;
!collected_id_defs
let create root =
let ids = check_definitions root [] in
{ root ; definitions = [] ; world = [] ; ids ; source = Uri.empty }
let root { root } =
root
let update root sch =
let ids = check_definitions root sch.definitions in
{ sch with root ; ids }
let any =
create (element Any)
let self =
{ root = element (Ext_ref (Uri.of_string version)) ;
definitions = [] ; ids = [] ; world = [] ; source = Uri.empty }
let simplify schema =
let res = ref [] in
let rec collect { kind } = match kind with
| Object { properties ; pattern_properties ;
additional_properties ; schema_dependencies } ->
List.iter (fun (_, e, _, _) -> collect e) properties ;
List.iter (fun (_, e) -> collect e) pattern_properties ;
List.iter (fun (_, e) -> collect e) schema_dependencies ;
(match additional_properties with Some e -> collect e | None -> ())
| Array (es, { additional_items }) ->
List.iter collect es ;
(match additional_items with Some e -> collect e | None -> ())
| Monomorphic_array (e, { additional_items }) ->
collect e ;
(match additional_items with Some e -> collect e | None -> ())
| Combine (_, es) ->
List.iter collect es
| Def_ref path ->
let def = find_definition path schema.definitions in
res := insert_definition path def !res
| Ext_ref _ | Id_ref _ | String _ | Integer _ | Number _ | Boolean | Null | Any | Dummy -> ()
in
collect schema.root ;
{ schema with definitions = !res }
let definition_path_of_name name =
path_of_json_pointer ~wildcards:false @@
match String.get name 0 with
| exception _ -> raise (Bad_reference name)
| '/' -> name
| _ -> "/definitions/" ^ name
let find_definition name schema =
let path = definition_path_of_name name in
find_definition path schema.definitions
let definition_exists name schema =
let path = definition_path_of_name name in
definition_exists path schema.definitions
let add_definition name elt schema =
let path = definition_path_of_name name in
let definitions = insert_definition path elt schema.definitions in
{ schema with definitions }, element (Def_ref path)
let merge_definitions (sa, sb) =
let rec sorted_merge = function
| ((na, da) as a) :: ((nb, db) as b) :: tl ->
if na = nb then
if da.kind = Dummy || db.kind = Dummy || da = db then
(na, da) :: sorted_merge tl
else
raise (Duplicate_definition na)
else
a :: sorted_merge (b :: tl)
| [] | [ _ ] as rem -> rem
in
let definitions =
sorted_merge (List.sort compare (sa.definitions @ sb.definitions)) in
{ sa with definitions }, { sb with definitions }
let combine op schemas =
let rec combine sacc eacc = function
| [] -> update (element (Combine (op, eacc))) sacc
| s :: ss ->
let sacc, s = merge_definitions (sacc, s) in
combine sacc (s.root :: eacc) ss
in combine any [] schemas
let array_specs =
{ min_items = 0 ;
max_items = None ;
unique_items = false ;
additional_items = None }
let object_specs =
{ properties = [] ;
pattern_properties = [] ;
additional_properties = Some (element Any) ;
min_properties = 0 ;
max_properties = None ;
schema_dependencies = [] ;
property_dependencies = [] }
let string_specs =
{ pattern = None ;
min_length = 0 ;
max_length = None }
let numeric_specs =
{ multiple_of = None ;
minimum = None ;
maximum = None }
end
include Make (Json_repr.Ezjsonm)