Newer
Older
{
"swagger" : "2.0",
"info" : {
"description" : null,
"version" : "1.0.0",
"title" : null,
"termsOfService" : null,
"contact" : null,
"license" : null
},
"host" : "www.getrave.com",
"basePath" : "/remoteservices",
"schemes" : [ "https" ],
"paths" : {
"rest/user/{username}/userlists" : {
"get" : {
"tags" : [ "get-lists" ],
"summary" : null,
"description" : null,
"operationId" : "get-lists",
"produces" : [ "application/xml" ],
"consumes" : [ "application/xml" ],
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
"parameters" : [ {
"name" : "username",
"in" : "path",
"description" : null,
"required" : false,
"type" : "string"
} ],
"responses" : {
"200" : {
"description" : "successful operation",
"schema" : {
"$ref" : "#/definitions/get-lists"
}
}
}
}
}
},
"definitions" : {
"get-lists##listMemberships##userList" : {
"properties" : {
"id" : {
"type" : "number"
},
"name" : {
"type" : "string"
}
}
},
"get-lists##listMemberships" : {
"properties" : {
"userList" : {
"type" : "array",
"items" : {
"$ref" : "#/definitions/get-lists##listMemberships##userList"
}
}
}
},
"get-lists" : {
"properties" : {
"listMemberships" : {
"$ref" : "#/definitions/get-lists##listMemberships"
}
}
}
}