UNPKG

704 BJSONView Raw
1{
2 "get" : {
3 "tags": ["Documents"],
4 "description": "Get the contents of a specified document for a patient",
5 "security": "=> auth()",
6 "produces": "=> json()",
7 "parameters": [
8 {
9 "name": "patientId",
10 "in": "path",
11 "description": "Patient Id",
12 "required": true,
13 "type": "string"
14 },
15 {
16 "name": "sourceId",
17 "in": "path",
18 "description": "Document Composition Id",
19 "required": true,
20 "type": "string"
21 }
22 ],
23 "responses": {
24 "200": "=> get('response200.json', 'desc', 'Document Contents', 'ref', 'documentsDetailResponse')",
25 "403": "=> get('response403.json')"
26 }
27 }
28}
\No newline at end of file