@takeshape/schema 7.194.0

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.
Files changed (312) hide show
  1. package/README.md +5 -0
  2. package/es/api-version.js +21 -0
  3. package/es/auth-schemas.js +0 -0
  4. package/es/builtin-schema.js +590 -0
  5. package/es/content-schema-transform.js +192 -0
  6. package/es/entitlements.js +0 -0
  7. package/es/enum.js +11 -0
  8. package/es/get-is-leaf.js +58 -0
  9. package/es/index.js +25 -0
  10. package/es/migration.js +413 -0
  11. package/es/mocks.js +47 -0
  12. package/es/patterns.js +0 -0
  13. package/es/project-schema/index.js +10 -0
  14. package/es/project-schema/v1.0.0.js +0 -0
  15. package/es/project-schema/v3.0.0.js +0 -0
  16. package/es/project-schema/v3.1.0.js +0 -0
  17. package/es/project-schema/v3.2.0.js +0 -0
  18. package/es/project-schema/v3.3.0.js +0 -0
  19. package/es/project-schema/v3.4.0.js +0 -0
  20. package/es/project-schema/v3.5.0.js +0 -0
  21. package/es/project-schema/v3.5.1.js +0 -0
  22. package/es/project-schema/v3.6.0.js +0 -0
  23. package/es/refs.js +301 -0
  24. package/es/resolvers.js +2 -0
  25. package/es/scalars.js +4 -0
  26. package/es/schema-util.js +1197 -0
  27. package/es/schemas/auth-schemas.json +313 -0
  28. package/es/schemas/project-schema/meta-schema-v1.0.0.json +209 -0
  29. package/es/schemas/project-schema/meta-schema-v3.0.0.json +609 -0
  30. package/es/schemas/project-schema/meta-schema-v3.1.0.json +609 -0
  31. package/es/schemas/project-schema/meta-schema-v3.2.0.json +613 -0
  32. package/es/schemas/project-schema/meta-schema-v3.3.0.json +613 -0
  33. package/es/schemas/project-schema/meta-schema-v3.4.0.json +613 -0
  34. package/es/schemas/project-schema/meta-schema-v3.5.0.json +627 -0
  35. package/es/schemas/project-schema/meta-schema-v3.5.1.json +630 -0
  36. package/es/schemas/project-schema/meta-schema-v3.6.0.json +633 -0
  37. package/es/schemas/project-schema/v1.0.0.json +321 -0
  38. package/es/schemas/project-schema/v3.0.0.json +411 -0
  39. package/es/schemas/project-schema/v3.1.0.json +569 -0
  40. package/es/schemas/project-schema/v3.2.0.json +577 -0
  41. package/es/schemas/project-schema/v3.3.0.json +578 -0
  42. package/es/schemas/project-schema/v3.4.0.json +568 -0
  43. package/es/schemas/project-schema/v3.5.0.json +568 -0
  44. package/es/schemas/project-schema/v3.5.1.json +568 -0
  45. package/es/schemas/project-schema/v3.6.0.json +584 -0
  46. package/es/schemas/project-schema.json +16 -0
  47. package/es/schemas/user-schema.json +58 -0
  48. package/es/services.js +379 -0
  49. package/es/taxonomies.js +55 -0
  50. package/es/template-shapes.js +79 -0
  51. package/es/types.js +202 -0
  52. package/es/unions.js +137 -0
  53. package/es/user-schema.js +0 -0
  54. package/es/util/detect-cycles.js +54 -0
  55. package/es/util/index.js +1 -0
  56. package/es/validate.js +764 -0
  57. package/es/versions.js +4 -0
  58. package/es/workflows.js +69 -0
  59. package/examples/.pnpm-debug.log +20 -0
  60. package/examples/v1_0_0/beer-schema.json +125 -0
  61. package/examples/v1_0_0/blog-schema.json +192 -0
  62. package/examples/v1_0_0/brewery-schema.json +232 -0
  63. package/examples/v1_0_0/complex-project-schema.json +3197 -0
  64. package/examples/v1_0_0/error-schema.json +275 -0
  65. package/examples/v1_0_0/frank-and-fred-schema.json +21387 -0
  66. package/examples/v1_0_0/massive-schema.json +6930 -0
  67. package/examples/v1_0_0/post-schema.json +83 -0
  68. package/examples/v1_0_0/real-world-schema.json +797 -0
  69. package/examples/v1_0_0/recursive-repeater-schema.json +69 -0
  70. package/examples/v1_0_0/recursive-schema.json +79 -0
  71. package/examples/v1_0_0/schema-with-repeater-draftjs.json +292 -0
  72. package/examples/v1_0_0/shape-books.json +797 -0
  73. package/examples/v1_0_0/user-schema-no-required.json +84 -0
  74. package/examples/v1_0_0/user-schema-with-defaults.json +105 -0
  75. package/examples/v1_0_0/user-schema-with-obj-prop.json +92 -0
  76. package/examples/v1_0_0/user-schema.json +87 -0
  77. package/examples/v3_0_0/rick-and-morty-rest.json +62 -0
  78. package/examples/v3_0_0/shopify-lookbook.json +1172 -0
  79. package/examples/v3_0_0/shopify-store-with-widget.json +11323 -0
  80. package/examples/v3_2_0/blog-schema.json +378 -0
  81. package/examples/v3_2_0/brewery-schema.json +385 -0
  82. package/examples/v3_2_0/complex-project-schema.json +3748 -0
  83. package/examples/v3_2_0/frank-and-fred-schema.json +19217 -0
  84. package/examples/v3_2_0/massive-schema.json +6676 -0
  85. package/examples/v3_2_0/pet-oneof-array.json +323 -0
  86. package/examples/v3_2_0/post-schema.json +265 -0
  87. package/examples/v3_2_0/real-world-schema.json +970 -0
  88. package/examples/v3_2_0/recursive-repeater-schema.json +144 -0
  89. package/examples/v3_2_0/recursive-schema.json +151 -0
  90. package/examples/v3_2_0/rick-and-morty-rest.json +65 -0
  91. package/examples/v3_2_0/schema-with-repeater-draftjs.json +381 -0
  92. package/examples/v3_2_0/shape-books.json +1044 -0
  93. package/examples/v3_2_0/shopify-store-with-widget.json +11016 -0
  94. package/examples/v3_2_0/user-schema-no-required.json +174 -0
  95. package/examples/v3_2_0/user-schema-with-defaults.json +187 -0
  96. package/examples/v3_3_0/blog-schema.json +405 -0
  97. package/examples/v3_3_0/brewery-schema.json +406 -0
  98. package/examples/v3_3_0/complex-project-schema.json +4076 -0
  99. package/examples/v3_3_0/frank-and-fred-schema.json +20913 -0
  100. package/examples/v3_3_0/massive-schema.json +7309 -0
  101. package/examples/v3_3_0/pet-oneof-array.json +380 -0
  102. package/examples/v3_3_0/post-schema.json +248 -0
  103. package/examples/v3_3_0/real-world-schema.json +1046 -0
  104. package/examples/v3_3_0/recursive-repeater-schema.json +154 -0
  105. package/examples/v3_3_0/recursive-schema.json +161 -0
  106. package/examples/v3_3_0/rick-and-morty-rest.json +101 -0
  107. package/examples/v3_3_0/schema-with-repeater-draftjs.json +393 -0
  108. package/examples/v3_3_0/shape-books.json +1121 -0
  109. package/examples/v3_3_0/shopify-lookbook.json +1196 -0
  110. package/examples/v3_3_0/shopify-store-with-widget.json +11320 -0
  111. package/examples/v3_3_0/user-schema-no-required.json +185 -0
  112. package/examples/v3_3_0/user-schema-with-defaults.json +210 -0
  113. package/examples/v3_4_0/blog-schema.json +405 -0
  114. package/examples/v3_4_0/brewery-schema.json +406 -0
  115. package/examples/v3_4_0/complex-project-schema.json +4076 -0
  116. package/examples/v3_4_0/frank-and-fred-schema.json +20913 -0
  117. package/examples/v3_4_0/massive-schema.json +7309 -0
  118. package/examples/v3_4_0/pet-oneof-array.json +420 -0
  119. package/examples/v3_4_0/post-schema.json +248 -0
  120. package/examples/v3_4_0/real-world-schema.json +1046 -0
  121. package/examples/v3_4_0/recursive-repeater-schema.json +154 -0
  122. package/examples/v3_4_0/recursive-schema.json +161 -0
  123. package/examples/v3_4_0/rick-and-morty-rest.json +101 -0
  124. package/examples/v3_4_0/schema-with-repeater-draftjs.json +393 -0
  125. package/examples/v3_4_0/shape-books.json +1121 -0
  126. package/examples/v3_4_0/shopify-lookbook.json +1196 -0
  127. package/examples/v3_4_0/shopify-store-with-widget.json +11323 -0
  128. package/examples/v3_4_0/user-schema-no-required.json +185 -0
  129. package/examples/v3_4_0/user-schema-with-defaults.json +210 -0
  130. package/examples/v3_5_0/blog-schema.json +405 -0
  131. package/examples/v3_5_0/brewery-schema.json +406 -0
  132. package/examples/v3_5_0/complex-project-schema.json +4076 -0
  133. package/examples/v3_5_0/frank-and-fred-schema.json +20913 -0
  134. package/examples/v3_5_0/massive-schema.json +7309 -0
  135. package/examples/v3_5_0/pet-oneof-array.json +420 -0
  136. package/examples/v3_5_0/post-schema.json +248 -0
  137. package/examples/v3_5_0/real-world-schema.json +1046 -0
  138. package/examples/v3_5_0/recursive-repeater-schema.json +154 -0
  139. package/examples/v3_5_0/recursive-schema.json +161 -0
  140. package/examples/v3_5_0/rick-and-morty-rest.json +101 -0
  141. package/examples/v3_5_0/schema-with-repeater-draftjs.json +393 -0
  142. package/examples/v3_5_0/shape-books.json +1121 -0
  143. package/examples/v3_5_0/shopify-lookbook.json +1196 -0
  144. package/examples/v3_5_0/shopify-store-with-widget.json +12271 -0
  145. package/examples/v3_5_0/user-schema-no-required.json +185 -0
  146. package/examples/v3_5_0/user-schema-with-defaults.json +210 -0
  147. package/examples/v3_5_1/blog-schema.json +405 -0
  148. package/examples/v3_5_1/brewery-schema.json +406 -0
  149. package/examples/v3_5_1/complex-project-schema.json +4076 -0
  150. package/examples/v3_5_1/frank-and-fred-schema.json +20913 -0
  151. package/examples/v3_5_1/massive-schema.json +7309 -0
  152. package/examples/v3_5_1/pet-oneof-array.json +420 -0
  153. package/examples/v3_5_1/post-schema.json +248 -0
  154. package/examples/v3_5_1/real-world-schema.json +1046 -0
  155. package/examples/v3_5_1/recursive-repeater-schema.json +154 -0
  156. package/examples/v3_5_1/recursive-schema.json +161 -0
  157. package/examples/v3_5_1/rick-and-morty-rest.json +101 -0
  158. package/examples/v3_5_1/schema-with-repeater-draftjs.json +393 -0
  159. package/examples/v3_5_1/shape-books.json +1121 -0
  160. package/examples/v3_5_1/shopify-lookbook.json +1196 -0
  161. package/examples/v3_5_1/shopify-store-with-widget.json +12271 -0
  162. package/examples/v3_5_1/stripe-starter-resolved.json +21419 -0
  163. package/examples/v3_5_1/user-schema-no-required.json +185 -0
  164. package/examples/v3_5_1/user-schema-with-defaults.json +210 -0
  165. package/examples/v3_6_0/blog-schema.json +405 -0
  166. package/examples/v3_6_0/brewery-schema.json +406 -0
  167. package/examples/v3_6_0/complex-project-schema.json +4076 -0
  168. package/examples/v3_6_0/frank-and-fred-schema.json +20913 -0
  169. package/examples/v3_6_0/massive-schema.json +7309 -0
  170. package/examples/v3_6_0/pet-oneof-array.json +420 -0
  171. package/examples/v3_6_0/post-schema.json +248 -0
  172. package/examples/v3_6_0/real-world-schema.json +1046 -0
  173. package/examples/v3_6_0/recursive-repeater-schema.json +154 -0
  174. package/examples/v3_6_0/recursive-schema.json +161 -0
  175. package/examples/v3_6_0/rick-and-morty-rest.json +101 -0
  176. package/examples/v3_6_0/schema-with-repeater-draftjs.json +393 -0
  177. package/examples/v3_6_0/shape-books.json +1121 -0
  178. package/examples/v3_6_0/shopify-lookbook.json +1196 -0
  179. package/examples/v3_6_0/shopify-store-with-widget.json +12271 -0
  180. package/examples/v3_6_0/stripe-starter-resolved.json +21419 -0
  181. package/examples/v3_6_0/user-schema-no-required.json +185 -0
  182. package/examples/v3_6_0/user-schema-with-defaults.json +210 -0
  183. package/lib/api-version.d.ts +6 -0
  184. package/lib/api-version.d.ts.map +1 -0
  185. package/lib/api-version.js +36 -0
  186. package/lib/auth-schemas.d.ts +105 -0
  187. package/lib/auth-schemas.d.ts.map +1 -0
  188. package/lib/auth-schemas.js +1 -0
  189. package/lib/builtin-schema.d.ts +8 -0
  190. package/lib/builtin-schema.d.ts.map +1 -0
  191. package/lib/builtin-schema.js +606 -0
  192. package/lib/content-schema-transform.d.ts +41 -0
  193. package/lib/content-schema-transform.d.ts.map +1 -0
  194. package/lib/content-schema-transform.js +217 -0
  195. package/lib/entitlements.d.ts +1 -0
  196. package/lib/entitlements.d.ts.map +1 -0
  197. package/lib/entitlements.js +1 -0
  198. package/lib/enum.d.ts +3 -0
  199. package/lib/enum.d.ts.map +1 -0
  200. package/lib/enum.js +18 -0
  201. package/lib/get-is-leaf.d.ts +4 -0
  202. package/lib/get-is-leaf.d.ts.map +1 -0
  203. package/lib/get-is-leaf.js +68 -0
  204. package/lib/index.d.ts +27 -0
  205. package/lib/index.d.ts.map +1 -0
  206. package/lib/index.js +359 -0
  207. package/lib/migration.d.ts +55 -0
  208. package/lib/migration.d.ts.map +1 -0
  209. package/lib/migration.js +463 -0
  210. package/lib/mocks.d.ts +13 -0
  211. package/lib/mocks.d.ts.map +1 -0
  212. package/lib/mocks.js +61 -0
  213. package/lib/patterns.d.ts +13 -0
  214. package/lib/patterns.d.ts.map +1 -0
  215. package/lib/patterns.js +1 -0
  216. package/lib/project-schema/index.d.ts +21 -0
  217. package/lib/project-schema/index.d.ts.map +1 -0
  218. package/lib/project-schema/index.js +122 -0
  219. package/lib/project-schema/v1.0.0.d.ts +293 -0
  220. package/lib/project-schema/v1.0.0.d.ts.map +1 -0
  221. package/lib/project-schema/v1.0.0.js +1 -0
  222. package/lib/project-schema/v3.0.0.d.ts +480 -0
  223. package/lib/project-schema/v3.0.0.d.ts.map +1 -0
  224. package/lib/project-schema/v3.0.0.js +1 -0
  225. package/lib/project-schema/v3.1.0.d.ts +623 -0
  226. package/lib/project-schema/v3.1.0.d.ts.map +1 -0
  227. package/lib/project-schema/v3.1.0.js +1 -0
  228. package/lib/project-schema/v3.2.0.d.ts +634 -0
  229. package/lib/project-schema/v3.2.0.d.ts.map +1 -0
  230. package/lib/project-schema/v3.2.0.js +1 -0
  231. package/lib/project-schema/v3.3.0.d.ts +634 -0
  232. package/lib/project-schema/v3.3.0.d.ts.map +1 -0
  233. package/lib/project-schema/v3.3.0.js +1 -0
  234. package/lib/project-schema/v3.4.0.d.ts +626 -0
  235. package/lib/project-schema/v3.4.0.d.ts.map +1 -0
  236. package/lib/project-schema/v3.4.0.js +1 -0
  237. package/lib/project-schema/v3.5.0.d.ts +651 -0
  238. package/lib/project-schema/v3.5.0.d.ts.map +1 -0
  239. package/lib/project-schema/v3.5.0.js +1 -0
  240. package/lib/project-schema/v3.5.1.d.ts +651 -0
  241. package/lib/project-schema/v3.5.1.d.ts.map +1 -0
  242. package/lib/project-schema/v3.5.1.js +1 -0
  243. package/lib/project-schema/v3.6.0.d.ts +660 -0
  244. package/lib/project-schema/v3.6.0.d.ts.map +1 -0
  245. package/lib/project-schema/v3.6.0.js +1 -0
  246. package/lib/refs.d.ts +122 -0
  247. package/lib/refs.d.ts.map +1 -0
  248. package/lib/refs.js +359 -0
  249. package/lib/resolvers.d.ts +4 -0
  250. package/lib/resolvers.d.ts.map +1 -0
  251. package/lib/resolvers.js +10 -0
  252. package/lib/scalars.d.ts +3 -0
  253. package/lib/scalars.d.ts.map +1 -0
  254. package/lib/scalars.js +13 -0
  255. package/lib/schema-util.d.ts +201 -0
  256. package/lib/schema-util.d.ts.map +1 -0
  257. package/lib/schema-util.js +1353 -0
  258. package/lib/schemas/auth-schemas.json +313 -0
  259. package/lib/schemas/project-schema/meta-schema-v1.0.0.json +209 -0
  260. package/lib/schemas/project-schema/meta-schema-v3.0.0.json +609 -0
  261. package/lib/schemas/project-schema/meta-schema-v3.1.0.json +609 -0
  262. package/lib/schemas/project-schema/meta-schema-v3.2.0.json +613 -0
  263. package/lib/schemas/project-schema/meta-schema-v3.3.0.json +613 -0
  264. package/lib/schemas/project-schema/meta-schema-v3.4.0.json +613 -0
  265. package/lib/schemas/project-schema/meta-schema-v3.5.0.json +627 -0
  266. package/lib/schemas/project-schema/meta-schema-v3.5.1.json +630 -0
  267. package/lib/schemas/project-schema/meta-schema-v3.6.0.json +633 -0
  268. package/lib/schemas/project-schema/v1.0.0.json +321 -0
  269. package/lib/schemas/project-schema/v3.0.0.json +411 -0
  270. package/lib/schemas/project-schema/v3.1.0.json +569 -0
  271. package/lib/schemas/project-schema/v3.2.0.json +577 -0
  272. package/lib/schemas/project-schema/v3.3.0.json +578 -0
  273. package/lib/schemas/project-schema/v3.4.0.json +568 -0
  274. package/lib/schemas/project-schema/v3.5.0.json +568 -0
  275. package/lib/schemas/project-schema/v3.5.1.json +568 -0
  276. package/lib/schemas/project-schema/v3.6.0.json +584 -0
  277. package/lib/schemas/project-schema.json +16 -0
  278. package/lib/schemas/user-schema.json +58 -0
  279. package/lib/services.d.ts +71 -0
  280. package/lib/services.d.ts.map +1 -0
  281. package/lib/services.js +413 -0
  282. package/lib/taxonomies.d.ts +16 -0
  283. package/lib/taxonomies.d.ts.map +1 -0
  284. package/lib/taxonomies.js +69 -0
  285. package/lib/template-shapes.d.ts +32 -0
  286. package/lib/template-shapes.d.ts.map +1 -0
  287. package/lib/template-shapes.js +100 -0
  288. package/lib/types.d.ts +187 -0
  289. package/lib/types.d.ts.map +1 -0
  290. package/lib/types.js +289 -0
  291. package/lib/unions.d.ts +29 -0
  292. package/lib/unions.d.ts.map +1 -0
  293. package/lib/unions.js +167 -0
  294. package/lib/user-schema.d.ts +39 -0
  295. package/lib/user-schema.d.ts.map +1 -0
  296. package/lib/user-schema.js +1 -0
  297. package/lib/util/detect-cycles.d.ts +6 -0
  298. package/lib/util/detect-cycles.d.ts.map +1 -0
  299. package/lib/util/detect-cycles.js +61 -0
  300. package/lib/util/index.d.ts +2 -0
  301. package/lib/util/index.d.ts.map +1 -0
  302. package/lib/util/index.js +18 -0
  303. package/lib/validate.d.ts +49 -0
  304. package/lib/validate.d.ts.map +1 -0
  305. package/lib/validate.js +823 -0
  306. package/lib/versions.d.ts +5 -0
  307. package/lib/versions.d.ts.map +1 -0
  308. package/lib/versions.js +14 -0
  309. package/lib/workflows.d.ts +15 -0
  310. package/lib/workflows.d.ts.map +1 -0
  311. package/lib/workflows.js +92 -0
  312. package/package.json +65 -0
