@itentialopensource/adapter-oracle_cloud 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintignore +5 -0
- package/.eslintrc.js +18 -0
- package/.jshintrc +3 -0
- package/CHANGELOG.md +9 -0
- package/CODE_OF_CONDUCT.md +48 -0
- package/CONTRIBUTING.md +158 -0
- package/LICENSE +201 -0
- package/README.md +687 -0
- package/adapter.js +11250 -0
- package/adapterBase.js +1028 -0
- package/entities/.generic/action.json +109 -0
- package/entities/.generic/schema.json +23 -0
- package/entities/.system/action.json +50 -0
- package/entities/.system/mockdatafiles/getToken-default.json +3 -0
- package/entities/.system/mockdatafiles/healthcheck-default.json +3 -0
- package/entities/.system/schema.json +19 -0
- package/entities/.system/schemaTokenReq.json +53 -0
- package/entities/.system/schemaTokenResp.json +53 -0
- package/entities/Applinks/action.json +64 -0
- package/entities/Applinks/mockdatafiles/postDocumentsApi12ApplinksFileFileId-default.json +10 -0
- package/entities/Applinks/mockdatafiles/postDocumentsApi12ApplinksFolderFolderId-default.json +10 -0
- package/entities/Applinks/mockdatafiles/putDocumentsApi12ApplinksToken-default.json +5 -0
- package/entities/Applinks/schema.json +21 -0
- package/entities/Catalog/action.json +298 -0
- package/entities/Catalog/mockdatafiles/getDocumentsApi-default.json +61 -0
- package/entities/Catalog/mockdatafiles/getDocumentsApiVersion-default.json +23 -0
- package/entities/Catalog/mockdatafiles/getDocumentsApiVersionMetadataCatalog-default.json +147 -0
- package/entities/Catalog/schema.json +32 -0
- package/entities/Collections/action.json +145 -0
- package/entities/Collections/mockdatafiles/deleteDocumentsApi12CollectionsCollectionId-default.json +5 -0
- package/entities/Collections/mockdatafiles/deleteDocumentsApi12CollectionsCollectionIdFiles-default.json +25 -0
- package/entities/Collections/mockdatafiles/deleteDocumentsApi12CollectionsCollectionIdFilesFileId-default.json +5 -0
- package/entities/Collections/mockdatafiles/getDocumentsApi12CollectionsItems-default.json +37 -0
- package/entities/Collections/mockdatafiles/postDocumentsApi12Collections-default.json +28 -0
- package/entities/Collections/mockdatafiles/postDocumentsApi12CollectionsCollectionIdFiles-default.json +32 -0
- package/entities/Collections/mockdatafiles/postDocumentsApi12CollectionsCollectionIdFilesFileId-default.json +6 -0
- package/entities/Collections/schema.json +25 -0
- package/entities/Configuration/action.json +87 -0
- package/entities/Configuration/mockdatafiles/getDocumentsApi12ConfigCollaboration-default.json +9 -0
- package/entities/Configuration/mockdatafiles/getDocumentsApi12ConfigNotificationEmail-default.json +5 -0
- package/entities/Configuration/mockdatafiles/getDocumentsApi12ConfigSitesDeliverycdn-default.json +10 -0
- package/entities/Configuration/mockdatafiles/putDocumentsApi12ConfigNotificationEmail-default.json +4 -0
- package/entities/Configuration/schema.json +22 -0
- package/entities/Files/action.json +721 -0
- package/entities/Files/mockdatafiles/deleteDocumentsApi12FilesFileId-default.json +5 -0
- package/entities/Files/mockdatafiles/deleteDocumentsApi12FilesFileIdMetadata-default.json +5 -0
- package/entities/Files/mockdatafiles/deleteDocumentsApi12FilesFileIdTags-default.json +5 -0
- package/entities/Files/mockdatafiles/getDocumentsApi12FilesFileId-default.json +150 -0
- package/entities/Files/mockdatafiles/getDocumentsApi12FilesFileIdAccesses-default.json +26 -0
- package/entities/Files/mockdatafiles/getDocumentsApi12FilesFileIdDataRenditions-default.json +21 -0
- package/entities/Files/mockdatafiles/getDocumentsApi12FilesFileIdMetadata-default.json +15 -0
- package/entities/Files/mockdatafiles/getDocumentsApi12FilesFileIdMetadataFields-default.json +45 -0
- package/entities/Files/mockdatafiles/getDocumentsApi12FilesFileIdPages-default.json +6 -0
- package/entities/Files/mockdatafiles/getDocumentsApi12FilesFileIdPreviewPath-default.json +7 -0
- package/entities/Files/mockdatafiles/getDocumentsApi12FilesFileIdTags-default.json +6 -0
- package/entities/Files/mockdatafiles/getDocumentsApi12FilesFileIdVersions-default.json +37 -0
- package/entities/Files/mockdatafiles/getDocumentsApi12FilesLists-default.json +34 -0
- package/entities/Files/mockdatafiles/postDocumentsApi12FilesData-default.json +30 -0
- package/entities/Files/mockdatafiles/postDocumentsApi12FilesFileIdConversation-default.json +9 -0
- package/entities/Files/mockdatafiles/postDocumentsApi12FilesFileIdCopy-default.json +7 -0
- package/entities/Files/mockdatafiles/postDocumentsApi12FilesFileIdData-default.json +30 -0
- package/entities/Files/mockdatafiles/postDocumentsApi12FilesFileIdDataRendition-default.json +5 -0
- package/entities/Files/mockdatafiles/postDocumentsApi12FilesFileIdMetadata-default.json +5 -0
- package/entities/Files/mockdatafiles/postDocumentsApi12FilesFileIdMetadataCollectionName-default.json +5 -0
- package/entities/Files/mockdatafiles/postDocumentsApi12FilesFileIdMove-default.json +6 -0
- package/entities/Files/mockdatafiles/postDocumentsApi12FilesFileIdPages-default.json +5 -0
- package/entities/Files/mockdatafiles/postDocumentsApi12FilesFileIdReserve-default.json +12 -0
- package/entities/Files/mockdatafiles/postDocumentsApi12FilesFileIdTags-default.json +5 -0
- package/entities/Files/mockdatafiles/postDocumentsApi12FilesFileIdUnreserve-default.json +5 -0
- package/entities/Files/mockdatafiles/putDocumentsApi12FilesFileId-default.json +29 -0
- package/entities/Files/mockdatafiles/putDocumentsApi12FilesFileIdTags-default.json +5 -0
- package/entities/Files/schema.json +53 -0
- package/entities/Folders/action.json +535 -0
- package/entities/Folders/mockdatafiles/deleteDocumentsApi12FoldersFolderId-default.json +5 -0
- package/entities/Folders/mockdatafiles/deleteDocumentsApi12FoldersFolderIdDownloadJobId-default.json +4 -0
- package/entities/Folders/mockdatafiles/deleteDocumentsApi12FoldersFolderIdMetadata-default.json +5 -0
- package/entities/Folders/mockdatafiles/deleteDocumentsApi12FoldersFolderIdTags-default.json +5 -0
- package/entities/Folders/mockdatafiles/getDocumentsApi12FoldersFolderId-default.json +26 -0
- package/entities/Folders/mockdatafiles/getDocumentsApi12FoldersFolderIdDownloadJobId-default.json +17 -0
- package/entities/Folders/mockdatafiles/getDocumentsApi12FoldersFolderIdItems-default.json +91 -0
- package/entities/Folders/mockdatafiles/getDocumentsApi12FoldersFolderIdMetadata-default.json +11 -0
- package/entities/Folders/mockdatafiles/getDocumentsApi12FoldersFolderIdMetadataFields-default.json +26 -0
- package/entities/Folders/mockdatafiles/getDocumentsApi12FoldersFolderIdSearchItems-default.json +87 -0
- package/entities/Folders/mockdatafiles/getDocumentsApi12FoldersFolderIdTags-default.json +6 -0
- package/entities/Folders/mockdatafiles/getDocumentsApi12FoldersItems-default.json +93 -0
- package/entities/Folders/mockdatafiles/getDocumentsApi12FoldersLists-default.json +26 -0
- package/entities/Folders/mockdatafiles/getDocumentsApi12FoldersSearchItems-default.json +99 -0
- package/entities/Folders/mockdatafiles/postDocumentsApi12FoldersFolderId-default.json +30 -0
- package/entities/Folders/mockdatafiles/postDocumentsApi12FoldersFolderIdBulkCreate-default.json +98 -0
- package/entities/Folders/mockdatafiles/postDocumentsApi12FoldersFolderIdConversation-default.json +9 -0
- package/entities/Folders/mockdatafiles/postDocumentsApi12FoldersFolderIdCopy-default.json +7 -0
- package/entities/Folders/mockdatafiles/postDocumentsApi12FoldersFolderIdDownload-default.json +8 -0
- package/entities/Folders/mockdatafiles/postDocumentsApi12FoldersFolderIdMetadata-default.json +5 -0
- package/entities/Folders/mockdatafiles/postDocumentsApi12FoldersFolderIdMetadataCollectionName-default.json +5 -0
- package/entities/Folders/mockdatafiles/postDocumentsApi12FoldersFolderIdMove-default.json +6 -0
- package/entities/Folders/mockdatafiles/postDocumentsApi12FoldersFolderIdTags-default.json +5 -0
- package/entities/Folders/mockdatafiles/putDocumentsApi12FoldersFolderId-default.json +30 -0
- package/entities/Folders/mockdatafiles/putDocumentsApi12FoldersFolderIdTags-default.json +5 -0
- package/entities/Folders/schema.json +44 -0
- package/entities/MetadataCollection/action.json +167 -0
- package/entities/MetadataCollection/mockdatafiles/deleteDocumentsApi12MetadataCollectionName-default.json +3 -0
- package/entities/MetadataCollection/mockdatafiles/getDocumentsApi12Metadata-default.json +45 -0
- package/entities/MetadataCollection/mockdatafiles/getDocumentsApi12MetadataCollectionName-default.json +21 -0
- package/entities/MetadataCollection/mockdatafiles/getDocumentsApi12MetadataSearchFields-default.json +6 -0
- package/entities/MetadataCollection/mockdatafiles/postDocumentsApi12MetadataCollectionName-default.json +3 -0
- package/entities/MetadataCollection/mockdatafiles/postDocumentsApi12MetadataSearchFields-default.json +3 -0
- package/entities/MetadataCollection/mockdatafiles/putDocumentsApi12MetadataCollectionName-default.json +3 -0
- package/entities/MetadataCollection/mockdatafiles/putDocumentsApi12MetadataCollectionNameField-default.json +3 -0
- package/entities/MetadataCollection/schema.json +26 -0
- package/entities/Publiclinks/action.json +147 -0
- package/entities/Publiclinks/mockdatafiles/deleteDocumentsApi12PubliclinksLinkId-default.json +5 -0
- package/entities/Publiclinks/mockdatafiles/getDocumentsApi12PubliclinksFileFileId-default.json +37 -0
- package/entities/Publiclinks/mockdatafiles/getDocumentsApi12PubliclinksFolderFolderId-default.json +36 -0
- package/entities/Publiclinks/mockdatafiles/getDocumentsApi12PubliclinksLinkId-default.json +16 -0
- package/entities/Publiclinks/mockdatafiles/postDocumentsApi12PubliclinksFileFileId-default.json +17 -0
- package/entities/Publiclinks/mockdatafiles/postDocumentsApi12PubliclinksFolderFolderId-default.json +17 -0
- package/entities/Publiclinks/mockdatafiles/putDocumentsApi12PubliclinksLinkId-default.json +16 -0
- package/entities/Publiclinks/schema.json +25 -0
- package/entities/Shares/action.json +125 -0
- package/entities/Shares/mockdatafiles/deleteDocumentsApi12SharesFolderId-default.json +5 -0
- package/entities/Shares/mockdatafiles/deleteDocumentsApi12SharesFolderIdMyuser-default.json +5 -0
- package/entities/Shares/mockdatafiles/deleteDocumentsApi12SharesFolderIdUser-default.json +18 -0
- package/entities/Shares/mockdatafiles/getDocumentsApi12SharesFolderIdItems-default.json +16 -0
- package/entities/Shares/mockdatafiles/postDocumentsApi12SharesFolderId-default.json +19 -0
- package/entities/Shares/mockdatafiles/putDocumentsApi12SharesFolderIdRole-default.json +19 -0
- package/entities/Shares/schema.json +24 -0
- package/entities/Sites/action.json +24 -0
- package/entities/Sites/mockdatafiles/postDocumentsApi12SitesSiteIdSite-default.json +33 -0
- package/entities/Sites/schema.json +19 -0
- package/entities/Templates/action.json +24 -0
- package/entities/Templates/mockdatafiles/postDocumentsApi12TemplatesTemplateIdSite-default.json +33 -0
- package/entities/Templates/schema.json +19 -0
- package/entities/Users/action.json +66 -0
- package/entities/Users/mockdatafiles/getDocumentsApi12UsersItems-default.json +24 -0
- package/entities/Users/mockdatafiles/getDocumentsApi12UsersSearchItems-default.json +12 -0
- package/entities/Users/mockdatafiles/postDocumentsApi12UsersUserIDTransferContent-default.json +15 -0
- package/entities/Users/schema.json +21 -0
- package/error.json +184 -0
- package/package.json +83 -0
- package/pronghorn.json +10358 -0
- package/propertiesSchema.json +840 -0
- package/refs?service=git-upload-pack +0 -0
- package/report/creationReport.json +434 -0
- package/report/oracleCloud.json +11867 -0
- package/sampleProperties.json +106 -0
- package/test/integration/adapterTestBasicGet.js +85 -0
- package/test/integration/adapterTestConnectivity.js +93 -0
- package/test/integration/adapterTestIntegration.js +3824 -0
- package/test/unit/adapterBaseTestUnit.js +944 -0
- package/test/unit/adapterTestUnit.js +5333 -0
- package/utils/addAuth.js +94 -0
- package/utils/artifactize.js +146 -0
- package/utils/basicGet.js +50 -0
- package/utils/checkMigrate.js +63 -0
- package/utils/entitiesToDB.js +224 -0
- package/utils/findPath.js +74 -0
- package/utils/modify.js +154 -0
- package/utils/packModificationScript.js +35 -0
- package/utils/pre-commit.sh +27 -0
- package/utils/removeHooks.js +20 -0
- package/utils/setup.js +33 -0
- package/utils/tbScript.js +169 -0
- package/utils/tbUtils.js +445 -0
- package/utils/testRunner.js +298 -0
- package/utils/troubleshootingAdapter.js +190 -0
- package/workflows/README.md +3 -0
|
@@ -0,0 +1,298 @@
|
|
|
1
|
+
{
|
|
2
|
+
"actions": [
|
|
3
|
+
{
|
|
4
|
+
"name": "getDocumentsApi",
|
|
5
|
+
"protocol": "REST",
|
|
6
|
+
"method": "GET",
|
|
7
|
+
"entitypath": "{base_path}/{version}/documents/api/?{query}",
|
|
8
|
+
"requestSchema": "schema.json",
|
|
9
|
+
"responseSchema": "schema.json",
|
|
10
|
+
"timeout": 0,
|
|
11
|
+
"sendEmpty": false,
|
|
12
|
+
"sendGetBody": false,
|
|
13
|
+
"requestDatatype": "JSON",
|
|
14
|
+
"responseDatatype": "JSON",
|
|
15
|
+
"headers": {},
|
|
16
|
+
"responseObjects": [
|
|
17
|
+
{
|
|
18
|
+
"type": "default",
|
|
19
|
+
"key": "",
|
|
20
|
+
"mockFile": "mockdatafiles/getDocumentsApi-default.json"
|
|
21
|
+
}
|
|
22
|
+
]
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"name": "getDocumentsApiVersion",
|
|
26
|
+
"protocol": "REST",
|
|
27
|
+
"method": "GET",
|
|
28
|
+
"entitypath": "{base_path}/{version}/documents/api/{pathv1}?{query}",
|
|
29
|
+
"requestSchema": "schema.json",
|
|
30
|
+
"responseSchema": "schema.json",
|
|
31
|
+
"timeout": 0,
|
|
32
|
+
"sendEmpty": false,
|
|
33
|
+
"sendGetBody": false,
|
|
34
|
+
"requestDatatype": "JSON",
|
|
35
|
+
"responseDatatype": "JSON",
|
|
36
|
+
"headers": {},
|
|
37
|
+
"responseObjects": [
|
|
38
|
+
{
|
|
39
|
+
"type": "default",
|
|
40
|
+
"key": "",
|
|
41
|
+
"mockFile": "mockdatafiles/getDocumentsApiVersion-default.json"
|
|
42
|
+
}
|
|
43
|
+
]
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"name": "getDocumentsApiVersionMetadataCatalog",
|
|
47
|
+
"protocol": "REST",
|
|
48
|
+
"method": "GET",
|
|
49
|
+
"entitypath": "{base_path}/{version}/documents/api/{pathv1}/metadata-catalog?{query}",
|
|
50
|
+
"requestSchema": "schema.json",
|
|
51
|
+
"responseSchema": "schema.json",
|
|
52
|
+
"timeout": 0,
|
|
53
|
+
"sendEmpty": false,
|
|
54
|
+
"sendGetBody": false,
|
|
55
|
+
"requestDatatype": "JSON",
|
|
56
|
+
"responseDatatype": "JSON",
|
|
57
|
+
"headers": {},
|
|
58
|
+
"responseObjects": [
|
|
59
|
+
{
|
|
60
|
+
"type": "default",
|
|
61
|
+
"key": "",
|
|
62
|
+
"mockFile": "mockdatafiles/getDocumentsApiVersionMetadataCatalog-default.json"
|
|
63
|
+
}
|
|
64
|
+
]
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"name": "getDocumentsApiVersionMetadataCatalogFolders",
|
|
68
|
+
"protocol": "REST",
|
|
69
|
+
"method": "GET",
|
|
70
|
+
"entitypath": "{base_path}/{version}/documents/api/{pathv1}/metadata-catalog/folders?{query}",
|
|
71
|
+
"requestSchema": "schema.json",
|
|
72
|
+
"responseSchema": "schema.json",
|
|
73
|
+
"timeout": 0,
|
|
74
|
+
"sendEmpty": false,
|
|
75
|
+
"sendGetBody": false,
|
|
76
|
+
"requestDatatype": "JSON",
|
|
77
|
+
"responseDatatype": "JSON",
|
|
78
|
+
"headers": {},
|
|
79
|
+
"responseObjects": [
|
|
80
|
+
{
|
|
81
|
+
"type": "default",
|
|
82
|
+
"key": "",
|
|
83
|
+
"mockFile": ""
|
|
84
|
+
}
|
|
85
|
+
]
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"name": "getDocumentsApiVersionMetadataCatalogFiles",
|
|
89
|
+
"protocol": "REST",
|
|
90
|
+
"method": "GET",
|
|
91
|
+
"entitypath": "{base_path}/{version}/documents/api/{pathv1}/metadata-catalog/files?{query}",
|
|
92
|
+
"requestSchema": "schema.json",
|
|
93
|
+
"responseSchema": "schema.json",
|
|
94
|
+
"timeout": 0,
|
|
95
|
+
"sendEmpty": false,
|
|
96
|
+
"sendGetBody": false,
|
|
97
|
+
"requestDatatype": "JSON",
|
|
98
|
+
"responseDatatype": "JSON",
|
|
99
|
+
"headers": {},
|
|
100
|
+
"responseObjects": [
|
|
101
|
+
{
|
|
102
|
+
"type": "default",
|
|
103
|
+
"key": "",
|
|
104
|
+
"mockFile": ""
|
|
105
|
+
}
|
|
106
|
+
]
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
"name": "getDocumentsApiVersionMetadataCatalogUsers",
|
|
110
|
+
"protocol": "REST",
|
|
111
|
+
"method": "GET",
|
|
112
|
+
"entitypath": "{base_path}/{version}/documents/api/{pathv1}/metadata-catalog/users?{query}",
|
|
113
|
+
"requestSchema": "schema.json",
|
|
114
|
+
"responseSchema": "schema.json",
|
|
115
|
+
"timeout": 0,
|
|
116
|
+
"sendEmpty": false,
|
|
117
|
+
"sendGetBody": false,
|
|
118
|
+
"requestDatatype": "JSON",
|
|
119
|
+
"responseDatatype": "JSON",
|
|
120
|
+
"headers": {},
|
|
121
|
+
"responseObjects": [
|
|
122
|
+
{
|
|
123
|
+
"type": "default",
|
|
124
|
+
"key": "",
|
|
125
|
+
"mockFile": ""
|
|
126
|
+
}
|
|
127
|
+
]
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
"name": "getDocumentsApiVersionMetadataCatalogApplinks",
|
|
131
|
+
"protocol": "REST",
|
|
132
|
+
"method": "GET",
|
|
133
|
+
"entitypath": "{base_path}/{version}/documents/api/{pathv1}/metadata-catalog/applinks?{query}",
|
|
134
|
+
"requestSchema": "schema.json",
|
|
135
|
+
"responseSchema": "schema.json",
|
|
136
|
+
"timeout": 0,
|
|
137
|
+
"sendEmpty": false,
|
|
138
|
+
"sendGetBody": false,
|
|
139
|
+
"requestDatatype": "JSON",
|
|
140
|
+
"responseDatatype": "JSON",
|
|
141
|
+
"headers": {},
|
|
142
|
+
"responseObjects": [
|
|
143
|
+
{
|
|
144
|
+
"type": "default",
|
|
145
|
+
"key": "",
|
|
146
|
+
"mockFile": ""
|
|
147
|
+
}
|
|
148
|
+
]
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
"name": "getDocumentsApiVersionMetadataCatalogShares",
|
|
152
|
+
"protocol": "REST",
|
|
153
|
+
"method": "GET",
|
|
154
|
+
"entitypath": "{base_path}/{version}/documents/api/{pathv1}/metadata-catalog/shares?{query}",
|
|
155
|
+
"requestSchema": "schema.json",
|
|
156
|
+
"responseSchema": "schema.json",
|
|
157
|
+
"timeout": 0,
|
|
158
|
+
"sendEmpty": false,
|
|
159
|
+
"sendGetBody": false,
|
|
160
|
+
"requestDatatype": "JSON",
|
|
161
|
+
"responseDatatype": "JSON",
|
|
162
|
+
"headers": {},
|
|
163
|
+
"responseObjects": [
|
|
164
|
+
{
|
|
165
|
+
"type": "default",
|
|
166
|
+
"key": "",
|
|
167
|
+
"mockFile": ""
|
|
168
|
+
}
|
|
169
|
+
]
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
"name": "getDocumentsApiVersionMetadataCatalogPubliclinks",
|
|
173
|
+
"protocol": "REST",
|
|
174
|
+
"method": "GET",
|
|
175
|
+
"entitypath": "{base_path}/{version}/documents/api/{pathv1}/metadata-catalog/publiclinks?{query}",
|
|
176
|
+
"requestSchema": "schema.json",
|
|
177
|
+
"responseSchema": "schema.json",
|
|
178
|
+
"timeout": 0,
|
|
179
|
+
"sendEmpty": false,
|
|
180
|
+
"sendGetBody": false,
|
|
181
|
+
"requestDatatype": "JSON",
|
|
182
|
+
"responseDatatype": "JSON",
|
|
183
|
+
"headers": {},
|
|
184
|
+
"responseObjects": [
|
|
185
|
+
{
|
|
186
|
+
"type": "default",
|
|
187
|
+
"key": "",
|
|
188
|
+
"mockFile": ""
|
|
189
|
+
}
|
|
190
|
+
]
|
|
191
|
+
},
|
|
192
|
+
{
|
|
193
|
+
"name": "getDocumentsApiVersionMetadataCatalogMetadata",
|
|
194
|
+
"protocol": "REST",
|
|
195
|
+
"method": "GET",
|
|
196
|
+
"entitypath": "{base_path}/{version}/documents/api/{pathv1}/metadata-catalog/metadata?{query}",
|
|
197
|
+
"requestSchema": "schema.json",
|
|
198
|
+
"responseSchema": "schema.json",
|
|
199
|
+
"timeout": 0,
|
|
200
|
+
"sendEmpty": false,
|
|
201
|
+
"sendGetBody": false,
|
|
202
|
+
"requestDatatype": "JSON",
|
|
203
|
+
"responseDatatype": "JSON",
|
|
204
|
+
"headers": {},
|
|
205
|
+
"responseObjects": [
|
|
206
|
+
{
|
|
207
|
+
"type": "default",
|
|
208
|
+
"key": "",
|
|
209
|
+
"mockFile": ""
|
|
210
|
+
}
|
|
211
|
+
]
|
|
212
|
+
},
|
|
213
|
+
{
|
|
214
|
+
"name": "getDocumentsApiVersionMetadataCatalogConfiguration",
|
|
215
|
+
"protocol": "REST",
|
|
216
|
+
"method": "GET",
|
|
217
|
+
"entitypath": "{base_path}/{version}/documents/api/{pathv1}/metadata-catalog/configuration?{query}",
|
|
218
|
+
"requestSchema": "schema.json",
|
|
219
|
+
"responseSchema": "schema.json",
|
|
220
|
+
"timeout": 0,
|
|
221
|
+
"sendEmpty": false,
|
|
222
|
+
"sendGetBody": false,
|
|
223
|
+
"requestDatatype": "JSON",
|
|
224
|
+
"responseDatatype": "JSON",
|
|
225
|
+
"headers": {},
|
|
226
|
+
"responseObjects": [
|
|
227
|
+
{
|
|
228
|
+
"type": "default",
|
|
229
|
+
"key": "",
|
|
230
|
+
"mockFile": ""
|
|
231
|
+
}
|
|
232
|
+
]
|
|
233
|
+
},
|
|
234
|
+
{
|
|
235
|
+
"name": "getDocumentsApiVersionMetadataCatalogCollections",
|
|
236
|
+
"protocol": "REST",
|
|
237
|
+
"method": "GET",
|
|
238
|
+
"entitypath": "{base_path}/{version}/documents/api/{pathv1}/metadata-catalog/collections?{query}",
|
|
239
|
+
"requestSchema": "schema.json",
|
|
240
|
+
"responseSchema": "schema.json",
|
|
241
|
+
"timeout": 0,
|
|
242
|
+
"sendEmpty": false,
|
|
243
|
+
"sendGetBody": false,
|
|
244
|
+
"requestDatatype": "JSON",
|
|
245
|
+
"responseDatatype": "JSON",
|
|
246
|
+
"headers": {},
|
|
247
|
+
"responseObjects": [
|
|
248
|
+
{
|
|
249
|
+
"type": "default",
|
|
250
|
+
"key": "",
|
|
251
|
+
"mockFile": ""
|
|
252
|
+
}
|
|
253
|
+
]
|
|
254
|
+
},
|
|
255
|
+
{
|
|
256
|
+
"name": "getDocumentsApiVersionMetadataCatalogSites",
|
|
257
|
+
"protocol": "REST",
|
|
258
|
+
"method": "GET",
|
|
259
|
+
"entitypath": "{base_path}/{version}/documents/api/{pathv1}/metadata-catalog/sites?{query}",
|
|
260
|
+
"requestSchema": "schema.json",
|
|
261
|
+
"responseSchema": "schema.json",
|
|
262
|
+
"timeout": 0,
|
|
263
|
+
"sendEmpty": false,
|
|
264
|
+
"sendGetBody": false,
|
|
265
|
+
"requestDatatype": "JSON",
|
|
266
|
+
"responseDatatype": "JSON",
|
|
267
|
+
"headers": {},
|
|
268
|
+
"responseObjects": [
|
|
269
|
+
{
|
|
270
|
+
"type": "default",
|
|
271
|
+
"key": "",
|
|
272
|
+
"mockFile": ""
|
|
273
|
+
}
|
|
274
|
+
]
|
|
275
|
+
},
|
|
276
|
+
{
|
|
277
|
+
"name": "getDocumentsApiVersionMetadataCatalogTemplates",
|
|
278
|
+
"protocol": "REST",
|
|
279
|
+
"method": "GET",
|
|
280
|
+
"entitypath": "{base_path}/{version}/documents/api/{pathv1}/metadata-catalog/templates?{query}",
|
|
281
|
+
"requestSchema": "schema.json",
|
|
282
|
+
"responseSchema": "schema.json",
|
|
283
|
+
"timeout": 0,
|
|
284
|
+
"sendEmpty": false,
|
|
285
|
+
"sendGetBody": false,
|
|
286
|
+
"requestDatatype": "JSON",
|
|
287
|
+
"responseDatatype": "JSON",
|
|
288
|
+
"headers": {},
|
|
289
|
+
"responseObjects": [
|
|
290
|
+
{
|
|
291
|
+
"type": "default",
|
|
292
|
+
"key": "",
|
|
293
|
+
"mockFile": ""
|
|
294
|
+
}
|
|
295
|
+
]
|
|
296
|
+
}
|
|
297
|
+
]
|
|
298
|
+
}
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
{
|
|
2
|
+
"items": [
|
|
3
|
+
{
|
|
4
|
+
"version": "1.0",
|
|
5
|
+
"lifecycle": "active",
|
|
6
|
+
"isLatest": "false",
|
|
7
|
+
"catalog": {
|
|
8
|
+
"links": [
|
|
9
|
+
{
|
|
10
|
+
"ref": "canonical",
|
|
11
|
+
"href": "https://www.example.com/documents/api/1.0/metadata-catalog"
|
|
12
|
+
}
|
|
13
|
+
]
|
|
14
|
+
},
|
|
15
|
+
"links": [
|
|
16
|
+
{
|
|
17
|
+
"ref": "canonical",
|
|
18
|
+
"href": "https://www.example.com/documents/api/1.0"
|
|
19
|
+
}
|
|
20
|
+
]
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"version": "1.1",
|
|
24
|
+
"lifecycle": "active",
|
|
25
|
+
"isLatest": "false",
|
|
26
|
+
"catalog": {
|
|
27
|
+
"links": [
|
|
28
|
+
{
|
|
29
|
+
"ref": "canonical",
|
|
30
|
+
"href": "https://www.example.com/documents/api/1.1/metadata-catalog"
|
|
31
|
+
}
|
|
32
|
+
]
|
|
33
|
+
},
|
|
34
|
+
"links": [
|
|
35
|
+
{
|
|
36
|
+
"ref": "canonical",
|
|
37
|
+
"href": "https://www.example.com/documents/api/1.1"
|
|
38
|
+
}
|
|
39
|
+
]
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"version": "1.2",
|
|
43
|
+
"lifecycle": "active",
|
|
44
|
+
"isLatest": "true",
|
|
45
|
+
"catalog": {
|
|
46
|
+
"links": [
|
|
47
|
+
{
|
|
48
|
+
"ref": "canonical",
|
|
49
|
+
"href": "https://www.example.com/documents/api/1.2/metadata-catalog"
|
|
50
|
+
}
|
|
51
|
+
]
|
|
52
|
+
},
|
|
53
|
+
"links": [
|
|
54
|
+
{
|
|
55
|
+
"ref": "canonical",
|
|
56
|
+
"href": "https://www.example.com/documents/api/1.2"
|
|
57
|
+
}
|
|
58
|
+
]
|
|
59
|
+
}
|
|
60
|
+
]
|
|
61
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
{
|
|
2
|
+
"items": [
|
|
3
|
+
{
|
|
4
|
+
"version": "1.2",
|
|
5
|
+
"lifecycle": "active",
|
|
6
|
+
"isLatest": "true",
|
|
7
|
+
"catalog": {
|
|
8
|
+
"links": [
|
|
9
|
+
{
|
|
10
|
+
"ref": "canonical",
|
|
11
|
+
"href": "https://www.example.com/documents/api/1.2/metadata-catalog"
|
|
12
|
+
}
|
|
13
|
+
]
|
|
14
|
+
},
|
|
15
|
+
"links": [
|
|
16
|
+
{
|
|
17
|
+
"ref": "canonical",
|
|
18
|
+
"href": "https://www.example.com/documents/api/1.2"
|
|
19
|
+
}
|
|
20
|
+
]
|
|
21
|
+
}
|
|
22
|
+
]
|
|
23
|
+
}
|
|
@@ -0,0 +1,147 @@
|
|
|
1
|
+
{
|
|
2
|
+
"items": [
|
|
3
|
+
{
|
|
4
|
+
"name": "folders",
|
|
5
|
+
"links": [
|
|
6
|
+
{
|
|
7
|
+
"ref": "canonical",
|
|
8
|
+
"href": "https://www.example.com/documents/api/1.2/metadata-catalog/folders"
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
"ref": "describes",
|
|
12
|
+
"href": "https://www.example.com/documents/api/1.2/folders"
|
|
13
|
+
}
|
|
14
|
+
]
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"name": "files",
|
|
18
|
+
"links": [
|
|
19
|
+
{
|
|
20
|
+
"ref": "canonical",
|
|
21
|
+
"href": "https://www.example.com/documents/api/1.2/metadata-catalog/files"
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"ref": "describes",
|
|
25
|
+
"href": "https://www.example.com/documents/api/1.2/files"
|
|
26
|
+
}
|
|
27
|
+
]
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"name": "users",
|
|
31
|
+
"links": [
|
|
32
|
+
{
|
|
33
|
+
"ref": "canonical",
|
|
34
|
+
"href": "https://www.example.com/documents/api/1.2/metadata-catalog/users"
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"ref": "describes",
|
|
38
|
+
"href": "https://www.example.com/documents/api/1.2/users"
|
|
39
|
+
}
|
|
40
|
+
]
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"name": "applinks",
|
|
44
|
+
"links": [
|
|
45
|
+
{
|
|
46
|
+
"ref": "canonical",
|
|
47
|
+
"href": "https://www.example.com/documents/api/1.2/metadata-catalog/applinks"
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"ref": "describes",
|
|
51
|
+
"href": "https://www.example.com/documents/api/1.2/applinks"
|
|
52
|
+
}
|
|
53
|
+
]
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
"name": "shares",
|
|
57
|
+
"links": [
|
|
58
|
+
{
|
|
59
|
+
"ref": "canonical",
|
|
60
|
+
"href": "https://www.example.com/documents/api/1.2/metadata-catalog/shares"
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
"ref": "describes",
|
|
64
|
+
"href": "https://www.example.com/documents/api/1.2/shares"
|
|
65
|
+
}
|
|
66
|
+
]
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
"name": "publiclinks",
|
|
70
|
+
"links": [
|
|
71
|
+
{
|
|
72
|
+
"ref": "canonical",
|
|
73
|
+
"href": "https://www.example.com/documents/api/1.2/metadata-catalog/publiclinks"
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"ref": "describes",
|
|
77
|
+
"href": "https://www.example.com/documents/api/1.2/publiclinks"
|
|
78
|
+
}
|
|
79
|
+
]
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
"name": "metadata",
|
|
83
|
+
"links": [
|
|
84
|
+
{
|
|
85
|
+
"ref": "canonical",
|
|
86
|
+
"href": "https://www.example.com/documents/api/1.2/metadata-catalog/metadata"
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
"ref": "describes",
|
|
90
|
+
"href": "https://www.example.com/documents/api/1.2/metadata"
|
|
91
|
+
}
|
|
92
|
+
]
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
"name": "configuration",
|
|
96
|
+
"links": [
|
|
97
|
+
{
|
|
98
|
+
"ref": "canonical",
|
|
99
|
+
"href": "https://www.example.com/documents/api/1.2/metadata-catalog/configuration"
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"ref": "describes",
|
|
103
|
+
"href": "https://www.example.com/documents/api/1.2/configuration"
|
|
104
|
+
}
|
|
105
|
+
]
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
"name": "collections",
|
|
109
|
+
"links": [
|
|
110
|
+
{
|
|
111
|
+
"ref": "canonical",
|
|
112
|
+
"href": "https://www.example.com/documents/api/1.2/metadata-catalog/collections"
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
"ref": "describes",
|
|
116
|
+
"href": "https://www.example.com/documents/api/1.2/collections"
|
|
117
|
+
}
|
|
118
|
+
]
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
"name": "sites",
|
|
122
|
+
"links": [
|
|
123
|
+
{
|
|
124
|
+
"ref": "canonical",
|
|
125
|
+
"href": "https://www.example.com/documents/api/1.2/metadata-catalog/sites"
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
"ref": "describes",
|
|
129
|
+
"href": "https://www.example.com/documents/api/1.2/sites"
|
|
130
|
+
}
|
|
131
|
+
]
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
"name": "templates",
|
|
135
|
+
"links": [
|
|
136
|
+
{
|
|
137
|
+
"ref": "canonical",
|
|
138
|
+
"href": "https://www.example.com/documents/api/1.2/metadata-catalog/templates"
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
"ref": "describes",
|
|
142
|
+
"href": "https://www.example.com/documents/api/1.2/templates"
|
|
143
|
+
}
|
|
144
|
+
]
|
|
145
|
+
}
|
|
146
|
+
]
|
|
147
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$id": "schema.json",
|
|
3
|
+
"type": "object",
|
|
4
|
+
"schema": "http://json-schema.org/draft-07/schema#",
|
|
5
|
+
"translate": false,
|
|
6
|
+
"dynamicfields": true,
|
|
7
|
+
"properties": {
|
|
8
|
+
"ph_request_type": {
|
|
9
|
+
"type": "string",
|
|
10
|
+
"description": "type of request (internal to adapter)",
|
|
11
|
+
"default": "getDocumentsApi",
|
|
12
|
+
"enum": [
|
|
13
|
+
"getDocumentsApi",
|
|
14
|
+
"getDocumentsApiVersion",
|
|
15
|
+
"getDocumentsApiVersionMetadataCatalog",
|
|
16
|
+
"getDocumentsApiVersionMetadataCatalogFolders",
|
|
17
|
+
"getDocumentsApiVersionMetadataCatalogFiles",
|
|
18
|
+
"getDocumentsApiVersionMetadataCatalogUsers",
|
|
19
|
+
"getDocumentsApiVersionMetadataCatalogApplinks",
|
|
20
|
+
"getDocumentsApiVersionMetadataCatalogShares",
|
|
21
|
+
"getDocumentsApiVersionMetadataCatalogPubliclinks",
|
|
22
|
+
"getDocumentsApiVersionMetadataCatalogMetadata",
|
|
23
|
+
"getDocumentsApiVersionMetadataCatalogConfiguration",
|
|
24
|
+
"getDocumentsApiVersionMetadataCatalogCollections",
|
|
25
|
+
"getDocumentsApiVersionMetadataCatalogSites",
|
|
26
|
+
"getDocumentsApiVersionMetadataCatalogTemplates"
|
|
27
|
+
],
|
|
28
|
+
"external_name": "ph_request_type"
|
|
29
|
+
}
|
|
30
|
+
},
|
|
31
|
+
"definitions": {}
|
|
32
|
+
}
|