json-ref (435B)
1 { 2 "$schema" : "http://json-schema.org/draft-01/hyper-schema#", 3 "id" : "http://json-schema.org/draft-01/json-ref#", 4 5 "items" : {"$ref" : "#"}, 6 "additionalProperties" : {"$ref" : "#"}, 7 8 "links" : [ 9 { 10 "href" : "{$ref}", 11 "rel" : "full" 12 }, 13 14 { 15 "href" : "{$schema}", 16 "rel" : "describedby" 17 }, 18 19 { 20 "href" : "{id}", 21 "rel" : "self" 22 } 23 ], 24 25 "fragmentResolution" : "dot-delimited" 26 }