@@ -0,0 +1,3197 @@
1
+ {
2
+ "contentTypes": {
3
+ "B1ESWSe2V": {
4
+ "forms": {
5
+ "default": {
6
+ "order": [
7
+ "name",
8
+ "description"
9
+ ],
10
+ "properties": {
11
+ "description": {
12
+ "widget": "paragraphText"
13
+ },
14
+ "name": {
15
+ "widget": "singleLineText"
16
+ }
17
+ }
18
+ }
19
+ },
20
+ "name": "purpose",
21
+ "schema": {
22
+ "properties": {
23
+ "description": {
24
+ "key": "SyhVZrx24",
25
+ "minLength": 0,
26
+ "title": "Description",
27
+ "type": "string"
28
+ },
29
+ "name": {
30
+ "key": "HyvVZBenE",
31
+ "minLength": 1,
32
+ "title": "Name",
33
+ "type": "string"
34
+ }
35
+ },
36
+ "required": [
37
+ "name"
38
+ ],
39
+ "type": "object"
40
+ },
41
+ "single": false,
42
+ "taxonomy": true,
43
+ "title": "Purpose"
44
+ },
45
+ "B1IgZrxhE": {
46
+ "forms": {
47
+ "default": {
48
+ "order": [
49
+ "name",
50
+ "description"
51
+ ],
52
+ "properties": {
53
+ "description": {
54
+ "widget": "paragraphText"
55
+ },
56
+ "name": {
57
+ "widget": "singleLineText"
58
+ }
59
+ }
60
+ }
61
+ },
62
+ "name": "matterType",
63
+ "schema": {
64
+ "properties": {
65
+ "description": {
66
+ "key": "HypkbSxnE",
67
+ "minLength": 0,
68
+ "title": "Description",
69
+ "type": "string"
70
+ },
71
+ "name": {
72
+ "key": "SJvyZSlhV",
73
+ "minLength": 1,
74
+ "title": "Name",
75
+ "type": "string"
76
+ }
77
+ },
78
+ "required": [
79
+ "name"
80
+ ],
81
+ "type": "object"
82
+ },
83
+ "single": false,
84
+ "taxonomy": true,
85
+ "title": "Matter Type"
86
+ },
87
+ "BJSiWXGhE": {
88
+ "forms": {
89
+ "default": {
90
+ "order": [
91
+ "revisionId",
92
+ "tagLine",
93
+ "vendor"
94
+ ],
95
+ "properties": {
96
+ "revisionId": {
97
+ "instructions": "The format is <productname>-ddmmyyyy-number",
98
+ "widget": "singleLineText"
99
+ },
100
+ "tagLine": {
101
+ "widget": "singleLineText"
102
+ },
103
+ "vendor": {
104
+ "widget": "relationship"
105
+ }
106
+ }
107
+ }
108
+ },
109
+ "name": "solutionRevision2",
110
+ "schema": {
111
+ "properties": {
112
+ "revisionId": {
113
+ "key": "ByrQbXz24",
114
+ "minLength": 1,
115
+ "title": "Revision ID",
116
+ "type": "string"
117
+ },
118
+ "tagLine": {
119
+ "key": "B1BdWmzhE",
120
+ "minLength": 0,
121
+ "title": "Tag Line",
122
+ "type": "string"
123
+ },
124
+ "vendor": {
125
+ "key": "rkftWQGhN",
126
+ "properties": {
127
+ "contentTypeId": {
128
+ "enum": [
129
+ "HkUQVLg3N"
130
+ ],
131
+ "type": "string"
132
+ },
133
+ "id": {
134
+ "type": "string"
135
+ }
136
+ },
137
+ "relationship": {
138
+ "contentTypeIds": [
139
+ "HkUQVLg3N"
140
+ ],
141
+ "type": "single"
142
+ },
143
+ "required": [
144
+ "contentTypeId",
145
+ "id"
146
+ ],
147
+ "title": "Vendor",
148
+ "type": "object"
149
+ }
150
+ },
151
+ "required": [
152
+ "revisionId"
153
+ ],
154
+ "type": "object"
155
+ },
156
+ "single": false,
157
+ "taxonomy": false,
158
+ "title": "Solution Revision 2"
159
+ },
160
+ "BkGl0zz3E": {
161
+ "forms": {
162
+ "default": {
163
+ "order": [
164
+ "revisionId",
165
+ "tagLine",
166
+ "vendor",
167
+ "overview",
168
+ "categories",
169
+ "matterTypes",
170
+ "practiceAreas",
171
+ "purpose",
172
+ "technologies",
173
+ "testDrive",
174
+ "pilot",
175
+ "featured",
176
+ "onPlatformPurchase",
177
+ "features",
178
+ "images",
179
+ "videos",
180
+ "collaterals",
181
+ "softwarePrerequisites",
182
+ "webServicePrerequisites",
183
+ "tenancy",
184
+ "worksWith",
185
+ "saaSBusiness",
186
+ "infrastructureRequirements",
187
+ "customers"
188
+ ],
189
+ "properties": {
190
+ "categories": {
191
+ "widget": "relationship"
192
+ },
193
+ "collaterals": {
194
+ "order": [
195
+ "collateral",
196
+ "collateralType"
197
+ ],
198
+ "properties": {
199
+ "collateral": {
200
+ "widget": "relationship"
201
+ },
202
+ "collateralType": {
203
+ "widget": "relationship"
204
+ }
205
+ },
206
+ "widget": "repeater"
207
+ },
208
+ "customers": {
209
+ "order": [
210
+ "name",
211
+ "url"
212
+ ],
213
+ "properties": {
214
+ "name": {
215
+ "widget": "singleLineText"
216
+ },
217
+ "url": {
218
+ "widget": "singleLineText"
219
+ }
220
+ },
221
+ "widget": "repeater"
222
+ },
223
+ "featured": {
224
+ "widget": "toggleSwitch"
225
+ },
226
+ "features": {
227
+ "order": [
228
+ "name",
229
+ "description"
230
+ ],
231
+ "properties": {
232
+ "description": {
233
+ "widget": "paragraphText"
234
+ },
235
+ "name": {
236
+ "widget": "singleLineText"
237
+ }
238
+ },
239
+ "widget": "repeater"
240
+ },
241
+ "images": {
242
+ "order": [
243
+ "image",
244
+ "imageType"
245
+ ],
246
+ "properties": {
247
+ "image": {
248
+ "widget": "image"
249
+ },
250
+ "imageType": {
251
+ "widget": "relationship"
252
+ }
253
+ },
254
+ "widget": "repeater"
255
+ },
256
+ "infrastructureRequirements": {
257
+ "order": [
258
+ "nodes",
259
+ "typicalUsageScenario"
260
+ ],
261
+ "properties": {
262
+ "nodes": {
263
+ "order": [
264
+ "vcpUs",
265
+ "ram",
266
+ "storageSpace",
267
+ "gpuRequired",
268
+ "gpuModel"
269
+ ],
270
+ "properties": {
271
+ "gpuModel": {
272
+ "widget": "singleLineText"
273
+ },
274
+ "gpuRequired": {
275
+ "widget": "toggleSwitch"
276
+ },
277
+ "ram": {
278
+ "widget": "number"
279
+ },
280
+ "storageSpace": {
281
+ "widget": "number"
282
+ },
283
+ "vcpUs": {
284
+ "widget": "number"
285
+ }
286
+ },
287
+ "widget": "repeater"
288
+ },
289
+ "typicalUsageScenario": {
290
+ "widget": "paragraphText"
291
+ }
292
+ },
293
+ "widget": "object"
294
+ },
295
+ "matterTypes": {
296
+ "widget": "relationship"
297
+ },
298
+ "onPlatformPurchase": {
299
+ "widget": "toggleSwitch"
300
+ },
301
+ "overview": {
302
+ "widget": "markdownText"
303
+ },
304
+ "pilot": {
305
+ "widget": "toggleSwitch"
306
+ },
307
+ "practiceAreas": {
308
+ "widget": "relationship"
309
+ },
310
+ "purpose": {
311
+ "widget": "relationship"
312
+ },
313
+ "revisionId": {
314
+ "instructions": "The format is productname-ddmmyyyy-number",
315
+ "widget": "singleLineText"
316
+ },
317
+ "saaSBusiness": {
318
+ "order": [
319
+ "saaS",
320
+ "hosting"
321
+ ],
322
+ "properties": {
323
+ "hosting": {
324
+ "widget": "checkboxes"
325
+ },
326
+ "saaS": {
327
+ "widget": "toggleSwitch"
328
+ }
329
+ },
330
+ "widget": "object"
331
+ },
332
+ "softwarePrerequisites": {
333
+ "widget": "markdownText"
334
+ },
335
+ "tagLine": {
336
+ "widget": "singleLineText"
337
+ },
338
+ "technologies": {
339
+ "widget": "relationship"
340
+ },
341
+ "tenancy": {
342
+ "order": [
343
+ "tenancyType",
344
+ "tenancyDescription"
345
+ ],
346
+ "properties": {
347
+ "tenancyDescription": {
348
+ "widget": "paragraphText"
349
+ },
350
+ "tenancyType": {
351
+ "widget": "dropdown"
352
+ }
353
+ },
354
+ "widget": "object"
355
+ },
356
+ "testDrive": {
357
+ "widget": "toggleSwitch"
358
+ },
359
+ "vendor": {
360
+ "widget": "relationship"
361
+ },
362
+ "videos": {
363
+ "order": [
364
+ "video",
365
+ "videoType"
366
+ ],
367
+ "properties": {
368
+ "video": {
369
+ "widget": "image"
370
+ },
371
+ "videoType": {
372
+ "widget": "relationship"
373
+ }
374
+ },
375
+ "widget": "repeater"
376
+ },
377
+ "webServicePrerequisites": {
378
+ "widget": "markdownText"
379
+ },
380
+ "worksWith": {
381
+ "order": [
382
+ "worksWithRcApps",
383
+ "worksWithExternalApps",
384
+ "containerization",
385
+ "cspTemplates"
386
+ ],
387
+ "properties": {
388
+ "containerization": {
389
+ "order": [
390
+ "containerized",
391
+ "containerizationType"
392
+ ],
393
+ "properties": {
394
+ "containerizationType": {
395
+ "widget": "dropdown"
396
+ },
397
+ "containerized": {
398
+ "widget": "toggleSwitch"
399
+ }
400
+ },
401
+ "widget": "object"
402
+ },
403
+ "cspTemplates": {
404
+ "order": [
405
+ "templatized",
406
+ "templateTypes"
407
+ ],
408
+ "properties": {
409
+ "templateTypes": {
410
+ "widget": "checkboxes"
411
+ },
412
+ "templatized": {
413
+ "widget": "toggleSwitch"
414
+ }
415
+ },
416
+ "widget": "object"
417
+ },
418
+ "worksWithExternalApps": {
419
+ "order": [
420
+ "externalApp",
421
+ "integrationDescription"
422
+ ],
423
+ "properties": {
424
+ "externalApp": {
425
+ "widget": "relationship"
426
+ },
427
+ "integrationDescription": {
428
+ "widget": "paragraphText"
429
+ }
430
+ },
431
+ "widget": "repeater"
432
+ },
433
+ "worksWithRcApps": {
434
+ "order": [
435
+ "rcApp",
436
+ "integrationDescription"
437
+ ],
438
+ "properties": {
439
+ "integrationDescription": {
440
+ "widget": "paragraphText"
441
+ },
442
+ "rcApp": {
443
+ "widget": "relationship"
444
+ }
445
+ },
446
+ "widget": "repeater"
447
+ }
448
+ },
449
+ "widget": "object"
450
+ }
451
+ }
452
+ }
453
+ },
454
+ "name": "solutionRevision1",
455
+ "schema": {
456
+ "properties": {
457
+ "categories": {
458
+ "items": {
459
+ "properties": {
460
+ "contentTypeId": {
461
+ "enum": [
462
+ "HJbagBg2E"
463
+ ],
464
+ "type": "string"
465
+ },
466
+ "id": {
467
+ "type": "string"
468
+ }
469
+ },
470
+ "required": [
471
+ "contentTypeId",
472
+ "id"
473
+ ],
474
+ "type": "object"
475
+ },
476
+ "key": "BybC8zznE",
477
+ "relationship": {
478
+ "contentTypeIds": [
479
+ "HJbagBg2E"
480
+ ],
481
+ "type": "multiple"
482
+ },
483
+ "title": "Categories",
484
+ "type": "array"
485
+ },
486
+ "collaterals": {
487
+ "items": {
488
+ "properties": {
489
+ "collateral": {
490
+ "key": "r1a-tGM3V",
491
+ "properties": {
492
+ "contentTypeId": {
493
+ "enum": [
494
+ "HkDVKSg3E"
495
+ ],
496
+ "type": "string"
497
+ },
498
+ "id": {
499
+ "type": "string"
500
+ }
501
+ },
502
+ "relationship": {
503
+ "contentTypeIds": [
504
+ "HkDVKSg3E"
505
+ ],
506
+ "type": "single"
507
+ },
508
+ "required": [
509
+ "contentTypeId",
510
+ "id"
511
+ ],
512
+ "title": "Collateral",
513
+ "type": "object"
514
+ },
515
+ "collateralType": {
516
+ "key": "ByO4KffhV",
517
+ "properties": {
518
+ "contentTypeId": {
519
+ "enum": [
520
+ "HkDVKSg3E"
521
+ ],
522
+ "type": "string"
523
+ },
524
+ "id": {
525
+ "type": "string"
526
+ }
527
+ },
528
+ "relationship": {
529
+ "contentTypeIds": [
530
+ "HkDVKSg3E"
531
+ ],
532
+ "type": "single"
533
+ },
534
+ "required": [
535
+ "contentTypeId",
536
+ "id"
537
+ ],
538
+ "title": "Collateral Type",
539
+ "type": "object"
540
+ }
541
+ },
542
+ "type": "object"
543
+ },
544
+ "key": "SkCfKGz3E",
545
+ "title": "Collaterals",
546
+ "type": "array"
547
+ },
548
+ "customers": {
549
+ "items": {
550
+ "properties": {
551
+ "name": {
552
+ "key": "rknkazz2E",
553
+ "minLength": 0,
554
+ "title": "Name",
555
+ "type": "string"
556
+ },
557
+ "url": {
558
+ "key": "rJhxTfz3E",
559
+ "minLength": 0,
560
+ "title": "URL",
561
+ "type": "string"
562
+ }
563
+ },
564
+ "type": "object"
565
+ },
566
+ "key": "rJ1JazGnE",
567
+ "title": "Customers",
568
+ "type": "array"
569
+ },
570
+ "featured": {
571
+ "default": false,
572
+ "key": "BJLluzznN",
573
+ "l10n": false,
574
+ "title": "Featured",
575
+ "type": "boolean"
576
+ },
577
+ "features": {
578
+ "items": {
579
+ "properties": {
580
+ "description": {
581
+ "key": "BJXNufMhE",
582
+ "minLength": 0,
583
+ "title": "Description",
584
+ "type": "string"
585
+ },
586
+ "name": {
587
+ "key": "ryl4dzM3E",
588
+ "minLength": 0,
589
+ "title": "Name",
590
+ "type": "string"
591
+ }
592
+ },
593
+ "type": "object"
594
+ },
595
+ "key": "ryz7dff3N",
596
+ "title": "Features",
597
+ "type": "array"
598
+ },
599
+ "images": {
600
+ "items": {
601
+ "properties": {
602
+ "image": {
603
+ "key": "SJH9dzMnV",
604
+ "properties": {
605
+ "contentTypeId": {
606
+ "enum": [
607
+ "ASSET"
608
+ ],
609
+ "type": "string"
610
+ },
611
+ "id": {
612
+ "type": "string"
613
+ }
614
+ },
615
+ "relationship": {
616
+ "contentTypeIds": [
617
+ "ASSET"
618
+ ]
619
+ },
620
+ "required": [
621
+ "contentTypeId",
622
+ "id"
623
+ ],
624
+ "title": "Image",
625
+ "type": "object"
626
+ },
627
+ "imageType": {
628
+ "key": "Hyy2uMM24",
629
+ "properties": {
630
+ "contentTypeId": {
631
+ "enum": [
632
+ "rkOetrlhE"
633
+ ],
634
+ "type": "string"
635
+ },
636
+ "id": {
637
+ "type": "string"
638
+ }
639
+ },
640
+ "relationship": {
641
+ "contentTypeIds": [
642
+ "rkOetrlhE"
643
+ ],
644
+ "type": "single"
645
+ },
646
+ "required": [
647
+ "contentTypeId",
648
+ "id"
649
+ ],
650
+ "title": "Image Type",
651
+ "type": "object"
652
+ }
653
+ },
654
+ "type": "object"
655
+ },
656
+ "key": "rJPI_GznE",
657
+ "title": "Images",
658
+ "type": "array"
659
+ },
660
+ "infrastructureRequirements": {
661
+ "key": "HJDU2MM3E",
662
+ "mutable": true,
663
+ "properties": {
664
+ "nodes": {
665
+ "items": {
666
+ "properties": {
667
+ "gpuModel": {
668
+ "key": "B1RphzGhN",
669
+ "minLength": 0,
670
+ "title": "GPU Model",
671
+ "type": "string"
672
+ },
673
+ "gpuRequired": {
674
+ "default": false,
675
+ "key": "SkcjnzGhN",
676
+ "l10n": false,
677
+ "title": "GPU Required",
678
+ "type": "boolean"
679
+ },
680
+ "ram": {
681
+ "description": "in GBs",
682
+ "key": "BJxF2fz24",
683
+ "l10n": false,
684
+ "minimum": 0,
685
+ "title": "RAM",
686
+ "type": "integer"
687
+ },
688
+ "storageSpace": {
689
+ "description": "in GBs",
690
+ "key": "H1w9nfz34",
691
+ "l10n": false,
692
+ "minimum": 0,
693
+ "title": "Storage Space",
694
+ "type": "integer"
695
+ },
696
+ "vcpUs": {
697
+ "key": "HJ9PhGf2E",
698
+ "l10n": false,
699
+ "minimum": 0,
700
+ "title": "VCPUs",
701
+ "type": "integer"
702
+ }
703
+ },
704
+ "type": "object"
705
+ },
706
+ "key": "ryTRCMz3N",
707
+ "title": "Nodes",
708
+ "type": "array"
709
+ },
710
+ "typicalUsageScenario": {
711
+ "key": "S1JlkQz3N",
712
+ "minLength": 0,
713
+ "title": "Typical Usage Scenario",
714
+ "type": "string"
715
+ }
716
+ },
717
+ "title": "Infrastructure Requirements",
718
+ "type": "object"
719
+ },
720
+ "matterTypes": {
721
+ "items": {
722
+ "properties": {
723
+ "contentTypeId": {
724
+ "enum": [
725
+ "B1IgZrxhE"
726
+ ],
727
+ "type": "string"
728
+ },
729
+ "id": {
730
+ "type": "string"
731
+ }
732
+ },
733
+ "required": [
734
+ "contentTypeId",
735
+ "id"
736
+ ],
737
+ "type": "object"
738
+ },
739
+ "key": "r1VGwfz2N",
740
+ "relationship": {
741
+ "contentTypeIds": [
742
+ "B1IgZrxhE"
743
+ ],
744
+ "type": "multiple"
745
+ },
746
+ "title": "Matter Types",
747
+ "type": "array"
748
+ },
749
+ "onPlatformPurchase": {
750
+ "default": false,
751
+ "key": "rJxWdGMnN",
752
+ "l10n": false,
753
+ "title": "On Platform Purchase",
754
+ "type": "boolean"
755
+ },
756
+ "overview": {
757
+ "key": "SJ5V1mz3N",
758
+ "minLength": 0,
759
+ "title": "Overview",
760
+ "type": "string"
761
+ },
762
+ "pilot": {
763
+ "default": false,
764
+ "key": "S12yOzG34",
765
+ "l10n": false,
766
+ "title": "Pilot",
767
+ "type": "boolean"
768
+ },
769
+ "practiceAreas": {
770
+ "items": {
771
+ "properties": {
772
+ "contentTypeId": {
773
+ "enum": [
774
+ "r1nGZrx3E"
775
+ ],
776
+ "type": "string"
777
+ },
778
+ "id": {
779
+ "type": "string"
780
+ }
781
+ },
782
+ "required": [
783
+ "contentTypeId",
784
+ "id"
785
+ ],
786
+ "type": "object"
787
+ },
788
+ "key": "BJk4wfMhN",
789
+ "relationship": {
790
+ "contentTypeIds": [
791
+ "r1nGZrx3E"
792
+ ],
793
+ "type": "multiple"
794
+ },
795
+ "title": "Practice Areas",
796
+ "type": "array"
797
+ },
798
+ "purpose": {
799
+ "items": {
800
+ "properties": {
801
+ "contentTypeId": {
802
+ "enum": [
803
+ "B1ESWSe2V"
804
+ ],
805
+ "type": "string"
806
+ },
807
+ "id": {
808
+ "type": "string"
809
+ }
810
+ },
811
+ "required": [
812
+ "contentTypeId",
813
+ "id"
814
+ ],
815
+ "type": "object"
816
+ },
817
+ "key": "BkuLwzzh4",
818
+ "relationship": {
819
+ "contentTypeIds": [
820
+ "B1ESWSe2V"
821
+ ],
822
+ "type": "multiple"
823
+ },
824
+ "title": "Purpose",
825
+ "type": "array"
826
+ },
827
+ "revisionId": {
828
+ "key": "BJXOLzf24",
829
+ "minLength": 1,
830
+ "title": "Revision ID",
831
+ "type": "string"
832
+ },
833
+ "saaSBusiness": {
834
+ "key": "B1IzhfG2N",
835
+ "mutable": true,
836
+ "properties": {
837
+ "hosting": {
838
+ "items": {
839
+ "oneOf": [
840
+ {
841
+ "enum": [
842
+ "AWS"
843
+ ],
844
+ "title": "AWS"
845
+ },
846
+ {
847
+ "enum": [
848
+ "Azure"
849
+ ],
850
+ "title": "Azure"
851
+ },
852
+ {
853
+ "enum": [
854
+ "GCP"
855
+ ],
856
+ "title": "GCP"
857
+ },
858
+ {
859
+ "enum": [
860
+ "Own Infrastructure"
861
+ ],
862
+ "title": "Own Infrastructure"
863
+ }
864
+ ],
865
+ "type": "string"
866
+ },
867
+ "key": "SyeN3fMhE",
868
+ "title": "Hosting",
869
+ "type": "array"
870
+ },
871
+ "saaS": {
872
+ "default": false,
873
+ "key": "BkP7nGfh4",
874
+ "l10n": false,
875
+ "title": "SaaS",
876
+ "type": "boolean"
877
+ }
878
+ },
879
+ "title": "SaaS Business",
880
+ "type": "object"
881
+ },
882
+ "softwarePrerequisites": {
883
+ "key": "H1WvtMfn4",
884
+ "minLength": 0,
885
+ "title": "Software Prerequisites",
886
+ "type": "string"
887
+ },
888
+ "tagLine": {
889
+ "key": "HJdYUzG2V",
890
+ "minLength": 0,
891
+ "title": "Tag Line",
892
+ "type": "string"
893
+ },
894
+ "technologies": {
895
+ "items": {
896
+ "properties": {
897
+ "contentTypeId": {
898
+ "enum": [
899
+ "S1x_-He34"
900
+ ],
901
+ "type": "string"
902
+ },
903
+ "id": {
904
+ "type": "string"
905
+ }
906
+ },
907
+ "required": [
908
+ "contentTypeId",
909
+ "id"
910
+ ],
911
+ "type": "object"
912
+ },
913
+ "key": "HkvuPfGhV",
914
+ "relationship": {
915
+ "contentTypeIds": [
916
+ "S1x_-He34"
917
+ ],
918
+ "type": "multiple"
919
+ },
920
+ "title": "Technologies",
921
+ "type": "array"
922
+ },
923
+ "tenancy": {
924
+ "key": "H1DYtMGhV",
925
+ "mutable": true,
926
+ "properties": {
927
+ "tenancyDescription": {
928
+ "key": "BkrRKfGhE",
929
+ "minLength": 0,
930
+ "title": "Tenancy Description",
931
+ "type": "string"
932
+ },
933
+ "tenancyType": {
934
+ "key": "BJToKfMhN",
935
+ "oneOf": [
936
+ {
937
+ "enum": [
938
+ "singleTenant"
939
+ ],
940
+ "title": "Single Tenant"
941
+ },
942
+ {
943
+ "enum": [
944
+ "multiTenant"
945
+ ],
946
+ "title": "Multi Tenant"
947
+ }
948
+ ],
949
+ "title": "Tenancy Type",
950
+ "type": "string"
951
+ }
952
+ },
953
+ "title": "Tenancy",
954
+ "type": "object"
955
+ },
956
+ "testDrive": {
957
+ "default": false,
958
+ "key": "SkK0wff3V",
959
+ "l10n": false,
960
+ "title": "Test Drive",
961
+ "type": "boolean"
962
+ },
963
+ "vendor": {
964
+ "key": "S1riIMM3E",
965
+ "properties": {
966
+ "contentTypeId": {
967
+ "enum": [
968
+ "HkUQVLg3N"
969
+ ],
970
+ "type": "string"
971
+ },
972
+ "id": {
973
+ "type": "string"
974
+ }
975
+ },
976
+ "relationship": {
977
+ "contentTypeIds": [
978
+ "HkUQVLg3N"
979
+ ],
980
+ "type": "single"
981
+ },
982
+ "required": [
983
+ "contentTypeId",
984
+ "id"
985
+ ],
986
+ "title": "Vendor",
987
+ "type": "object"
988
+ },
989
+ "videos": {
990
+ "items": {
991
+ "properties": {
992
+ "video": {
993
+ "key": "HJ6AdGz2V",
994
+ "properties": {
995
+ "contentTypeId": {
996
+ "enum": [
997
+ "ASSET"
998
+ ],
999
+ "type": "string"
1000
+ },
1001
+ "id": {
1002
+ "type": "string"
1003
+ }
1004
+ },
1005
+ "relationship": {
1006
+ "contentTypeIds": [
1007
+ "ASSET"
1008
+ ]
1009
+ },
1010
+ "required": [
1011
+ "contentTypeId",
1012
+ "id"
1013
+ ],
1014
+ "title": "Video",
1015
+ "type": "object"
1016
+ },
1017
+ "videoType": {
1018
+ "key": "BJF1tGMnN",
1019
+ "properties": {
1020
+ "contentTypeId": {
1021
+ "enum": [
1022
+ "HJ4zKBghV"
1023
+ ],
1024
+ "type": "string"
1025
+ },
1026
+ "id": {
1027
+ "type": "string"
1028
+ }
1029
+ },
1030
+ "relationship": {
1031
+ "contentTypeIds": [
1032
+ "HJ4zKBghV"
1033
+ ],
1034
+ "type": "single"
1035
+ },
1036
+ "required": [
1037
+ "contentTypeId",
1038
+ "id"
1039
+ ],
1040
+ "title": "Video Type",
1041
+ "type": "object"
1042
+ }
1043
+ },
1044
+ "type": "object"
1045
+ },
1046
+ "key": "HJN0_fz3N",
1047
+ "title": "Videos",
1048
+ "type": "array"
1049
+ },
1050
+ "webServicePrerequisites": {
1051
+ "key": "ryHdYzznV",
1052
+ "minLength": 0,
1053
+ "title": "Web Service Prerequisites",
1054
+ "type": "string"
1055
+ },
1056
+ "worksWith": {
1057
+ "key": "rJck9Gzh4",
1058
+ "mutable": true,
1059
+ "properties": {
1060
+ "containerization": {
1061
+ "key": "S1TriGf2E",
1062
+ "mutable": true,
1063
+ "properties": {
1064
+ "containerizationType": {
1065
+ "key": "SyLusGf34",
1066
+ "oneOf": [
1067
+ {
1068
+ "enum": [
1069
+ "anywhere"
1070
+ ],
1071
+ "title": "Anywhere"
1072
+ },
1073
+ {
1074
+ "enum": [
1075
+ "awsOnly"
1076
+ ],
1077
+ "title": "AWS only"
1078
+ },
1079
+ {
1080
+ "enum": [
1081
+ "azureOnly"
1082
+ ],
1083
+ "title": "Azure Only"
1084
+ },
1085
+ {
1086
+ "enum": [
1087
+ "gcpOnly"
1088
+ ],
1089
+ "title": "GCP Only"
1090
+ }
1091
+ ],
1092
+ "title": "Containerization Type",
1093
+ "type": "string"
1094
+ },
1095
+ "containerized": {
1096
+ "default": false,
1097
+ "key": "H1aUoGz2V",
1098
+ "l10n": false,
1099
+ "title": "Containerized",
1100
+ "type": "boolean"
1101
+ }
1102
+ },
1103
+ "title": "Containerization",
1104
+ "type": "object"
1105
+ },
1106
+ "cspTemplates": {
1107
+ "key": "HJNhsGz2N",
1108
+ "mutable": true,
1109
+ "properties": {
1110
+ "templateTypes": {
1111
+ "items": {
1112
+ "oneOf": [
1113
+ {
1114
+ "enum": [
1115
+ "AWS"
1116
+ ],
1117
+ "title": "AWS"
1118
+ },
1119
+ {
1120
+ "enum": [
1121
+ "Azure"
1122
+ ],
1123
+ "title": "Azure"
1124
+ },
1125
+ {
1126
+ "enum": [
1127
+ "GCP"
1128
+ ],
1129
+ "title": "GCP"
1130
+ },
1131
+ {
1132
+ "enum": [
1133
+ "Others"
1134
+ ],
1135
+ "title": "Others"
1136
+ }
1137
+ ],
1138
+ "type": "string"
1139
+ },
1140
+ "key": "ryTy2GM2V",
1141
+ "title": "Template Types",
1142
+ "type": "array"
1143
+ },
1144
+ "templatized": {
1145
+ "default": false,
1146
+ "key": "S1-0oMG3N",
1147
+ "l10n": false,
1148
+ "title": "Templatized",
1149
+ "type": "boolean"
1150
+ }
1151
+ },
1152
+ "title": "CSP Templates",
1153
+ "type": "object"
1154
+ },
1155
+ "worksWithExternalApps": {
1156
+ "items": {
1157
+ "properties": {
1158
+ "externalApp": {
1159
+ "key": "B1_zsfznN",
1160
+ "properties": {
1161
+ "contentTypeId": {
1162
+ "enum": [
1163
+ "BkrLZLe2E"
1164
+ ],
1165
+ "type": "string"
1166
+ },
1167
+ "id": {
1168
+ "type": "string"
1169
+ }
1170
+ },
1171
+ "relationship": {
1172
+ "contentTypeIds": [
1173
+ "BkrLZLe2E"
1174
+ ],
1175
+ "type": "single"
1176
+ },
1177
+ "required": [
1178
+ "contentTypeId",
1179
+ "id"
1180
+ ],
1181
+ "title": "External App",
1182
+ "type": "object"
1183
+ },
1184
+ "integrationDescription": {
1185
+ "key": "ByomjzG3E",
1186
+ "minLength": 0,
1187
+ "title": "Integration Description",
1188
+ "type": "string"
1189
+ }
1190
+ },
1191
+ "type": "object"
1192
+ },
1193
+ "key": "H1dbszGhV",
1194
+ "title": "Works With External Apps",
1195
+ "type": "array"
1196
+ },
1197
+ "worksWithRcApps": {
1198
+ "items": {
1199
+ "properties": {
1200
+ "integrationDescription": {
1201
+ "key": "Hkad9MM3V",
1202
+ "minLength": 0,
1203
+ "title": "Integration Description",
1204
+ "type": "string"
1205
+ },
1206
+ "rcApp": {
1207
+ "key": "SJogqfMhE",
1208
+ "properties": {
1209
+ "contentTypeId": {
1210
+ "enum": [
1211
+ "Hy89GBg2V"
1212
+ ],
1213
+ "type": "string"
1214
+ },
1215
+ "id": {
1216
+ "type": "string"
1217
+ }
1218
+ },
1219
+ "relationship": {
1220
+ "contentTypeIds": [
1221
+ "Hy89GBg2V"
1222
+ ],
1223
+ "type": "single"
1224
+ },
1225
+ "required": [
1226
+ "contentTypeId",
1227
+ "id"
1228
+ ],
1229
+ "title": "RC App",
1230
+ "type": "object"
1231
+ }
1232
+ },
1233
+ "type": "object"
1234
+ },
1235
+ "key": "S1NgsfMhE",
1236
+ "title": "Works with RC Apps",
1237
+ "type": "array"
1238
+ }
1239
+ },
1240
+ "title": "Works With",
1241
+ "type": "object"
1242
+ }
1243
+ },
1244
+ "required": [
1245
+ "revisionId"
1246
+ ],
1247
+ "type": "object"
1248
+ },
1249
+ "single": false,
1250
+ "taxonomy": false,
1251
+ "title": "Solution Revision 1"
1252
+ },
1253
+ "BkrLZLe2E": {
1254
+ "forms": {
1255
+ "default": {
1256
+ "order": [
1257
+ "name",
1258
+ "description",
1259
+ "logo",
1260
+ "appCategory"
1261
+ ],
1262
+ "properties": {
1263
+ "appCategory": {
1264
+ "widget": "relationship"
1265
+ },
1266
+ "description": {
1267
+ "widget": "paragraphText"
1268
+ },
1269
+ "logo": {
1270
+ "widget": "image"
1271
+ },
1272
+ "name": {
1273
+ "widget": "singleLineText"
1274
+ }
1275
+ }
1276
+ }
1277
+ },
1278
+ "name": "externalProduct",
1279
+ "schema": {
1280
+ "properties": {
1281
+ "appCategory": {
1282
+ "items": {
1283
+ "properties": {
1284
+ "contentTypeId": {
1285
+ "enum": [
1286
+ "HkgcIDx24"
1287
+ ],
1288
+ "type": "string"
1289
+ },
1290
+ "id": {
1291
+ "type": "string"
1292
+ }
1293
+ },
1294
+ "required": [
1295
+ "contentTypeId",
1296
+ "id"
1297
+ ],
1298
+ "type": "object"
1299
+ },
1300
+ "key": "B1Iq8wehN",
1301
+ "minItems": 1,
1302
+ "relationship": {
1303
+ "contentTypeIds": [
1304
+ "HkgcIDx24"
1305
+ ],
1306
+ "type": "multiple"
1307
+ },
1308
+ "title": "App Category",
1309
+ "type": "array"
1310
+ },
1311
+ "description": {
1312
+ "key": "BJAV-LxhE",
1313
+ "minLength": 1,
1314
+ "title": "Description",
1315
+ "type": "string"
1316
+ },
1317
+ "logo": {
1318
+ "key": "HkOH-8eh4",
1319
+ "properties": {
1320
+ "contentTypeId": {
1321
+ "enum": [
1322
+ "ASSET"
1323
+ ],
1324
+ "type": "string"
1325
+ },
1326
+ "id": {
1327
+ "type": "string"
1328
+ }
1329
+ },
1330
+ "relationship": {
1331
+ "contentTypeIds": [
1332
+ "ASSET"
1333
+ ]
1334
+ },
1335
+ "required": [
1336
+ "contentTypeId",
1337
+ "id"
1338
+ ],
1339
+ "title": "Logo",
1340
+ "type": "object"
1341
+ },
1342
+ "name": {
1343
+ "key": "SJX4WLg3V",
1344
+ "minLength": 1,
1345
+ "title": "Name",
1346
+ "type": "string"
1347
+ }
1348
+ },
1349
+ "required": [
1350
+ "name",
1351
+ "description",
1352
+ "appCategory"
1353
+ ],
1354
+ "type": "object"
1355
+ },
1356
+ "single": false,
1357
+ "taxonomy": false,
1358
+ "title": "External Product"
1359
+ },
1360
+ "HJ4zKBghV": {
1361
+ "forms": {
1362
+ "default": {
1363
+ "order": [
1364
+ "name",
1365
+ "description"
1366
+ ],
1367
+ "properties": {
1368
+ "description": {
1369
+ "widget": "paragraphText"
1370
+ },
1371
+ "name": {
1372
+ "widget": "singleLineText"
1373
+ }
1374
+ }
1375
+ }
1376
+ },
1377
+ "name": "videoType",
1378
+ "schema": {
1379
+ "properties": {
1380
+ "description": {
1381
+ "key": "Hy2ZYSg3N",
1382
+ "minLength": 0,
1383
+ "title": "Description",
1384
+ "type": "string"
1385
+ },
1386
+ "name": {
1387
+ "key": "SJUbtSxhV",
1388
+ "minLength": 1,
1389
+ "title": "Name",
1390
+ "type": "string"
1391
+ }
1392
+ },
1393
+ "required": [
1394
+ "name"
1395
+ ],
1396
+ "type": "object"
1397
+ },
1398
+ "single": false,
1399
+ "taxonomy": true,
1400
+ "title": "Video Type"
1401
+ },
1402
+ "HJbagBg2E": {
1403
+ "forms": {
1404
+ "default": {
1405
+ "order": [
1406
+ "name",
1407
+ "description"
1408
+ ],
1409
+ "properties": {
1410
+ "description": {
1411
+ "widget": "paragraphText"
1412
+ },
1413
+ "name": {
1414
+ "widget": "singleLineText"
1415
+ }
1416
+ }
1417
+ }
1418
+ },
1419
+ "name": "category",
1420
+ "schema": {
1421
+ "properties": {
1422
+ "description": {
1423
+ "key": "SyUhgBg24",
1424
+ "minLength": 0,
1425
+ "title": "Description",
1426
+ "type": "string"
1427
+ },
1428
+ "name": {
1429
+ "key": "HyzieSx2V",
1430
+ "minLength": 1,
1431
+ "title": "Name",
1432
+ "type": "string"
1433
+ }
1434
+ },
1435
+ "required": [
1436
+ "name"
1437
+ ],
1438
+ "type": "object"
1439
+ },
1440
+ "single": false,
1441
+ "taxonomy": true,
1442
+ "title": "Category"
1443
+ },
1444
+ "HkDVKSg3E": {
1445
+ "forms": {
1446
+ "default": {
1447
+ "order": [
1448
+ "name",
1449
+ "description"
1450
+ ],
1451
+ "properties": {
1452
+ "description": {
1453
+ "widget": "paragraphText"
1454
+ },
1455
+ "name": {
1456
+ "widget": "singleLineText"
1457
+ }
1458
+ }
1459
+ }
1460
+ },
1461
+ "name": "collateralType",
1462
+ "schema": {
1463
+ "properties": {
1464
+ "description": {
1465
+ "key": "BJx4YSg34",
1466
+ "minLength": 0,
1467
+ "title": "Description",
1468
+ "type": "string"
1469
+ },
1470
+ "name": {
1471
+ "key": "S1s7KSen4",
1472
+ "minLength": 1,
1473
+ "title": "Name",
1474
+ "type": "string"
1475
+ }
1476
+ },
1477
+ "required": [
1478
+ "name"
1479
+ ],
1480
+ "type": "object"
1481
+ },
1482
+ "single": false,
1483
+ "taxonomy": true,
1484
+ "title": "Collateral Type"
1485
+ },
1486
+ "HkgcIDx24": {
1487
+ "forms": {
1488
+ "default": {
1489
+ "order": [
1490
+ "name"
1491
+ ],
1492
+ "properties": {
1493
+ "name": {
1494
+ "widget": "singleLineText"
1495
+ }
1496
+ }
1497
+ }
1498
+ },
1499
+ "name": "externalAppCategory",
1500
+ "schema": {
1501
+ "properties": {
1502
+ "name": {
1503
+ "key": "BkiFLPl3V",
1504
+ "minLength": 1,
1505
+ "title": "Name",
1506
+ "type": "string"
1507
+ }
1508
+ },
1509
+ "type": "object"
1510
+ },
1511
+ "single": false,
1512
+ "taxonomy": true,
1513
+ "title": "External App Category"
1514
+ },
1515
+ "HkUQVLg3N": {
1516
+ "forms": {
1517
+ "default": {
1518
+ "order": [
1519
+ "name",
1520
+ "description",
1521
+ "logo",
1522
+ "yearFounded",
1523
+ "website",
1524
+ "hq",
1525
+ "generalSalesAndEnquiries",
1526
+ "contacts"
1527
+ ],
1528
+ "properties": {
1529
+ "contacts": {
1530
+ "order": [
1531
+ "contactObject"
1532
+ ],
1533
+ "properties": {
1534
+ "contactObject": {
1535
+ "order": [
1536
+ "name",
1537
+ "email",
1538
+ "phone",
1539
+ "contactType"
1540
+ ],
1541
+ "properties": {
1542
+ "contactType": {
1543
+ "widget": "dropdown"
1544
+ },
1545
+ "email": {
1546
+ "widget": "singleLineText"
1547
+ },
1548
+ "name": {
1549
+ "widget": "singleLineText"
1550
+ },
1551
+ "phone": {
1552
+ "widget": "singleLineText"
1553
+ }
1554
+ },
1555
+ "widget": "object"
1556
+ }
1557
+ },
1558
+ "widget": "repeater"
1559
+ },
1560
+ "description": {
1561
+ "widget": "singleLineText"
1562
+ },
1563
+ "generalSalesAndEnquiries": {
1564
+ "order": [
1565
+ "phone",
1566
+ "email"
1567
+ ],
1568
+ "properties": {
1569
+ "email": {
1570
+ "widget": "singleLineText"
1571
+ },
1572
+ "phone": {
1573
+ "widget": "singleLineText"
1574
+ }
1575
+ },
1576
+ "widget": "object"
1577
+ },
1578
+ "hq": {
1579
+ "order": [
1580
+ "address1",
1581
+ "address2",
1582
+ "state",
1583
+ "city",
1584
+ "country",
1585
+ "zip",
1586
+ "phone"
1587
+ ],
1588
+ "properties": {
1589
+ "address1": {
1590
+ "widget": "singleLineText"
1591
+ },
1592
+ "address2": {
1593
+ "widget": "singleLineText"
1594
+ },
1595
+ "city": {
1596
+ "widget": "wysiwygSingleLineText"
1597
+ },
1598
+ "country": {
1599
+ "widget": "singleLineText"
1600
+ },
1601
+ "phone": {
1602
+ "widget": "singleLineText"
1603
+ },
1604
+ "state": {
1605
+ "widget": "singleLineText"
1606
+ },
1607
+ "zip": {
1608
+ "widget": "singleLineText"
1609
+ }
1610
+ },
1611
+ "widget": "object"
1612
+ },
1613
+ "logo": {
1614
+ "widget": "image"
1615
+ },
1616
+ "name": {
1617
+ "widget": "singleLineText"
1618
+ },
1619
+ "website": {
1620
+ "widget": "singleLineText"
1621
+ },
1622
+ "yearFounded": {
1623
+ "widget": "number"
1624
+ }
1625
+ }
1626
+ }
1627
+ },
1628
+ "name": "vendor",
1629
+ "schema": {
1630
+ "properties": {
1631
+ "contacts": {
1632
+ "items": {
1633
+ "properties": {
1634
+ "contactObject": {
1635
+ "key": "rynrXUe2N",
1636
+ "mutable": true,
1637
+ "properties": {
1638
+ "contactType": {
1639
+ "key": "ByVZ4Ix3V",
1640
+ "oneOf": [
1641
+ {
1642
+ "enum": [
1643
+ "technical"
1644
+ ],
1645
+ "title": "Technical"
1646
+ },
1647
+ {
1648
+ "enum": [
1649
+ "business"
1650
+ ],
1651
+ "title": "Business"
1652
+ }
1653
+ ],
1654
+ "title": "Contact Type",
1655
+ "type": "string"
1656
+ },
1657
+ "email": {
1658
+ "key": "Hki_Q8x3N",
1659
+ "minLength": 0,
1660
+ "title": "Email",
1661
+ "type": "string"
1662
+ },
1663
+ "name": {
1664
+ "key": "BySOXUlnN",
1665
+ "minLength": 0,
1666
+ "title": "Name",
1667
+ "type": "string"
1668
+ },
1669
+ "phone": {
1670
+ "key": "S1UKQIeh4",
1671
+ "minLength": 0,
1672
+ "title": "Phone",
1673
+ "type": "string"
1674
+ }
1675
+ },
1676
+ "title": "Contact Object",
1677
+ "type": "object"
1678
+ }
1679
+ },
1680
+ "type": "object"
1681
+ },
1682
+ "key": "S1JNX8gnV",
1683
+ "title": "Contacts",
1684
+ "type": "array"
1685
+ },
1686
+ "description": {
1687
+ "key": "ByLUM8l2N",
1688
+ "minLength": 1,
1689
+ "title": "Description",
1690
+ "type": "string"
1691
+ },
1692
+ "generalSalesAndEnquiries": {
1693
+ "description": "Displayed on Store ",
1694
+ "key": "HJ29X8g2V",
1695
+ "mutable": true,
1696
+ "properties": {
1697
+ "email": {
1698
+ "key": "HJDyELxnN",
1699
+ "minLength": 0,
1700
+ "title": "Email",
1701
+ "type": "string"
1702
+ },
1703
+ "phone": {
1704
+ "key": "Hkv0m8g3E",
1705
+ "minLength": 0,
1706
+ "title": "Phone",
1707
+ "type": "string"
1708
+ }
1709
+ },
1710
+ "title": "General Sales and Enquiries",
1711
+ "type": "object"
1712
+ },
1713
+ "hq": {
1714
+ "key": "S1icf8gn4",
1715
+ "mutable": true,
1716
+ "properties": {
1717
+ "address1": {
1718
+ "key": "BJw2MLl3E",
1719
+ "minLength": 0,
1720
+ "title": "Address 1",
1721
+ "type": "string"
1722
+ },
1723
+ "address2": {
1724
+ "key": "ryL6MUl3V",
1725
+ "minLength": 0,
1726
+ "title": "Address 2",
1727
+ "type": "string"
1728
+ },
1729
+ "city": {
1730
+ "draftjs": true,
1731
+ "key": "BJbAMIx3N",
1732
+ "title": "City",
1733
+ "type": "object"
1734
+ },
1735
+ "country": {
1736
+ "key": "HkcJQUg34",
1737
+ "minLength": 0,
1738
+ "title": "Country",
1739
+ "type": "string"
1740
+ },
1741
+ "phone": {
1742
+ "key": "SJMl7Ix3E",
1743
+ "minLength": 0,
1744
+ "title": "Phone",
1745
+ "type": "string"
1746
+ },
1747
+ "state": {
1748
+ "key": "Hyt0f8x24",
1749
+ "minLength": 0,
1750
+ "title": "State",
1751
+ "type": "string"
1752
+ },
1753
+ "zip": {
1754
+ "key": "SJQJmUen4",
1755
+ "minLength": 0,
1756
+ "title": "Zip",
1757
+ "type": "string"
1758
+ }
1759
+ },
1760
+ "title": "HQ",
1761
+ "type": "object"
1762
+ },
1763
+ "logo": {
1764
+ "key": "rkqwMUg34",
1765
+ "properties": {
1766
+ "contentTypeId": {
1767
+ "enum": [
1768
+ "ASSET"
1769
+ ],
1770
+ "type": "string"
1771
+ },
1772
+ "id": {
1773
+ "type": "string"
1774
+ }
1775
+ },
1776
+ "relationship": {
1777
+ "contentTypeIds": [
1778
+ "ASSET"
1779
+ ]
1780
+ },
1781
+ "required": [
1782
+ "contentTypeId",
1783
+ "id"
1784
+ ],
1785
+ "title": "Logo",
1786
+ "type": "object"
1787
+ },
1788
+ "name": {
1789
+ "key": "Syy8GLxh4",
1790
+ "minLength": 1,
1791
+ "title": "Name",
1792
+ "type": "string"
1793
+ },
1794
+ "website": {
1795
+ "key": "B1YuzIe34",
1796
+ "minLength": 0,
1797
+ "title": "Website",
1798
+ "type": "string"
1799
+ },
1800
+ "yearFounded": {
1801
+ "key": "rkBZqJGnN",
1802
+ "l10n": false,
1803
+ "maximum": 2019,
1804
+ "minimum": 1980,
1805
+ "title": "Year Founded",
1806
+ "type": "number"
1807
+ }
1808
+ },
1809
+ "required": [
1810
+ "name",
1811
+ "description",
1812
+ "yearFounded"
1813
+ ],
1814
+ "type": "object"
1815
+ },
1816
+ "single": false,
1817
+ "taxonomy": false,
1818
+ "title": "Vendor"
1819
+ },
1820
+ "Hy89GBg2V": {
1821
+ "forms": {
1822
+ "default": {
1823
+ "order": [
1824
+ "revisionId",
1825
+ "tagline",
1826
+ "vendor",
1827
+ "overview",
1828
+ "categories",
1829
+ "matterTypes",
1830
+ "practiseAreas",
1831
+ "purpose",
1832
+ "technologies",
1833
+ "testDrive",
1834
+ "pilot",
1835
+ "featured",
1836
+ "onPlatformPurchase",
1837
+ "features",
1838
+ "images",
1839
+ "videos",
1840
+ "collaterals",
1841
+ "softwarePrerequisites",
1842
+ "webServicePrerequisites",
1843
+ "tenancy",
1844
+ "worksWith",
1845
+ "containerisation",
1846
+ "cspTemplates",
1847
+ "saaSBusiness",
1848
+ "infrastructureRequirements",
1849
+ "customers"
1850
+ ],
1851
+ "properties": {
1852
+ "categories": {
1853
+ "widget": "relationship"
1854
+ },
1855
+ "collaterals": {
1856
+ "order": [
1857
+ "collateral",
1858
+ "collateralType"
1859
+ ],
1860
+ "properties": {
1861
+ "collateral": {
1862
+ "widget": "image"
1863
+ },
1864
+ "collateralType": {
1865
+ "widget": "relationship"
1866
+ }
1867
+ },
1868
+ "widget": "repeater"
1869
+ },
1870
+ "containerisation": {
1871
+ "order": [
1872
+ "containerised",
1873
+ "containerisationType"
1874
+ ],
1875
+ "properties": {
1876
+ "containerisationType": {
1877
+ "widget": "dropdown"
1878
+ },
1879
+ "containerised": {
1880
+ "widget": "toggleSwitch"
1881
+ }
1882
+ },
1883
+ "widget": "object"
1884
+ },
1885
+ "cspTemplates": {
1886
+ "order": [
1887
+ "templatized",
1888
+ "templateTypes"
1889
+ ],
1890
+ "properties": {
1891
+ "templateTypes": {
1892
+ "widget": "checkboxes"
1893
+ },
1894
+ "templatized": {
1895
+ "widget": "toggleSwitch"
1896
+ }
1897
+ },
1898
+ "widget": "object"
1899
+ },
1900
+ "customers": {
1901
+ "order": [
1902
+ "name",
1903
+ "url"
1904
+ ],
1905
+ "properties": {
1906
+ "name": {
1907
+ "widget": "singleLineText"
1908
+ },
1909
+ "url": {
1910
+ "widget": "singleLineText"
1911
+ }
1912
+ },
1913
+ "widget": "repeater"
1914
+ },
1915
+ "featured": {
1916
+ "widget": "toggleSwitch"
1917
+ },
1918
+ "features": {
1919
+ "order": [
1920
+ "name",
1921
+ "description"
1922
+ ],
1923
+ "properties": {
1924
+ "description": {
1925
+ "widget": "paragraphText"
1926
+ },
1927
+ "name": {
1928
+ "widget": "singleLineText"
1929
+ }
1930
+ },
1931
+ "widget": "repeater"
1932
+ },
1933
+ "images": {
1934
+ "order": [
1935
+ "image",
1936
+ "imageType"
1937
+ ],
1938
+ "properties": {
1939
+ "image": {
1940
+ "widget": "image"
1941
+ },
1942
+ "imageType": {
1943
+ "widget": "relationship"
1944
+ }
1945
+ },
1946
+ "widget": "repeater"
1947
+ },
1948
+ "infrastructureRequirements": {
1949
+ "order": [
1950
+ "nodes",
1951
+ "typicalUsageScenario"
1952
+ ],
1953
+ "properties": {
1954
+ "nodes": {
1955
+ "order": [
1956
+ "vcpUs",
1957
+ "ram",
1958
+ "storageSpace",
1959
+ "gpuRequired",
1960
+ "gpuModel"
1961
+ ],
1962
+ "properties": {
1963
+ "gpuModel": {
1964
+ "widget": "singleLineText"
1965
+ },
1966
+ "gpuRequired": {
1967
+ "widget": "toggleSwitch"
1968
+ },
1969
+ "ram": {
1970
+ "instructions": "in GBs",
1971
+ "widget": "number"
1972
+ },
1973
+ "storageSpace": {
1974
+ "instructions": "in GBs",
1975
+ "widget": "number"
1976
+ },
1977
+ "vcpUs": {
1978
+ "widget": "number"
1979
+ }
1980
+ },
1981
+ "widget": "repeater"
1982
+ },
1983
+ "typicalUsageScenario": {
1984
+ "widget": "paragraphText"
1985
+ }
1986
+ },
1987
+ "widget": "object"
1988
+ },
1989
+ "matterTypes": {
1990
+ "widget": "relationship"
1991
+ },
1992
+ "onPlatformPurchase": {
1993
+ "widget": "toggleSwitch"
1994
+ },
1995
+ "overview": {
1996
+ "widget": "markdownText"
1997
+ },
1998
+ "pilot": {
1999
+ "widget": "toggleSwitch"
2000
+ },
2001
+ "practiseAreas": {
2002
+ "widget": "relationship"
2003
+ },
2004
+ "purpose": {
2005
+ "widget": "relationship"
2006
+ },
2007
+ "revisionId": {
2008
+ "instructions": "The format is productname-ddmmyyyy-number",
2009
+ "widget": "singleLineText"
2010
+ },
2011
+ "saaSBusiness": {
2012
+ "order": [
2013
+ "SaaS",
2014
+ "hosting"
2015
+ ],
2016
+ "properties": {
2017
+ "hosting": {
2018
+ "widget": "checkboxes"
2019
+ },
2020
+ "SaaS": {
2021
+ "widget": "toggleSwitch"
2022
+ }
2023
+ },
2024
+ "widget": "object"
2025
+ },
2026
+ "softwarePrerequisites": {
2027
+ "widget": "markdownText"
2028
+ },
2029
+ "tagline": {
2030
+ "widget": "singleLineText"
2031
+ },
2032
+ "technologies": {
2033
+ "widget": "relationship"
2034
+ },
2035
+ "tenancy": {
2036
+ "order": [
2037
+ "tenancyType",
2038
+ "tenancyDescription"
2039
+ ],
2040
+ "properties": {
2041
+ "tenancyDescription": {
2042
+ "widget": "paragraphText"
2043
+ },
2044
+ "tenancyType": {
2045
+ "widget": "dropdown"
2046
+ }
2047
+ },
2048
+ "widget": "object"
2049
+ },
2050
+ "testDrive": {
2051
+ "widget": "toggleSwitch"
2052
+ },
2053
+ "vendor": {
2054
+ "widget": "relationship"
2055
+ },
2056
+ "videos": {
2057
+ "order": [
2058
+ "video",
2059
+ "videoType"
2060
+ ],
2061
+ "properties": {
2062
+ "video": {
2063
+ "widget": "image"
2064
+ },
2065
+ "videoType": {
2066
+ "widget": "relationship"
2067
+ }
2068
+ },
2069
+ "widget": "repeater"
2070
+ },
2071
+ "webServicePrerequisites": {
2072
+ "widget": "markdownText"
2073
+ },
2074
+ "worksWith": {
2075
+ "order": [
2076
+ "worksWithRCApps",
2077
+ "worksWithExternalApps"
2078
+ ],
2079
+ "properties": {
2080
+ "worksWithExternalApps": {
2081
+ "order": [
2082
+ "externalApp",
2083
+ "integrationDescription"
2084
+ ],
2085
+ "properties": {
2086
+ "externalApp": {
2087
+ "widget": "relationship"
2088
+ },
2089
+ "integrationDescription": {
2090
+ "widget": "paragraphText"
2091
+ }
2092
+ },
2093
+ "widget": "repeater"
2094
+ },
2095
+ "worksWithRCApps": {
2096
+ "order": [
2097
+ "rcApp",
2098
+ "integrationDescription"
2099
+ ],
2100
+ "properties": {
2101
+ "integrationDescription": {
2102
+ "widget": "paragraphText"
2103
+ },
2104
+ "rcApp": {
2105
+ "widget": "relationship"
2106
+ }
2107
+ },
2108
+ "widget": "repeater"
2109
+ }
2110
+ },
2111
+ "widget": "object"
2112
+ }
2113
+ }
2114
+ }
2115
+ },
2116
+ "name": "solutionRevision",
2117
+ "schema": {
2118
+ "properties": {
2119
+ "categories": {
2120
+ "items": {
2121
+ "properties": {
2122
+ "contentTypeId": {
2123
+ "enum": [
2124
+ "HJbagBg2E"
2125
+ ],
2126
+ "type": "string"
2127
+ },
2128
+ "id": {
2129
+ "type": "string"
2130
+ }
2131
+ },
2132
+ "required": [
2133
+ "contentTypeId",
2134
+ "id"
2135
+ ],
2136
+ "type": "object"
2137
+ },
2138
+ "key": "ByfYMrlnV",
2139
+ "relationship": {
2140
+ "contentTypeIds": [
2141
+ "HJbagBg2E"
2142
+ ],
2143
+ "type": "multiple"
2144
+ },
2145
+ "title": "Categories",
2146
+ "type": "array"
2147
+ },
2148
+ "collaterals": {
2149
+ "items": {
2150
+ "properties": {
2151
+ "collateral": {
2152
+ "key": "rkcH_HlnN",
2153
+ "properties": {
2154
+ "contentTypeId": {
2155
+ "enum": [
2156
+ "ASSET"
2157
+ ],
2158
+ "type": "string"
2159
+ },
2160
+ "id": {
2161
+ "type": "string"
2162
+ }
2163
+ },
2164
+ "relationship": {
2165
+ "contentTypeIds": [
2166
+ "ASSET"
2167
+ ]
2168
+ },
2169
+ "required": [
2170
+ "contentTypeId",
2171
+ "id"
2172
+ ],
2173
+ "title": "Collateral",
2174
+ "type": "object"
2175
+ },
2176
+ "collateralType": {
2177
+ "key": "ryBKFHx3N",
2178
+ "properties": {
2179
+ "contentTypeId": {
2180
+ "enum": [
2181
+ "HkDVKSg3E"
2182
+ ],
2183
+ "type": "string"
2184
+ },
2185
+ "id": {
2186
+ "type": "string"
2187
+ }
2188
+ },
2189
+ "relationship": {
2190
+ "contentTypeIds": [
2191
+ "HkDVKSg3E"
2192
+ ],
2193
+ "type": "single"
2194
+ },
2195
+ "required": [
2196
+ "contentTypeId",
2197
+ "id"
2198
+ ],
2199
+ "title": "Collateral Type",
2200
+ "type": "object"
2201
+ }
2202
+ },
2203
+ "type": "object"
2204
+ },
2205
+ "key": "B1BbOSl24",
2206
+ "title": "Collaterals",
2207
+ "type": "array"
2208
+ },
2209
+ "containerisation": {
2210
+ "key": "HkPABLx3N",
2211
+ "mutable": true,
2212
+ "properties": {
2213
+ "containerisationType": {
2214
+ "key": "BkjJUIe2N",
2215
+ "oneOf": [
2216
+ {
2217
+ "enum": [
2218
+ "anywhere"
2219
+ ],
2220
+ "title": "Anywhere"
2221
+ },
2222
+ {
2223
+ "enum": [
2224
+ "awsOnly"
2225
+ ],
2226
+ "title": "AWS Only"
2227
+ },
2228
+ {
2229
+ "enum": [
2230
+ "azureOnly"
2231
+ ],
2232
+ "title": "Azure Only"
2233
+ },
2234
+ {
2235
+ "enum": [
2236
+ "gcpOnly"
2237
+ ],
2238
+ "title": "GCP Only"
2239
+ }
2240
+ ],
2241
+ "title": "Containerisation Type",
2242
+ "type": "string"
2243
+ },
2244
+ "containerised": {
2245
+ "default": false,
2246
+ "key": "Byg1U8ehE",
2247
+ "l10n": false,
2248
+ "title": "Containerised",
2249
+ "type": "boolean"
2250
+ }
2251
+ },
2252
+ "title": "Containerisation",
2253
+ "type": "object"
2254
+ },
2255
+ "cspTemplates": {
2256
+ "key": "rk_BL8xh4",
2257
+ "mutable": true,
2258
+ "properties": {
2259
+ "templateTypes": {
2260
+ "items": {
2261
+ "oneOf": [
2262
+ {
2263
+ "enum": [
2264
+ "AWS"
2265
+ ],
2266
+ "title": "AWS"
2267
+ },
2268
+ {
2269
+ "enum": [
2270
+ "GCP"
2271
+ ],
2272
+ "title": "GCP"
2273
+ },
2274
+ {
2275
+ "enum": [
2276
+ "Azure"
2277
+ ],
2278
+ "title": "Azure"
2279
+ },
2280
+ {
2281
+ "enum": [
2282
+ "Others"
2283
+ ],
2284
+ "title": "Others"
2285
+ }
2286
+ ],
2287
+ "type": "string"
2288
+ },
2289
+ "key": "rJ4_LIgh4",
2290
+ "title": "Template Types",
2291
+ "type": "array"
2292
+ },
2293
+ "templatized": {
2294
+ "default": false,
2295
+ "key": "HkMv8Ue3N",
2296
+ "l10n": false,
2297
+ "title": "Templatized",
2298
+ "type": "boolean"
2299
+ }
2300
+ },
2301
+ "title": "CSP Templates",
2302
+ "type": "object"
2303
+ },
2304
+ "customers": {
2305
+ "items": {
2306
+ "properties": {
2307
+ "name": {
2308
+ "key": "rkykrY-hV",
2309
+ "minLength": 0,
2310
+ "title": "Name",
2311
+ "type": "string"
2312
+ },
2313
+ "url": {
2314
+ "key": "SJwJSYZ34",
2315
+ "minLength": 0,
2316
+ "title": "URL",
2317
+ "type": "string"
2318
+ }
2319
+ },
2320
+ "type": "object"
2321
+ },
2322
+ "key": "HyG0VKb2V",
2323
+ "title": "Customers",
2324
+ "type": "array"
2325
+ },
2326
+ "featured": {
2327
+ "default": false,
2328
+ "key": "Bkz0XSe2E",
2329
+ "l10n": false,
2330
+ "title": "Featured",
2331
+ "type": "boolean"
2332
+ },
2333
+ "features": {
2334
+ "items": {
2335
+ "properties": {
2336
+ "description": {
2337
+ "key": "S1hXESl2N",
2338
+ "minLength": 0,
2339
+ "title": "Description",
2340
+ "type": "string"
2341
+ },
2342
+ "name": {
2343
+ "key": "SJlXVHen4",
2344
+ "minLength": 0,
2345
+ "title": "Name",
2346
+ "type": "string"
2347
+ }
2348
+ },
2349
+ "type": "object"
2350
+ },
2351
+ "key": "Hyv-NrehE",
2352
+ "title": "Features",
2353
+ "type": "array"
2354
+ },
2355
+ "images": {
2356
+ "items": {
2357
+ "properties": {
2358
+ "image": {
2359
+ "key": "ry-YPBenE",
2360
+ "properties": {
2361
+ "contentTypeId": {
2362
+ "enum": [
2363
+ "ASSET"
2364
+ ],
2365
+ "type": "string"
2366
+ },
2367
+ "id": {
2368
+ "type": "string"
2369
+ }
2370
+ },
2371
+ "relationship": {
2372
+ "contentTypeIds": [
2373
+ "ASSET"
2374
+ ]
2375
+ },
2376
+ "required": [
2377
+ "contentTypeId",
2378
+ "id"
2379
+ ],
2380
+ "title": "Image",
2381
+ "type": "object"
2382
+ },
2383
+ "imageType": {
2384
+ "key": "ryNHFBxnN",
2385
+ "properties": {
2386
+ "contentTypeId": {
2387
+ "enum": [
2388
+ "rkOetrlhE"
2389
+ ],
2390
+ "type": "string"
2391
+ },
2392
+ "id": {
2393
+ "type": "string"
2394
+ }
2395
+ },
2396
+ "relationship": {
2397
+ "contentTypeIds": [
2398
+ "rkOetrlhE"
2399
+ ],
2400
+ "type": "single"
2401
+ },
2402
+ "required": [
2403
+ "contentTypeId",
2404
+ "id"
2405
+ ],
2406
+ "title": "Image Type",
2407
+ "type": "object"
2408
+ }
2409
+ },
2410
+ "type": "object"
2411
+ },
2412
+ "key": "rJw0Lrx3N",
2413
+ "title": "Images",
2414
+ "type": "array"
2415
+ },
2416
+ "infrastructureRequirements": {
2417
+ "key": "BJOIPIg3E",
2418
+ "mutable": true,
2419
+ "properties": {
2420
+ "nodes": {
2421
+ "items": {
2422
+ "properties": {
2423
+ "gpuModel": {
2424
+ "key": "Sy5KdUenN",
2425
+ "minLength": 0,
2426
+ "title": "GPU Model",
2427
+ "type": "string"
2428
+ },
2429
+ "gpuRequired": {
2430
+ "default": false,
2431
+ "key": "B1yKOLx2N",
2432
+ "l10n": false,
2433
+ "title": "GPU Required",
2434
+ "type": "boolean"
2435
+ },
2436
+ "ram": {
2437
+ "key": "Byi7OIg3N",
2438
+ "l10n": false,
2439
+ "minimum": 0,
2440
+ "title": "RAM",
2441
+ "type": "integer"
2442
+ },
2443
+ "storageSpace": {
2444
+ "key": "HyqNOUxnE",
2445
+ "l10n": false,
2446
+ "minimum": 0,
2447
+ "title": "Storage Space",
2448
+ "type": "integer"
2449
+ },
2450
+ "vcpUs": {
2451
+ "key": "Skf7_8ehN",
2452
+ "l10n": false,
2453
+ "minimum": 0,
2454
+ "title": "VCPUs",
2455
+ "type": "integer"
2456
+ }
2457
+ },
2458
+ "type": "object"
2459
+ },
2460
+ "key": "Sk2CDUgh4",
2461
+ "title": "Nodes",
2462
+ "type": "array"
2463
+ },
2464
+ "typicalUsageScenario": {
2465
+ "key": "B1qOBDlh4",
2466
+ "minLength": 0,
2467
+ "title": "Typical Usage Scenario",
2468
+ "type": "string"
2469
+ }
2470
+ },
2471
+ "title": "Infrastructure Requirements",
2472
+ "type": "object"
2473
+ },
2474
+ "matterTypes": {
2475
+ "items": {
2476
+ "properties": {
2477
+ "contentTypeId": {
2478
+ "enum": [
2479
+ "B1IgZrxhE"
2480
+ ],
2481
+ "type": "string"
2482
+ },
2483
+ "id": {
2484
+ "type": "string"
2485
+ }
2486
+ },
2487
+ "required": [
2488
+ "contentTypeId",
2489
+ "id"
2490
+ ],
2491
+ "type": "object"
2492
+ },
2493
+ "key": "SJ6hMHg3V",
2494
+ "relationship": {
2495
+ "contentTypeIds": [
2496
+ "B1IgZrxhE"
2497
+ ],
2498
+ "type": "multiple"
2499
+ },
2500
+ "title": "Matter Types",
2501
+ "type": "array"
2502
+ },
2503
+ "onPlatformPurchase": {
2504
+ "default": false,
2505
+ "key": "rJ_15rg3N",
2506
+ "l10n": false,
2507
+ "title": "On Platform Purchase",
2508
+ "type": "boolean"
2509
+ },
2510
+ "overview": {
2511
+ "key": "HJ46LBlnN",
2512
+ "minLength": 0,
2513
+ "title": "Overview",
2514
+ "type": "string"
2515
+ },
2516
+ "pilot": {
2517
+ "default": false,
2518
+ "key": "Syr6mrghE",
2519
+ "l10n": false,
2520
+ "title": "Pilot",
2521
+ "type": "boolean"
2522
+ },
2523
+ "practiseAreas": {
2524
+ "items": {
2525
+ "properties": {
2526
+ "contentTypeId": {
2527
+ "enum": [
2528
+ "r1nGZrx3E"
2529
+ ],
2530
+ "type": "string"
2531
+ },
2532
+ "id": {
2533
+ "type": "string"
2534
+ }
2535
+ },
2536
+ "required": [
2537
+ "contentTypeId",
2538
+ "id"
2539
+ ],
2540
+ "type": "object"
2541
+ },
2542
+ "key": "BJACMBe2V",
2543
+ "relationship": {
2544
+ "contentTypeIds": [
2545
+ "r1nGZrx3E"
2546
+ ],
2547
+ "type": "multiple"
2548
+ },
2549
+ "title": "Practise Areas",
2550
+ "type": "array"
2551
+ },
2552
+ "purpose": {
2553
+ "items": {
2554
+ "properties": {
2555
+ "contentTypeId": {
2556
+ "enum": [
2557
+ "B1ESWSe2V"
2558
+ ],
2559
+ "type": "string"
2560
+ },
2561
+ "id": {
2562
+ "type": "string"
2563
+ }
2564
+ },
2565
+ "required": [
2566
+ "contentTypeId",
2567
+ "id"
2568
+ ],
2569
+ "type": "object"
2570
+ },
2571
+ "key": "HkVlmBl2V",
2572
+ "relationship": {
2573
+ "contentTypeIds": [
2574
+ "B1ESWSe2V"
2575
+ ],
2576
+ "type": "multiple"
2577
+ },
2578
+ "title": "Purpose",
2579
+ "type": "array"
2580
+ },
2581
+ "revisionId": {
2582
+ "key": "Hyge38gh4",
2583
+ "minLength": 1,
2584
+ "title": "Revision ID",
2585
+ "type": "string"
2586
+ },
2587
+ "saaSBusiness": {
2588
+ "key": "r1Q08LehE",
2589
+ "mutable": true,
2590
+ "properties": {
2591
+ "hosting": {
2592
+ "items": {
2593
+ "oneOf": [
2594
+ {
2595
+ "enum": [
2596
+ "AWS"
2597
+ ],
2598
+ "title": "AWS"
2599
+ },
2600
+ {
2601
+ "enum": [
2602
+ "GCP"
2603
+ ],
2604
+ "title": "GCP"
2605
+ },
2606
+ {
2607
+ "enum": [
2608
+ "Azure"
2609
+ ],
2610
+ "title": "Azure"
2611
+ },
2612
+ {
2613
+ "enum": [
2614
+ "Own Infrastructure"
2615
+ ],
2616
+ "title": "Own Infrastructure"
2617
+ }
2618
+ ],
2619
+ "type": "string"
2620
+ },
2621
+ "key": "HJjZvLxhE",
2622
+ "title": "Hosting",
2623
+ "type": "array"
2624
+ },
2625
+ "SaaS": {
2626
+ "default": false,
2627
+ "key": "S1M1vLl2E",
2628
+ "l10n": false,
2629
+ "title": "SaaS",
2630
+ "type": "boolean"
2631
+ }
2632
+ },
2633
+ "title": "SaaS Business",
2634
+ "type": "object"
2635
+ },
2636
+ "softwarePrerequisites": {
2637
+ "key": "SkxG9Sx3N",
2638
+ "minLength": 0,
2639
+ "title": "Software Prerequisites",
2640
+ "type": "string"
2641
+ },
2642
+ "tagline": {
2643
+ "key": "By98zrehV",
2644
+ "minLength": 0,
2645
+ "title": "Tagline",
2646
+ "type": "string"
2647
+ },
2648
+ "technologies": {
2649
+ "items": {
2650
+ "properties": {
2651
+ "contentTypeId": {
2652
+ "enum": [
2653
+ "S1x_-He34"
2654
+ ],
2655
+ "type": "string"
2656
+ },
2657
+ "id": {
2658
+ "type": "string"
2659
+ }
2660
+ },
2661
+ "required": [
2662
+ "contentTypeId",
2663
+ "id"
2664
+ ],
2665
+ "type": "object"
2666
+ },
2667
+ "key": "HJr-mrxh4",
2668
+ "relationship": {
2669
+ "contentTypeIds": [
2670
+ "S1x_-He34"
2671
+ ],
2672
+ "type": "multiple"
2673
+ },
2674
+ "title": "Technologies",
2675
+ "type": "array"
2676
+ },
2677
+ "tenancy": {
2678
+ "key": "SklwcSl3E",
2679
+ "mutable": true,
2680
+ "properties": {
2681
+ "tenancyDescription": {
2682
+ "key": "H1-95BehE",
2683
+ "minLength": 0,
2684
+ "title": "Tenancy Description",
2685
+ "type": "string"
2686
+ },
2687
+ "tenancyType": {
2688
+ "key": "HJv_9Hl3N",
2689
+ "oneOf": [
2690
+ {
2691
+ "enum": [
2692
+ "singleTenant"
2693
+ ],
2694
+ "title": "Single Tenant"
2695
+ },
2696
+ {
2697
+ "enum": [
2698
+ "multiTenant"
2699
+ ],
2700
+ "title": "Multi Tenant"
2701
+ }
2702
+ ],
2703
+ "title": "Tenancy Type",
2704
+ "type": "string"
2705
+ }
2706
+ },
2707
+ "title": "Tenancy",
2708
+ "type": "object"
2709
+ },
2710
+ "testDrive": {
2711
+ "default": false,
2712
+ "key": "rya2QrxhN",
2713
+ "l10n": false,
2714
+ "title": "Test Drive",
2715
+ "type": "boolean"
2716
+ },
2717
+ "vendor": {
2718
+ "key": "SyCV4Lg3V",
2719
+ "properties": {
2720
+ "contentTypeId": {
2721
+ "enum": [
2722
+ "HkUQVLg3N"
2723
+ ],
2724
+ "type": "string"
2725
+ },
2726
+ "id": {
2727
+ "type": "string"
2728
+ }
2729
+ },
2730
+ "relationship": {
2731
+ "contentTypeIds": [
2732
+ "HkUQVLg3N"
2733
+ ],
2734
+ "type": "single"
2735
+ },
2736
+ "required": [
2737
+ "contentTypeId",
2738
+ "id"
2739
+ ],
2740
+ "title": "Vendor",
2741
+ "type": "object"
2742
+ },
2743
+ "videos": {
2744
+ "items": {
2745
+ "properties": {
2746
+ "video": {
2747
+ "key": "SkZvOBl3V",
2748
+ "properties": {
2749
+ "contentTypeId": {
2750
+ "enum": [
2751
+ "ASSET"
2752
+ ],
2753
+ "type": "string"
2754
+ },
2755
+ "id": {
2756
+ "type": "string"
2757
+ }
2758
+ },
2759
+ "relationship": {
2760
+ "contentTypeIds": [
2761
+ "ASSET"
2762
+ ]
2763
+ },
2764
+ "required": [
2765
+ "contentTypeId",
2766
+ "id"
2767
+ ],
2768
+ "title": "Video",
2769
+ "type": "object"
2770
+ },
2771
+ "videoType": {
2772
+ "key": "BkmUKrx3N",
2773
+ "properties": {
2774
+ "contentTypeId": {
2775
+ "enum": [
2776
+ "HJ4zKBghV"
2777
+ ],
2778
+ "type": "string"
2779
+ },
2780
+ "id": {
2781
+ "type": "string"
2782
+ }
2783
+ },
2784
+ "relationship": {
2785
+ "contentTypeIds": [
2786
+ "HJ4zKBghV"
2787
+ ],
2788
+ "type": "single"
2789
+ },
2790
+ "required": [
2791
+ "contentTypeId",
2792
+ "id"
2793
+ ],
2794
+ "title": "Video Type",
2795
+ "type": "object"
2796
+ }
2797
+ },
2798
+ "type": "object"
2799
+ },
2800
+ "key": "HJNRDrg2N",
2801
+ "title": "Videos",
2802
+ "type": "array"
2803
+ },
2804
+ "webServicePrerequisites": {
2805
+ "key": "BJV79BlnE",
2806
+ "minLength": 0,
2807
+ "title": "Web Service Prerequisites",
2808
+ "type": "string"
2809
+ },
2810
+ "worksWith": {
2811
+ "key": "ryuaELl24",
2812
+ "mutable": true,
2813
+ "properties": {
2814
+ "worksWithExternalApps": {
2815
+ "items": {
2816
+ "properties": {
2817
+ "externalApp": {
2818
+ "key": "B1EwSUx3V",
2819
+ "properties": {
2820
+ "contentTypeId": {
2821
+ "enum": [
2822
+ "BkrLZLe2E"
2823
+ ],
2824
+ "type": "string"
2825
+ },
2826
+ "id": {
2827
+ "type": "string"
2828
+ }
2829
+ },
2830
+ "relationship": {
2831
+ "contentTypeIds": [
2832
+ "BkrLZLe2E"
2833
+ ],
2834
+ "type": "single"
2835
+ },
2836
+ "required": [
2837
+ "contentTypeId",
2838
+ "id"
2839
+ ],
2840
+ "title": "External App",
2841
+ "type": "object"
2842
+ },
2843
+ "integrationDescription": {
2844
+ "key": "HyodHUxnV",
2845
+ "minLength": 0,
2846
+ "title": "Integration Description",
2847
+ "type": "string"
2848
+ }
2849
+ },
2850
+ "type": "object"
2851
+ },
2852
+ "key": "BkdUH8l2E",
2853
+ "title": "Works with External Apps",
2854
+ "type": "array"
2855
+ },
2856
+ "worksWithRCApps": {
2857
+ "items": {
2858
+ "properties": {
2859
+ "integrationDescription": {
2860
+ "key": "H1uHHUl3N",
2861
+ "minLength": 0,
2862
+ "title": "Integration Description",
2863
+ "type": "string"
2864
+ },
2865
+ "rcApp": {
2866
+ "key": "SyHeSUgnN",
2867
+ "properties": {
2868
+ "contentTypeId": {
2869
+ "enum": [
2870
+ "Hy89GBg2V"
2871
+ ],
2872
+ "type": "string"
2873
+ },
2874
+ "id": {
2875
+ "type": "string"
2876
+ }
2877
+ },
2878
+ "relationship": {
2879
+ "contentTypeIds": [
2880
+ "Hy89GBg2V"
2881
+ ],
2882
+ "type": "single"
2883
+ },
2884
+ "required": [
2885
+ "contentTypeId",
2886
+ "id"
2887
+ ],
2888
+ "title": "RC App",
2889
+ "type": "object"
2890
+ }
2891
+ },
2892
+ "type": "object"
2893
+ },
2894
+ "key": "r1q0E8ehN",
2895
+ "title": "Works With RC Apps",
2896
+ "type": "array"
2897
+ }
2898
+ },
2899
+ "title": "Works With",
2900
+ "type": "object"
2901
+ }
2902
+ },
2903
+ "required": [
2904
+ "revisionId"
2905
+ ],
2906
+ "type": "object"
2907
+ },
2908
+ "single": false,
2909
+ "taxonomy": false,
2910
+ "title": "Solution Revision"
2911
+ },
2912
+ "r1nGZrx3E": {
2913
+ "forms": {
2914
+ "default": {
2915
+ "order": [
2916
+ "name",
2917
+ "description"
2918
+ ],
2919
+ "properties": {
2920
+ "description": {
2921
+ "widget": "paragraphText"
2922
+ },
2923
+ "name": {
2924
+ "widget": "singleLineText"
2925
+ }
2926
+ }
2927
+ }
2928
+ },
2929
+ "name": "practiceArea",
2930
+ "schema": {
2931
+ "properties": {
2932
+ "description": {
2933
+ "key": "SJffbSl3N",
2934
+ "minLength": 0,
2935
+ "title": "Description",
2936
+ "type": "string"
2937
+ },
2938
+ "name": {
2939
+ "key": "ryPbbrehE",
2940
+ "minLength": 1,
2941
+ "title": "Name",
2942
+ "type": "string"
2943
+ }
2944
+ },
2945
+ "required": [
2946
+ "name"
2947
+ ],
2948
+ "type": "object"
2949
+ },
2950
+ "single": false,
2951
+ "taxonomy": true,
2952
+ "title": "Practice Area"
2953
+ },
2954
+ "rkOetrlhE": {
2955
+ "forms": {
2956
+ "default": {
2957
+ "order": [
2958
+ "name",
2959
+ "description"
2960
+ ],
2961
+ "properties": {
2962
+ "description": {
2963
+ "widget": "paragraphText"
2964
+ },
2965
+ "name": {
2966
+ "widget": "singleLineText"
2967
+ }
2968
+ }
2969
+ }
2970
+ },
2971
+ "name": "imageType",
2972
+ "schema": {
2973
+ "properties": {
2974
+ "description": {
2975
+ "key": "S1hyYHx2E",
2976
+ "minLength": 0,
2977
+ "title": "Description",
2978
+ "type": "string"
2979
+ },
2980
+ "name": {
2981
+ "key": "B1EkFrxhV",
2982
+ "minLength": 1,
2983
+ "title": "Name",
2984
+ "type": "string"
2985
+ }
2986
+ },
2987
+ "required": [
2988
+ "name"
2989
+ ],
2990
+ "type": "object"
2991
+ },
2992
+ "single": false,
2993
+ "taxonomy": true,
2994
+ "title": "Image Type"
2995
+ },
2996
+ "S1x_-He34": {
2997
+ "forms": {
2998
+ "default": {
2999
+ "order": [
3000
+ "name",
3001
+ "description"
3002
+ ],
3003
+ "properties": {
3004
+ "description": {
3005
+ "widget": "paragraphText"
3006
+ },
3007
+ "name": {
3008
+ "widget": "singleLineText"
3009
+ }
3010
+ }
3011
+ }
3012
+ },
3013
+ "name": "technology",
3014
+ "schema": {
3015
+ "properties": {
3016
+ "description": {
3017
+ "key": "B18vWSl3E",
3018
+ "minLength": 0,
3019
+ "title": "Description",
3020
+ "type": "string"
3021
+ },
3022
+ "name": {
3023
+ "key": "H1bvbHen4",
3024
+ "minLength": 1,
3025
+ "title": "Name",
3026
+ "type": "string"
3027
+ }
3028
+ },
3029
+ "required": [
3030
+ "name"
3031
+ ],
3032
+ "type": "object"
3033
+ },
3034
+ "single": false,
3035
+ "taxonomy": true,
3036
+ "title": "Technology"
3037
+ },
3038
+ "Sk8BaUg2V": {
3039
+ "forms": {
3040
+ "default": {
3041
+ "order": [
3042
+ "name",
3043
+ "revisions",
3044
+ "status"
3045
+ ],
3046
+ "properties": {
3047
+ "name": {
3048
+ "widget": "singleLineText"
3049
+ },
3050
+ "revisions": {
3051
+ "order": [
3052
+ "revision",
3053
+ "status"
3054
+ ],
3055
+ "properties": {
3056
+ "revision": {
3057
+ "widget": "relationship"
3058
+ },
3059
+ "status": {
3060
+ "widget": "dropdown"
3061
+ }
3062
+ },
3063
+ "widget": "repeater"
3064
+ },
3065
+ "status": {
3066
+ "widget": "dropdown"
3067
+ }
3068
+ }
3069
+ }
3070
+ },
3071
+ "name": "solution",
3072
+ "schema": {
3073
+ "properties": {
3074
+ "name": {
3075
+ "key": "B1xdh8lnN",
3076
+ "minLength": 1,
3077
+ "title": "Name",
3078
+ "type": "string"
3079
+ },
3080
+ "revisions": {
3081
+ "items": {
3082
+ "properties": {
3083
+ "revision": {
3084
+ "key": "BkOpnUgnN",
3085
+ "properties": {
3086
+ "contentTypeId": {
3087
+ "enum": [
3088
+ "Hy89GBg2V"
3089
+ ],
3090
+ "type": "string"
3091
+ },
3092
+ "id": {
3093
+ "type": "string"
3094
+ }
3095
+ },
3096
+ "relationship": {
3097
+ "contentTypeIds": [
3098
+ "Hy89GBg2V"
3099
+ ],
3100
+ "type": "single"
3101
+ },
3102
+ "required": [
3103
+ "contentTypeId",
3104
+ "id"
3105
+ ],
3106
+ "title": "Revision",
3107
+ "type": "object"
3108
+ },
3109
+ "status": {
3110
+ "key": "rkpJpLx2E",
3111
+ "oneOf": [
3112
+ {
3113
+ "enum": [
3114
+ "draft"
3115
+ ],
3116
+ "title": "Draft"
3117
+ },
3118
+ {
3119
+ "enum": [
3120
+ "underReview"
3121
+ ],
3122
+ "title": "Under Review"
3123
+ },
3124
+ {
3125
+ "enum": [
3126
+ "approved"
3127
+ ],
3128
+ "title": "Approved"
3129
+ },
3130
+ {
3131
+ "enum": [
3132
+ "published"
3133
+ ],
3134
+ "title": "Published"
3135
+ }
3136
+ ],
3137
+ "title": "Status",
3138
+ "type": "string"
3139
+ }
3140
+ },
3141
+ "type": "object"
3142
+ },
3143
+ "key": "HkuchIenE",
3144
+ "title": "Revisions",
3145
+ "type": "array"
3146
+ },
3147
+ "status": {
3148
+ "key": "ryTO6Ueh4",
3149
+ "minLength": 1,
3150
+ "oneOf": [
3151
+ {
3152
+ "enum": [
3153
+ "stage1"
3154
+ ],
3155
+ "title": "Stage1"
3156
+ },
3157
+ {
3158
+ "enum": [
3159
+ "stage2"
3160
+ ],
3161
+ "title": "Stage2"
3162
+ },
3163
+ {
3164
+ "enum": [
3165
+ "stage3"
3166
+ ],
3167
+ "title": "Stage3"
3168
+ }
3169
+ ],
3170
+ "title": "Status",
3171
+ "type": "string"
3172
+ }
3173
+ },
3174
+ "required": [
3175
+ "name",
3176
+ "status"
3177
+ ],
3178
+ "type": "object"
3179
+ },
3180
+ "single": false,
3181
+ "taxonomy": false,
3182
+ "title": "Solution"
3183
+ }
3184
+ },
3185
+ "created": 1557315324053,
3186
+ "defaultLocale": "en",
3187
+ "locales": [
3188
+ "en"
3189
+ ],
3190
+ "projectId": "427aa129-8807-4e88-ac87-447419838d1b",
3191
+ "updated": 1557438877425,
3192
+ "version": 57,
3193
+ "$schema": "http://takeshape.io/schemas/project-schema#",
3194
+ "author": "<userId>",
3195
+ "apiVersion": "2",
3196
+ "workflows": {}
3197
+ }