summaryrefslogtreecommitdiff
path: root/spore_validation.rx
blob: cf69329ab2094519b15a3449b2234bd21cf44af9 (plain) (blame)
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
{
 "type": "//rec",
 "optional": {
   "expected_status": {
        "type"    : "//arr",
        "contents": {
        "type": "//int"
      }
   },
   "base_url":       "//str",
   "description":    "//str",
   "authentication": "//bool",
   "unattended_params": "//bool",
   "version":        "//str",
   "authority":      "//str",
   "formats": {
     "type"    : "//arr",
     "contents": { "type":"//str" }
   },
   "meta": {
     "type": "//map",
     "values": {
       "type": "//str"
     }
   }
 },
 "required": {
   "name": "//str",
   "methods": {
     "type": "//map",
     "values": {
       "type": "//rec",
       "required": {
         "method": "//str",
         "path":   "//str"
       },
       "optional": {
         "expected_status": {
           "type"    : "//arr",
           "contents": {
             "type": "//int"
           }
         },
         "required_params": {
           "type"    : "//arr",
           "contents": {
             "type": "//str"
           }
         },
         "optional_params": {
           "type": "//arr",
           "contents": {
             "type": "//str"
           }
         },
         "form-data" : {
           "type": "//map",
           "values": {
             "type": "//str"
           }
         },
         "headers" : {
           "type": "//map",
           "values": {
             "type": "//str"
           }
         },
         "required_payload": "//bool",
         "unattended_params": "//bool",
         "description":    "//str",
         "authentication": "//bool",
         "base_url":       "//str",
         "formats": {
           "type"    : "//arr",
           "contents": { "type":"//str" }
         }
       }
     }
   }
 }
}