沈斌
2018-07-12 bd67fdc558c8568999a538d2a8e43b59ceb06756
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
{
    "$schema" : "http://json-schema.org/draft-03/hyper-schema#",
    "extends" : {"$ref" : "http://json-schema.org/draft-03/schema#"},
    "id" : "http://json-schema.org/draft-03/hyper-schema#",
 
    "properties" : {
        "links" : {
            "type" : "array",
            "items" : {"$ref" : "http://json-schema.org/draft-03/links#"}
        },
 
        "fragmentResolution" : {
            "type" : "string",
            "default" : "slash-delimited"
        },
 
        "root" : {
            "type" : "boolean",
            "default" : false
        },
 
        "readonly" : {
            "type" : "boolean",
            "default" : false
        },
 
        "contentEncoding" : {
            "type" : "string"
        },
 
        "pathStart" : {
            "type" : "string",
            "format" : "uri"
        },
 
        "mediaType" : {
            "type" : "string",
            "format" : "media-type"
        }
    },
 
    "links" : [
        {
            "href" : "{id}",
            "rel" : "self"
        },
 
        {
            "href" : "{$ref}",
            "rel" : "full"
        },
 
        {
            "href" : "{$schema}",
            "rel" : "describedby"
        }
    ],
 
    "fragmentResolution" : "slash-delimited"
}