cts-mpx 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (52) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +50 -0
  3. data/.rspec +2 -0
  4. data/.rubocop.yml +88 -0
  5. data/CONTRIBUTING +8 -0
  6. data/COPYRIGHT +10 -0
  7. data/EXAMPLES.md +81 -0
  8. data/Gemfile +4 -0
  9. data/Gemfile.lock +172 -0
  10. data/Guardfile +41 -0
  11. data/LICENSE +201 -0
  12. data/NOTICE +9 -0
  13. data/README.md +60 -0
  14. data/Rakefile +6 -0
  15. data/bin/console +14 -0
  16. data/bin/setup +8 -0
  17. data/config/data_services.json +423 -0
  18. data/config/ingest_services.json +14 -0
  19. data/config/root_registry_sea1.json +118 -0
  20. data/config/web_services.json +544 -0
  21. data/cts-mpx.gemspec +43 -0
  22. data/examples/basic_query.rb +23 -0
  23. data/examples/login.rb +7 -0
  24. data/examples/update_media.rb +16 -0
  25. data/examples/update_procedurally.rb +20 -0
  26. data/lib/cts/mpx.rb +42 -0
  27. data/lib/cts/mpx/driver.rb +47 -0
  28. data/lib/cts/mpx/driver/assemblers.rb +96 -0
  29. data/lib/cts/mpx/driver/connections.rb +41 -0
  30. data/lib/cts/mpx/driver/exceptions.rb +50 -0
  31. data/lib/cts/mpx/driver/helpers.rb +67 -0
  32. data/lib/cts/mpx/driver/page.rb +38 -0
  33. data/lib/cts/mpx/driver/request.rb +60 -0
  34. data/lib/cts/mpx/driver/response.rb +72 -0
  35. data/lib/cts/mpx/entries.rb +80 -0
  36. data/lib/cts/mpx/entry.rb +100 -0
  37. data/lib/cts/mpx/field.rb +38 -0
  38. data/lib/cts/mpx/fields.rb +120 -0
  39. data/lib/cts/mpx/query.rb +115 -0
  40. data/lib/cts/mpx/registry.rb +60 -0
  41. data/lib/cts/mpx/service.rb +70 -0
  42. data/lib/cts/mpx/services.rb +113 -0
  43. data/lib/cts/mpx/services/data.rb +124 -0
  44. data/lib/cts/mpx/services/ingest.rb +60 -0
  45. data/lib/cts/mpx/services/web.rb +90 -0
  46. data/lib/cts/mpx/user.rb +74 -0
  47. data/lib/cts/mpx/validators.rb +51 -0
  48. data/lib/cts/mpx/version.rb +6 -0
  49. data/sdk-ring-diagram.png +0 -0
  50. data/sdk-uml.png +0 -0
  51. data/uml.nomnoml +242 -0
  52. metadata +401 -0
