@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,4076 @@
1
+ {
2
+ "defaultLocale": "en",
3
+ "locales": [
4
+ "en"
5
+ ],
6
+ "projectId": "427aa129-8807-4e88-ac87-447419838d1b",
7
+ "version": 57,
8
+ "$schema": "http://takeshape.io/schemas/project-schema#",
9
+ "author": "<userId>",
10
+ "apiVersion": "2",
11
+ "workflows": {},
12
+ "queries": {
13
+ "getPurpose": {
14
+ "shape": "Purpose",
15
+ "resolver": {
16
+ "name": "takeshape:get",
17
+ "service": "takeshape:local",
18
+ "options": {
19
+ "model": "Purpose"
20
+ }
21
+ },
22
+ "description": "Get a Purpose by ID",
23
+ "args": "TSGetArgs<Purpose>"
24
+ },
25
+ "getPurposeList": {
26
+ "shape": "PaginatedList<Purpose>",
27
+ "resolver": {
28
+ "name": "takeshape:list",
29
+ "service": "takeshape:local",
30
+ "options": {
31
+ "model": "Purpose"
32
+ }
33
+ },
34
+ "description": "Returns a list Purpose in natural order.",
35
+ "args": "TSListArgs<Purpose>"
36
+ },
37
+ "getMatterType": {
38
+ "shape": "MatterType",
39
+ "resolver": {
40
+ "name": "takeshape:get",
41
+ "service": "takeshape:local",
42
+ "options": {
43
+ "model": "MatterType"
44
+ }
45
+ },
46
+ "description": "Get a MatterType by ID",
47
+ "args": "TSGetArgs<MatterType>"
48
+ },
49
+ "getMatterTypeList": {
50
+ "shape": "PaginatedList<MatterType>",
51
+ "resolver": {
52
+ "name": "takeshape:list",
53
+ "service": "takeshape:local",
54
+ "options": {
55
+ "model": "MatterType"
56
+ }
57
+ },
58
+ "description": "Returns a list MatterType in natural order.",
59
+ "args": "TSListArgs<MatterType>"
60
+ },
61
+ "getSolutionRevision2": {
62
+ "shape": "SolutionRevision2",
63
+ "resolver": {
64
+ "name": "takeshape:get",
65
+ "service": "takeshape:local",
66
+ "options": {
67
+ "model": "SolutionRevision2"
68
+ }
69
+ },
70
+ "description": "Get a SolutionRevision2 by ID",
71
+ "args": "TSGetArgs<SolutionRevision2>"
72
+ },
73
+ "getSolutionRevision2List": {
74
+ "shape": "PaginatedList<SolutionRevision2>",
75
+ "resolver": {
76
+ "name": "takeshape:list",
77
+ "service": "takeshape:local",
78
+ "options": {
79
+ "model": "SolutionRevision2"
80
+ }
81
+ },
82
+ "description": "Returns a list SolutionRevision2 in natural order.",
83
+ "args": "TSListArgs<SolutionRevision2>"
84
+ },
85
+ "getSolutionRevision1": {
86
+ "shape": "SolutionRevision1",
87
+ "resolver": {
88
+ "name": "takeshape:get",
89
+ "service": "takeshape:local",
90
+ "options": {
91
+ "model": "SolutionRevision1"
92
+ }
93
+ },
94
+ "description": "Get a SolutionRevision1 by ID",
95
+ "args": "TSGetArgs<SolutionRevision1>"
96
+ },
97
+ "getSolutionRevision1List": {
98
+ "shape": "PaginatedList<SolutionRevision1>",
99
+ "resolver": {
100
+ "name": "takeshape:list",
101
+ "service": "takeshape:local",
102
+ "options": {
103
+ "model": "SolutionRevision1"
104
+ }
105
+ },
106
+ "description": "Returns a list SolutionRevision1 in natural order.",
107
+ "args": "TSListArgs<SolutionRevision1>"
108
+ },
109
+ "getExternalProduct": {
110
+ "shape": "ExternalProduct",
111
+ "resolver": {
112
+ "name": "takeshape:get",
113
+ "service": "takeshape:local",
114
+ "options": {
115
+ "model": "ExternalProduct"
116
+ }
117
+ },
118
+ "description": "Get a ExternalProduct by ID",
119
+ "args": "TSGetArgs<ExternalProduct>"
120
+ },
121
+ "getExternalProductList": {
122
+ "shape": "PaginatedList<ExternalProduct>",
123
+ "resolver": {
124
+ "name": "takeshape:list",
125
+ "service": "takeshape:local",
126
+ "options": {
127
+ "model": "ExternalProduct"
128
+ }
129
+ },
130
+ "description": "Returns a list ExternalProduct in natural order.",
131
+ "args": "TSListArgs<ExternalProduct>"
132
+ },
133
+ "getVideoType": {
134
+ "shape": "VideoType",
135
+ "resolver": {
136
+ "name": "takeshape:get",
137
+ "service": "takeshape:local",
138
+ "options": {
139
+ "model": "VideoType"
140
+ }
141
+ },
142
+ "description": "Get a VideoType by ID",
143
+ "args": "TSGetArgs<VideoType>"
144
+ },
145
+ "getVideoTypeList": {
146
+ "shape": "PaginatedList<VideoType>",
147
+ "resolver": {
148
+ "name": "takeshape:list",
149
+ "service": "takeshape:local",
150
+ "options": {
151
+ "model": "VideoType"
152
+ }
153
+ },
154
+ "description": "Returns a list VideoType in natural order.",
155
+ "args": "TSListArgs<VideoType>"
156
+ },
157
+ "getCategory": {
158
+ "shape": "Category",
159
+ "resolver": {
160
+ "name": "takeshape:get",
161
+ "service": "takeshape:local",
162
+ "options": {
163
+ "model": "Category"
164
+ }
165
+ },
166
+ "description": "Get a Category by ID",
167
+ "args": "TSGetArgs<Category>"
168
+ },
169
+ "getCategoryList": {
170
+ "shape": "PaginatedList<Category>",
171
+ "resolver": {
172
+ "name": "takeshape:list",
173
+ "service": "takeshape:local",
174
+ "options": {
175
+ "model": "Category"
176
+ }
177
+ },
178
+ "description": "Returns a list Category in natural order.",
179
+ "args": "TSListArgs<Category>"
180
+ },
181
+ "getCollateralType": {
182
+ "shape": "CollateralType",
183
+ "resolver": {
184
+ "name": "takeshape:get",
185
+ "service": "takeshape:local",
186
+ "options": {
187
+ "model": "CollateralType"
188
+ }
189
+ },
190
+ "description": "Get a CollateralType by ID",
191
+ "args": "TSGetArgs<CollateralType>"
192
+ },
193
+ "getCollateralTypeList": {
194
+ "shape": "PaginatedList<CollateralType>",
195
+ "resolver": {
196
+ "name": "takeshape:list",
197
+ "service": "takeshape:local",
198
+ "options": {
199
+ "model": "CollateralType"
200
+ }
201
+ },
202
+ "description": "Returns a list CollateralType in natural order.",
203
+ "args": "TSListArgs<CollateralType>"
204
+ },
205
+ "getExternalAppCategory": {
206
+ "shape": "ExternalAppCategory",
207
+ "resolver": {
208
+ "name": "takeshape:get",
209
+ "service": "takeshape:local",
210
+ "options": {
211
+ "model": "ExternalAppCategory"
212
+ }
213
+ },
214
+ "description": "Get a ExternalAppCategory by ID",
215
+ "args": "TSGetArgs<ExternalAppCategory>"
216
+ },
217
+ "getExternalAppCategoryList": {
218
+ "shape": "PaginatedList<ExternalAppCategory>",
219
+ "resolver": {
220
+ "name": "takeshape:list",
221
+ "service": "takeshape:local",
222
+ "options": {
223
+ "model": "ExternalAppCategory"
224
+ }
225
+ },
226
+ "description": "Returns a list ExternalAppCategory in natural order.",
227
+ "args": "TSListArgs<ExternalAppCategory>"
228
+ },
229
+ "getVendor": {
230
+ "shape": "Vendor",
231
+ "resolver": {
232
+ "name": "takeshape:get",
233
+ "service": "takeshape:local",
234
+ "options": {
235
+ "model": "Vendor"
236
+ }
237
+ },
238
+ "description": "Get a Vendor by ID",
239
+ "args": "TSGetArgs<Vendor>"
240
+ },
241
+ "getVendorList": {
242
+ "shape": "PaginatedList<Vendor>",
243
+ "resolver": {
244
+ "name": "takeshape:list",
245
+ "service": "takeshape:local",
246
+ "options": {
247
+ "model": "Vendor"
248
+ }
249
+ },
250
+ "description": "Returns a list Vendor in natural order.",
251
+ "args": "TSListArgs<Vendor>"
252
+ },
253
+ "getSolutionRevision": {
254
+ "shape": "SolutionRevision",
255
+ "resolver": {
256
+ "name": "takeshape:get",
257
+ "service": "takeshape:local",
258
+ "options": {
259
+ "model": "SolutionRevision"
260
+ }
261
+ },
262
+ "description": "Get a SolutionRevision by ID",
263
+ "args": "TSGetArgs<SolutionRevision>"
264
+ },
265
+ "getSolutionRevisionList": {
266
+ "shape": "PaginatedList<SolutionRevision>",
267
+ "resolver": {
268
+ "name": "takeshape:list",
269
+ "service": "takeshape:local",
270
+ "options": {
271
+ "model": "SolutionRevision"
272
+ }
273
+ },
274
+ "description": "Returns a list SolutionRevision in natural order.",
275
+ "args": "TSListArgs<SolutionRevision>"
276
+ },
277
+ "getPracticeArea": {
278
+ "shape": "PracticeArea",
279
+ "resolver": {
280
+ "name": "takeshape:get",
281
+ "service": "takeshape:local",
282
+ "options": {
283
+ "model": "PracticeArea"
284
+ }
285
+ },
286
+ "description": "Get a PracticeArea by ID",
287
+ "args": "TSGetArgs<PracticeArea>"
288
+ },
289
+ "getPracticeAreaList": {
290
+ "shape": "PaginatedList<PracticeArea>",
291
+ "resolver": {
292
+ "name": "takeshape:list",
293
+ "service": "takeshape:local",
294
+ "options": {
295
+ "model": "PracticeArea"
296
+ }
297
+ },
298
+ "description": "Returns a list PracticeArea in natural order.",
299
+ "args": "TSListArgs<PracticeArea>"
300
+ },
301
+ "getImageType": {
302
+ "shape": "ImageType",
303
+ "resolver": {
304
+ "name": "takeshape:get",
305
+ "service": "takeshape:local",
306
+ "options": {
307
+ "model": "ImageType"
308
+ }
309
+ },
310
+ "description": "Get a ImageType by ID",
311
+ "args": "TSGetArgs<ImageType>"
312
+ },
313
+ "getImageTypeList": {
314
+ "shape": "PaginatedList<ImageType>",
315
+ "resolver": {
316
+ "name": "takeshape:list",
317
+ "service": "takeshape:local",
318
+ "options": {
319
+ "model": "ImageType"
320
+ }
321
+ },
322
+ "description": "Returns a list ImageType in natural order.",
323
+ "args": "TSListArgs<ImageType>"
324
+ },
325
+ "getTechnology": {
326
+ "shape": "Technology",
327
+ "resolver": {
328
+ "name": "takeshape:get",
329
+ "service": "takeshape:local",
330
+ "options": {
331
+ "model": "Technology"
332
+ }
333
+ },
334
+ "description": "Get a Technology by ID",
335
+ "args": "TSGetArgs<Technology>"
336
+ },
337
+ "getTechnologyList": {
338
+ "shape": "PaginatedList<Technology>",
339
+ "resolver": {
340
+ "name": "takeshape:list",
341
+ "service": "takeshape:local",
342
+ "options": {
343
+ "model": "Technology"
344
+ }
345
+ },
346
+ "description": "Returns a list Technology in natural order.",
347
+ "args": "TSListArgs<Technology>"
348
+ },
349
+ "getSolution": {
350
+ "shape": "Solution",
351
+ "resolver": {
352
+ "name": "takeshape:get",
353
+ "service": "takeshape:local",
354
+ "options": {
355
+ "model": "Solution"
356
+ }
357
+ },
358
+ "description": "Get a Solution by ID",
359
+ "args": "TSGetArgs<Solution>"
360
+ },
361
+ "getSolutionList": {
362
+ "shape": "PaginatedList<Solution>",
363
+ "resolver": {
364
+ "name": "takeshape:list",
365
+ "service": "takeshape:local",
366
+ "options": {
367
+ "model": "Solution"
368
+ }
369
+ },
370
+ "description": "Returns a list Solution in natural order.",
371
+ "args": "TSListArgs<Solution>"
372
+ }
373
+ },
374
+ "mutations": {
375
+ "updatePurpose": {
376
+ "shape": "UpdateResult<Purpose>",
377
+ "resolver": {
378
+ "name": "takeshape:update",
379
+ "service": "takeshape:local",
380
+ "options": {
381
+ "model": "Purpose"
382
+ }
383
+ },
384
+ "description": "Update Purpose",
385
+ "args": "UpdateArgs<Purpose>"
386
+ },
387
+ "createPurpose": {
388
+ "shape": "CreateResult<Purpose>",
389
+ "resolver": {
390
+ "name": "takeshape:create",
391
+ "service": "takeshape:local",
392
+ "options": {
393
+ "model": "Purpose"
394
+ }
395
+ },
396
+ "description": "Create Purpose",
397
+ "args": "CreateArgs<Purpose>"
398
+ },
399
+ "duplicatePurpose": {
400
+ "shape": "DuplicateResult<Purpose>",
401
+ "resolver": {
402
+ "name": "takeshape:duplicate",
403
+ "service": "takeshape:local",
404
+ "options": {
405
+ "model": "Purpose"
406
+ }
407
+ },
408
+ "description": "Duplicate Purpose",
409
+ "args": "DuplicateArgs<Purpose>"
410
+ },
411
+ "deletePurpose": {
412
+ "shape": "DeleteResult<Purpose>",
413
+ "resolver": {
414
+ "name": "takeshape:delete",
415
+ "service": "takeshape:local",
416
+ "options": {
417
+ "model": "Purpose"
418
+ }
419
+ },
420
+ "description": "Delete Purpose",
421
+ "args": "DeleteArgs<Purpose>"
422
+ },
423
+ "updateMatterType": {
424
+ "shape": "UpdateResult<MatterType>",
425
+ "resolver": {
426
+ "name": "takeshape:update",
427
+ "service": "takeshape:local",
428
+ "options": {
429
+ "model": "MatterType"
430
+ }
431
+ },
432
+ "description": "Update MatterType",
433
+ "args": "UpdateArgs<MatterType>"
434
+ },
435
+ "createMatterType": {
436
+ "shape": "CreateResult<MatterType>",
437
+ "resolver": {
438
+ "name": "takeshape:create",
439
+ "service": "takeshape:local",
440
+ "options": {
441
+ "model": "MatterType"
442
+ }
443
+ },
444
+ "description": "Create MatterType",
445
+ "args": "CreateArgs<MatterType>"
446
+ },
447
+ "duplicateMatterType": {
448
+ "shape": "DuplicateResult<MatterType>",
449
+ "resolver": {
450
+ "name": "takeshape:duplicate",
451
+ "service": "takeshape:local",
452
+ "options": {
453
+ "model": "MatterType"
454
+ }
455
+ },
456
+ "description": "Duplicate MatterType",
457
+ "args": "DuplicateArgs<MatterType>"
458
+ },
459
+ "deleteMatterType": {
460
+ "shape": "DeleteResult<MatterType>",
461
+ "resolver": {
462
+ "name": "takeshape:delete",
463
+ "service": "takeshape:local",
464
+ "options": {
465
+ "model": "MatterType"
466
+ }
467
+ },
468
+ "description": "Delete MatterType",
469
+ "args": "DeleteArgs<MatterType>"
470
+ },
471
+ "updateSolutionRevision2": {
472
+ "shape": "UpdateResult<SolutionRevision2>",
473
+ "resolver": {
474
+ "name": "takeshape:update",
475
+ "service": "takeshape:local",
476
+ "options": {
477
+ "model": "SolutionRevision2"
478
+ }
479
+ },
480
+ "description": "Update SolutionRevision2",
481
+ "args": "UpdateArgs<SolutionRevision2>"
482
+ },
483
+ "createSolutionRevision2": {
484
+ "shape": "CreateResult<SolutionRevision2>",
485
+ "resolver": {
486
+ "name": "takeshape:create",
487
+ "service": "takeshape:local",
488
+ "options": {
489
+ "model": "SolutionRevision2"
490
+ }
491
+ },
492
+ "description": "Create SolutionRevision2",
493
+ "args": "CreateArgs<SolutionRevision2>"
494
+ },
495
+ "duplicateSolutionRevision2": {
496
+ "shape": "DuplicateResult<SolutionRevision2>",
497
+ "resolver": {
498
+ "name": "takeshape:duplicate",
499
+ "service": "takeshape:local",
500
+ "options": {
501
+ "model": "SolutionRevision2"
502
+ }
503
+ },
504
+ "description": "Duplicate SolutionRevision2",
505
+ "args": "DuplicateArgs<SolutionRevision2>"
506
+ },
507
+ "deleteSolutionRevision2": {
508
+ "shape": "DeleteResult<SolutionRevision2>",
509
+ "resolver": {
510
+ "name": "takeshape:delete",
511
+ "service": "takeshape:local",
512
+ "options": {
513
+ "model": "SolutionRevision2"
514
+ }
515
+ },
516
+ "description": "Delete SolutionRevision2",
517
+ "args": "DeleteArgs<SolutionRevision2>"
518
+ },
519
+ "updateSolutionRevision1": {
520
+ "shape": "UpdateResult<SolutionRevision1>",
521
+ "resolver": {
522
+ "name": "takeshape:update",
523
+ "service": "takeshape:local",
524
+ "options": {
525
+ "model": "SolutionRevision1"
526
+ }
527
+ },
528
+ "description": "Update SolutionRevision1",
529
+ "args": "UpdateArgs<SolutionRevision1>"
530
+ },
531
+ "createSolutionRevision1": {
532
+ "shape": "CreateResult<SolutionRevision1>",
533
+ "resolver": {
534
+ "name": "takeshape:create",
535
+ "service": "takeshape:local",
536
+ "options": {
537
+ "model": "SolutionRevision1"
538
+ }
539
+ },
540
+ "description": "Create SolutionRevision1",
541
+ "args": "CreateArgs<SolutionRevision1>"
542
+ },
543
+ "duplicateSolutionRevision1": {
544
+ "shape": "DuplicateResult<SolutionRevision1>",
545
+ "resolver": {
546
+ "name": "takeshape:duplicate",
547
+ "service": "takeshape:local",
548
+ "options": {
549
+ "model": "SolutionRevision1"
550
+ }
551
+ },
552
+ "description": "Duplicate SolutionRevision1",
553
+ "args": "DuplicateArgs<SolutionRevision1>"
554
+ },
555
+ "deleteSolutionRevision1": {
556
+ "shape": "DeleteResult<SolutionRevision1>",
557
+ "resolver": {
558
+ "name": "takeshape:delete",
559
+ "service": "takeshape:local",
560
+ "options": {
561
+ "model": "SolutionRevision1"
562
+ }
563
+ },
564
+ "description": "Delete SolutionRevision1",
565
+ "args": "DeleteArgs<SolutionRevision1>"
566
+ },
567
+ "updateExternalProduct": {
568
+ "shape": "UpdateResult<ExternalProduct>",
569
+ "resolver": {
570
+ "name": "takeshape:update",
571
+ "service": "takeshape:local",
572
+ "options": {
573
+ "model": "ExternalProduct"
574
+ }
575
+ },
576
+ "description": "Update ExternalProduct",
577
+ "args": "UpdateArgs<ExternalProduct>"
578
+ },
579
+ "createExternalProduct": {
580
+ "shape": "CreateResult<ExternalProduct>",
581
+ "resolver": {
582
+ "name": "takeshape:create",
583
+ "service": "takeshape:local",
584
+ "options": {
585
+ "model": "ExternalProduct"
586
+ }
587
+ },
588
+ "description": "Create ExternalProduct",
589
+ "args": "CreateArgs<ExternalProduct>"
590
+ },
591
+ "duplicateExternalProduct": {
592
+ "shape": "DuplicateResult<ExternalProduct>",
593
+ "resolver": {
594
+ "name": "takeshape:duplicate",
595
+ "service": "takeshape:local",
596
+ "options": {
597
+ "model": "ExternalProduct"
598
+ }
599
+ },
600
+ "description": "Duplicate ExternalProduct",
601
+ "args": "DuplicateArgs<ExternalProduct>"
602
+ },
603
+ "deleteExternalProduct": {
604
+ "shape": "DeleteResult<ExternalProduct>",
605
+ "resolver": {
606
+ "name": "takeshape:delete",
607
+ "service": "takeshape:local",
608
+ "options": {
609
+ "model": "ExternalProduct"
610
+ }
611
+ },
612
+ "description": "Delete ExternalProduct",
613
+ "args": "DeleteArgs<ExternalProduct>"
614
+ },
615
+ "updateVideoType": {
616
+ "shape": "UpdateResult<VideoType>",
617
+ "resolver": {
618
+ "name": "takeshape:update",
619
+ "service": "takeshape:local",
620
+ "options": {
621
+ "model": "VideoType"
622
+ }
623
+ },
624
+ "description": "Update VideoType",
625
+ "args": "UpdateArgs<VideoType>"
626
+ },
627
+ "createVideoType": {
628
+ "shape": "CreateResult<VideoType>",
629
+ "resolver": {
630
+ "name": "takeshape:create",
631
+ "service": "takeshape:local",
632
+ "options": {
633
+ "model": "VideoType"
634
+ }
635
+ },
636
+ "description": "Create VideoType",
637
+ "args": "CreateArgs<VideoType>"
638
+ },
639
+ "duplicateVideoType": {
640
+ "shape": "DuplicateResult<VideoType>",
641
+ "resolver": {
642
+ "name": "takeshape:duplicate",
643
+ "service": "takeshape:local",
644
+ "options": {
645
+ "model": "VideoType"
646
+ }
647
+ },
648
+ "description": "Duplicate VideoType",
649
+ "args": "DuplicateArgs<VideoType>"
650
+ },
651
+ "deleteVideoType": {
652
+ "shape": "DeleteResult<VideoType>",
653
+ "resolver": {
654
+ "name": "takeshape:delete",
655
+ "service": "takeshape:local",
656
+ "options": {
657
+ "model": "VideoType"
658
+ }
659
+ },
660
+ "description": "Delete VideoType",
661
+ "args": "DeleteArgs<VideoType>"
662
+ },
663
+ "updateCategory": {
664
+ "shape": "UpdateResult<Category>",
665
+ "resolver": {
666
+ "name": "takeshape:update",
667
+ "service": "takeshape:local",
668
+ "options": {
669
+ "model": "Category"
670
+ }
671
+ },
672
+ "description": "Update Category",
673
+ "args": "UpdateArgs<Category>"
674
+ },
675
+ "createCategory": {
676
+ "shape": "CreateResult<Category>",
677
+ "resolver": {
678
+ "name": "takeshape:create",
679
+ "service": "takeshape:local",
680
+ "options": {
681
+ "model": "Category"
682
+ }
683
+ },
684
+ "description": "Create Category",
685
+ "args": "CreateArgs<Category>"
686
+ },
687
+ "duplicateCategory": {
688
+ "shape": "DuplicateResult<Category>",
689
+ "resolver": {
690
+ "name": "takeshape:duplicate",
691
+ "service": "takeshape:local",
692
+ "options": {
693
+ "model": "Category"
694
+ }
695
+ },
696
+ "description": "Duplicate Category",
697
+ "args": "DuplicateArgs<Category>"
698
+ },
699
+ "deleteCategory": {
700
+ "shape": "DeleteResult<Category>",
701
+ "resolver": {
702
+ "name": "takeshape:delete",
703
+ "service": "takeshape:local",
704
+ "options": {
705
+ "model": "Category"
706
+ }
707
+ },
708
+ "description": "Delete Category",
709
+ "args": "DeleteArgs<Category>"
710
+ },
711
+ "updateCollateralType": {
712
+ "shape": "UpdateResult<CollateralType>",
713
+ "resolver": {
714
+ "name": "takeshape:update",
715
+ "service": "takeshape:local",
716
+ "options": {
717
+ "model": "CollateralType"
718
+ }
719
+ },
720
+ "description": "Update CollateralType",
721
+ "args": "UpdateArgs<CollateralType>"
722
+ },
723
+ "createCollateralType": {
724
+ "shape": "CreateResult<CollateralType>",
725
+ "resolver": {
726
+ "name": "takeshape:create",
727
+ "service": "takeshape:local",
728
+ "options": {
729
+ "model": "CollateralType"
730
+ }
731
+ },
732
+ "description": "Create CollateralType",
733
+ "args": "CreateArgs<CollateralType>"
734
+ },
735
+ "duplicateCollateralType": {
736
+ "shape": "DuplicateResult<CollateralType>",
737
+ "resolver": {
738
+ "name": "takeshape:duplicate",
739
+ "service": "takeshape:local",
740
+ "options": {
741
+ "model": "CollateralType"
742
+ }
743
+ },
744
+ "description": "Duplicate CollateralType",
745
+ "args": "DuplicateArgs<CollateralType>"
746
+ },
747
+ "deleteCollateralType": {
748
+ "shape": "DeleteResult<CollateralType>",
749
+ "resolver": {
750
+ "name": "takeshape:delete",
751
+ "service": "takeshape:local",
752
+ "options": {
753
+ "model": "CollateralType"
754
+ }
755
+ },
756
+ "description": "Delete CollateralType",
757
+ "args": "DeleteArgs<CollateralType>"
758
+ },
759
+ "updateExternalAppCategory": {
760
+ "shape": "UpdateResult<ExternalAppCategory>",
761
+ "resolver": {
762
+ "name": "takeshape:update",
763
+ "service": "takeshape:local",
764
+ "options": {
765
+ "model": "ExternalAppCategory"
766
+ }
767
+ },
768
+ "description": "Update ExternalAppCategory",
769
+ "args": "UpdateArgs<ExternalAppCategory>"
770
+ },
771
+ "createExternalAppCategory": {
772
+ "shape": "CreateResult<ExternalAppCategory>",
773
+ "resolver": {
774
+ "name": "takeshape:create",
775
+ "service": "takeshape:local",
776
+ "options": {
777
+ "model": "ExternalAppCategory"
778
+ }
779
+ },
780
+ "description": "Create ExternalAppCategory",
781
+ "args": "CreateArgs<ExternalAppCategory>"
782
+ },
783
+ "duplicateExternalAppCategory": {
784
+ "shape": "DuplicateResult<ExternalAppCategory>",
785
+ "resolver": {
786
+ "name": "takeshape:duplicate",
787
+ "service": "takeshape:local",
788
+ "options": {
789
+ "model": "ExternalAppCategory"
790
+ }
791
+ },
792
+ "description": "Duplicate ExternalAppCategory",
793
+ "args": "DuplicateArgs<ExternalAppCategory>"
794
+ },
795
+ "deleteExternalAppCategory": {
796
+ "shape": "DeleteResult<ExternalAppCategory>",
797
+ "resolver": {
798
+ "name": "takeshape:delete",
799
+ "service": "takeshape:local",
800
+ "options": {
801
+ "model": "ExternalAppCategory"
802
+ }
803
+ },
804
+ "description": "Delete ExternalAppCategory",
805
+ "args": "DeleteArgs<ExternalAppCategory>"
806
+ },
807
+ "updateVendor": {
808
+ "shape": "UpdateResult<Vendor>",
809
+ "resolver": {
810
+ "name": "takeshape:update",
811
+ "service": "takeshape:local",
812
+ "options": {
813
+ "model": "Vendor"
814
+ }
815
+ },
816
+ "description": "Update Vendor",
817
+ "args": "UpdateArgs<Vendor>"
818
+ },
819
+ "createVendor": {
820
+ "shape": "CreateResult<Vendor>",
821
+ "resolver": {
822
+ "name": "takeshape:create",
823
+ "service": "takeshape:local",
824
+ "options": {
825
+ "model": "Vendor"
826
+ }
827
+ },
828
+ "description": "Create Vendor",
829
+ "args": "CreateArgs<Vendor>"
830
+ },
831
+ "duplicateVendor": {
832
+ "shape": "DuplicateResult<Vendor>",
833
+ "resolver": {
834
+ "name": "takeshape:duplicate",
835
+ "service": "takeshape:local",
836
+ "options": {
837
+ "model": "Vendor"
838
+ }
839
+ },
840
+ "description": "Duplicate Vendor",
841
+ "args": "DuplicateArgs<Vendor>"
842
+ },
843
+ "deleteVendor": {
844
+ "shape": "DeleteResult<Vendor>",
845
+ "resolver": {
846
+ "name": "takeshape:delete",
847
+ "service": "takeshape:local",
848
+ "options": {
849
+ "model": "Vendor"
850
+ }
851
+ },
852
+ "description": "Delete Vendor",
853
+ "args": "DeleteArgs<Vendor>"
854
+ },
855
+ "updateSolutionRevision": {
856
+ "shape": "UpdateResult<SolutionRevision>",
857
+ "resolver": {
858
+ "name": "takeshape:update",
859
+ "service": "takeshape:local",
860
+ "options": {
861
+ "model": "SolutionRevision"
862
+ }
863
+ },
864
+ "description": "Update SolutionRevision",
865
+ "args": "UpdateArgs<SolutionRevision>"
866
+ },
867
+ "createSolutionRevision": {
868
+ "shape": "CreateResult<SolutionRevision>",
869
+ "resolver": {
870
+ "name": "takeshape:create",
871
+ "service": "takeshape:local",
872
+ "options": {
873
+ "model": "SolutionRevision"
874
+ }
875
+ },
876
+ "description": "Create SolutionRevision",
877
+ "args": "CreateArgs<SolutionRevision>"
878
+ },
879
+ "duplicateSolutionRevision": {
880
+ "shape": "DuplicateResult<SolutionRevision>",
881
+ "resolver": {
882
+ "name": "takeshape:duplicate",
883
+ "service": "takeshape:local",
884
+ "options": {
885
+ "model": "SolutionRevision"
886
+ }
887
+ },
888
+ "description": "Duplicate SolutionRevision",
889
+ "args": "DuplicateArgs<SolutionRevision>"
890
+ },
891
+ "deleteSolutionRevision": {
892
+ "shape": "DeleteResult<SolutionRevision>",
893
+ "resolver": {
894
+ "name": "takeshape:delete",
895
+ "service": "takeshape:local",
896
+ "options": {
897
+ "model": "SolutionRevision"
898
+ }
899
+ },
900
+ "description": "Delete SolutionRevision",
901
+ "args": "DeleteArgs<SolutionRevision>"
902
+ },
903
+ "updatePracticeArea": {
904
+ "shape": "UpdateResult<PracticeArea>",
905
+ "resolver": {
906
+ "name": "takeshape:update",
907
+ "service": "takeshape:local",
908
+ "options": {
909
+ "model": "PracticeArea"
910
+ }
911
+ },
912
+ "description": "Update PracticeArea",
913
+ "args": "UpdateArgs<PracticeArea>"
914
+ },
915
+ "createPracticeArea": {
916
+ "shape": "CreateResult<PracticeArea>",
917
+ "resolver": {
918
+ "name": "takeshape:create",
919
+ "service": "takeshape:local",
920
+ "options": {
921
+ "model": "PracticeArea"
922
+ }
923
+ },
924
+ "description": "Create PracticeArea",
925
+ "args": "CreateArgs<PracticeArea>"
926
+ },
927
+ "duplicatePracticeArea": {
928
+ "shape": "DuplicateResult<PracticeArea>",
929
+ "resolver": {
930
+ "name": "takeshape:duplicate",
931
+ "service": "takeshape:local",
932
+ "options": {
933
+ "model": "PracticeArea"
934
+ }
935
+ },
936
+ "description": "Duplicate PracticeArea",
937
+ "args": "DuplicateArgs<PracticeArea>"
938
+ },
939
+ "deletePracticeArea": {
940
+ "shape": "DeleteResult<PracticeArea>",
941
+ "resolver": {
942
+ "name": "takeshape:delete",
943
+ "service": "takeshape:local",
944
+ "options": {
945
+ "model": "PracticeArea"
946
+ }
947
+ },
948
+ "description": "Delete PracticeArea",
949
+ "args": "DeleteArgs<PracticeArea>"
950
+ },
951
+ "updateImageType": {
952
+ "shape": "UpdateResult<ImageType>",
953
+ "resolver": {
954
+ "name": "takeshape:update",
955
+ "service": "takeshape:local",
956
+ "options": {
957
+ "model": "ImageType"
958
+ }
959
+ },
960
+ "description": "Update ImageType",
961
+ "args": "UpdateArgs<ImageType>"
962
+ },
963
+ "createImageType": {
964
+ "shape": "CreateResult<ImageType>",
965
+ "resolver": {
966
+ "name": "takeshape:create",
967
+ "service": "takeshape:local",
968
+ "options": {
969
+ "model": "ImageType"
970
+ }
971
+ },
972
+ "description": "Create ImageType",
973
+ "args": "CreateArgs<ImageType>"
974
+ },
975
+ "duplicateImageType": {
976
+ "shape": "DuplicateResult<ImageType>",
977
+ "resolver": {
978
+ "name": "takeshape:duplicate",
979
+ "service": "takeshape:local",
980
+ "options": {
981
+ "model": "ImageType"
982
+ }
983
+ },
984
+ "description": "Duplicate ImageType",
985
+ "args": "DuplicateArgs<ImageType>"
986
+ },
987
+ "deleteImageType": {
988
+ "shape": "DeleteResult<ImageType>",
989
+ "resolver": {
990
+ "name": "takeshape:delete",
991
+ "service": "takeshape:local",
992
+ "options": {
993
+ "model": "ImageType"
994
+ }
995
+ },
996
+ "description": "Delete ImageType",
997
+ "args": "DeleteArgs<ImageType>"
998
+ },
999
+ "updateTechnology": {
1000
+ "shape": "UpdateResult<Technology>",
1001
+ "resolver": {
1002
+ "name": "takeshape:update",
1003
+ "service": "takeshape:local",
1004
+ "options": {
1005
+ "model": "Technology"
1006
+ }
1007
+ },
1008
+ "description": "Update Technology",
1009
+ "args": "UpdateArgs<Technology>"
1010
+ },
1011
+ "createTechnology": {
1012
+ "shape": "CreateResult<Technology>",
1013
+ "resolver": {
1014
+ "name": "takeshape:create",
1015
+ "service": "takeshape:local",
1016
+ "options": {
1017
+ "model": "Technology"
1018
+ }
1019
+ },
1020
+ "description": "Create Technology",
1021
+ "args": "CreateArgs<Technology>"
1022
+ },
1023
+ "duplicateTechnology": {
1024
+ "shape": "DuplicateResult<Technology>",
1025
+ "resolver": {
1026
+ "name": "takeshape:duplicate",
1027
+ "service": "takeshape:local",
1028
+ "options": {
1029
+ "model": "Technology"
1030
+ }
1031
+ },
1032
+ "description": "Duplicate Technology",
1033
+ "args": "DuplicateArgs<Technology>"
1034
+ },
1035
+ "deleteTechnology": {
1036
+ "shape": "DeleteResult<Technology>",
1037
+ "resolver": {
1038
+ "name": "takeshape:delete",
1039
+ "service": "takeshape:local",
1040
+ "options": {
1041
+ "model": "Technology"
1042
+ }
1043
+ },
1044
+ "description": "Delete Technology",
1045
+ "args": "DeleteArgs<Technology>"
1046
+ },
1047
+ "updateSolution": {
1048
+ "shape": "UpdateResult<Solution>",
1049
+ "resolver": {
1050
+ "name": "takeshape:update",
1051
+ "service": "takeshape:local",
1052
+ "options": {
1053
+ "model": "Solution"
1054
+ }
1055
+ },
1056
+ "description": "Update Solution",
1057
+ "args": "UpdateArgs<Solution>"
1058
+ },
1059
+ "createSolution": {
1060
+ "shape": "CreateResult<Solution>",
1061
+ "resolver": {
1062
+ "name": "takeshape:create",
1063
+ "service": "takeshape:local",
1064
+ "options": {
1065
+ "model": "Solution"
1066
+ }
1067
+ },
1068
+ "description": "Create Solution",
1069
+ "args": "CreateArgs<Solution>"
1070
+ },
1071
+ "duplicateSolution": {
1072
+ "shape": "DuplicateResult<Solution>",
1073
+ "resolver": {
1074
+ "name": "takeshape:duplicate",
1075
+ "service": "takeshape:local",
1076
+ "options": {
1077
+ "model": "Solution"
1078
+ }
1079
+ },
1080
+ "description": "Duplicate Solution",
1081
+ "args": "DuplicateArgs<Solution>"
1082
+ },
1083
+ "deleteSolution": {
1084
+ "shape": "DeleteResult<Solution>",
1085
+ "resolver": {
1086
+ "name": "takeshape:delete",
1087
+ "service": "takeshape:local",
1088
+ "options": {
1089
+ "model": "Solution"
1090
+ }
1091
+ },
1092
+ "description": "Delete Solution",
1093
+ "args": "DeleteArgs<Solution>"
1094
+ }
1095
+ },
1096
+ "schemaVersion": "3.5.1",
1097
+ "created": "2019-05-08T11:35:24.053Z",
1098
+ "updated": "2019-05-09T21:54:37.425Z",
1099
+ "shapes": {
1100
+ "Purpose": {
1101
+ "id": "B1ESWSe2V",
1102
+ "name": "Purpose",
1103
+ "title": "Purpose",
1104
+ "model": {
1105
+ "type": "taxonomy"
1106
+ },
1107
+ "schema": {
1108
+ "type": "object",
1109
+ "properties": {
1110
+ "description": {
1111
+ "type": "string",
1112
+ "title": "Description",
1113
+ "minLength": 0,
1114
+ "@mapping": "takeshape:local:Purpose.SyhVZrx24"
1115
+ },
1116
+ "name": {
1117
+ "type": "string",
1118
+ "title": "Name",
1119
+ "minLength": 1,
1120
+ "@mapping": "takeshape:local:Purpose.HyvVZBenE"
1121
+ }
1122
+ },
1123
+ "required": [
1124
+ "name"
1125
+ ]
1126
+ }
1127
+ },
1128
+ "MatterType": {
1129
+ "id": "B1IgZrxhE",
1130
+ "name": "MatterType",
1131
+ "title": "Matter Type",
1132
+ "model": {
1133
+ "type": "taxonomy"
1134
+ },
1135
+ "schema": {
1136
+ "type": "object",
1137
+ "properties": {
1138
+ "description": {
1139
+ "type": "string",
1140
+ "title": "Description",
1141
+ "minLength": 0,
1142
+ "@mapping": "takeshape:local:MatterType.HypkbSxnE"
1143
+ },
1144
+ "name": {
1145
+ "type": "string",
1146
+ "title": "Name",
1147
+ "minLength": 1,
1148
+ "@mapping": "takeshape:local:MatterType.SJvyZSlhV"
1149
+ }
1150
+ },
1151
+ "required": [
1152
+ "name"
1153
+ ]
1154
+ }
1155
+ },
1156
+ "SolutionRevision2": {
1157
+ "id": "BJSiWXGhE",
1158
+ "name": "SolutionRevision2",
1159
+ "title": "Solution Revision 2",
1160
+ "model": {
1161
+ "type": "multiple"
1162
+ },
1163
+ "schema": {
1164
+ "type": "object",
1165
+ "properties": {
1166
+ "revisionId": {
1167
+ "type": "string",
1168
+ "title": "Revision ID",
1169
+ "minLength": 1,
1170
+ "@mapping": "takeshape:local:SolutionRevision2.ByrQbXz24"
1171
+ },
1172
+ "tagLine": {
1173
+ "type": "string",
1174
+ "title": "Tag Line",
1175
+ "minLength": 0,
1176
+ "@mapping": "takeshape:local:SolutionRevision2.B1BdWmzhE"
1177
+ },
1178
+ "vendor": {
1179
+ "title": "Vendor",
1180
+ "@mapping": "takeshape:local:SolutionRevision2.rkftWQGhN",
1181
+ "$ref": "#/shapes/TSRelationship/schema",
1182
+ "@relationship": {
1183
+ "shapeIds": [
1184
+ "HkUQVLg3N"
1185
+ ],
1186
+ "type": "single"
1187
+ }
1188
+ }
1189
+ },
1190
+ "required": [
1191
+ "revisionId"
1192
+ ]
1193
+ }
1194
+ },
1195
+ "SolutionRevision1": {
1196
+ "id": "BkGl0zz3E",
1197
+ "name": "SolutionRevision1",
1198
+ "title": "Solution Revision 1",
1199
+ "model": {
1200
+ "type": "multiple"
1201
+ },
1202
+ "schema": {
1203
+ "type": "object",
1204
+ "properties": {
1205
+ "categories": {
1206
+ "title": "Categories",
1207
+ "@mapping": "takeshape:local:SolutionRevision1.BybC8zznE",
1208
+ "type": "array",
1209
+ "items": {
1210
+ "$ref": "#/shapes/TSRelationship/schema"
1211
+ },
1212
+ "@relationship": {
1213
+ "shapeIds": [
1214
+ "HJbagBg2E"
1215
+ ],
1216
+ "type": "multiple"
1217
+ }
1218
+ },
1219
+ "collaterals": {
1220
+ "type": "array",
1221
+ "title": "Collaterals",
1222
+ "items": {
1223
+ "$ref": "#/shapes/SolutionRevision1Collaterals/schema"
1224
+ },
1225
+ "@mapping": "takeshape:local:SolutionRevision1.SkCfKGz3E"
1226
+ },
1227
+ "customers": {
1228
+ "type": "array",
1229
+ "title": "Customers",
1230
+ "items": {
1231
+ "$ref": "#/shapes/SolutionRevision1Customers/schema"
1232
+ },
1233
+ "@mapping": "takeshape:local:SolutionRevision1.rJ1JazGnE"
1234
+ },
1235
+ "featured": {
1236
+ "type": "boolean",
1237
+ "default": false,
1238
+ "title": "Featured",
1239
+ "@l10n": false,
1240
+ "@mapping": "takeshape:local:SolutionRevision1.BJLluzznN"
1241
+ },
1242
+ "features": {
1243
+ "type": "array",
1244
+ "title": "Features",
1245
+ "items": {
1246
+ "$ref": "#/shapes/SolutionRevision1Features/schema"
1247
+ },
1248
+ "@mapping": "takeshape:local:SolutionRevision1.ryz7dff3N"
1249
+ },
1250
+ "images": {
1251
+ "type": "array",
1252
+ "title": "Images",
1253
+ "items": {
1254
+ "$ref": "#/shapes/SolutionRevision1Images/schema"
1255
+ },
1256
+ "@mapping": "takeshape:local:SolutionRevision1.rJPI_GznE"
1257
+ },
1258
+ "infrastructureRequirements": {
1259
+ "title": "Infrastructure Requirements",
1260
+ "@mapping": "takeshape:local:SolutionRevision1.HJDU2MM3E",
1261
+ "$ref": "#/shapes/SolutionRevision1InfrastructureRequirements/schema"
1262
+ },
1263
+ "matterTypes": {
1264
+ "title": "Matter Types",
1265
+ "@mapping": "takeshape:local:SolutionRevision1.r1VGwfz2N",
1266
+ "type": "array",
1267
+ "items": {
1268
+ "$ref": "#/shapes/TSRelationship/schema"
1269
+ },
1270
+ "@relationship": {
1271
+ "shapeIds": [
1272
+ "B1IgZrxhE"
1273
+ ],
1274
+ "type": "multiple"
1275
+ }
1276
+ },
1277
+ "onPlatformPurchase": {
1278
+ "type": "boolean",
1279
+ "default": false,
1280
+ "title": "On Platform Purchase",
1281
+ "@l10n": false,
1282
+ "@mapping": "takeshape:local:SolutionRevision1.rJxWdGMnN"
1283
+ },
1284
+ "overview": {
1285
+ "type": "string",
1286
+ "title": "Overview",
1287
+ "minLength": 0,
1288
+ "@mapping": "takeshape:local:SolutionRevision1.SJ5V1mz3N"
1289
+ },
1290
+ "pilot": {
1291
+ "type": "boolean",
1292
+ "default": false,
1293
+ "title": "Pilot",
1294
+ "@l10n": false,
1295
+ "@mapping": "takeshape:local:SolutionRevision1.S12yOzG34"
1296
+ },
1297
+ "practiceAreas": {
1298
+ "title": "Practice Areas",
1299
+ "@mapping": "takeshape:local:SolutionRevision1.BJk4wfMhN",
1300
+ "type": "array",
1301
+ "items": {
1302
+ "$ref": "#/shapes/TSRelationship/schema"
1303
+ },
1304
+ "@relationship": {
1305
+ "shapeIds": [
1306
+ "r1nGZrx3E"
1307
+ ],
1308
+ "type": "multiple"
1309
+ }
1310
+ },
1311
+ "purpose": {
1312
+ "title": "Purpose",
1313
+ "@mapping": "takeshape:local:SolutionRevision1.BkuLwzzh4",
1314
+ "type": "array",
1315
+ "items": {
1316
+ "$ref": "#/shapes/TSRelationship/schema"
1317
+ },
1318
+ "@relationship": {
1319
+ "shapeIds": [
1320
+ "B1ESWSe2V"
1321
+ ],
1322
+ "type": "multiple"
1323
+ }
1324
+ },
1325
+ "revisionId": {
1326
+ "type": "string",
1327
+ "title": "Revision ID",
1328
+ "minLength": 1,
1329
+ "@mapping": "takeshape:local:SolutionRevision1.BJXOLzf24"
1330
+ },
1331
+ "saaSBusiness": {
1332
+ "title": "SaaS Business",
1333
+ "@mapping": "takeshape:local:SolutionRevision1.B1IzhfG2N",
1334
+ "$ref": "#/shapes/SolutionRevision1SaaSBusiness/schema"
1335
+ },
1336
+ "softwarePrerequisites": {
1337
+ "type": "string",
1338
+ "title": "Software Prerequisites",
1339
+ "minLength": 0,
1340
+ "@mapping": "takeshape:local:SolutionRevision1.H1WvtMfn4"
1341
+ },
1342
+ "tagLine": {
1343
+ "type": "string",
1344
+ "title": "Tag Line",
1345
+ "minLength": 0,
1346
+ "@mapping": "takeshape:local:SolutionRevision1.HJdYUzG2V"
1347
+ },
1348
+ "technologies": {
1349
+ "title": "Technologies",
1350
+ "@mapping": "takeshape:local:SolutionRevision1.HkvuPfGhV",
1351
+ "type": "array",
1352
+ "items": {
1353
+ "$ref": "#/shapes/TSRelationship/schema"
1354
+ },
1355
+ "@relationship": {
1356
+ "shapeIds": [
1357
+ "S1x_-He34"
1358
+ ],
1359
+ "type": "multiple"
1360
+ }
1361
+ },
1362
+ "tenancy": {
1363
+ "title": "Tenancy",
1364
+ "@mapping": "takeshape:local:SolutionRevision1.H1DYtMGhV",
1365
+ "$ref": "#/shapes/SolutionRevision1Tenancy/schema"
1366
+ },
1367
+ "testDrive": {
1368
+ "type": "boolean",
1369
+ "default": false,
1370
+ "title": "Test Drive",
1371
+ "@l10n": false,
1372
+ "@mapping": "takeshape:local:SolutionRevision1.SkK0wff3V"
1373
+ },
1374
+ "vendor": {
1375
+ "title": "Vendor",
1376
+ "@mapping": "takeshape:local:SolutionRevision1.S1riIMM3E",
1377
+ "$ref": "#/shapes/TSRelationship/schema",
1378
+ "@relationship": {
1379
+ "shapeIds": [
1380
+ "HkUQVLg3N"
1381
+ ],
1382
+ "type": "single"
1383
+ }
1384
+ },
1385
+ "videos": {
1386
+ "type": "array",
1387
+ "title": "Videos",
1388
+ "items": {
1389
+ "$ref": "#/shapes/SolutionRevision1Videos/schema"
1390
+ },
1391
+ "@mapping": "takeshape:local:SolutionRevision1.HJN0_fz3N"
1392
+ },
1393
+ "webServicePrerequisites": {
1394
+ "type": "string",
1395
+ "title": "Web Service Prerequisites",
1396
+ "minLength": 0,
1397
+ "@mapping": "takeshape:local:SolutionRevision1.ryHdYzznV"
1398
+ },
1399
+ "worksWith": {
1400
+ "title": "Works With",
1401
+ "@mapping": "takeshape:local:SolutionRevision1.rJck9Gzh4",
1402
+ "$ref": "#/shapes/SolutionRevision1WorksWith/schema"
1403
+ }
1404
+ },
1405
+ "required": [
1406
+ "revisionId"
1407
+ ]
1408
+ }
1409
+ },
1410
+ "SolutionRevision1Collaterals": {
1411
+ "id": "SkCfKGz3E",
1412
+ "name": "SolutionRevision1Collaterals",
1413
+ "title": "Solution Revision 1 Collaterals",
1414
+ "schema": {
1415
+ "type": "object",
1416
+ "properties": {
1417
+ "collateral": {
1418
+ "title": "Collateral",
1419
+ "@mapping": "takeshape:local:SolutionRevision1Collaterals.r1a-tGM3V",
1420
+ "$ref": "#/shapes/TSRelationship/schema",
1421
+ "@relationship": {
1422
+ "shapeIds": [
1423
+ "HkDVKSg3E"
1424
+ ],
1425
+ "type": "single"
1426
+ }
1427
+ },
1428
+ "collateralType": {
1429
+ "title": "Collateral Type",
1430
+ "@mapping": "takeshape:local:SolutionRevision1Collaterals.ByO4KffhV",
1431
+ "$ref": "#/shapes/TSRelationship/schema",
1432
+ "@relationship": {
1433
+ "shapeIds": [
1434
+ "HkDVKSg3E"
1435
+ ],
1436
+ "type": "single"
1437
+ }
1438
+ }
1439
+ }
1440
+ }
1441
+ },
1442
+ "SolutionRevision1Customers": {
1443
+ "id": "rJ1JazGnE",
1444
+ "name": "SolutionRevision1Customers",
1445
+ "title": "Solution Revision 1 Customers",
1446
+ "schema": {
1447
+ "type": "object",
1448
+ "properties": {
1449
+ "name": {
1450
+ "type": "string",
1451
+ "title": "Name",
1452
+ "minLength": 0,
1453
+ "@mapping": "takeshape:local:SolutionRevision1Customers.rknkazz2E"
1454
+ },
1455
+ "url": {
1456
+ "type": "string",
1457
+ "title": "URL",
1458
+ "minLength": 0,
1459
+ "@mapping": "takeshape:local:SolutionRevision1Customers.rJhxTfz3E"
1460
+ }
1461
+ }
1462
+ }
1463
+ },
1464
+ "SolutionRevision1Features": {
1465
+ "id": "ryz7dff3N",
1466
+ "name": "SolutionRevision1Features",
1467
+ "title": "Solution Revision 1 Features",
1468
+ "schema": {
1469
+ "type": "object",
1470
+ "properties": {
1471
+ "description": {
1472
+ "type": "string",
1473
+ "title": "Description",
1474
+ "minLength": 0,
1475
+ "@mapping": "takeshape:local:SolutionRevision1Features.BJXNufMhE"
1476
+ },
1477
+ "name": {
1478
+ "type": "string",
1479
+ "title": "Name",
1480
+ "minLength": 0,
1481
+ "@mapping": "takeshape:local:SolutionRevision1Features.ryl4dzM3E"
1482
+ }
1483
+ }
1484
+ }
1485
+ },
1486
+ "SolutionRevision1Images": {
1487
+ "id": "rJPI_GznE",
1488
+ "name": "SolutionRevision1Images",
1489
+ "title": "Solution Revision 1 Images",
1490
+ "schema": {
1491
+ "type": "object",
1492
+ "properties": {
1493
+ "image": {
1494
+ "title": "Image",
1495
+ "@mapping": "takeshape:local:SolutionRevision1Images.SJH9dzMnV",
1496
+ "$ref": "#/shapes/TSRelationship/schema",
1497
+ "@relationship": {
1498
+ "shapeIds": [
1499
+ "ASSET"
1500
+ ],
1501
+ "type": "single"
1502
+ }
1503
+ },
1504
+ "imageType": {
1505
+ "title": "Image Type",
1506
+ "@mapping": "takeshape:local:SolutionRevision1Images.Hyy2uMM24",
1507
+ "$ref": "#/shapes/TSRelationship/schema",
1508
+ "@relationship": {
1509
+ "shapeIds": [
1510
+ "rkOetrlhE"
1511
+ ],
1512
+ "type": "single"
1513
+ }
1514
+ }
1515
+ }
1516
+ }
1517
+ },
1518
+ "SolutionRevision1InfrastructureRequirementsNodes": {
1519
+ "id": "ryTRCMz3N",
1520
+ "name": "SolutionRevision1InfrastructureRequirementsNodes",
1521
+ "title": "Solution Revision 1 InfrastructureRequirements Nodes",
1522
+ "schema": {
1523
+ "type": "object",
1524
+ "properties": {
1525
+ "gpuModel": {
1526
+ "type": "string",
1527
+ "title": "GPU Model",
1528
+ "minLength": 0,
1529
+ "@mapping": "takeshape:local:SolutionRevision1InfrastructureRequirementsNodes.B1RphzGhN"
1530
+ },
1531
+ "gpuRequired": {
1532
+ "type": "boolean",
1533
+ "default": false,
1534
+ "title": "GPU Required",
1535
+ "@l10n": false,
1536
+ "@mapping": "takeshape:local:SolutionRevision1InfrastructureRequirementsNodes.SkcjnzGhN"
1537
+ },
1538
+ "ram": {
1539
+ "type": "integer",
1540
+ "title": "RAM",
1541
+ "description": "in GBs",
1542
+ "@l10n": false,
1543
+ "minimum": 0,
1544
+ "@mapping": "takeshape:local:SolutionRevision1InfrastructureRequirementsNodes.BJxF2fz24"
1545
+ },
1546
+ "storageSpace": {
1547
+ "type": "integer",
1548
+ "title": "Storage Space",
1549
+ "description": "in GBs",
1550
+ "@l10n": false,
1551
+ "minimum": 0,
1552
+ "@mapping": "takeshape:local:SolutionRevision1InfrastructureRequirementsNodes.H1w9nfz34"
1553
+ },
1554
+ "vcpUs": {
1555
+ "type": "integer",
1556
+ "title": "VCPUs",
1557
+ "@l10n": false,
1558
+ "minimum": 0,
1559
+ "@mapping": "takeshape:local:SolutionRevision1InfrastructureRequirementsNodes.HJ9PhGf2E"
1560
+ }
1561
+ }
1562
+ }
1563
+ },
1564
+ "SolutionRevision1InfrastructureRequirements": {
1565
+ "id": "HJDU2MM3E",
1566
+ "name": "SolutionRevision1InfrastructureRequirements",
1567
+ "title": "Solution Revision 1 InfrastructureRequirements",
1568
+ "schema": {
1569
+ "type": "object",
1570
+ "properties": {
1571
+ "nodes": {
1572
+ "type": "array",
1573
+ "title": "Nodes",
1574
+ "items": {
1575
+ "$ref": "#/shapes/SolutionRevision1InfrastructureRequirementsNodes/schema"
1576
+ },
1577
+ "@mapping": "takeshape:local:SolutionRevision1InfrastructureRequirements.ryTRCMz3N"
1578
+ },
1579
+ "typicalUsageScenario": {
1580
+ "type": "string",
1581
+ "title": "Typical Usage Scenario",
1582
+ "minLength": 0,
1583
+ "@mapping": "takeshape:local:SolutionRevision1InfrastructureRequirements.S1JlkQz3N"
1584
+ }
1585
+ }
1586
+ }
1587
+ },
1588
+ "SolutionRevision1SaaSBusiness": {
1589
+ "id": "B1IzhfG2N",
1590
+ "name": "SolutionRevision1SaaSBusiness",
1591
+ "title": "Solution Revision 1 SaaSBusiness",
1592
+ "schema": {
1593
+ "type": "object",
1594
+ "properties": {
1595
+ "hosting": {
1596
+ "type": "array",
1597
+ "title": "Hosting",
1598
+ "items": {
1599
+ "type": "string",
1600
+ "oneOf": [
1601
+ {
1602
+ "enum": [
1603
+ "AWS"
1604
+ ],
1605
+ "title": "AWS"
1606
+ },
1607
+ {
1608
+ "enum": [
1609
+ "Azure"
1610
+ ],
1611
+ "title": "Azure"
1612
+ },
1613
+ {
1614
+ "enum": [
1615
+ "GCP"
1616
+ ],
1617
+ "title": "GCP"
1618
+ },
1619
+ {
1620
+ "enum": [
1621
+ "Own Infrastructure"
1622
+ ],
1623
+ "title": "Own Infrastructure"
1624
+ }
1625
+ ]
1626
+ },
1627
+ "@mapping": "takeshape:local:SolutionRevision1SaaSBusiness.SyeN3fMhE"
1628
+ },
1629
+ "saaS": {
1630
+ "type": "boolean",
1631
+ "default": false,
1632
+ "title": "SaaS",
1633
+ "@l10n": false,
1634
+ "@mapping": "takeshape:local:SolutionRevision1SaaSBusiness.BkP7nGfh4"
1635
+ }
1636
+ }
1637
+ }
1638
+ },
1639
+ "SolutionRevision1Tenancy": {
1640
+ "id": "H1DYtMGhV",
1641
+ "name": "SolutionRevision1Tenancy",
1642
+ "title": "Solution Revision 1 Tenancy",
1643
+ "schema": {
1644
+ "type": "object",
1645
+ "properties": {
1646
+ "tenancyDescription": {
1647
+ "type": "string",
1648
+ "title": "Tenancy Description",
1649
+ "minLength": 0,
1650
+ "@mapping": "takeshape:local:SolutionRevision1Tenancy.BkrRKfGhE"
1651
+ },
1652
+ "tenancyType": {
1653
+ "type": "string",
1654
+ "title": "Tenancy Type",
1655
+ "oneOf": [
1656
+ {
1657
+ "enum": [
1658
+ "singleTenant"
1659
+ ],
1660
+ "title": "Single Tenant"
1661
+ },
1662
+ {
1663
+ "enum": [
1664
+ "multiTenant"
1665
+ ],
1666
+ "title": "Multi Tenant"
1667
+ }
1668
+ ],
1669
+ "@mapping": "takeshape:local:SolutionRevision1Tenancy.BJToKfMhN"
1670
+ }
1671
+ }
1672
+ }
1673
+ },
1674
+ "SolutionRevision1Videos": {
1675
+ "id": "HJN0_fz3N",
1676
+ "name": "SolutionRevision1Videos",
1677
+ "title": "Solution Revision 1 Videos",
1678
+ "schema": {
1679
+ "type": "object",
1680
+ "properties": {
1681
+ "video": {
1682
+ "title": "Video",
1683
+ "@mapping": "takeshape:local:SolutionRevision1Videos.HJ6AdGz2V",
1684
+ "$ref": "#/shapes/TSRelationship/schema",
1685
+ "@relationship": {
1686
+ "shapeIds": [
1687
+ "ASSET"
1688
+ ],
1689
+ "type": "single"
1690
+ }
1691
+ },
1692
+ "videoType": {
1693
+ "title": "Video Type",
1694
+ "@mapping": "takeshape:local:SolutionRevision1Videos.BJF1tGMnN",
1695
+ "$ref": "#/shapes/TSRelationship/schema",
1696
+ "@relationship": {
1697
+ "shapeIds": [
1698
+ "HJ4zKBghV"
1699
+ ],
1700
+ "type": "single"
1701
+ }
1702
+ }
1703
+ }
1704
+ }
1705
+ },
1706
+ "SolutionRevision1WorksWithContainerization": {
1707
+ "id": "S1TriGf2E",
1708
+ "name": "SolutionRevision1WorksWithContainerization",
1709
+ "title": "Solution Revision 1 WorksWith Containerization",
1710
+ "schema": {
1711
+ "type": "object",
1712
+ "properties": {
1713
+ "containerizationType": {
1714
+ "type": "string",
1715
+ "title": "Containerization Type",
1716
+ "oneOf": [
1717
+ {
1718
+ "enum": [
1719
+ "anywhere"
1720
+ ],
1721
+ "title": "Anywhere"
1722
+ },
1723
+ {
1724
+ "enum": [
1725
+ "awsOnly"
1726
+ ],
1727
+ "title": "AWS only"
1728
+ },
1729
+ {
1730
+ "enum": [
1731
+ "azureOnly"
1732
+ ],
1733
+ "title": "Azure Only"
1734
+ },
1735
+ {
1736
+ "enum": [
1737
+ "gcpOnly"
1738
+ ],
1739
+ "title": "GCP Only"
1740
+ }
1741
+ ],
1742
+ "@mapping": "takeshape:local:SolutionRevision1WorksWithContainerization.SyLusGf34"
1743
+ },
1744
+ "containerized": {
1745
+ "type": "boolean",
1746
+ "default": false,
1747
+ "title": "Containerized",
1748
+ "@l10n": false,
1749
+ "@mapping": "takeshape:local:SolutionRevision1WorksWithContainerization.H1aUoGz2V"
1750
+ }
1751
+ }
1752
+ }
1753
+ },
1754
+ "SolutionRevision1WorksWithCspTemplates": {
1755
+ "id": "HJNhsGz2N",
1756
+ "name": "SolutionRevision1WorksWithCspTemplates",
1757
+ "title": "Solution Revision 1 WorksWith CspTemplates",
1758
+ "schema": {
1759
+ "type": "object",
1760
+ "properties": {
1761
+ "templateTypes": {
1762
+ "type": "array",
1763
+ "title": "Template Types",
1764
+ "items": {
1765
+ "type": "string",
1766
+ "oneOf": [
1767
+ {
1768
+ "enum": [
1769
+ "AWS"
1770
+ ],
1771
+ "title": "AWS"
1772
+ },
1773
+ {
1774
+ "enum": [
1775
+ "Azure"
1776
+ ],
1777
+ "title": "Azure"
1778
+ },
1779
+ {
1780
+ "enum": [
1781
+ "GCP"
1782
+ ],
1783
+ "title": "GCP"
1784
+ },
1785
+ {
1786
+ "enum": [
1787
+ "Others"
1788
+ ],
1789
+ "title": "Others"
1790
+ }
1791
+ ]
1792
+ },
1793
+ "@mapping": "takeshape:local:SolutionRevision1WorksWithCspTemplates.ryTy2GM2V"
1794
+ },
1795
+ "templatized": {
1796
+ "type": "boolean",
1797
+ "default": false,
1798
+ "title": "Templatized",
1799
+ "@l10n": false,
1800
+ "@mapping": "takeshape:local:SolutionRevision1WorksWithCspTemplates.S1-0oMG3N"
1801
+ }
1802
+ }
1803
+ }
1804
+ },
1805
+ "SolutionRevision1WorksWithWorksWithExternalApps": {
1806
+ "id": "H1dbszGhV",
1807
+ "name": "SolutionRevision1WorksWithWorksWithExternalApps",
1808
+ "title": "Solution Revision 1 WorksWith WorksWithExternalApps",
1809
+ "schema": {
1810
+ "type": "object",
1811
+ "properties": {
1812
+ "externalApp": {
1813
+ "title": "External App",
1814
+ "@mapping": "takeshape:local:SolutionRevision1WorksWithWorksWithExternalApps.B1_zsfznN",
1815
+ "$ref": "#/shapes/TSRelationship/schema",
1816
+ "@relationship": {
1817
+ "shapeIds": [
1818
+ "BkrLZLe2E"
1819
+ ],
1820
+ "type": "single"
1821
+ }
1822
+ },
1823
+ "integrationDescription": {
1824
+ "type": "string",
1825
+ "title": "Integration Description",
1826
+ "minLength": 0,
1827
+ "@mapping": "takeshape:local:SolutionRevision1WorksWithWorksWithExternalApps.ByomjzG3E"
1828
+ }
1829
+ }
1830
+ }
1831
+ },
1832
+ "SolutionRevision1WorksWithWorksWithRcApps": {
1833
+ "id": "S1NgsfMhE",
1834
+ "name": "SolutionRevision1WorksWithWorksWithRcApps",
1835
+ "title": "Solution Revision 1 WorksWith WorksWithRcApps",
1836
+ "schema": {
1837
+ "type": "object",
1838
+ "properties": {
1839
+ "integrationDescription": {
1840
+ "type": "string",
1841
+ "title": "Integration Description",
1842
+ "minLength": 0,
1843
+ "@mapping": "takeshape:local:SolutionRevision1WorksWithWorksWithRcApps.Hkad9MM3V"
1844
+ },
1845
+ "rcApp": {
1846
+ "title": "RC App",
1847
+ "@mapping": "takeshape:local:SolutionRevision1WorksWithWorksWithRcApps.SJogqfMhE",
1848
+ "$ref": "#/shapes/TSRelationship/schema",
1849
+ "@relationship": {
1850
+ "shapeIds": [
1851
+ "Hy89GBg2V"
1852
+ ],
1853
+ "type": "single"
1854
+ }
1855
+ }
1856
+ }
1857
+ }
1858
+ },
1859
+ "SolutionRevision1WorksWith": {
1860
+ "id": "rJck9Gzh4",
1861
+ "name": "SolutionRevision1WorksWith",
1862
+ "title": "Solution Revision 1 WorksWith",
1863
+ "schema": {
1864
+ "type": "object",
1865
+ "properties": {
1866
+ "containerization": {
1867
+ "title": "Containerization",
1868
+ "@mapping": "takeshape:local:SolutionRevision1WorksWith.S1TriGf2E",
1869
+ "$ref": "#/shapes/SolutionRevision1WorksWithContainerization/schema"
1870
+ },
1871
+ "cspTemplates": {
1872
+ "title": "CSP Templates",
1873
+ "@mapping": "takeshape:local:SolutionRevision1WorksWith.HJNhsGz2N",
1874
+ "$ref": "#/shapes/SolutionRevision1WorksWithCspTemplates/schema"
1875
+ },
1876
+ "worksWithExternalApps": {
1877
+ "type": "array",
1878
+ "title": "Works With External Apps",
1879
+ "items": {
1880
+ "$ref": "#/shapes/SolutionRevision1WorksWithWorksWithExternalApps/schema"
1881
+ },
1882
+ "@mapping": "takeshape:local:SolutionRevision1WorksWith.H1dbszGhV"
1883
+ },
1884
+ "worksWithRcApps": {
1885
+ "type": "array",
1886
+ "title": "Works with RC Apps",
1887
+ "items": {
1888
+ "$ref": "#/shapes/SolutionRevision1WorksWithWorksWithRcApps/schema"
1889
+ },
1890
+ "@mapping": "takeshape:local:SolutionRevision1WorksWith.S1NgsfMhE"
1891
+ }
1892
+ }
1893
+ }
1894
+ },
1895
+ "ExternalProduct": {
1896
+ "id": "BkrLZLe2E",
1897
+ "name": "ExternalProduct",
1898
+ "title": "External Product",
1899
+ "model": {
1900
+ "type": "multiple"
1901
+ },
1902
+ "schema": {
1903
+ "type": "object",
1904
+ "properties": {
1905
+ "appCategory": {
1906
+ "title": "App Category",
1907
+ "minItems": 1,
1908
+ "@mapping": "takeshape:local:ExternalProduct.B1Iq8wehN",
1909
+ "type": "array",
1910
+ "items": {
1911
+ "$ref": "#/shapes/TSRelationship/schema"
1912
+ },
1913
+ "@relationship": {
1914
+ "shapeIds": [
1915
+ "HkgcIDx24"
1916
+ ],
1917
+ "type": "multiple"
1918
+ }
1919
+ },
1920
+ "description": {
1921
+ "type": "string",
1922
+ "title": "Description",
1923
+ "minLength": 1,
1924
+ "@mapping": "takeshape:local:ExternalProduct.BJAV-LxhE"
1925
+ },
1926
+ "logo": {
1927
+ "title": "Logo",
1928
+ "@mapping": "takeshape:local:ExternalProduct.HkOH-8eh4",
1929
+ "$ref": "#/shapes/TSRelationship/schema",
1930
+ "@relationship": {
1931
+ "shapeIds": [
1932
+ "ASSET"
1933
+ ],
1934
+ "type": "single"
1935
+ }
1936
+ },
1937
+ "name": {
1938
+ "type": "string",
1939
+ "title": "Name",
1940
+ "minLength": 1,
1941
+ "@mapping": "takeshape:local:ExternalProduct.SJX4WLg3V"
1942
+ }
1943
+ },
1944
+ "required": [
1945
+ "name",
1946
+ "description",
1947
+ "appCategory"
1948
+ ]
1949
+ }
1950
+ },
1951
+ "VideoType": {
1952
+ "id": "HJ4zKBghV",
1953
+ "name": "VideoType",
1954
+ "title": "Video Type",
1955
+ "model": {
1956
+ "type": "taxonomy"
1957
+ },
1958
+ "schema": {
1959
+ "type": "object",
1960
+ "properties": {
1961
+ "description": {
1962
+ "type": "string",
1963
+ "title": "Description",
1964
+ "minLength": 0,
1965
+ "@mapping": "takeshape:local:VideoType.Hy2ZYSg3N"
1966
+ },
1967
+ "name": {
1968
+ "type": "string",
1969
+ "title": "Name",
1970
+ "minLength": 1,
1971
+ "@mapping": "takeshape:local:VideoType.SJUbtSxhV"
1972
+ }
1973
+ },
1974
+ "required": [
1975
+ "name"
1976
+ ]
1977
+ }
1978
+ },
1979
+ "Category": {
1980
+ "id": "HJbagBg2E",
1981
+ "name": "Category",
1982
+ "title": "Category",
1983
+ "model": {
1984
+ "type": "taxonomy"
1985
+ },
1986
+ "schema": {
1987
+ "type": "object",
1988
+ "properties": {
1989
+ "description": {
1990
+ "type": "string",
1991
+ "title": "Description",
1992
+ "minLength": 0,
1993
+ "@mapping": "takeshape:local:Category.SyUhgBg24"
1994
+ },
1995
+ "name": {
1996
+ "type": "string",
1997
+ "title": "Name",
1998
+ "minLength": 1,
1999
+ "@mapping": "takeshape:local:Category.HyzieSx2V"
2000
+ }
2001
+ },
2002
+ "required": [
2003
+ "name"
2004
+ ]
2005
+ }
2006
+ },
2007
+ "CollateralType": {
2008
+ "id": "HkDVKSg3E",
2009
+ "name": "CollateralType",
2010
+ "title": "Collateral Type",
2011
+ "model": {
2012
+ "type": "taxonomy"
2013
+ },
2014
+ "schema": {
2015
+ "type": "object",
2016
+ "properties": {
2017
+ "description": {
2018
+ "type": "string",
2019
+ "title": "Description",
2020
+ "minLength": 0,
2021
+ "@mapping": "takeshape:local:CollateralType.BJx4YSg34"
2022
+ },
2023
+ "name": {
2024
+ "type": "string",
2025
+ "title": "Name",
2026
+ "minLength": 1,
2027
+ "@mapping": "takeshape:local:CollateralType.S1s7KSen4"
2028
+ }
2029
+ },
2030
+ "required": [
2031
+ "name"
2032
+ ]
2033
+ }
2034
+ },
2035
+ "ExternalAppCategory": {
2036
+ "id": "HkgcIDx24",
2037
+ "name": "ExternalAppCategory",
2038
+ "title": "External App Category",
2039
+ "model": {
2040
+ "type": "taxonomy"
2041
+ },
2042
+ "schema": {
2043
+ "type": "object",
2044
+ "properties": {
2045
+ "name": {
2046
+ "type": "string",
2047
+ "title": "Name",
2048
+ "minLength": 1,
2049
+ "@mapping": "takeshape:local:ExternalAppCategory.BkiFLPl3V"
2050
+ }
2051
+ }
2052
+ }
2053
+ },
2054
+ "Vendor": {
2055
+ "id": "HkUQVLg3N",
2056
+ "name": "Vendor",
2057
+ "title": "Vendor",
2058
+ "model": {
2059
+ "type": "multiple"
2060
+ },
2061
+ "schema": {
2062
+ "type": "object",
2063
+ "properties": {
2064
+ "contacts": {
2065
+ "type": "array",
2066
+ "title": "Contacts",
2067
+ "items": {
2068
+ "$ref": "#/shapes/VendorContacts/schema"
2069
+ },
2070
+ "@mapping": "takeshape:local:Vendor.S1JNX8gnV"
2071
+ },
2072
+ "description": {
2073
+ "type": "string",
2074
+ "title": "Description",
2075
+ "minLength": 1,
2076
+ "@mapping": "takeshape:local:Vendor.ByLUM8l2N"
2077
+ },
2078
+ "generalSalesAndEnquiries": {
2079
+ "title": "General Sales and Enquiries",
2080
+ "description": "Displayed on Store ",
2081
+ "@mapping": "takeshape:local:Vendor.HJ29X8g2V",
2082
+ "$ref": "#/shapes/VendorGeneralSalesAndEnquiries/schema"
2083
+ },
2084
+ "hq": {
2085
+ "title": "HQ",
2086
+ "@mapping": "takeshape:local:Vendor.S1icf8gn4",
2087
+ "$ref": "#/shapes/VendorHq/schema"
2088
+ },
2089
+ "logo": {
2090
+ "title": "Logo",
2091
+ "@mapping": "takeshape:local:Vendor.rkqwMUg34",
2092
+ "$ref": "#/shapes/TSRelationship/schema",
2093
+ "@relationship": {
2094
+ "shapeIds": [
2095
+ "ASSET"
2096
+ ],
2097
+ "type": "single"
2098
+ }
2099
+ },
2100
+ "name": {
2101
+ "type": "string",
2102
+ "title": "Name",
2103
+ "minLength": 1,
2104
+ "@mapping": "takeshape:local:Vendor.Syy8GLxh4"
2105
+ },
2106
+ "website": {
2107
+ "type": "string",
2108
+ "title": "Website",
2109
+ "minLength": 0,
2110
+ "@mapping": "takeshape:local:Vendor.B1YuzIe34"
2111
+ },
2112
+ "yearFounded": {
2113
+ "type": "number",
2114
+ "title": "Year Founded",
2115
+ "@l10n": false,
2116
+ "maximum": 2019,
2117
+ "minimum": 1980,
2118
+ "@mapping": "takeshape:local:Vendor.rkBZqJGnN"
2119
+ }
2120
+ },
2121
+ "required": [
2122
+ "name",
2123
+ "description",
2124
+ "yearFounded"
2125
+ ]
2126
+ }
2127
+ },
2128
+ "VendorContactsContactObject": {
2129
+ "id": "rynrXUe2N",
2130
+ "name": "VendorContactsContactObject",
2131
+ "title": "Vendor Contacts ContactObject",
2132
+ "schema": {
2133
+ "type": "object",
2134
+ "properties": {
2135
+ "contactType": {
2136
+ "type": "string",
2137
+ "title": "Contact Type",
2138
+ "oneOf": [
2139
+ {
2140
+ "enum": [
2141
+ "technical"
2142
+ ],
2143
+ "title": "Technical"
2144
+ },
2145
+ {
2146
+ "enum": [
2147
+ "business"
2148
+ ],
2149
+ "title": "Business"
2150
+ }
2151
+ ],
2152
+ "@mapping": "takeshape:local:VendorContactsContactObject.ByVZ4Ix3V"
2153
+ },
2154
+ "email": {
2155
+ "type": "string",
2156
+ "title": "Email",
2157
+ "minLength": 0,
2158
+ "@mapping": "takeshape:local:VendorContactsContactObject.Hki_Q8x3N"
2159
+ },
2160
+ "name": {
2161
+ "type": "string",
2162
+ "title": "Name",
2163
+ "minLength": 0,
2164
+ "@mapping": "takeshape:local:VendorContactsContactObject.BySOXUlnN"
2165
+ },
2166
+ "phone": {
2167
+ "type": "string",
2168
+ "title": "Phone",
2169
+ "minLength": 0,
2170
+ "@mapping": "takeshape:local:VendorContactsContactObject.S1UKQIeh4"
2171
+ }
2172
+ }
2173
+ }
2174
+ },
2175
+ "VendorContacts": {
2176
+ "id": "S1JNX8gnV",
2177
+ "name": "VendorContacts",
2178
+ "title": "Vendor Contacts",
2179
+ "schema": {
2180
+ "type": "object",
2181
+ "properties": {
2182
+ "contactObject": {
2183
+ "title": "Contact Object",
2184
+ "@mapping": "takeshape:local:VendorContacts.rynrXUe2N",
2185
+ "$ref": "#/shapes/VendorContactsContactObject/schema"
2186
+ }
2187
+ }
2188
+ }
2189
+ },
2190
+ "VendorGeneralSalesAndEnquiries": {
2191
+ "id": "HJ29X8g2V",
2192
+ "name": "VendorGeneralSalesAndEnquiries",
2193
+ "title": "Vendor GeneralSalesAndEnquiries",
2194
+ "schema": {
2195
+ "type": "object",
2196
+ "properties": {
2197
+ "email": {
2198
+ "type": "string",
2199
+ "title": "Email",
2200
+ "minLength": 0,
2201
+ "@mapping": "takeshape:local:VendorGeneralSalesAndEnquiries.HJDyELxnN"
2202
+ },
2203
+ "phone": {
2204
+ "type": "string",
2205
+ "title": "Phone",
2206
+ "minLength": 0,
2207
+ "@mapping": "takeshape:local:VendorGeneralSalesAndEnquiries.Hkv0m8g3E"
2208
+ }
2209
+ }
2210
+ }
2211
+ },
2212
+ "VendorHq": {
2213
+ "id": "S1icf8gn4",
2214
+ "name": "VendorHq",
2215
+ "title": "Vendor Hq",
2216
+ "schema": {
2217
+ "type": "object",
2218
+ "properties": {
2219
+ "address1": {
2220
+ "type": "string",
2221
+ "title": "Address 1",
2222
+ "minLength": 0,
2223
+ "@mapping": "takeshape:local:VendorHq.BJw2MLl3E"
2224
+ },
2225
+ "address2": {
2226
+ "type": "string",
2227
+ "title": "Address 2",
2228
+ "minLength": 0,
2229
+ "@mapping": "takeshape:local:VendorHq.ryL6MUl3V"
2230
+ },
2231
+ "city": {
2232
+ "type": "object",
2233
+ "title": "City",
2234
+ "@mapping": "takeshape:local:VendorHq.BJbAMIx3N",
2235
+ "@tag": "draftjs"
2236
+ },
2237
+ "country": {
2238
+ "type": "string",
2239
+ "title": "Country",
2240
+ "minLength": 0,
2241
+ "@mapping": "takeshape:local:VendorHq.HkcJQUg34"
2242
+ },
2243
+ "phone": {
2244
+ "type": "string",
2245
+ "title": "Phone",
2246
+ "minLength": 0,
2247
+ "@mapping": "takeshape:local:VendorHq.SJMl7Ix3E"
2248
+ },
2249
+ "state": {
2250
+ "type": "string",
2251
+ "title": "State",
2252
+ "minLength": 0,
2253
+ "@mapping": "takeshape:local:VendorHq.Hyt0f8x24"
2254
+ },
2255
+ "zip": {
2256
+ "type": "string",
2257
+ "title": "Zip",
2258
+ "minLength": 0,
2259
+ "@mapping": "takeshape:local:VendorHq.SJQJmUen4"
2260
+ }
2261
+ }
2262
+ }
2263
+ },
2264
+ "SolutionRevision": {
2265
+ "id": "Hy89GBg2V",
2266
+ "name": "SolutionRevision",
2267
+ "title": "Solution Revision",
2268
+ "model": {
2269
+ "type": "multiple"
2270
+ },
2271
+ "schema": {
2272
+ "type": "object",
2273
+ "properties": {
2274
+ "categories": {
2275
+ "title": "Categories",
2276
+ "@mapping": "takeshape:local:SolutionRevision.ByfYMrlnV",
2277
+ "type": "array",
2278
+ "items": {
2279
+ "$ref": "#/shapes/TSRelationship/schema"
2280
+ },
2281
+ "@relationship": {
2282
+ "shapeIds": [
2283
+ "HJbagBg2E"
2284
+ ],
2285
+ "type": "multiple"
2286
+ }
2287
+ },
2288
+ "collaterals": {
2289
+ "type": "array",
2290
+ "title": "Collaterals",
2291
+ "items": {
2292
+ "$ref": "#/shapes/SolutionRevisionCollaterals/schema"
2293
+ },
2294
+ "@mapping": "takeshape:local:SolutionRevision.B1BbOSl24"
2295
+ },
2296
+ "containerisation": {
2297
+ "title": "Containerisation",
2298
+ "@mapping": "takeshape:local:SolutionRevision.HkPABLx3N",
2299
+ "$ref": "#/shapes/SolutionRevisionContainerisation/schema"
2300
+ },
2301
+ "cspTemplates": {
2302
+ "title": "CSP Templates",
2303
+ "@mapping": "takeshape:local:SolutionRevision.rk_BL8xh4",
2304
+ "$ref": "#/shapes/SolutionRevisionCspTemplates/schema"
2305
+ },
2306
+ "customers": {
2307
+ "type": "array",
2308
+ "title": "Customers",
2309
+ "items": {
2310
+ "$ref": "#/shapes/SolutionRevisionCustomers/schema"
2311
+ },
2312
+ "@mapping": "takeshape:local:SolutionRevision.HyG0VKb2V"
2313
+ },
2314
+ "featured": {
2315
+ "type": "boolean",
2316
+ "default": false,
2317
+ "title": "Featured",
2318
+ "@l10n": false,
2319
+ "@mapping": "takeshape:local:SolutionRevision.Bkz0XSe2E"
2320
+ },
2321
+ "features": {
2322
+ "type": "array",
2323
+ "title": "Features",
2324
+ "items": {
2325
+ "$ref": "#/shapes/SolutionRevisionFeatures/schema"
2326
+ },
2327
+ "@mapping": "takeshape:local:SolutionRevision.Hyv-NrehE"
2328
+ },
2329
+ "images": {
2330
+ "type": "array",
2331
+ "title": "Images",
2332
+ "items": {
2333
+ "$ref": "#/shapes/SolutionRevisionImages/schema"
2334
+ },
2335
+ "@mapping": "takeshape:local:SolutionRevision.rJw0Lrx3N"
2336
+ },
2337
+ "infrastructureRequirements": {
2338
+ "title": "Infrastructure Requirements",
2339
+ "@mapping": "takeshape:local:SolutionRevision.BJOIPIg3E",
2340
+ "$ref": "#/shapes/SolutionRevisionInfrastructureRequirements/schema"
2341
+ },
2342
+ "matterTypes": {
2343
+ "title": "Matter Types",
2344
+ "@mapping": "takeshape:local:SolutionRevision.SJ6hMHg3V",
2345
+ "type": "array",
2346
+ "items": {
2347
+ "$ref": "#/shapes/TSRelationship/schema"
2348
+ },
2349
+ "@relationship": {
2350
+ "shapeIds": [
2351
+ "B1IgZrxhE"
2352
+ ],
2353
+ "type": "multiple"
2354
+ }
2355
+ },
2356
+ "onPlatformPurchase": {
2357
+ "type": "boolean",
2358
+ "default": false,
2359
+ "title": "On Platform Purchase",
2360
+ "@l10n": false,
2361
+ "@mapping": "takeshape:local:SolutionRevision.rJ_15rg3N"
2362
+ },
2363
+ "overview": {
2364
+ "type": "string",
2365
+ "title": "Overview",
2366
+ "minLength": 0,
2367
+ "@mapping": "takeshape:local:SolutionRevision.HJ46LBlnN"
2368
+ },
2369
+ "pilot": {
2370
+ "type": "boolean",
2371
+ "default": false,
2372
+ "title": "Pilot",
2373
+ "@l10n": false,
2374
+ "@mapping": "takeshape:local:SolutionRevision.Syr6mrghE"
2375
+ },
2376
+ "practiseAreas": {
2377
+ "title": "Practise Areas",
2378
+ "@mapping": "takeshape:local:SolutionRevision.BJACMBe2V",
2379
+ "type": "array",
2380
+ "items": {
2381
+ "$ref": "#/shapes/TSRelationship/schema"
2382
+ },
2383
+ "@relationship": {
2384
+ "shapeIds": [
2385
+ "r1nGZrx3E"
2386
+ ],
2387
+ "type": "multiple"
2388
+ }
2389
+ },
2390
+ "purpose": {
2391
+ "title": "Purpose",
2392
+ "@mapping": "takeshape:local:SolutionRevision.HkVlmBl2V",
2393
+ "type": "array",
2394
+ "items": {
2395
+ "$ref": "#/shapes/TSRelationship/schema"
2396
+ },
2397
+ "@relationship": {
2398
+ "shapeIds": [
2399
+ "B1ESWSe2V"
2400
+ ],
2401
+ "type": "multiple"
2402
+ }
2403
+ },
2404
+ "revisionId": {
2405
+ "type": "string",
2406
+ "title": "Revision ID",
2407
+ "minLength": 1,
2408
+ "@mapping": "takeshape:local:SolutionRevision.Hyge38gh4"
2409
+ },
2410
+ "saaSBusiness": {
2411
+ "title": "SaaS Business",
2412
+ "@mapping": "takeshape:local:SolutionRevision.r1Q08LehE",
2413
+ "$ref": "#/shapes/SolutionRevisionSaaSBusiness/schema"
2414
+ },
2415
+ "softwarePrerequisites": {
2416
+ "type": "string",
2417
+ "title": "Software Prerequisites",
2418
+ "minLength": 0,
2419
+ "@mapping": "takeshape:local:SolutionRevision.SkxG9Sx3N"
2420
+ },
2421
+ "tagline": {
2422
+ "type": "string",
2423
+ "title": "Tagline",
2424
+ "minLength": 0,
2425
+ "@mapping": "takeshape:local:SolutionRevision.By98zrehV"
2426
+ },
2427
+ "technologies": {
2428
+ "title": "Technologies",
2429
+ "@mapping": "takeshape:local:SolutionRevision.HJr-mrxh4",
2430
+ "type": "array",
2431
+ "items": {
2432
+ "$ref": "#/shapes/TSRelationship/schema"
2433
+ },
2434
+ "@relationship": {
2435
+ "shapeIds": [
2436
+ "S1x_-He34"
2437
+ ],
2438
+ "type": "multiple"
2439
+ }
2440
+ },
2441
+ "tenancy": {
2442
+ "title": "Tenancy",
2443
+ "@mapping": "takeshape:local:SolutionRevision.SklwcSl3E",
2444
+ "$ref": "#/shapes/SolutionRevisionTenancy/schema"
2445
+ },
2446
+ "testDrive": {
2447
+ "type": "boolean",
2448
+ "default": false,
2449
+ "title": "Test Drive",
2450
+ "@l10n": false,
2451
+ "@mapping": "takeshape:local:SolutionRevision.rya2QrxhN"
2452
+ },
2453
+ "vendor": {
2454
+ "title": "Vendor",
2455
+ "@mapping": "takeshape:local:SolutionRevision.SyCV4Lg3V",
2456
+ "$ref": "#/shapes/TSRelationship/schema",
2457
+ "@relationship": {
2458
+ "shapeIds": [
2459
+ "HkUQVLg3N"
2460
+ ],
2461
+ "type": "single"
2462
+ }
2463
+ },
2464
+ "videos": {
2465
+ "type": "array",
2466
+ "title": "Videos",
2467
+ "items": {
2468
+ "$ref": "#/shapes/SolutionRevisionVideos/schema"
2469
+ },
2470
+ "@mapping": "takeshape:local:SolutionRevision.HJNRDrg2N"
2471
+ },
2472
+ "webServicePrerequisites": {
2473
+ "type": "string",
2474
+ "title": "Web Service Prerequisites",
2475
+ "minLength": 0,
2476
+ "@mapping": "takeshape:local:SolutionRevision.BJV79BlnE"
2477
+ },
2478
+ "worksWith": {
2479
+ "title": "Works With",
2480
+ "@mapping": "takeshape:local:SolutionRevision.ryuaELl24",
2481
+ "$ref": "#/shapes/SolutionRevisionWorksWith/schema"
2482
+ }
2483
+ },
2484
+ "required": [
2485
+ "revisionId"
2486
+ ]
2487
+ }
2488
+ },
2489
+ "SolutionRevisionCollaterals": {
2490
+ "id": "B1BbOSl24",
2491
+ "name": "SolutionRevisionCollaterals",
2492
+ "title": "Solution Revision Collaterals",
2493
+ "schema": {
2494
+ "type": "object",
2495
+ "properties": {
2496
+ "collateral": {
2497
+ "title": "Collateral",
2498
+ "@mapping": "takeshape:local:SolutionRevisionCollaterals.rkcH_HlnN",
2499
+ "$ref": "#/shapes/TSRelationship/schema",
2500
+ "@relationship": {
2501
+ "shapeIds": [
2502
+ "ASSET"
2503
+ ],
2504
+ "type": "single"
2505
+ }
2506
+ },
2507
+ "collateralType": {
2508
+ "title": "Collateral Type",
2509
+ "@mapping": "takeshape:local:SolutionRevisionCollaterals.ryBKFHx3N",
2510
+ "$ref": "#/shapes/TSRelationship/schema",
2511
+ "@relationship": {
2512
+ "shapeIds": [
2513
+ "HkDVKSg3E"
2514
+ ],
2515
+ "type": "single"
2516
+ }
2517
+ }
2518
+ }
2519
+ }
2520
+ },
2521
+ "SolutionRevisionContainerisation": {
2522
+ "id": "HkPABLx3N",
2523
+ "name": "SolutionRevisionContainerisation",
2524
+ "title": "Solution Revision Containerisation",
2525
+ "schema": {
2526
+ "type": "object",
2527
+ "properties": {
2528
+ "containerisationType": {
2529
+ "type": "string",
2530
+ "title": "Containerisation Type",
2531
+ "oneOf": [
2532
+ {
2533
+ "enum": [
2534
+ "anywhere"
2535
+ ],
2536
+ "title": "Anywhere"
2537
+ },
2538
+ {
2539
+ "enum": [
2540
+ "awsOnly"
2541
+ ],
2542
+ "title": "AWS Only"
2543
+ },
2544
+ {
2545
+ "enum": [
2546
+ "azureOnly"
2547
+ ],
2548
+ "title": "Azure Only"
2549
+ },
2550
+ {
2551
+ "enum": [
2552
+ "gcpOnly"
2553
+ ],
2554
+ "title": "GCP Only"
2555
+ }
2556
+ ],
2557
+ "@mapping": "takeshape:local:SolutionRevisionContainerisation.BkjJUIe2N"
2558
+ },
2559
+ "containerised": {
2560
+ "type": "boolean",
2561
+ "default": false,
2562
+ "title": "Containerised",
2563
+ "@l10n": false,
2564
+ "@mapping": "takeshape:local:SolutionRevisionContainerisation.Byg1U8ehE"
2565
+ }
2566
+ }
2567
+ }
2568
+ },
2569
+ "SolutionRevisionCspTemplates": {
2570
+ "id": "rk_BL8xh4",
2571
+ "name": "SolutionRevisionCspTemplates",
2572
+ "title": "Solution Revision CspTemplates",
2573
+ "schema": {
2574
+ "type": "object",
2575
+ "properties": {
2576
+ "templateTypes": {
2577
+ "type": "array",
2578
+ "title": "Template Types",
2579
+ "items": {
2580
+ "type": "string",
2581
+ "oneOf": [
2582
+ {
2583
+ "enum": [
2584
+ "AWS"
2585
+ ],
2586
+ "title": "AWS"
2587
+ },
2588
+ {
2589
+ "enum": [
2590
+ "GCP"
2591
+ ],
2592
+ "title": "GCP"
2593
+ },
2594
+ {
2595
+ "enum": [
2596
+ "Azure"
2597
+ ],
2598
+ "title": "Azure"
2599
+ },
2600
+ {
2601
+ "enum": [
2602
+ "Others"
2603
+ ],
2604
+ "title": "Others"
2605
+ }
2606
+ ]
2607
+ },
2608
+ "@mapping": "takeshape:local:SolutionRevisionCspTemplates.rJ4_LIgh4"
2609
+ },
2610
+ "templatized": {
2611
+ "type": "boolean",
2612
+ "default": false,
2613
+ "title": "Templatized",
2614
+ "@l10n": false,
2615
+ "@mapping": "takeshape:local:SolutionRevisionCspTemplates.HkMv8Ue3N"
2616
+ }
2617
+ }
2618
+ }
2619
+ },
2620
+ "SolutionRevisionCustomers": {
2621
+ "id": "HyG0VKb2V",
2622
+ "name": "SolutionRevisionCustomers",
2623
+ "title": "Solution Revision Customers",
2624
+ "schema": {
2625
+ "type": "object",
2626
+ "properties": {
2627
+ "name": {
2628
+ "type": "string",
2629
+ "title": "Name",
2630
+ "minLength": 0,
2631
+ "@mapping": "takeshape:local:SolutionRevisionCustomers.rkykrY-hV"
2632
+ },
2633
+ "url": {
2634
+ "type": "string",
2635
+ "title": "URL",
2636
+ "minLength": 0,
2637
+ "@mapping": "takeshape:local:SolutionRevisionCustomers.SJwJSYZ34"
2638
+ }
2639
+ }
2640
+ }
2641
+ },
2642
+ "SolutionRevisionFeatures": {
2643
+ "id": "Hyv-NrehE",
2644
+ "name": "SolutionRevisionFeatures",
2645
+ "title": "Solution Revision Features",
2646
+ "schema": {
2647
+ "type": "object",
2648
+ "properties": {
2649
+ "description": {
2650
+ "type": "string",
2651
+ "title": "Description",
2652
+ "minLength": 0,
2653
+ "@mapping": "takeshape:local:SolutionRevisionFeatures.S1hXESl2N"
2654
+ },
2655
+ "name": {
2656
+ "type": "string",
2657
+ "title": "Name",
2658
+ "minLength": 0,
2659
+ "@mapping": "takeshape:local:SolutionRevisionFeatures.SJlXVHen4"
2660
+ }
2661
+ }
2662
+ }
2663
+ },
2664
+ "SolutionRevisionImages": {
2665
+ "id": "rJw0Lrx3N",
2666
+ "name": "SolutionRevisionImages",
2667
+ "title": "Solution Revision Images",
2668
+ "schema": {
2669
+ "type": "object",
2670
+ "properties": {
2671
+ "image": {
2672
+ "title": "Image",
2673
+ "@mapping": "takeshape:local:SolutionRevisionImages.ry-YPBenE",
2674
+ "$ref": "#/shapes/TSRelationship/schema",
2675
+ "@relationship": {
2676
+ "shapeIds": [
2677
+ "ASSET"
2678
+ ],
2679
+ "type": "single"
2680
+ }
2681
+ },
2682
+ "imageType": {
2683
+ "title": "Image Type",
2684
+ "@mapping": "takeshape:local:SolutionRevisionImages.ryNHFBxnN",
2685
+ "$ref": "#/shapes/TSRelationship/schema",
2686
+ "@relationship": {
2687
+ "shapeIds": [
2688
+ "rkOetrlhE"
2689
+ ],
2690
+ "type": "single"
2691
+ }
2692
+ }
2693
+ }
2694
+ }
2695
+ },
2696
+ "SolutionRevisionInfrastructureRequirementsNodes": {
2697
+ "id": "Sk2CDUgh4",
2698
+ "name": "SolutionRevisionInfrastructureRequirementsNodes",
2699
+ "title": "Solution Revision InfrastructureRequirements Nodes",
2700
+ "schema": {
2701
+ "type": "object",
2702
+ "properties": {
2703
+ "gpuModel": {
2704
+ "type": "string",
2705
+ "title": "GPU Model",
2706
+ "minLength": 0,
2707
+ "@mapping": "takeshape:local:SolutionRevisionInfrastructureRequirementsNodes.Sy5KdUenN"
2708
+ },
2709
+ "gpuRequired": {
2710
+ "type": "boolean",
2711
+ "default": false,
2712
+ "title": "GPU Required",
2713
+ "@l10n": false,
2714
+ "@mapping": "takeshape:local:SolutionRevisionInfrastructureRequirementsNodes.B1yKOLx2N"
2715
+ },
2716
+ "ram": {
2717
+ "type": "integer",
2718
+ "title": "RAM",
2719
+ "@l10n": false,
2720
+ "minimum": 0,
2721
+ "@mapping": "takeshape:local:SolutionRevisionInfrastructureRequirementsNodes.Byi7OIg3N"
2722
+ },
2723
+ "storageSpace": {
2724
+ "type": "integer",
2725
+ "title": "Storage Space",
2726
+ "@l10n": false,
2727
+ "minimum": 0,
2728
+ "@mapping": "takeshape:local:SolutionRevisionInfrastructureRequirementsNodes.HyqNOUxnE"
2729
+ },
2730
+ "vcpUs": {
2731
+ "type": "integer",
2732
+ "title": "VCPUs",
2733
+ "@l10n": false,
2734
+ "minimum": 0,
2735
+ "@mapping": "takeshape:local:SolutionRevisionInfrastructureRequirementsNodes.Skf7_8ehN"
2736
+ }
2737
+ }
2738
+ }
2739
+ },
2740
+ "SolutionRevisionInfrastructureRequirements": {
2741
+ "id": "BJOIPIg3E",
2742
+ "name": "SolutionRevisionInfrastructureRequirements",
2743
+ "title": "Solution Revision InfrastructureRequirements",
2744
+ "schema": {
2745
+ "type": "object",
2746
+ "properties": {
2747
+ "nodes": {
2748
+ "type": "array",
2749
+ "title": "Nodes",
2750
+ "items": {
2751
+ "$ref": "#/shapes/SolutionRevisionInfrastructureRequirementsNodes/schema"
2752
+ },
2753
+ "@mapping": "takeshape:local:SolutionRevisionInfrastructureRequirements.Sk2CDUgh4"
2754
+ },
2755
+ "typicalUsageScenario": {
2756
+ "type": "string",
2757
+ "title": "Typical Usage Scenario",
2758
+ "minLength": 0,
2759
+ "@mapping": "takeshape:local:SolutionRevisionInfrastructureRequirements.B1qOBDlh4"
2760
+ }
2761
+ }
2762
+ }
2763
+ },
2764
+ "SolutionRevisionSaaSBusiness": {
2765
+ "id": "r1Q08LehE",
2766
+ "name": "SolutionRevisionSaaSBusiness",
2767
+ "title": "Solution Revision SaaSBusiness",
2768
+ "schema": {
2769
+ "type": "object",
2770
+ "properties": {
2771
+ "hosting": {
2772
+ "type": "array",
2773
+ "title": "Hosting",
2774
+ "items": {
2775
+ "type": "string",
2776
+ "oneOf": [
2777
+ {
2778
+ "enum": [
2779
+ "AWS"
2780
+ ],
2781
+ "title": "AWS"
2782
+ },
2783
+ {
2784
+ "enum": [
2785
+ "GCP"
2786
+ ],
2787
+ "title": "GCP"
2788
+ },
2789
+ {
2790
+ "enum": [
2791
+ "Azure"
2792
+ ],
2793
+ "title": "Azure"
2794
+ },
2795
+ {
2796
+ "enum": [
2797
+ "Own Infrastructure"
2798
+ ],
2799
+ "title": "Own Infrastructure"
2800
+ }
2801
+ ]
2802
+ },
2803
+ "@mapping": "takeshape:local:SolutionRevisionSaaSBusiness.HJjZvLxhE"
2804
+ },
2805
+ "SaaS": {
2806
+ "type": "boolean",
2807
+ "default": false,
2808
+ "title": "SaaS",
2809
+ "@l10n": false,
2810
+ "@mapping": "takeshape:local:SolutionRevisionSaaSBusiness.S1M1vLl2E"
2811
+ }
2812
+ }
2813
+ }
2814
+ },
2815
+ "SolutionRevisionTenancy": {
2816
+ "id": "SklwcSl3E",
2817
+ "name": "SolutionRevisionTenancy",
2818
+ "title": "Solution Revision Tenancy",
2819
+ "schema": {
2820
+ "type": "object",
2821
+ "properties": {
2822
+ "tenancyDescription": {
2823
+ "type": "string",
2824
+ "title": "Tenancy Description",
2825
+ "minLength": 0,
2826
+ "@mapping": "takeshape:local:SolutionRevisionTenancy.H1-95BehE"
2827
+ },
2828
+ "tenancyType": {
2829
+ "type": "string",
2830
+ "title": "Tenancy Type",
2831
+ "oneOf": [
2832
+ {
2833
+ "enum": [
2834
+ "singleTenant"
2835
+ ],
2836
+ "title": "Single Tenant"
2837
+ },
2838
+ {
2839
+ "enum": [
2840
+ "multiTenant"
2841
+ ],
2842
+ "title": "Multi Tenant"
2843
+ }
2844
+ ],
2845
+ "@mapping": "takeshape:local:SolutionRevisionTenancy.HJv_9Hl3N"
2846
+ }
2847
+ }
2848
+ }
2849
+ },
2850
+ "SolutionRevisionVideos": {
2851
+ "id": "HJNRDrg2N",
2852
+ "name": "SolutionRevisionVideos",
2853
+ "title": "Solution Revision Videos",
2854
+ "schema": {
2855
+ "type": "object",
2856
+ "properties": {
2857
+ "video": {
2858
+ "title": "Video",
2859
+ "@mapping": "takeshape:local:SolutionRevisionVideos.SkZvOBl3V",
2860
+ "$ref": "#/shapes/TSRelationship/schema",
2861
+ "@relationship": {
2862
+ "shapeIds": [
2863
+ "ASSET"
2864
+ ],
2865
+ "type": "single"
2866
+ }
2867
+ },
2868
+ "videoType": {
2869
+ "title": "Video Type",
2870
+ "@mapping": "takeshape:local:SolutionRevisionVideos.BkmUKrx3N",
2871
+ "$ref": "#/shapes/TSRelationship/schema",
2872
+ "@relationship": {
2873
+ "shapeIds": [
2874
+ "HJ4zKBghV"
2875
+ ],
2876
+ "type": "single"
2877
+ }
2878
+ }
2879
+ }
2880
+ }
2881
+ },
2882
+ "SolutionRevisionWorksWithWorksWithExternalApps": {
2883
+ "id": "BkdUH8l2E",
2884
+ "name": "SolutionRevisionWorksWithWorksWithExternalApps",
2885
+ "title": "Solution Revision WorksWith WorksWithExternalApps",
2886
+ "schema": {
2887
+ "type": "object",
2888
+ "properties": {
2889
+ "externalApp": {
2890
+ "title": "External App",
2891
+ "@mapping": "takeshape:local:SolutionRevisionWorksWithWorksWithExternalApps.B1EwSUx3V",
2892
+ "$ref": "#/shapes/TSRelationship/schema",
2893
+ "@relationship": {
2894
+ "shapeIds": [
2895
+ "BkrLZLe2E"
2896
+ ],
2897
+ "type": "single"
2898
+ }
2899
+ },
2900
+ "integrationDescription": {
2901
+ "type": "string",
2902
+ "title": "Integration Description",
2903
+ "minLength": 0,
2904
+ "@mapping": "takeshape:local:SolutionRevisionWorksWithWorksWithExternalApps.HyodHUxnV"
2905
+ }
2906
+ }
2907
+ }
2908
+ },
2909
+ "SolutionRevisionWorksWithWorksWithRcApps": {
2910
+ "id": "r1q0E8ehN",
2911
+ "name": "SolutionRevisionWorksWithWorksWithRcApps",
2912
+ "title": "Solution Revision WorksWith WorksWithRcApps",
2913
+ "schema": {
2914
+ "type": "object",
2915
+ "properties": {
2916
+ "integrationDescription": {
2917
+ "type": "string",
2918
+ "title": "Integration Description",
2919
+ "minLength": 0,
2920
+ "@mapping": "takeshape:local:SolutionRevisionWorksWithWorksWithRcApps.H1uHHUl3N"
2921
+ },
2922
+ "rcApp": {
2923
+ "title": "RC App",
2924
+ "@mapping": "takeshape:local:SolutionRevisionWorksWithWorksWithRcApps.SyHeSUgnN",
2925
+ "$ref": "#/shapes/TSRelationship/schema",
2926
+ "@relationship": {
2927
+ "shapeIds": [
2928
+ "Hy89GBg2V"
2929
+ ],
2930
+ "type": "single"
2931
+ }
2932
+ }
2933
+ }
2934
+ }
2935
+ },
2936
+ "SolutionRevisionWorksWith": {
2937
+ "id": "ryuaELl24",
2938
+ "name": "SolutionRevisionWorksWith",
2939
+ "title": "Solution Revision WorksWith",
2940
+ "schema": {
2941
+ "type": "object",
2942
+ "properties": {
2943
+ "worksWithExternalApps": {
2944
+ "type": "array",
2945
+ "title": "Works with External Apps",
2946
+ "items": {
2947
+ "$ref": "#/shapes/SolutionRevisionWorksWithWorksWithExternalApps/schema"
2948
+ },
2949
+ "@mapping": "takeshape:local:SolutionRevisionWorksWith.BkdUH8l2E"
2950
+ },
2951
+ "worksWithRCApps": {
2952
+ "type": "array",
2953
+ "title": "Works With RC Apps",
2954
+ "items": {
2955
+ "$ref": "#/shapes/SolutionRevisionWorksWithWorksWithRcApps/schema"
2956
+ },
2957
+ "@mapping": "takeshape:local:SolutionRevisionWorksWith.r1q0E8ehN"
2958
+ }
2959
+ }
2960
+ }
2961
+ },
2962
+ "PracticeArea": {
2963
+ "id": "r1nGZrx3E",
2964
+ "name": "PracticeArea",
2965
+ "title": "Practice Area",
2966
+ "model": {
2967
+ "type": "taxonomy"
2968
+ },
2969
+ "schema": {
2970
+ "type": "object",
2971
+ "properties": {
2972
+ "description": {
2973
+ "type": "string",
2974
+ "title": "Description",
2975
+ "minLength": 0,
2976
+ "@mapping": "takeshape:local:PracticeArea.SJffbSl3N"
2977
+ },
2978
+ "name": {
2979
+ "type": "string",
2980
+ "title": "Name",
2981
+ "minLength": 1,
2982
+ "@mapping": "takeshape:local:PracticeArea.ryPbbrehE"
2983
+ }
2984
+ },
2985
+ "required": [
2986
+ "name"
2987
+ ]
2988
+ }
2989
+ },
2990
+ "ImageType": {
2991
+ "id": "rkOetrlhE",
2992
+ "name": "ImageType",
2993
+ "title": "Image Type",
2994
+ "model": {
2995
+ "type": "taxonomy"
2996
+ },
2997
+ "schema": {
2998
+ "type": "object",
2999
+ "properties": {
3000
+ "description": {
3001
+ "type": "string",
3002
+ "title": "Description",
3003
+ "minLength": 0,
3004
+ "@mapping": "takeshape:local:ImageType.S1hyYHx2E"
3005
+ },
3006
+ "name": {
3007
+ "type": "string",
3008
+ "title": "Name",
3009
+ "minLength": 1,
3010
+ "@mapping": "takeshape:local:ImageType.B1EkFrxhV"
3011
+ }
3012
+ },
3013
+ "required": [
3014
+ "name"
3015
+ ]
3016
+ }
3017
+ },
3018
+ "Technology": {
3019
+ "id": "S1x_-He34",
3020
+ "name": "Technology",
3021
+ "title": "Technology",
3022
+ "model": {
3023
+ "type": "taxonomy"
3024
+ },
3025
+ "schema": {
3026
+ "type": "object",
3027
+ "properties": {
3028
+ "description": {
3029
+ "type": "string",
3030
+ "title": "Description",
3031
+ "minLength": 0,
3032
+ "@mapping": "takeshape:local:Technology.B18vWSl3E"
3033
+ },
3034
+ "name": {
3035
+ "type": "string",
3036
+ "title": "Name",
3037
+ "minLength": 1,
3038
+ "@mapping": "takeshape:local:Technology.H1bvbHen4"
3039
+ }
3040
+ },
3041
+ "required": [
3042
+ "name"
3043
+ ]
3044
+ }
3045
+ },
3046
+ "Solution": {
3047
+ "id": "Sk8BaUg2V",
3048
+ "name": "Solution",
3049
+ "title": "Solution",
3050
+ "model": {
3051
+ "type": "multiple"
3052
+ },
3053
+ "schema": {
3054
+ "type": "object",
3055
+ "properties": {
3056
+ "name": {
3057
+ "type": "string",
3058
+ "title": "Name",
3059
+ "minLength": 1,
3060
+ "@mapping": "takeshape:local:Solution.B1xdh8lnN"
3061
+ },
3062
+ "revisions": {
3063
+ "type": "array",
3064
+ "title": "Revisions",
3065
+ "items": {
3066
+ "$ref": "#/shapes/SolutionRevisions/schema"
3067
+ },
3068
+ "@mapping": "takeshape:local:Solution.HkuchIenE"
3069
+ },
3070
+ "status": {
3071
+ "type": "string",
3072
+ "title": "Status",
3073
+ "oneOf": [
3074
+ {
3075
+ "enum": [
3076
+ "stage1"
3077
+ ],
3078
+ "title": "Stage1"
3079
+ },
3080
+ {
3081
+ "enum": [
3082
+ "stage2"
3083
+ ],
3084
+ "title": "Stage2"
3085
+ },
3086
+ {
3087
+ "enum": [
3088
+ "stage3"
3089
+ ],
3090
+ "title": "Stage3"
3091
+ }
3092
+ ],
3093
+ "minLength": 1,
3094
+ "@mapping": "takeshape:local:Solution.ryTO6Ueh4"
3095
+ }
3096
+ },
3097
+ "required": [
3098
+ "name",
3099
+ "status"
3100
+ ]
3101
+ }
3102
+ },
3103
+ "SolutionRevisions": {
3104
+ "id": "HkuchIenE",
3105
+ "name": "SolutionRevisions",
3106
+ "title": "Solution Revisions",
3107
+ "schema": {
3108
+ "type": "object",
3109
+ "properties": {
3110
+ "revision": {
3111
+ "title": "Revision",
3112
+ "@mapping": "takeshape:local:SolutionRevisions.BkOpnUgnN",
3113
+ "$ref": "#/shapes/TSRelationship/schema",
3114
+ "@relationship": {
3115
+ "shapeIds": [
3116
+ "Hy89GBg2V"
3117
+ ],
3118
+ "type": "single"
3119
+ }
3120
+ },
3121
+ "status": {
3122
+ "type": "string",
3123
+ "title": "Status",
3124
+ "oneOf": [
3125
+ {
3126
+ "enum": [
3127
+ "draft"
3128
+ ],
3129
+ "title": "Draft"
3130
+ },
3131
+ {
3132
+ "enum": [
3133
+ "underReview"
3134
+ ],
3135
+ "title": "Under Review"
3136
+ },
3137
+ {
3138
+ "enum": [
3139
+ "approved"
3140
+ ],
3141
+ "title": "Approved"
3142
+ },
3143
+ {
3144
+ "enum": [
3145
+ "published"
3146
+ ],
3147
+ "title": "Published"
3148
+ }
3149
+ ],
3150
+ "@mapping": "takeshape:local:SolutionRevisions.rkpJpLx2E"
3151
+ }
3152
+ }
3153
+ }
3154
+ }
3155
+ },
3156
+ "forms": {
3157
+ "Purpose": {
3158
+ "default": {
3159
+ "order": [
3160
+ "name",
3161
+ "description"
3162
+ ],
3163
+ "properties": {
3164
+ "description": {
3165
+ "widget": "paragraphText"
3166
+ },
3167
+ "name": {
3168
+ "widget": "singleLineText"
3169
+ }
3170
+ }
3171
+ }
3172
+ },
3173
+ "MatterType": {
3174
+ "default": {
3175
+ "order": [
3176
+ "name",
3177
+ "description"
3178
+ ],
3179
+ "properties": {
3180
+ "description": {
3181
+ "widget": "paragraphText"
3182
+ },
3183
+ "name": {
3184
+ "widget": "singleLineText"
3185
+ }
3186
+ }
3187
+ }
3188
+ },
3189
+ "SolutionRevision2": {
3190
+ "default": {
3191
+ "order": [
3192
+ "revisionId",
3193
+ "tagLine",
3194
+ "vendor"
3195
+ ],
3196
+ "properties": {
3197
+ "revisionId": {
3198
+ "instructions": "The format is <productname>-ddmmyyyy-number",
3199
+ "widget": "singleLineText"
3200
+ },
3201
+ "tagLine": {
3202
+ "widget": "singleLineText"
3203
+ },
3204
+ "vendor": {
3205
+ "widget": "relationship"
3206
+ }
3207
+ }
3208
+ }
3209
+ },
3210
+ "SolutionRevision1": {
3211
+ "default": {
3212
+ "order": [
3213
+ "revisionId",
3214
+ "tagLine",
3215
+ "vendor",
3216
+ "overview",
3217
+ "categories",
3218
+ "matterTypes",
3219
+ "practiceAreas",
3220
+ "purpose",
3221
+ "technologies",
3222
+ "testDrive",
3223
+ "pilot",
3224
+ "featured",
3225
+ "onPlatformPurchase",
3226
+ "features",
3227
+ "images",
3228
+ "videos",
3229
+ "collaterals",
3230
+ "softwarePrerequisites",
3231
+ "webServicePrerequisites",
3232
+ "tenancy",
3233
+ "worksWith",
3234
+ "saaSBusiness",
3235
+ "infrastructureRequirements",
3236
+ "customers"
3237
+ ],
3238
+ "properties": {
3239
+ "categories": {
3240
+ "widget": "relationship"
3241
+ },
3242
+ "collaterals": {
3243
+ "order": [
3244
+ "collateral",
3245
+ "collateralType"
3246
+ ],
3247
+ "properties": {
3248
+ "collateral": {
3249
+ "widget": "relationship"
3250
+ },
3251
+ "collateralType": {
3252
+ "widget": "relationship"
3253
+ }
3254
+ },
3255
+ "widget": "repeater"
3256
+ },
3257
+ "customers": {
3258
+ "order": [
3259
+ "name",
3260
+ "url"
3261
+ ],
3262
+ "properties": {
3263
+ "name": {
3264
+ "widget": "singleLineText"
3265
+ },
3266
+ "url": {
3267
+ "widget": "singleLineText"
3268
+ }
3269
+ },
3270
+ "widget": "repeater"
3271
+ },
3272
+ "featured": {
3273
+ "widget": "toggleSwitch"
3274
+ },
3275
+ "features": {
3276
+ "order": [
3277
+ "name",
3278
+ "description"
3279
+ ],
3280
+ "properties": {
3281
+ "description": {
3282
+ "widget": "paragraphText"
3283
+ },
3284
+ "name": {
3285
+ "widget": "singleLineText"
3286
+ }
3287
+ },
3288
+ "widget": "repeater"
3289
+ },
3290
+ "images": {
3291
+ "order": [
3292
+ "image",
3293
+ "imageType"
3294
+ ],
3295
+ "properties": {
3296
+ "image": {
3297
+ "widget": "image"
3298
+ },
3299
+ "imageType": {
3300
+ "widget": "relationship"
3301
+ }
3302
+ },
3303
+ "widget": "repeater"
3304
+ },
3305
+ "infrastructureRequirements": {
3306
+ "order": [
3307
+ "nodes",
3308
+ "typicalUsageScenario"
3309
+ ],
3310
+ "properties": {
3311
+ "nodes": {
3312
+ "order": [
3313
+ "vcpUs",
3314
+ "ram",
3315
+ "storageSpace",
3316
+ "gpuRequired",
3317
+ "gpuModel"
3318
+ ],
3319
+ "properties": {
3320
+ "gpuModel": {
3321
+ "widget": "singleLineText"
3322
+ },
3323
+ "gpuRequired": {
3324
+ "widget": "toggleSwitch"
3325
+ },
3326
+ "ram": {
3327
+ "widget": "number"
3328
+ },
3329
+ "storageSpace": {
3330
+ "widget": "number"
3331
+ },
3332
+ "vcpUs": {
3333
+ "widget": "number"
3334
+ }
3335
+ },
3336
+ "widget": "repeater"
3337
+ },
3338
+ "typicalUsageScenario": {
3339
+ "widget": "paragraphText"
3340
+ }
3341
+ },
3342
+ "widget": "object"
3343
+ },
3344
+ "matterTypes": {
3345
+ "widget": "relationship"
3346
+ },
3347
+ "onPlatformPurchase": {
3348
+ "widget": "toggleSwitch"
3349
+ },
3350
+ "overview": {
3351
+ "widget": "markdownText"
3352
+ },
3353
+ "pilot": {
3354
+ "widget": "toggleSwitch"
3355
+ },
3356
+ "practiceAreas": {
3357
+ "widget": "relationship"
3358
+ },
3359
+ "purpose": {
3360
+ "widget": "relationship"
3361
+ },
3362
+ "revisionId": {
3363
+ "instructions": "The format is productname-ddmmyyyy-number",
3364
+ "widget": "singleLineText"
3365
+ },
3366
+ "saaSBusiness": {
3367
+ "order": [
3368
+ "saaS",
3369
+ "hosting"
3370
+ ],
3371
+ "properties": {
3372
+ "hosting": {
3373
+ "widget": "checkboxes"
3374
+ },
3375
+ "saaS": {
3376
+ "widget": "toggleSwitch"
3377
+ }
3378
+ },
3379
+ "widget": "object"
3380
+ },
3381
+ "softwarePrerequisites": {
3382
+ "widget": "markdownText"
3383
+ },
3384
+ "tagLine": {
3385
+ "widget": "singleLineText"
3386
+ },
3387
+ "technologies": {
3388
+ "widget": "relationship"
3389
+ },
3390
+ "tenancy": {
3391
+ "order": [
3392
+ "tenancyType",
3393
+ "tenancyDescription"
3394
+ ],
3395
+ "properties": {
3396
+ "tenancyDescription": {
3397
+ "widget": "paragraphText"
3398
+ },
3399
+ "tenancyType": {
3400
+ "widget": "dropdown"
3401
+ }
3402
+ },
3403
+ "widget": "object"
3404
+ },
3405
+ "testDrive": {
3406
+ "widget": "toggleSwitch"
3407
+ },
3408
+ "vendor": {
3409
+ "widget": "relationship"
3410
+ },
3411
+ "videos": {
3412
+ "order": [
3413
+ "video",
3414
+ "videoType"
3415
+ ],
3416
+ "properties": {
3417
+ "video": {
3418
+ "widget": "image"
3419
+ },
3420
+ "videoType": {
3421
+ "widget": "relationship"
3422
+ }
3423
+ },
3424
+ "widget": "repeater"
3425
+ },
3426
+ "webServicePrerequisites": {
3427
+ "widget": "markdownText"
3428
+ },
3429
+ "worksWith": {
3430
+ "order": [
3431
+ "worksWithRcApps",
3432
+ "worksWithExternalApps",
3433
+ "containerization",
3434
+ "cspTemplates"
3435
+ ],
3436
+ "properties": {
3437
+ "containerization": {
3438
+ "order": [
3439
+ "containerized",
3440
+ "containerizationType"
3441
+ ],
3442
+ "properties": {
3443
+ "containerizationType": {
3444
+ "widget": "dropdown"
3445
+ },
3446
+ "containerized": {
3447
+ "widget": "toggleSwitch"
3448
+ }
3449
+ },
3450
+ "widget": "object"
3451
+ },
3452
+ "cspTemplates": {
3453
+ "order": [
3454
+ "templatized",
3455
+ "templateTypes"
3456
+ ],
3457
+ "properties": {
3458
+ "templateTypes": {
3459
+ "widget": "checkboxes"
3460
+ },
3461
+ "templatized": {
3462
+ "widget": "toggleSwitch"
3463
+ }
3464
+ },
3465
+ "widget": "object"
3466
+ },
3467
+ "worksWithExternalApps": {
3468
+ "order": [
3469
+ "externalApp",
3470
+ "integrationDescription"
3471
+ ],
3472
+ "properties": {
3473
+ "externalApp": {
3474
+ "widget": "relationship"
3475
+ },
3476
+ "integrationDescription": {
3477
+ "widget": "paragraphText"
3478
+ }
3479
+ },
3480
+ "widget": "repeater"
3481
+ },
3482
+ "worksWithRcApps": {
3483
+ "order": [
3484
+ "rcApp",
3485
+ "integrationDescription"
3486
+ ],
3487
+ "properties": {
3488
+ "integrationDescription": {
3489
+ "widget": "paragraphText"
3490
+ },
3491
+ "rcApp": {
3492
+ "widget": "relationship"
3493
+ }
3494
+ },
3495
+ "widget": "repeater"
3496
+ }
3497
+ },
3498
+ "widget": "object"
3499
+ }
3500
+ }
3501
+ }
3502
+ },
3503
+ "ExternalProduct": {
3504
+ "default": {
3505
+ "order": [
3506
+ "name",
3507
+ "description",
3508
+ "logo",
3509
+ "appCategory"
3510
+ ],
3511
+ "properties": {
3512
+ "appCategory": {
3513
+ "widget": "relationship"
3514
+ },
3515
+ "description": {
3516
+ "widget": "paragraphText"
3517
+ },
3518
+ "logo": {
3519
+ "widget": "image"
3520
+ },
3521
+ "name": {
3522
+ "widget": "singleLineText"
3523
+ }
3524
+ }
3525
+ }
3526
+ },
3527
+ "VideoType": {
3528
+ "default": {
3529
+ "order": [
3530
+ "name",
3531
+ "description"
3532
+ ],
3533
+ "properties": {
3534
+ "description": {
3535
+ "widget": "paragraphText"
3536
+ },
3537
+ "name": {
3538
+ "widget": "singleLineText"
3539
+ }
3540
+ }
3541
+ }
3542
+ },
3543
+ "Category": {
3544
+ "default": {
3545
+ "order": [
3546
+ "name",
3547
+ "description"
3548
+ ],
3549
+ "properties": {
3550
+ "description": {
3551
+ "widget": "paragraphText"
3552
+ },
3553
+ "name": {
3554
+ "widget": "singleLineText"
3555
+ }
3556
+ }
3557
+ }
3558
+ },
3559
+ "CollateralType": {
3560
+ "default": {
3561
+ "order": [
3562
+ "name",
3563
+ "description"
3564
+ ],
3565
+ "properties": {
3566
+ "description": {
3567
+ "widget": "paragraphText"
3568
+ },
3569
+ "name": {
3570
+ "widget": "singleLineText"
3571
+ }
3572
+ }
3573
+ }
3574
+ },
3575
+ "ExternalAppCategory": {
3576
+ "default": {
3577
+ "order": [
3578
+ "name"
3579
+ ],
3580
+ "properties": {
3581
+ "name": {
3582
+ "widget": "singleLineText"
3583
+ }
3584
+ }
3585
+ }
3586
+ },
3587
+ "Vendor": {
3588
+ "default": {
3589
+ "order": [
3590
+ "name",
3591
+ "description",
3592
+ "logo",
3593
+ "yearFounded",
3594
+ "website",
3595
+ "hq",
3596
+ "generalSalesAndEnquiries",
3597
+ "contacts"
3598
+ ],
3599
+ "properties": {
3600
+ "contacts": {
3601
+ "order": [
3602
+ "contactObject"
3603
+ ],
3604
+ "properties": {
3605
+ "contactObject": {
3606
+ "order": [
3607
+ "name",
3608
+ "email",
3609
+ "phone",
3610
+ "contactType"
3611
+ ],
3612
+ "properties": {
3613
+ "contactType": {
3614
+ "widget": "dropdown"
3615
+ },
3616
+ "email": {
3617
+ "widget": "singleLineText"
3618
+ },
3619
+ "name": {
3620
+ "widget": "singleLineText"
3621
+ },
3622
+ "phone": {
3623
+ "widget": "singleLineText"
3624
+ }
3625
+ },
3626
+ "widget": "object"
3627
+ }
3628
+ },
3629
+ "widget": "repeater"
3630
+ },
3631
+ "description": {
3632
+ "widget": "singleLineText"
3633
+ },
3634
+ "generalSalesAndEnquiries": {
3635
+ "order": [
3636
+ "phone",
3637
+ "email"
3638
+ ],
3639
+ "properties": {
3640
+ "email": {
3641
+ "widget": "singleLineText"
3642
+ },
3643
+ "phone": {
3644
+ "widget": "singleLineText"
3645
+ }
3646
+ },
3647
+ "widget": "object"
3648
+ },
3649
+ "hq": {
3650
+ "order": [
3651
+ "address1",
3652
+ "address2",
3653
+ "state",
3654
+ "city",
3655
+ "country",
3656
+ "zip",
3657
+ "phone"
3658
+ ],
3659
+ "properties": {
3660
+ "address1": {
3661
+ "widget": "singleLineText"
3662
+ },
3663
+ "address2": {
3664
+ "widget": "singleLineText"
3665
+ },
3666
+ "city": {
3667
+ "widget": "wysiwygSingleLineText"
3668
+ },
3669
+ "country": {
3670
+ "widget": "singleLineText"
3671
+ },
3672
+ "phone": {
3673
+ "widget": "singleLineText"
3674
+ },
3675
+ "state": {
3676
+ "widget": "singleLineText"
3677
+ },
3678
+ "zip": {
3679
+ "widget": "singleLineText"
3680
+ }
3681
+ },
3682
+ "widget": "object"
3683
+ },
3684
+ "logo": {
3685
+ "widget": "image"
3686
+ },
3687
+ "name": {
3688
+ "widget": "singleLineText"
3689
+ },
3690
+ "website": {
3691
+ "widget": "singleLineText"
3692
+ },
3693
+ "yearFounded": {
3694
+ "widget": "number"
3695
+ }
3696
+ }
3697
+ }
3698
+ },
3699
+ "SolutionRevision": {
3700
+ "default": {
3701
+ "order": [
3702
+ "revisionId",
3703
+ "tagline",
3704
+ "vendor",
3705
+ "overview",
3706
+ "categories",
3707
+ "matterTypes",
3708
+ "practiseAreas",
3709
+ "purpose",
3710
+ "technologies",
3711
+ "testDrive",
3712
+ "pilot",
3713
+ "featured",
3714
+ "onPlatformPurchase",
3715
+ "features",
3716
+ "images",
3717
+ "videos",
3718
+ "collaterals",
3719
+ "softwarePrerequisites",
3720
+ "webServicePrerequisites",
3721
+ "tenancy",
3722
+ "worksWith",
3723
+ "containerisation",
3724
+ "cspTemplates",
3725
+ "saaSBusiness",
3726
+ "infrastructureRequirements",
3727
+ "customers"
3728
+ ],
3729
+ "properties": {
3730
+ "categories": {
3731
+ "widget": "relationship"
3732
+ },
3733
+ "collaterals": {
3734
+ "order": [
3735
+ "collateral",
3736
+ "collateralType"
3737
+ ],
3738
+ "properties": {
3739
+ "collateral": {
3740
+ "widget": "image"
3741
+ },
3742
+ "collateralType": {
3743
+ "widget": "relationship"
3744
+ }
3745
+ },
3746
+ "widget": "repeater"
3747
+ },
3748
+ "containerisation": {
3749
+ "order": [
3750
+ "containerised",
3751
+ "containerisationType"
3752
+ ],
3753
+ "properties": {
3754
+ "containerisationType": {
3755
+ "widget": "dropdown"
3756
+ },
3757
+ "containerised": {
3758
+ "widget": "toggleSwitch"
3759
+ }
3760
+ },
3761
+ "widget": "object"
3762
+ },
3763
+ "cspTemplates": {
3764
+ "order": [
3765
+ "templatized",
3766
+ "templateTypes"
3767
+ ],
3768
+ "properties": {
3769
+ "templateTypes": {
3770
+ "widget": "checkboxes"
3771
+ },
3772
+ "templatized": {
3773
+ "widget": "toggleSwitch"
3774
+ }
3775
+ },
3776
+ "widget": "object"
3777
+ },
3778
+ "customers": {
3779
+ "order": [
3780
+ "name",
3781
+ "url"
3782
+ ],
3783
+ "properties": {
3784
+ "name": {
3785
+ "widget": "singleLineText"
3786
+ },
3787
+ "url": {
3788
+ "widget": "singleLineText"
3789
+ }
3790
+ },
3791
+ "widget": "repeater"
3792
+ },
3793
+ "featured": {
3794
+ "widget": "toggleSwitch"
3795
+ },
3796
+ "features": {
3797
+ "order": [
3798
+ "name",
3799
+ "description"
3800
+ ],
3801
+ "properties": {
3802
+ "description": {
3803
+ "widget": "paragraphText"
3804
+ },
3805
+ "name": {
3806
+ "widget": "singleLineText"
3807
+ }
3808
+ },
3809
+ "widget": "repeater"
3810
+ },
3811
+ "images": {
3812
+ "order": [
3813
+ "image",
3814
+ "imageType"
3815
+ ],
3816
+ "properties": {
3817
+ "image": {
3818
+ "widget": "image"
3819
+ },
3820
+ "imageType": {
3821
+ "widget": "relationship"
3822
+ }
3823
+ },
3824
+ "widget": "repeater"
3825
+ },
3826
+ "infrastructureRequirements": {
3827
+ "order": [
3828
+ "nodes",
3829
+ "typicalUsageScenario"
3830
+ ],
3831
+ "properties": {
3832
+ "nodes": {
3833
+ "order": [
3834
+ "vcpUs",
3835
+ "ram",
3836
+ "storageSpace",
3837
+ "gpuRequired",
3838
+ "gpuModel"
3839
+ ],
3840
+ "properties": {
3841
+ "gpuModel": {
3842
+ "widget": "singleLineText"
3843
+ },
3844
+ "gpuRequired": {
3845
+ "widget": "toggleSwitch"
3846
+ },
3847
+ "ram": {
3848
+ "instructions": "in GBs",
3849
+ "widget": "number"
3850
+ },
3851
+ "storageSpace": {
3852
+ "instructions": "in GBs",
3853
+ "widget": "number"
3854
+ },
3855
+ "vcpUs": {
3856
+ "widget": "number"
3857
+ }
3858
+ },
3859
+ "widget": "repeater"
3860
+ },
3861
+ "typicalUsageScenario": {
3862
+ "widget": "paragraphText"
3863
+ }
3864
+ },
3865
+ "widget": "object"
3866
+ },
3867
+ "matterTypes": {
3868
+ "widget": "relationship"
3869
+ },
3870
+ "onPlatformPurchase": {
3871
+ "widget": "toggleSwitch"
3872
+ },
3873
+ "overview": {
3874
+ "widget": "markdownText"
3875
+ },
3876
+ "pilot": {
3877
+ "widget": "toggleSwitch"
3878
+ },
3879
+ "practiseAreas": {
3880
+ "widget": "relationship"
3881
+ },
3882
+ "purpose": {
3883
+ "widget": "relationship"
3884
+ },
3885
+ "revisionId": {
3886
+ "instructions": "The format is productname-ddmmyyyy-number",
3887
+ "widget": "singleLineText"
3888
+ },
3889
+ "saaSBusiness": {
3890
+ "order": [
3891
+ "SaaS",
3892
+ "hosting"
3893
+ ],
3894
+ "properties": {
3895
+ "hosting": {
3896
+ "widget": "checkboxes"
3897
+ },
3898
+ "SaaS": {
3899
+ "widget": "toggleSwitch"
3900
+ }
3901
+ },
3902
+ "widget": "object"
3903
+ },
3904
+ "softwarePrerequisites": {
3905
+ "widget": "markdownText"
3906
+ },
3907
+ "tagline": {
3908
+ "widget": "singleLineText"
3909
+ },
3910
+ "technologies": {
3911
+ "widget": "relationship"
3912
+ },
3913
+ "tenancy": {
3914
+ "order": [
3915
+ "tenancyType",
3916
+ "tenancyDescription"
3917
+ ],
3918
+ "properties": {
3919
+ "tenancyDescription": {
3920
+ "widget": "paragraphText"
3921
+ },
3922
+ "tenancyType": {
3923
+ "widget": "dropdown"
3924
+ }
3925
+ },
3926
+ "widget": "object"
3927
+ },
3928
+ "testDrive": {
3929
+ "widget": "toggleSwitch"
3930
+ },
3931
+ "vendor": {
3932
+ "widget": "relationship"
3933
+ },
3934
+ "videos": {
3935
+ "order": [
3936
+ "video",
3937
+ "videoType"
3938
+ ],
3939
+ "properties": {
3940
+ "video": {
3941
+ "widget": "image"
3942
+ },
3943
+ "videoType": {
3944
+ "widget": "relationship"
3945
+ }
3946
+ },
3947
+ "widget": "repeater"
3948
+ },
3949
+ "webServicePrerequisites": {
3950
+ "widget": "markdownText"
3951
+ },
3952
+ "worksWith": {
3953
+ "order": [
3954
+ "worksWithRCApps",
3955
+ "worksWithExternalApps"
3956
+ ],
3957
+ "properties": {
3958
+ "worksWithExternalApps": {
3959
+ "order": [
3960
+ "externalApp",
3961
+ "integrationDescription"
3962
+ ],
3963
+ "properties": {
3964
+ "externalApp": {
3965
+ "widget": "relationship"
3966
+ },
3967
+ "integrationDescription": {
3968
+ "widget": "paragraphText"
3969
+ }
3970
+ },
3971
+ "widget": "repeater"
3972
+ },
3973
+ "worksWithRCApps": {
3974
+ "order": [
3975
+ "rcApp",
3976
+ "integrationDescription"
3977
+ ],
3978
+ "properties": {
3979
+ "integrationDescription": {
3980
+ "widget": "paragraphText"
3981
+ },
3982
+ "rcApp": {
3983
+ "widget": "relationship"
3984
+ }
3985
+ },
3986
+ "widget": "repeater"
3987
+ }
3988
+ },
3989
+ "widget": "object"
3990
+ }
3991
+ }
3992
+ }
3993
+ },
3994
+ "PracticeArea": {
3995
+ "default": {
3996
+ "order": [
3997
+ "name",
3998
+ "description"
3999
+ ],
4000
+ "properties": {
4001
+ "description": {
4002
+ "widget": "paragraphText"
4003
+ },
4004
+ "name": {
4005
+ "widget": "singleLineText"
4006
+ }
4007
+ }
4008
+ }
4009
+ },
4010
+ "ImageType": {
4011
+ "default": {
4012
+ "order": [
4013
+ "name",
4014
+ "description"
4015
+ ],
4016
+ "properties": {
4017
+ "description": {
4018
+ "widget": "paragraphText"
4019
+ },
4020
+ "name": {
4021
+ "widget": "singleLineText"
4022
+ }
4023
+ }
4024
+ }
4025
+ },
4026
+ "Technology": {
4027
+ "default": {
4028
+ "order": [
4029
+ "name",
4030
+ "description"
4031
+ ],
4032
+ "properties": {
4033
+ "description": {
4034
+ "widget": "paragraphText"
4035
+ },
4036
+ "name": {
4037
+ "widget": "singleLineText"
4038
+ }
4039
+ }
4040
+ }
4041
+ },
4042
+ "Solution": {
4043
+ "default": {
4044
+ "order": [
4045
+ "name",
4046
+ "revisions",
4047
+ "status"
4048
+ ],
4049
+ "properties": {
4050
+ "name": {
4051
+ "widget": "singleLineText"
4052
+ },
4053
+ "revisions": {
4054
+ "order": [
4055
+ "revision",
4056
+ "status"
4057
+ ],
4058
+ "properties": {
4059
+ "revision": {
4060
+ "widget": "relationship"
4061
+ },
4062
+ "status": {
4063
+ "widget": "dropdown"
4064
+ }
4065
+ },
4066
+ "widget": "repeater"
4067
+ },
4068
+ "status": {
4069
+ "widget": "dropdown"
4070
+ }
4071
+ }
4072
+ }
4073
+ }
4074
+ },
4075
+ "dataKey": "supersecret"
4076
+ }