1234567891011121314151617181920212223242526 |
- {
- "$schema" : "http://json-schema.org/draft-03/hyper-schema#",
- "id" : "http://json-schema.org/draft-03/json-ref#",
-
- "additionalItems" : {"$ref" : "#"},
- "additionalProperties" : {"$ref" : "#"},
-
- "links" : [
- {
- "href" : "{id}",
- "rel" : "self"
- },
-
- {
- "href" : "{$ref}",
- "rel" : "full"
- },
-
- {
- "href" : "{$schema}",
- "rel" : "describedby"
- }
- ],
-
- "fragmentResolution" : "dot-delimited"
- }
|