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