-
Notifications
You must be signed in to change notification settings - Fork 0
/
relativity.json
94 lines (94 loc) · 2.2 KB
/
relativity.json
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
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"openapi": "3.0.3",
"info": {
"title": "Relativity API",
"description": "This is a description of the Relativity Data Source",
"contact": {
"email": "[email protected]"
},
"license": {
"name": "Apache 2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0.html"
},
"version": "1.0.0"
},
"servers": [
{
"url": "https://frpadvisory-uk-current-sandbox.relativity.one"
}
],
"paths": {
"/Relativity.REST/api/Relativity.ObjectManager/v1/workspace/1038633/object/query": {
"get": {
"tags": [
"documentobject"
],
"summary": "Finds Document Objects",
"description": "List Document Objects",
"operationId": "findDocumentObjects",
"responses": {
"200": {
"description": "successful operation",
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/DocumentObject"
}
}
}
}
},
"400": {
"description": "Invalid status value"
}
},
"security": [
{
"petstore_auth": [
"write:documentobjects",
"read:documentobjects"
]
}
]
}
}
},
"components": {
"schemas": {
"DocumentObject": {
"type": "object",
"properties": {
"ArtifactID": {
"type": "integer",
"format": "int32"
},
"Control Number": {
"type": "string"
},
"Unified Title": {
"type": "string"
}
},
"xml": {
"name": "user"
}
}
},
"securitySchemes": {
"petstore_auth": {
"type": "oauth2",
"flows": {
"implicit": {
"authorizationUrl": "https://petstore3.swagger.io/oauth/authorize",
"scopes": {
"write:pets": "modify pets in your account",
"read:pets": "read your pets"
}
}
}
}
}
}
}