data/LICENSE ADDED
@@ -0,0 +1,201 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "[]"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright [yyyy] [name of copyright owner]
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.
data/NOTICE ADDED
@@ -0,0 +1,9 @@
1
+ mpxRubySdk Copyright 2018 Comcast Cable Communications Management,
2
+ LLC Licensed under the Apache License, Version 2.0 (the "License");
3
+ you may not use this file except in compliance with the License. You may obtain
4
+ a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless
5
+ required by applicable law or agreed to in writing, software distributed
6
+ under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES
7
+ OR CONDITIONS OF ANY KIND, either express or implied. See the License for
8
+ the specific language governing permissions and limitations under the License.
9
+ This product includes software developed at Comcast ( http://www.comcast.com/).
@@ -0,0 +1,60 @@
1
+ # Cts::Mpx
2
+
3
+ Ruby SDK for communicating with the REST services of MPX.
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'cts-mpx'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ bundle
16
+
17
+ Or install it yourself as:
18
+
19
+ gem install cts-mpx
20
+
21
+ ## Usage
22
+
23
+ See EXAMPLES.md
24
+
25
+
26
+ ## High level architecure
27
+
28
+ ### Uml diagram
29
+
30
+ ![sdk uml](sdk-uml.png)
31
+
32
+ ### SDK ring diagram
33
+
34
+ ![sdk ring diagram](sdk-ring-diagram.png)
35
+
36
+ ## Development
37
+
38
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
39
+
40
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
41
+
42
+ ## Contributing
43
+
44
+ 1) fork
45
+ 2) code
46
+ 3) make specs
47
+ 4) make sure your specs pass
48
+ 5) make a pull request
49
+
50
+ ## Copyright
51
+
52
+ Copyright 2018 Comcast Cable Communications Management, LLC
53
+ Licensed under the Apache License, Version 2.0 (the "License");
54
+ you may not use this file except in compliance with the License.
55
+ You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
56
+ Unless required by applicable law or agreed to in writing, software
57
+ distributed under the License is distributed on an "AS IS" BASIS,
58
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
59
+ See the License for the specific language governing permissions and
60
+ limitations under the License.
@@ -0,0 +1,6 @@
1
+ require 'bundler/gem_tasks'
2
+ require 'rspec/core/rake_task'
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task default: :spec
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "cts/mpx"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,423 @@
1
+ {
2
+ "Access Data Service": {
3
+ "uri_hint": "access.auth",
4
+ "path": "data",
5
+ "form": "cjson",
6
+ "schema": "1.3.0",
7
+ "endpoints": [
8
+ "Account",
9
+ "Account/Field",
10
+ "AccountSettings",
11
+ "AccountSettings/Field",
12
+ "Permission",
13
+ "Registry",
14
+ "Role",
15
+ "SuperUser"
16
+ ]
17
+ },
18
+ "Admin Storefront Service": {
19
+ "uri_hint": "admin.storefront.commerce",
20
+ "path": "data",
21
+ "form": "cjson",
22
+ "schema": "3.1.0",
23
+ "endpoints": [
24
+ "Action",
25
+ "Contract",
26
+ "FulfillmentItem",
27
+ "LedgerEntry",
28
+ "Order",
29
+ "orderFulfillment",
30
+ "OrderHistory",
31
+ "OrderItem",
32
+ "OrderSummary",
33
+ "PaymentInstrumentInfo",
34
+ "Shipment"
35
+ ]
36
+ },
37
+ "Commerce Configuration Data Service": {
38
+ "uri_hint": "configuration.commerce",
39
+ "path": "data",
40
+ "form": "cjson",
41
+ "schema": "2.4.0",
42
+ "endpoints": [
43
+ "CheckoutConfiguration",
44
+ "CheckoutConfiguration/Field",
45
+ "CommerceRegistry",
46
+ "FulfillmentConfiguration",
47
+ "FulfillmentConfiguration/Field",
48
+ "PaymentConfiguration",
49
+ "PaymentConfiguration/Field",
50
+ "Rule",
51
+ "RuleSet",
52
+ "TaxConfiguration",
53
+ "TaxConfiguration/Field"
54
+ ]
55
+ },
56
+ "Commerce Event Data Service": {
57
+ "uri_hint": "event.commerce",
58
+ "path": "data",
59
+ "form": "cjson",
60
+ "schema": "1.8.0",
61
+ "endpoints": [
62
+ "OrderTracking"
63
+ ]
64
+ },
65
+ "Console Data Service": {
66
+ "uri_hint": "mpx",
67
+ "path": "data",
68
+ "form": "cjson",
69
+ "schema": "1.4.0",
70
+ "endpoints": [
71
+ "AccountSettings",
72
+ "AccountSettings/Field",
73
+ "Command",
74
+ "Command/Field",
75
+ "MenuItem",
76
+ "MenuItem/Field",
77
+ "Pane",
78
+ "Pane/Field",
79
+ "PaneState",
80
+ "PaneState/Field",
81
+ "Panel",
82
+ "Panel/Field",
83
+ "Shortcut",
84
+ "Shortcut/Field",
85
+ "UserAccountSettings",
86
+ "UserAccountSettings/Field",
87
+ "View",
88
+ "View/Field",
89
+ "ViewLink",
90
+ "ViewLink/Field"
91
+ ]
92
+ },
93
+ "Cue Point Data Service": {
94
+ "uri_hint": "event.commerce",
95
+ "path": "data",
96
+ "form": "cjson",
97
+ "schema": "1.3.0",
98
+ "endpoints": [
99
+ "CuePoint",
100
+ "CuePointType"
101
+ ]
102
+ },
103
+ "Delivery Data Service": {
104
+ "uri_hint": "delivery",
105
+ "path": "data",
106
+ "form": "cjson",
107
+ "schema": "1.8.0",
108
+ "endpoints": [
109
+ "AccountSettings",
110
+ "AccountSettings/Field",
111
+ "AdPolicy",
112
+ "AdPolicy/Field",
113
+ "Restriction",
114
+ "Restriction/Field",
115
+ "UserAgent"
116
+ ]
117
+ },
118
+ "Entertainment Data Service": {
119
+ "uri_hint": "entertainment.tv",
120
+ "path": "data",
121
+ "form": "cjson",
122
+ "schema": "2.10.0",
123
+ "endpoints": [
124
+ "AccountSettings",
125
+ "AccountSettings/Field",
126
+ "Channel",
127
+ "Channel/Field",
128
+ "ChannelSchedule",
129
+ "ChannelSchedule/Field",
130
+ "Company",
131
+ "Company/Field",
132
+ "Credit",
133
+ "Credit/Field",
134
+ "Listing",
135
+ "Listing/Field",
136
+ "Location",
137
+ "Location/Field",
138
+ "Person",
139
+ "Person/Field",
140
+ "Program",
141
+ "Program/Field",
142
+ "ProgramAvailability",
143
+ "ProgramAvailability/Field",
144
+ "Station",
145
+ "Station/Field",
146
+ "Tag",
147
+ "Tag/Field",
148
+ "TvSeason",
149
+ "TvSeason/Field"
150
+ ]
151
+ },
152
+ "Entertainment Ingest Data Service": {
153
+ "uri_hint": "ingest.tv",
154
+ "path": "data",
155
+ "form": "cjson",
156
+ "schema": "1.3.0",
157
+ "endpoints": [
158
+ "IngestConfig",
159
+ "IngestConfig/Field",
160
+ "IngestResult"
161
+ ]
162
+ },
163
+ "Entitlement Data Service": {
164
+ "uri_hint": "entitlement",
165
+ "path": "data",
166
+ "form": "cjson",
167
+ "schema": "",
168
+ "endpoints": []
169
+ },
170
+ "FeedReader Data Service": {
171
+ "uri_hint": "feedreader.ingest",
172
+ "path": "data",
173
+ "form": "cjson",
174
+ "schema": "1.3.0",
175
+ "endpoints": [
176
+ "FeedRecord",
177
+ "FeedRecord/Field"
178
+ ]
179
+ },
180
+ "Feeds Data Service": {
181
+ "uri_hint": "feed",
182
+ "path": "data",
183
+ "form": "cjson",
184
+ "schema": "2.2.0",
185
+ "endpoints": [
186
+ "FeedAdapter",
187
+ "FeedAdapter/Field",
188
+ "FeedConfig",
189
+ "FeedConfig/Field"
190
+ ]
191
+ },
192
+ "Ingest Data Service": {
193
+ "uri_hint": "adapter.ingest",
194
+ "path": "data",
195
+ "form": "cjson",
196
+ "schema": "1.2.0",
197
+ "endpoints": [
198
+ "Adapter",
199
+ "Adapter/Field",
200
+ "AdapterConfiguration",
201
+ "AdapterConfiguration/Field",
202
+ "Checksum"
203
+ ]
204
+ },
205
+ "Key Data Service": {
206
+ "uri_hint": "key.entitlement",
207
+ "path": "data",
208
+ "form": "cjson",
209
+ "schema": "1.2.0",
210
+ "endpoints": [
211
+ "Key",
212
+ "Key/Field",
213
+ "UserKey"
214
+ ]
215
+ },
216
+ "Ledger Data Service": {
217
+ "uri_hint": "ledger.commerce",
218
+ "path": "data",
219
+ "form": "cjson",
220
+ "schema": "1.3.0",
221
+ "endpoints": [
222
+ "LedgerEntry"
223
+ ]
224
+ },
225
+ "Live Event Service": {
226
+ "uri_hint": "liveevent",
227
+ "path": "data",
228
+ "form": "cjson",
229
+ "schema": "1.4.0",
230
+ "endpoints": [
231
+ "LiveEncoder",
232
+ "LiveEncoder/Field",
233
+ "LiveEvent",
234
+ "PhysicalRecording",
235
+ "PhysicalRecording/Field"
236
+ ]
237
+ },
238
+ "Message Data Service": {
239
+ "uri_hint": "message",
240
+ "path": "data",
241
+ "form": "cjson",
242
+ "schema": "1.3.0",
243
+ "endpoints": [
244
+ "EmailTemplate",
245
+ "EmailTemplate/Field",
246
+ "MessageInstruction",
247
+ "MessageQueue",
248
+ "NotificationFilter"
249
+ ]
250
+ },
251
+ "Comcast Messenger Data Service": {
252
+ "path": "data",
253
+ "uri_hint": "messenger.comcast",
254
+ "form": "cjson",
255
+ "schema": "1.6.0",
256
+ "endpoints": [
257
+ "Message",
258
+ "NotificationSetting"
259
+ ]
260
+ },
261
+ "Player Data Service": {
262
+ "uri_hint": "player",
263
+ "path": "data",
264
+ "form": "cjson",
265
+ "schema": "1.4.0",
266
+ "endpoints": [
267
+ "AccountSettings",
268
+ "ColorScheme",
269
+ "Layout",
270
+ "Player",
271
+ "Player/Field",
272
+ "PlayerDefaults",
273
+ "Plugin",
274
+ "Skin"
275
+ ]
276
+ },
277
+ "Product Data Service": {
278
+ "uri_hint": "product",
279
+ "path": "data",
280
+ "form": "cjson",
281
+ "schema": "2.5.0",
282
+ "endpoints": [
283
+ "AccountSettings",
284
+ "AccountSettings/Field",
285
+ "PricingTemplate",
286
+ "PricingTemplate/Field",
287
+ "Product",
288
+ "Product/Field",
289
+ "ProductTag",
290
+ "ProductTag/Field",
291
+ "Subscription",
292
+ "Subscription/Field"
293
+ ]
294
+ },
295
+ "Promotion Service": {
296
+ "uri_hint": "promotion.commerce",
297
+ "path": "data",
298
+ "form": "cjson",
299
+ "schema": "3.1.0",
300
+ "endpoints": [
301
+ "Promotion",
302
+ "Promotion/Field",
303
+ "PromotionAction",
304
+ "PromotionAction/Field",
305
+ "PromotionCondition",
306
+ "PromotionUseCount"
307
+ ]
308
+ },
309
+ "Publish Data Service": {
310
+ "uri_hint": "publish",
311
+ "path": "data",
312
+ "form": "cjson",
313
+ "schema": "1.8.0",
314
+ "endpoints": [
315
+ "Adapter",
316
+ "AdapterConfiguration",
317
+ "PublishProfile",
318
+ "PublishProfile/Field"
319
+ ]
320
+ },
321
+ "Sharing Data Service": {
322
+ "uri_hint": "share",
323
+ "path": "data",
324
+ "form": "cjson",
325
+ "schema": "1.7.0",
326
+ "endpoints": [
327
+ "OutletProfile",
328
+ "OutletProfile/Field",
329
+ "ProviderAdapter",
330
+ "ProviderAdapter/Field"
331
+ ]
332
+ },
333
+ "Media Data Service": {
334
+ "uri_hint": "media",
335
+ "path": "data",
336
+ "form": "cjson",
337
+ "schema": "1.7.0",
338
+ "search_schema": "1.0",
339
+ "read_only": true,
340
+ "endpoints": [
341
+ "AccountSettings",
342
+ "AccountSettings/Field",
343
+ "AssetType",
344
+ "AssetType/Field",
345
+ "Category",
346
+ "Category/Field",
347
+ "Media",
348
+ "Media/Field",
349
+ "MediaDefaults",
350
+ "MediaFile",
351
+ "MediaFile/Field",
352
+ "Provider",
353
+ "Provider/Field",
354
+ "Release",
355
+ "Release/Field",
356
+ "Server",
357
+ "Server/Field"
358
+ ]
359
+ },
360
+ "Task Service": {
361
+ "uri_hint": "task",
362
+ "path": "data",
363
+ "form": "cjson",
364
+ "schema": "1.3.0",
365
+ "endpoints": [
366
+ "Agent",
367
+ "Batch",
368
+ "Task",
369
+ "TaskTemplate",
370
+ "TaskTemplate/Field",
371
+ "TaskType"
372
+ ]
373
+ },
374
+ "WatchFolder Data Service": {
375
+ "uri_hint": "watchfolder.ingest",
376
+ "path": "data",
377
+ "form": "json",
378
+ "schema": "1.2.0",
379
+ "endpoints": [
380
+ "WatchFolder",
381
+ "WatchFolder/Field",
382
+ "WatchFolderFile",
383
+ "WatchFolderFile/Field"
384
+ ]
385
+ },
386
+ "Workflow Data Service": {
387
+ "uri_hint": "workflow",
388
+ "path": "data",
389
+ "form": "cjson",
390
+ "schema": "1.3.0",
391
+ "endpoints": [
392
+ "ProfileResult",
393
+ "ProfileStepResult",
394
+ "WorkflowQueue"
395
+ ]
396
+ },
397
+ "Validation Data Service": {
398
+ "uri_hint": "validation",
399
+ "path": "data",
400
+ "form": "cjson",
401
+ "schema": "1.3.0",
402
+ "endpoints": [
403
+ "ConditionalRule",
404
+ "ConditionalRule/Field",
405
+ "ValidationRule",
406
+ "ValidationRule/Field",
407
+ "Validator",
408
+ "Validator/Field"
409
+ ]
410
+ },
411
+ "User Data Service master": {
412
+ "uri_hint": "identity.auth",
413
+ "path": "data",
414
+ "form": "cjson",
415
+ "schema": "1.5.0",
416
+ "endpoints": [
417
+ "Directory",
418
+ "Directory/Field",
419
+ "Security",
420
+ "User"
421
+ ]
422
+ }
423
+ }