source: trip-planner-front/node_modules/json-schema/draft-02/links@ e29cc2e

Last change on this file since e29cc2e was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 658 bytes
Line 
1{
2 "$schema" : "http://json-schema.org/draft-02/hyper-schema#",
3 "id" : "http://json-schema.org/draft-02/links#",
4 "type" : "object",
5
6 "properties" : {
7 "href" : {
8 "type" : "string"
9 },
10
11 "rel" : {
12 "type" : "string"
13 },
14
15 "targetSchema" : {"$ref" : "http://json-schema.org/draft-02/hyper-schema#"},
16
17 "method" : {
18 "type" : "string",
19 "default" : "GET",
20 "optional" : true
21 },
22
23 "enctype" : {
24 "type" : "string",
25 "requires" : "method",
26 "optional" : true
27 },
28
29 "properties" : {
30 "type" : "object",
31 "additionalProperties" : {"$ref" : "http://json-schema.org/draft-02/hyper-schema#"},
32 "optional" : true
33 }
34 }
35}
Note: See TracBrowser for help on using the repository browser.