3
0

LY_SC_UnitTest_StringFormatWithRepeatedValueName.scriptcanvas 116 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034
  1. {
  2. "Type": "JsonSerialization",
  3. "Version": 1,
  4. "ClassName": "ScriptCanvasData",
  5. "ClassData": {
  6. "m_scriptCanvas": {
  7. "Id": {
  8. "id": 2662156957316553
  9. },
  10. "Name": "codegen_liug",
  11. "Components": {
  12. "Component_[1664914098673997493]": {
  13. "$type": "EditorGraph",
  14. "Id": 1664914098673997493,
  15. "m_graphData": {
  16. "m_nodes": [
  17. {
  18. "Id": {
  19. "id": 2662195612022217
  20. },
  21. "Name": "SC Node(GetVariable)",
  22. "Components": {
  23. "Component_[10045781681312478901]": {
  24. "$type": "GetVariableNode",
  25. "Id": 10045781681312478901,
  26. "Slots": [
  27. {
  28. "id": {
  29. "m_id": "{B189655E-8A8F-4F57-9767-2B81354E1B38}"
  30. },
  31. "contracts": [
  32. {
  33. "$type": "SlotTypeContract"
  34. }
  35. ],
  36. "slotName": "In",
  37. "toolTip": "When signaled sends the property referenced by this node to a Data Output slot",
  38. "Descriptor": {
  39. "ConnectionType": 1,
  40. "SlotType": 1
  41. }
  42. },
  43. {
  44. "id": {
  45. "m_id": "{93508296-3E0D-474C-BEDA-09A1405960CE}"
  46. },
  47. "contracts": [
  48. {
  49. "$type": "SlotTypeContract"
  50. }
  51. ],
  52. "slotName": "Out",
  53. "toolTip": "Signaled after the referenced property has been pushed to the Data Output slot",
  54. "Descriptor": {
  55. "ConnectionType": 2,
  56. "SlotType": 1
  57. }
  58. },
  59. {
  60. "id": {
  61. "m_id": "{11BA0E0B-3372-47E2-90F1-26E1CAF0C059}"
  62. },
  63. "contracts": [
  64. {
  65. "$type": "SlotTypeContract"
  66. }
  67. ],
  68. "slotName": "String",
  69. "DisplayDataType": {
  70. "m_type": 5
  71. },
  72. "Descriptor": {
  73. "ConnectionType": 2,
  74. "SlotType": 2
  75. },
  76. "DataType": 1
  77. }
  78. ],
  79. "m_variableId": {
  80. "m_id": "{75A1189C-C691-42B9-81CC-423C266A9F4F}"
  81. },
  82. "m_variableDataOutSlotId": {
  83. "m_id": "{11BA0E0B-3372-47E2-90F1-26E1CAF0C059}"
  84. }
  85. }
  86. }
  87. },
  88. {
  89. "Id": {
  90. "id": 2662187022087625
  91. },
  92. "Name": "SC-Node(Format)",
  93. "Components": {
  94. "Component_[10483129710865342484]": {
  95. "$type": "Format",
  96. "Id": 10483129710865342484,
  97. "Slots": [
  98. {
  99. "id": {
  100. "m_id": "{B12A723A-FC4A-4E4D-B2C4-4608B9F051F6}"
  101. },
  102. "contracts": [
  103. {
  104. "$type": "SlotTypeContract"
  105. }
  106. ],
  107. "slotName": "In",
  108. "toolTip": "Input signal",
  109. "Descriptor": {
  110. "ConnectionType": 1,
  111. "SlotType": 1
  112. }
  113. },
  114. {
  115. "id": {
  116. "m_id": "{6467824C-29C2-4044-A236-5148708A3ADF}"
  117. },
  118. "contracts": [
  119. {
  120. "$type": "SlotTypeContract"
  121. }
  122. ],
  123. "slotName": "Out",
  124. "Descriptor": {
  125. "ConnectionType": 2,
  126. "SlotType": 1
  127. }
  128. },
  129. {
  130. "id": {
  131. "m_id": "{2C556087-61AF-487C-A189-CFB155A20591}"
  132. },
  133. "DynamicTypeOverride": 3,
  134. "contracts": [
  135. {
  136. "$type": "SlotTypeContract"
  137. },
  138. null
  139. ],
  140. "slotName": "Value",
  141. "toolTip": "Value which replaces instances of {Value} in the resulting string.",
  142. "DisplayDataType": {
  143. "m_type": 5
  144. },
  145. "DisplayGroup": {
  146. "Value": 1015031923
  147. },
  148. "Descriptor": {
  149. "ConnectionType": 1,
  150. "SlotType": 2
  151. },
  152. "DataType": 1
  153. },
  154. {
  155. "id": {
  156. "m_id": "{129781DD-D0AF-45B0-9777-47BDD1FD33DC}"
  157. },
  158. "DynamicTypeOverride": 3,
  159. "contracts": [
  160. {
  161. "$type": "SlotTypeContract"
  162. },
  163. null
  164. ],
  165. "slotName": "Value_1",
  166. "toolTip": "Value which replaces instances of {Value_1} in the resulting string.",
  167. "DisplayDataType": {
  168. "m_type": 5
  169. },
  170. "DisplayGroup": {
  171. "Value": 1015031923
  172. },
  173. "Descriptor": {
  174. "ConnectionType": 1,
  175. "SlotType": 2
  176. },
  177. "DataType": 1
  178. },
  179. {
  180. "id": {
  181. "m_id": "{FCAC4A4E-326F-447F-9130-B127CF032E73}"
  182. },
  183. "contracts": [
  184. {
  185. "$type": "SlotTypeContract"
  186. }
  187. ],
  188. "slotName": "String",
  189. "toolTip": "The resulting string.",
  190. "DisplayDataType": {
  191. "m_type": 5
  192. },
  193. "DisplayGroup": {
  194. "Value": 1015031923
  195. },
  196. "Descriptor": {
  197. "ConnectionType": 2,
  198. "SlotType": 2
  199. },
  200. "DataType": 1
  201. }
  202. ],
  203. "Datums": [
  204. {
  205. "isOverloadedStorage": false,
  206. "scriptCanvasType": {
  207. "m_type": 5
  208. },
  209. "isNullPointer": false,
  210. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  211. "value": "",
  212. "label": "Value"
  213. },
  214. {
  215. "isOverloadedStorage": false,
  216. "scriptCanvasType": {
  217. "m_type": 5
  218. },
  219. "isNullPointer": false,
  220. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  221. "value": "",
  222. "label": "Value_1"
  223. }
  224. ],
  225. "m_format": "{Value} {Value_1}",
  226. "m_arrayBindingMap": [
  227. {
  228. "Key": 1,
  229. "Value": {
  230. "m_id": "{2C556087-61AF-487C-A189-CFB155A20591}"
  231. }
  232. },
  233. {
  234. "Key": 3,
  235. "Value": {
  236. "m_id": "{129781DD-D0AF-45B0-9777-47BDD1FD33DC}"
  237. }
  238. }
  239. ],
  240. "m_unresolvedString": [
  241. {},
  242. {},
  243. " ",
  244. {}
  245. ],
  246. "m_formatSlotMap": {
  247. "Value": {
  248. "m_id": "{2C556087-61AF-487C-A189-CFB155A20591}"
  249. },
  250. "Value_1": {
  251. "m_id": "{129781DD-D0AF-45B0-9777-47BDD1FD33DC}"
  252. }
  253. }
  254. }
  255. }
  256. },
  257. {
  258. "Id": {
  259. "id": 2662178432153033
  260. },
  261. "Name": "SC Node(GetVariable)",
  262. "Components": {
  263. "Component_[11210564609185361150]": {
  264. "$type": "GetVariableNode",
  265. "Id": 11210564609185361150,
  266. "Slots": [
  267. {
  268. "id": {
  269. "m_id": "{3EC985AD-4B55-46AF-957C-89476F0A9EB4}"
  270. },
  271. "contracts": [
  272. {
  273. "$type": "SlotTypeContract"
  274. }
  275. ],
  276. "slotName": "In",
  277. "toolTip": "When signaled sends the property referenced by this node to a Data Output slot",
  278. "Descriptor": {
  279. "ConnectionType": 1,
  280. "SlotType": 1
  281. }
  282. },
  283. {
  284. "id": {
  285. "m_id": "{F367D43D-230F-45EF-9865-605A7E0BCFB6}"
  286. },
  287. "contracts": [
  288. {
  289. "$type": "SlotTypeContract"
  290. }
  291. ],
  292. "slotName": "Out",
  293. "toolTip": "Signaled after the referenced property has been pushed to the Data Output slot",
  294. "Descriptor": {
  295. "ConnectionType": 2,
  296. "SlotType": 1
  297. }
  298. },
  299. {
  300. "id": {
  301. "m_id": "{2FD815CC-D1C5-4BA0-8A84-2273002BF562}"
  302. },
  303. "contracts": [
  304. {
  305. "$type": "SlotTypeContract"
  306. }
  307. ],
  308. "slotName": "String",
  309. "DisplayDataType": {
  310. "m_type": 5
  311. },
  312. "Descriptor": {
  313. "ConnectionType": 2,
  314. "SlotType": 2
  315. },
  316. "DataType": 1
  317. }
  318. ],
  319. "m_variableId": {
  320. "m_id": "{7257C20E-D6FF-4F3F-AEF7-677E37AE71F8}"
  321. },
  322. "m_variableDataOutSlotId": {
  323. "m_id": "{2FD815CC-D1C5-4BA0-8A84-2273002BF562}"
  324. }
  325. }
  326. }
  327. },
  328. {
  329. "Id": {
  330. "id": 2662174137185737
  331. },
  332. "Name": "SC Node(GetVariable)",
  333. "Components": {
  334. "Component_[11239963115368831326]": {
  335. "$type": "GetVariableNode",
  336. "Id": 11239963115368831326,
  337. "Slots": [
  338. {
  339. "id": {
  340. "m_id": "{9C79E3D5-D82B-4E77-ACB1-644DD05C4D78}"
  341. },
  342. "contracts": [
  343. {
  344. "$type": "SlotTypeContract"
  345. }
  346. ],
  347. "slotName": "In",
  348. "toolTip": "When signaled sends the property referenced by this node to a Data Output slot",
  349. "Descriptor": {
  350. "ConnectionType": 1,
  351. "SlotType": 1
  352. }
  353. },
  354. {
  355. "id": {
  356. "m_id": "{2743F941-E04D-4626-B78B-AD6FD7D5AC8C}"
  357. },
  358. "contracts": [
  359. {
  360. "$type": "SlotTypeContract"
  361. }
  362. ],
  363. "slotName": "Out",
  364. "toolTip": "Signaled after the referenced property has been pushed to the Data Output slot",
  365. "Descriptor": {
  366. "ConnectionType": 2,
  367. "SlotType": 1
  368. }
  369. },
  370. {
  371. "id": {
  372. "m_id": "{8904C187-320F-459D-B282-3CC69E7407C0}"
  373. },
  374. "contracts": [
  375. {
  376. "$type": "SlotTypeContract"
  377. }
  378. ],
  379. "slotName": "String",
  380. "DisplayDataType": {
  381. "m_type": 5
  382. },
  383. "Descriptor": {
  384. "ConnectionType": 2,
  385. "SlotType": 2
  386. },
  387. "DataType": 1
  388. }
  389. ],
  390. "m_variableId": {
  391. "m_id": "{5F23FE74-3AFC-4AE4-B9C6-E72CAC95A0BA}"
  392. },
  393. "m_variableDataOutSlotId": {
  394. "m_id": "{8904C187-320F-459D-B282-3CC69E7407C0}"
  395. }
  396. }
  397. }
  398. },
  399. {
  400. "Id": {
  401. "id": 2662169842218441
  402. },
  403. "Name": "SC-Node(Start)",
  404. "Components": {
  405. "Component_[17021565657374251139]": {
  406. "$type": "Start",
  407. "Id": 17021565657374251139,
  408. "Slots": [
  409. {
  410. "id": {
  411. "m_id": "{3454BDAA-3FFB-4E3E-9AF4-085D449A47C3}"
  412. },
  413. "contracts": [
  414. {
  415. "$type": "SlotTypeContract"
  416. }
  417. ],
  418. "slotName": "Out",
  419. "toolTip": "Signaled when the entity that owns this graph is fully activated.",
  420. "Descriptor": {
  421. "ConnectionType": 2,
  422. "SlotType": 1
  423. }
  424. }
  425. ]
  426. }
  427. }
  428. },
  429. {
  430. "Id": {
  431. "id": 2662165547251145
  432. },
  433. "Name": "SC Node(GetVariable)",
  434. "Components": {
  435. "Component_[2166116732359028238]": {
  436. "$type": "GetVariableNode",
  437. "Id": 2166116732359028238,
  438. "Slots": [
  439. {
  440. "id": {
  441. "m_id": "{4D511E0F-7C8E-426D-861B-4F8681D46ED3}"
  442. },
  443. "contracts": [
  444. {
  445. "$type": "SlotTypeContract"
  446. }
  447. ],
  448. "slotName": "In",
  449. "toolTip": "When signaled sends the property referenced by this node to a Data Output slot",
  450. "Descriptor": {
  451. "ConnectionType": 1,
  452. "SlotType": 1
  453. }
  454. },
  455. {
  456. "id": {
  457. "m_id": "{05C067E3-D008-4E83-94E2-E3F0FB7B72C8}"
  458. },
  459. "contracts": [
  460. {
  461. "$type": "SlotTypeContract"
  462. }
  463. ],
  464. "slotName": "Out",
  465. "toolTip": "Signaled after the referenced property has been pushed to the Data Output slot",
  466. "Descriptor": {
  467. "ConnectionType": 2,
  468. "SlotType": 1
  469. }
  470. },
  471. {
  472. "id": {
  473. "m_id": "{DCB24D7D-595F-4939-922C-739BD9F9F3C5}"
  474. },
  475. "contracts": [
  476. {
  477. "$type": "SlotTypeContract"
  478. }
  479. ],
  480. "slotName": "String",
  481. "DisplayDataType": {
  482. "m_type": 5
  483. },
  484. "Descriptor": {
  485. "ConnectionType": 2,
  486. "SlotType": 2
  487. },
  488. "DataType": 1
  489. }
  490. ],
  491. "m_variableId": {
  492. "m_id": "{6E1C919C-736F-4F01-8EBD-810E7B6C90EA}"
  493. },
  494. "m_variableDataOutSlotId": {
  495. "m_id": "{DCB24D7D-595F-4939-922C-739BD9F9F3C5}"
  496. }
  497. }
  498. }
  499. },
  500. {
  501. "Id": {
  502. "id": 2662161252283849
  503. },
  504. "Name": "SC-Node(Mark Complete)",
  505. "Components": {
  506. "Component_[4917019738275267247]": {
  507. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  508. "Id": 4917019738275267247,
  509. "Slots": [
  510. {
  511. "isVisibile": false,
  512. "id": {
  513. "m_id": "{D79D2D4A-DFDE-4091-8966-7853E3D78FD1}"
  514. },
  515. "contracts": [
  516. {
  517. "$type": "SlotTypeContract"
  518. },
  519. null
  520. ],
  521. "slotName": "EntityID: 0",
  522. "Descriptor": {
  523. "ConnectionType": 1,
  524. "SlotType": 2
  525. },
  526. "DataType": 1
  527. },
  528. {
  529. "id": {
  530. "m_id": "{DC029E69-B9ED-4E8A-9C88-CDFBD4AEDEBC}"
  531. },
  532. "contracts": [
  533. {
  534. "$type": "SlotTypeContract"
  535. },
  536. null
  537. ],
  538. "slotName": "Report",
  539. "toolTip": "additional notes for the test report",
  540. "Descriptor": {
  541. "ConnectionType": 1,
  542. "SlotType": 2
  543. },
  544. "DataType": 1
  545. },
  546. {
  547. "id": {
  548. "m_id": "{086DBA12-7C6F-41FF-BB9C-E47FF3AAFDC4}"
  549. },
  550. "contracts": [
  551. {
  552. "$type": "SlotTypeContract"
  553. }
  554. ],
  555. "slotName": "In",
  556. "Descriptor": {
  557. "ConnectionType": 1,
  558. "SlotType": 1
  559. }
  560. },
  561. {
  562. "id": {
  563. "m_id": "{E3A9ABFF-66BB-4831-A0DD-72939461887B}"
  564. },
  565. "contracts": [
  566. {
  567. "$type": "SlotTypeContract"
  568. }
  569. ],
  570. "slotName": "Out",
  571. "Descriptor": {
  572. "ConnectionType": 2,
  573. "SlotType": 1
  574. }
  575. }
  576. ],
  577. "Datums": [
  578. {
  579. "isOverloadedStorage": false,
  580. "scriptCanvasType": {
  581. "m_type": 1
  582. },
  583. "isNullPointer": false,
  584. "$type": "EntityId",
  585. "value": {
  586. "id": 4276206253
  587. }
  588. },
  589. {
  590. "isOverloadedStorage": false,
  591. "scriptCanvasType": {
  592. "m_type": 5
  593. },
  594. "isNullPointer": false,
  595. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  596. "value": "String format complete",
  597. "label": "Report"
  598. }
  599. ],
  600. "methodType": 2,
  601. "methodName": "Mark Complete",
  602. "className": "Unit Testing",
  603. "resultSlotIDs": [
  604. {}
  605. ],
  606. "prettyClassName": "Unit Testing"
  607. }
  608. }
  609. },
  610. {
  611. "Id": {
  612. "id": 2662199906989513
  613. },
  614. "Name": "SC Node(GetVariable)",
  615. "Components": {
  616. "Component_[7676512065035088801]": {
  617. "$type": "GetVariableNode",
  618. "Id": 7676512065035088801,
  619. "Slots": [
  620. {
  621. "id": {
  622. "m_id": "{BD6B4ED9-A715-453A-9717-8450C3750AE1}"
  623. },
  624. "contracts": [
  625. {
  626. "$type": "SlotTypeContract"
  627. }
  628. ],
  629. "slotName": "In",
  630. "toolTip": "When signaled sends the property referenced by this node to a Data Output slot",
  631. "Descriptor": {
  632. "ConnectionType": 1,
  633. "SlotType": 1
  634. }
  635. },
  636. {
  637. "id": {
  638. "m_id": "{6D39B60E-6D4C-49A6-8091-3245A58E7E9C}"
  639. },
  640. "contracts": [
  641. {
  642. "$type": "SlotTypeContract"
  643. }
  644. ],
  645. "slotName": "Out",
  646. "toolTip": "Signaled after the referenced property has been pushed to the Data Output slot",
  647. "Descriptor": {
  648. "ConnectionType": 2,
  649. "SlotType": 1
  650. }
  651. },
  652. {
  653. "id": {
  654. "m_id": "{B0E29BD0-4BC9-4BE9-B21D-39D8449EE531}"
  655. },
  656. "contracts": [
  657. {
  658. "$type": "SlotTypeContract"
  659. }
  660. ],
  661. "slotName": "String",
  662. "DisplayDataType": {
  663. "m_type": 5
  664. },
  665. "Descriptor": {
  666. "ConnectionType": 2,
  667. "SlotType": 2
  668. },
  669. "DataType": 1
  670. }
  671. ],
  672. "m_variableId": {
  673. "m_id": "{D336E539-D295-4627-ADA7-E3A1060DA01B}"
  674. },
  675. "m_variableDataOutSlotId": {
  676. "m_id": "{B0E29BD0-4BC9-4BE9-B21D-39D8449EE531}"
  677. }
  678. }
  679. }
  680. },
  681. {
  682. "Id": {
  683. "id": 2662191317054921
  684. },
  685. "Name": "SC-Node(Expect Equal)",
  686. "Components": {
  687. "Component_[9505459371047197594]": {
  688. "$type": "MethodOverloaded",
  689. "Id": 9505459371047197594,
  690. "Slots": [
  691. {
  692. "id": {
  693. "m_id": "{49ED8247-2808-486B-8C4C-CFE6A2D49332}"
  694. },
  695. "contracts": [
  696. {
  697. "$type": "SlotTypeContract"
  698. },
  699. null
  700. ],
  701. "slotName": "EntityID: 0",
  702. "DisplayDataType": {
  703. "m_type": 1
  704. },
  705. "Descriptor": {
  706. "ConnectionType": 1,
  707. "SlotType": 2
  708. },
  709. "DataType": 1
  710. },
  711. {
  712. "IsOverload": true,
  713. "id": {
  714. "m_id": "{A2256BF5-B168-46A0-BC27-38477F43630D}"
  715. },
  716. "DynamicTypeOverride": 3,
  717. "contracts": [
  718. {
  719. "$type": "SlotTypeContract"
  720. },
  721. null
  722. ],
  723. "slotName": "Candidate",
  724. "toolTip": "left of ==",
  725. "DisplayDataType": {
  726. "m_type": 5
  727. },
  728. "Descriptor": {
  729. "ConnectionType": 1,
  730. "SlotType": 2
  731. },
  732. "DataType": 1
  733. },
  734. {
  735. "IsOverload": true,
  736. "id": {
  737. "m_id": "{FC8E6A20-A0FE-4CD8-9C13-4A822257585D}"
  738. },
  739. "DynamicTypeOverride": 3,
  740. "contracts": [
  741. {
  742. "$type": "SlotTypeContract"
  743. },
  744. null
  745. ],
  746. "slotName": "Reference",
  747. "toolTip": "right of ==",
  748. "DisplayDataType": {
  749. "m_type": 5
  750. },
  751. "Descriptor": {
  752. "ConnectionType": 1,
  753. "SlotType": 2
  754. },
  755. "DataType": 1
  756. },
  757. {
  758. "id": {
  759. "m_id": "{B077C16C-7D3B-42E3-9732-4FF9A8D1535F}"
  760. },
  761. "contracts": [
  762. {
  763. "$type": "SlotTypeContract"
  764. },
  765. null
  766. ],
  767. "slotName": "Report",
  768. "toolTip": "additional notes for the test report",
  769. "DisplayDataType": {
  770. "m_type": 5
  771. },
  772. "Descriptor": {
  773. "ConnectionType": 1,
  774. "SlotType": 2
  775. },
  776. "DataType": 1
  777. },
  778. {
  779. "id": {
  780. "m_id": "{6CD5F98D-39FA-4717-95FD-8146E596CD75}"
  781. },
  782. "contracts": [
  783. {
  784. "$type": "SlotTypeContract"
  785. }
  786. ],
  787. "slotName": "In",
  788. "Descriptor": {
  789. "ConnectionType": 1,
  790. "SlotType": 1
  791. }
  792. },
  793. {
  794. "id": {
  795. "m_id": "{E235D69E-439E-4958-8F6B-26E0B62C433D}"
  796. },
  797. "contracts": [
  798. {
  799. "$type": "SlotTypeContract"
  800. }
  801. ],
  802. "slotName": "Out",
  803. "Descriptor": {
  804. "ConnectionType": 2,
  805. "SlotType": 1
  806. }
  807. }
  808. ],
  809. "Datums": [
  810. {
  811. "isOverloadedStorage": false,
  812. "scriptCanvasType": {
  813. "m_type": 1
  814. },
  815. "isNullPointer": false,
  816. "$type": "EntityId",
  817. "value": {
  818. "id": 4276206253
  819. },
  820. "label": "EntityID: 0"
  821. },
  822. {
  823. "isOverloadedStorage": false,
  824. "scriptCanvasType": {
  825. "m_type": 5
  826. },
  827. "isNullPointer": false,
  828. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  829. "value": "",
  830. "label": "Candidate"
  831. },
  832. {
  833. "isOverloadedStorage": false,
  834. "scriptCanvasType": {
  835. "m_type": 5
  836. },
  837. "isNullPointer": false,
  838. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  839. "value": "",
  840. "label": "Reference"
  841. },
  842. {
  843. "isOverloadedStorage": false,
  844. "scriptCanvasType": {
  845. "m_type": 5
  846. },
  847. "isNullPointer": false,
  848. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  849. "value": "Test string should match",
  850. "label": "Report"
  851. }
  852. ],
  853. "methodType": 2,
  854. "methodName": "Expect Equal",
  855. "className": "Unit Testing",
  856. "resultSlotIDs": [
  857. {}
  858. ],
  859. "prettyClassName": "Unit Testing",
  860. "orderedInputSlotIds": [
  861. {
  862. "m_id": "{49ED8247-2808-486B-8C4C-CFE6A2D49332}"
  863. },
  864. {
  865. "m_id": "{A2256BF5-B168-46A0-BC27-38477F43630D}"
  866. },
  867. {
  868. "m_id": "{FC8E6A20-A0FE-4CD8-9C13-4A822257585D}"
  869. },
  870. {
  871. "m_id": "{B077C16C-7D3B-42E3-9732-4FF9A8D1535F}"
  872. }
  873. ]
  874. }
  875. }
  876. },
  877. {
  878. "Id": {
  879. "id": 2662182727120329
  880. },
  881. "Name": "SC-Node(Format)",
  882. "Components": {
  883. "Component_[9965786977036071126]": {
  884. "$type": "Format",
  885. "Id": 9965786977036071126,
  886. "Slots": [
  887. {
  888. "id": {
  889. "m_id": "{4A7FB8A2-1DC6-46A2-B989-FDEE1DFC57BE}"
  890. },
  891. "contracts": [
  892. {
  893. "$type": "SlotTypeContract"
  894. }
  895. ],
  896. "slotName": "In",
  897. "toolTip": "Input signal",
  898. "Descriptor": {
  899. "ConnectionType": 1,
  900. "SlotType": 1
  901. }
  902. },
  903. {
  904. "id": {
  905. "m_id": "{414376E9-711F-4985-BEDB-82195B9B91D9}"
  906. },
  907. "contracts": [
  908. {
  909. "$type": "SlotTypeContract"
  910. }
  911. ],
  912. "slotName": "Out",
  913. "Descriptor": {
  914. "ConnectionType": 2,
  915. "SlotType": 1
  916. }
  917. },
  918. {
  919. "id": {
  920. "m_id": "{E9EE79AE-1A11-4804-9CC8-638E8B157795}"
  921. },
  922. "DynamicTypeOverride": 3,
  923. "contracts": [
  924. {
  925. "$type": "SlotTypeContract"
  926. },
  927. null
  928. ],
  929. "slotName": "Value",
  930. "toolTip": "Value which replaces instances of {Value} in the resulting string.",
  931. "DisplayDataType": {
  932. "m_type": 5
  933. },
  934. "DisplayGroup": {
  935. "Value": 1015031923
  936. },
  937. "Descriptor": {
  938. "ConnectionType": 1,
  939. "SlotType": 2
  940. },
  941. "DataType": 1
  942. },
  943. {
  944. "id": {
  945. "m_id": "{5822BF05-BBED-4CA5-BD6D-245B9AA37348}"
  946. },
  947. "DynamicTypeOverride": 3,
  948. "contracts": [
  949. {
  950. "$type": "SlotTypeContract"
  951. },
  952. null
  953. ],
  954. "slotName": "Value_1",
  955. "toolTip": "Value which replaces instances of {Value_1} in the resulting string.",
  956. "DisplayDataType": {
  957. "m_type": 5
  958. },
  959. "DisplayGroup": {
  960. "Value": 1015031923
  961. },
  962. "Descriptor": {
  963. "ConnectionType": 1,
  964. "SlotType": 2
  965. },
  966. "DataType": 1
  967. },
  968. {
  969. "id": {
  970. "m_id": "{690C867B-8220-4A4F-BDB0-DC5F99C51BFD}"
  971. },
  972. "DynamicTypeOverride": 3,
  973. "contracts": [
  974. {
  975. "$type": "SlotTypeContract"
  976. },
  977. null
  978. ],
  979. "slotName": "Value_2",
  980. "toolTip": "Value which replaces instances of {Value_2} in the resulting string.",
  981. "DisplayDataType": {
  982. "m_type": 5
  983. },
  984. "DisplayGroup": {
  985. "Value": 1015031923
  986. },
  987. "Descriptor": {
  988. "ConnectionType": 1,
  989. "SlotType": 2
  990. },
  991. "DataType": 1
  992. },
  993. {
  994. "id": {
  995. "m_id": "{58A947D6-0AD3-4390-AA1C-45C4B03A4617}"
  996. },
  997. "contracts": [
  998. {
  999. "$type": "SlotTypeContract"
  1000. }
  1001. ],
  1002. "slotName": "String",
  1003. "toolTip": "The resulting string.",
  1004. "DisplayDataType": {
  1005. "m_type": 5
  1006. },
  1007. "DisplayGroup": {
  1008. "Value": 1015031923
  1009. },
  1010. "Descriptor": {
  1011. "ConnectionType": 2,
  1012. "SlotType": 2
  1013. },
  1014. "DataType": 1
  1015. }
  1016. ],
  1017. "Datums": [
  1018. {
  1019. "isOverloadedStorage": false,
  1020. "scriptCanvasType": {
  1021. "m_type": 5
  1022. },
  1023. "isNullPointer": false,
  1024. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1025. "value": "",
  1026. "label": "Value"
  1027. },
  1028. {
  1029. "isOverloadedStorage": false,
  1030. "scriptCanvasType": {
  1031. "m_type": 5
  1032. },
  1033. "isNullPointer": false,
  1034. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1035. "value": "",
  1036. "label": "Value_1"
  1037. },
  1038. {
  1039. "isOverloadedStorage": false,
  1040. "scriptCanvasType": {
  1041. "m_type": 5
  1042. },
  1043. "isNullPointer": false,
  1044. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1045. "value": "",
  1046. "label": "Value_2"
  1047. }
  1048. ],
  1049. "m_format": "{Value} {Value_1} {Value_2}",
  1050. "m_arrayBindingMap": [
  1051. {
  1052. "Key": 1,
  1053. "Value": {
  1054. "m_id": "{E9EE79AE-1A11-4804-9CC8-638E8B157795}"
  1055. }
  1056. },
  1057. {
  1058. "Key": 3,
  1059. "Value": {
  1060. "m_id": "{5822BF05-BBED-4CA5-BD6D-245B9AA37348}"
  1061. }
  1062. },
  1063. {
  1064. "Key": 5,
  1065. "Value": {
  1066. "m_id": "{690C867B-8220-4A4F-BDB0-DC5F99C51BFD}"
  1067. }
  1068. }
  1069. ],
  1070. "m_unresolvedString": [
  1071. {},
  1072. {},
  1073. " ",
  1074. {},
  1075. " ",
  1076. {}
  1077. ],
  1078. "m_formatSlotMap": {
  1079. "Value": {
  1080. "m_id": "{E9EE79AE-1A11-4804-9CC8-638E8B157795}"
  1081. },
  1082. "Value_1": {
  1083. "m_id": "{5822BF05-BBED-4CA5-BD6D-245B9AA37348}"
  1084. },
  1085. "Value_2": {
  1086. "m_id": "{690C867B-8220-4A4F-BDB0-DC5F99C51BFD}"
  1087. }
  1088. }
  1089. }
  1090. }
  1091. }
  1092. ],
  1093. "m_connections": [
  1094. {
  1095. "Id": {
  1096. "id": 2662204201956809
  1097. },
  1098. "Name": "srcEndpoint=(On Graph Start: Out), destEndpoint=(Get Variable: In)",
  1099. "Components": {
  1100. "Component_[13262312563096269167]": {
  1101. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1102. "Id": 13262312563096269167,
  1103. "sourceEndpoint": {
  1104. "nodeId": {
  1105. "id": 2662169842218441
  1106. },
  1107. "slotId": {
  1108. "m_id": "{3454BDAA-3FFB-4E3E-9AF4-085D449A47C3}"
  1109. }
  1110. },
  1111. "targetEndpoint": {
  1112. "nodeId": {
  1113. "id": 2662174137185737
  1114. },
  1115. "slotId": {
  1116. "m_id": "{9C79E3D5-D82B-4E77-ACB1-644DD05C4D78}"
  1117. }
  1118. }
  1119. }
  1120. }
  1121. },
  1122. {
  1123. "Id": {
  1124. "id": 2662208496924105
  1125. },
  1126. "Name": "srcEndpoint=(Get Variable: String), destEndpoint=(Build String: Value)",
  1127. "Components": {
  1128. "Component_[12113748456445941519]": {
  1129. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1130. "Id": 12113748456445941519,
  1131. "sourceEndpoint": {
  1132. "nodeId": {
  1133. "id": 2662174137185737
  1134. },
  1135. "slotId": {
  1136. "m_id": "{8904C187-320F-459D-B282-3CC69E7407C0}"
  1137. }
  1138. },
  1139. "targetEndpoint": {
  1140. "nodeId": {
  1141. "id": 2662187022087625
  1142. },
  1143. "slotId": {
  1144. "m_id": "{2C556087-61AF-487C-A189-CFB155A20591}"
  1145. }
  1146. }
  1147. }
  1148. }
  1149. },
  1150. {
  1151. "Id": {
  1152. "id": 2662212791891401
  1153. },
  1154. "Name": "srcEndpoint=(Get Variable: Out), destEndpoint=(Get Variable: In)",
  1155. "Components": {
  1156. "Component_[16488709738187833490]": {
  1157. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1158. "Id": 16488709738187833490,
  1159. "sourceEndpoint": {
  1160. "nodeId": {
  1161. "id": 2662174137185737
  1162. },
  1163. "slotId": {
  1164. "m_id": "{2743F941-E04D-4626-B78B-AD6FD7D5AC8C}"
  1165. }
  1166. },
  1167. "targetEndpoint": {
  1168. "nodeId": {
  1169. "id": 2662199906989513
  1170. },
  1171. "slotId": {
  1172. "m_id": "{BD6B4ED9-A715-453A-9717-8450C3750AE1}"
  1173. }
  1174. }
  1175. }
  1176. }
  1177. },
  1178. {
  1179. "Id": {
  1180. "id": 2662217086858697
  1181. },
  1182. "Name": "srcEndpoint=(Get Variable: Out), destEndpoint=(Build String: In)",
  1183. "Components": {
  1184. "Component_[10218723050579981319]": {
  1185. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1186. "Id": 10218723050579981319,
  1187. "sourceEndpoint": {
  1188. "nodeId": {
  1189. "id": 2662199906989513
  1190. },
  1191. "slotId": {
  1192. "m_id": "{6D39B60E-6D4C-49A6-8091-3245A58E7E9C}"
  1193. }
  1194. },
  1195. "targetEndpoint": {
  1196. "nodeId": {
  1197. "id": 2662187022087625
  1198. },
  1199. "slotId": {
  1200. "m_id": "{B12A723A-FC4A-4E4D-B2C4-4608B9F051F6}"
  1201. }
  1202. }
  1203. }
  1204. }
  1205. },
  1206. {
  1207. "Id": {
  1208. "id": 2662221381825993
  1209. },
  1210. "Name": "srcEndpoint=(Get Variable: String), destEndpoint=(Build String: Value_1)",
  1211. "Components": {
  1212. "Component_[11337626866800152199]": {
  1213. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1214. "Id": 11337626866800152199,
  1215. "sourceEndpoint": {
  1216. "nodeId": {
  1217. "id": 2662199906989513
  1218. },
  1219. "slotId": {
  1220. "m_id": "{B0E29BD0-4BC9-4BE9-B21D-39D8449EE531}"
  1221. }
  1222. },
  1223. "targetEndpoint": {
  1224. "nodeId": {
  1225. "id": 2662187022087625
  1226. },
  1227. "slotId": {
  1228. "m_id": "{129781DD-D0AF-45B0-9777-47BDD1FD33DC}"
  1229. }
  1230. }
  1231. }
  1232. }
  1233. },
  1234. {
  1235. "Id": {
  1236. "id": 2662225676793289
  1237. },
  1238. "Name": "srcEndpoint=(Build String: String), destEndpoint=(Build String: Value)",
  1239. "Components": {
  1240. "Component_[14638047800293602160]": {
  1241. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1242. "Id": 14638047800293602160,
  1243. "sourceEndpoint": {
  1244. "nodeId": {
  1245. "id": 2662187022087625
  1246. },
  1247. "slotId": {
  1248. "m_id": "{FCAC4A4E-326F-447F-9130-B127CF032E73}"
  1249. }
  1250. },
  1251. "targetEndpoint": {
  1252. "nodeId": {
  1253. "id": 2662182727120329
  1254. },
  1255. "slotId": {
  1256. "m_id": "{E9EE79AE-1A11-4804-9CC8-638E8B157795}"
  1257. }
  1258. }
  1259. }
  1260. }
  1261. },
  1262. {
  1263. "Id": {
  1264. "id": 2662229971760585
  1265. },
  1266. "Name": "srcEndpoint=(Build String: Out), destEndpoint=(Get Variable: In)",
  1267. "Components": {
  1268. "Component_[8502098994451132797]": {
  1269. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1270. "Id": 8502098994451132797,
  1271. "sourceEndpoint": {
  1272. "nodeId": {
  1273. "id": 2662187022087625
  1274. },
  1275. "slotId": {
  1276. "m_id": "{6467824C-29C2-4044-A236-5148708A3ADF}"
  1277. }
  1278. },
  1279. "targetEndpoint": {
  1280. "nodeId": {
  1281. "id": 2662165547251145
  1282. },
  1283. "slotId": {
  1284. "m_id": "{4D511E0F-7C8E-426D-861B-4F8681D46ED3}"
  1285. }
  1286. }
  1287. }
  1288. }
  1289. },
  1290. {
  1291. "Id": {
  1292. "id": 2662234266727881
  1293. },
  1294. "Name": "srcEndpoint=(Get Variable: Out), destEndpoint=(Get Variable: In)",
  1295. "Components": {
  1296. "Component_[1420608811746151997]": {
  1297. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1298. "Id": 1420608811746151997,
  1299. "sourceEndpoint": {
  1300. "nodeId": {
  1301. "id": 2662165547251145
  1302. },
  1303. "slotId": {
  1304. "m_id": "{05C067E3-D008-4E83-94E2-E3F0FB7B72C8}"
  1305. }
  1306. },
  1307. "targetEndpoint": {
  1308. "nodeId": {
  1309. "id": 2662178432153033
  1310. },
  1311. "slotId": {
  1312. "m_id": "{3EC985AD-4B55-46AF-957C-89476F0A9EB4}"
  1313. }
  1314. }
  1315. }
  1316. }
  1317. },
  1318. {
  1319. "Id": {
  1320. "id": 2662238561695177
  1321. },
  1322. "Name": "srcEndpoint=(Get Variable: Out), destEndpoint=(Build String: In)",
  1323. "Components": {
  1324. "Component_[254173237647364889]": {
  1325. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1326. "Id": 254173237647364889,
  1327. "sourceEndpoint": {
  1328. "nodeId": {
  1329. "id": 2662178432153033
  1330. },
  1331. "slotId": {
  1332. "m_id": "{F367D43D-230F-45EF-9865-605A7E0BCFB6}"
  1333. }
  1334. },
  1335. "targetEndpoint": {
  1336. "nodeId": {
  1337. "id": 2662182727120329
  1338. },
  1339. "slotId": {
  1340. "m_id": "{4A7FB8A2-1DC6-46A2-B989-FDEE1DFC57BE}"
  1341. }
  1342. }
  1343. }
  1344. }
  1345. },
  1346. {
  1347. "Id": {
  1348. "id": 2662242856662473
  1349. },
  1350. "Name": "srcEndpoint=(Get Variable: String), destEndpoint=(Build String: Value_1)",
  1351. "Components": {
  1352. "Component_[18120685891083844145]": {
  1353. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1354. "Id": 18120685891083844145,
  1355. "sourceEndpoint": {
  1356. "nodeId": {
  1357. "id": 2662165547251145
  1358. },
  1359. "slotId": {
  1360. "m_id": "{DCB24D7D-595F-4939-922C-739BD9F9F3C5}"
  1361. }
  1362. },
  1363. "targetEndpoint": {
  1364. "nodeId": {
  1365. "id": 2662182727120329
  1366. },
  1367. "slotId": {
  1368. "m_id": "{5822BF05-BBED-4CA5-BD6D-245B9AA37348}"
  1369. }
  1370. }
  1371. }
  1372. }
  1373. },
  1374. {
  1375. "Id": {
  1376. "id": 2662247151629769
  1377. },
  1378. "Name": "srcEndpoint=(Get Variable: String), destEndpoint=(Build String: Value_2)",
  1379. "Components": {
  1380. "Component_[4463343655321295466]": {
  1381. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1382. "Id": 4463343655321295466,
  1383. "sourceEndpoint": {
  1384. "nodeId": {
  1385. "id": 2662178432153033
  1386. },
  1387. "slotId": {
  1388. "m_id": "{2FD815CC-D1C5-4BA0-8A84-2273002BF562}"
  1389. }
  1390. },
  1391. "targetEndpoint": {
  1392. "nodeId": {
  1393. "id": 2662182727120329
  1394. },
  1395. "slotId": {
  1396. "m_id": "{690C867B-8220-4A4F-BDB0-DC5F99C51BFD}"
  1397. }
  1398. }
  1399. }
  1400. }
  1401. },
  1402. {
  1403. "Id": {
  1404. "id": 2662251446597065
  1405. },
  1406. "Name": "srcEndpoint=(Build String: String), destEndpoint=(Expect Equal: Candidate :-()",
  1407. "Components": {
  1408. "Component_[10111082968036332303]": {
  1409. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1410. "Id": 10111082968036332303,
  1411. "sourceEndpoint": {
  1412. "nodeId": {
  1413. "id": 2662182727120329
  1414. },
  1415. "slotId": {
  1416. "m_id": "{58A947D6-0AD3-4390-AA1C-45C4B03A4617}"
  1417. }
  1418. },
  1419. "targetEndpoint": {
  1420. "nodeId": {
  1421. "id": 2662191317054921
  1422. },
  1423. "slotId": {
  1424. "m_id": "{A2256BF5-B168-46A0-BC27-38477F43630D}"
  1425. }
  1426. }
  1427. }
  1428. }
  1429. },
  1430. {
  1431. "Id": {
  1432. "id": 2662255741564361
  1433. },
  1434. "Name": "srcEndpoint=(Build String: Out), destEndpoint=(Get Variable: In)",
  1435. "Components": {
  1436. "Component_[2582917719113322958]": {
  1437. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1438. "Id": 2582917719113322958,
  1439. "sourceEndpoint": {
  1440. "nodeId": {
  1441. "id": 2662182727120329
  1442. },
  1443. "slotId": {
  1444. "m_id": "{414376E9-711F-4985-BEDB-82195B9B91D9}"
  1445. }
  1446. },
  1447. "targetEndpoint": {
  1448. "nodeId": {
  1449. "id": 2662195612022217
  1450. },
  1451. "slotId": {
  1452. "m_id": "{B189655E-8A8F-4F57-9767-2B81354E1B38}"
  1453. }
  1454. }
  1455. }
  1456. }
  1457. },
  1458. {
  1459. "Id": {
  1460. "id": 2662260036531657
  1461. },
  1462. "Name": "srcEndpoint=(Get Variable: Out), destEndpoint=(Expect Equal: In)",
  1463. "Components": {
  1464. "Component_[361208371053550377]": {
  1465. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1466. "Id": 361208371053550377,
  1467. "sourceEndpoint": {
  1468. "nodeId": {
  1469. "id": 2662195612022217
  1470. },
  1471. "slotId": {
  1472. "m_id": "{93508296-3E0D-474C-BEDA-09A1405960CE}"
  1473. }
  1474. },
  1475. "targetEndpoint": {
  1476. "nodeId": {
  1477. "id": 2662191317054921
  1478. },
  1479. "slotId": {
  1480. "m_id": "{6CD5F98D-39FA-4717-95FD-8146E596CD75}"
  1481. }
  1482. }
  1483. }
  1484. }
  1485. },
  1486. {
  1487. "Id": {
  1488. "id": 2662264331498953
  1489. },
  1490. "Name": "srcEndpoint=(Expect Equal: Out), destEndpoint=(Mark Complete: In)",
  1491. "Components": {
  1492. "Component_[17634424996775171933]": {
  1493. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1494. "Id": 17634424996775171933,
  1495. "sourceEndpoint": {
  1496. "nodeId": {
  1497. "id": 2662191317054921
  1498. },
  1499. "slotId": {
  1500. "m_id": "{E235D69E-439E-4958-8F6B-26E0B62C433D}"
  1501. }
  1502. },
  1503. "targetEndpoint": {
  1504. "nodeId": {
  1505. "id": 2662161252283849
  1506. },
  1507. "slotId": {
  1508. "m_id": "{086DBA12-7C6F-41FF-BB9C-E47FF3AAFDC4}"
  1509. }
  1510. }
  1511. }
  1512. }
  1513. },
  1514. {
  1515. "Id": {
  1516. "id": 2662268626466249
  1517. },
  1518. "Name": "srcEndpoint=(Get Variable: String), destEndpoint=(Expect Equal: Reference :-()",
  1519. "Components": {
  1520. "Component_[18051743483497542725]": {
  1521. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1522. "Id": 18051743483497542725,
  1523. "sourceEndpoint": {
  1524. "nodeId": {
  1525. "id": 2662195612022217
  1526. },
  1527. "slotId": {
  1528. "m_id": "{11BA0E0B-3372-47E2-90F1-26E1CAF0C059}"
  1529. }
  1530. },
  1531. "targetEndpoint": {
  1532. "nodeId": {
  1533. "id": 2662191317054921
  1534. },
  1535. "slotId": {
  1536. "m_id": "{FC8E6A20-A0FE-4CD8-9C13-4A822257585D}"
  1537. }
  1538. }
  1539. }
  1540. }
  1541. }
  1542. ]
  1543. },
  1544. "m_assetType": "{3E2AC8CD-713F-453E-967F-29517F331784}",
  1545. "versionData": {
  1546. "_grammarVersion": 1,
  1547. "_runtimeVersion": 1,
  1548. "_fileVersion": 1
  1549. },
  1550. "m_variableCounter": 6,
  1551. "GraphCanvasData": [
  1552. {
  1553. "Key": {
  1554. "id": 2662156957316553
  1555. },
  1556. "Value": {
  1557. "ComponentData": {
  1558. "{5F84B500-8C45-40D1-8EFC-A5306B241444}": {
  1559. "$type": "SceneComponentSaveData",
  1560. "ViewParams": {
  1561. "AnchorX": -221.0,
  1562. "AnchorY": -42.0
  1563. }
  1564. }
  1565. }
  1566. }
  1567. },
  1568. {
  1569. "Key": {
  1570. "id": 2662161252283849
  1571. },
  1572. "Value": {
  1573. "ComponentData": {
  1574. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  1575. "$type": "NodeSaveData"
  1576. },
  1577. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  1578. "$type": "GeneralNodeTitleComponentSaveData",
  1579. "PaletteOverride": "MethodNodeTitlePalette"
  1580. },
  1581. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  1582. "$type": "GeometrySaveData",
  1583. "Position": [
  1584. 1140.0,
  1585. 80.0
  1586. ]
  1587. },
  1588. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  1589. "$type": "StylingComponentSaveData",
  1590. "SubStyle": ".method"
  1591. },
  1592. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  1593. "$type": "PersistentIdComponentSaveData",
  1594. "PersistentId": "{0AEDD519-30AA-4CAC-991D-AF48E3796AC8}"
  1595. }
  1596. }
  1597. }
  1598. },
  1599. {
  1600. "Key": {
  1601. "id": 2662165547251145
  1602. },
  1603. "Value": {
  1604. "ComponentData": {
  1605. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  1606. "$type": "NodeSaveData"
  1607. },
  1608. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  1609. "$type": "GeneralNodeTitleComponentSaveData",
  1610. "PaletteOverride": "GetVariableNodeTitlePalette"
  1611. },
  1612. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  1613. "$type": "GeometrySaveData",
  1614. "Position": [
  1615. 320.0,
  1616. 340.0
  1617. ]
  1618. },
  1619. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  1620. "$type": "StylingComponentSaveData",
  1621. "SubStyle": ".getVariable"
  1622. },
  1623. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  1624. "$type": "PersistentIdComponentSaveData",
  1625. "PersistentId": "{F32B9A3A-45F7-46B1-8BC9-397EEAC11AE9}"
  1626. }
  1627. }
  1628. }
  1629. },
  1630. {
  1631. "Key": {
  1632. "id": 2662169842218441
  1633. },
  1634. "Value": {
  1635. "ComponentData": {
  1636. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  1637. "$type": "NodeSaveData"
  1638. },
  1639. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  1640. "$type": "GeneralNodeTitleComponentSaveData",
  1641. "PaletteOverride": "TimeNodeTitlePalette"
  1642. },
  1643. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  1644. "$type": "GeometrySaveData",
  1645. "Position": [
  1646. -180.0,
  1647. 80.0
  1648. ]
  1649. },
  1650. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  1651. "$type": "StylingComponentSaveData",
  1652. "SubStyle": ".time"
  1653. },
  1654. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  1655. "$type": "PersistentIdComponentSaveData",
  1656. "PersistentId": "{CE31F4C0-CB5A-44D6-BE50-83EB9BCA469F}"
  1657. }
  1658. }
  1659. }
  1660. },
  1661. {
  1662. "Key": {
  1663. "id": 2662174137185737
  1664. },
  1665. "Value": {
  1666. "ComponentData": {
  1667. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  1668. "$type": "NodeSaveData"
  1669. },
  1670. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  1671. "$type": "GeneralNodeTitleComponentSaveData",
  1672. "PaletteOverride": "GetVariableNodeTitlePalette"
  1673. },
  1674. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  1675. "$type": "GeometrySaveData",
  1676. "Position": [
  1677. -20.0,
  1678. 80.0
  1679. ]
  1680. },
  1681. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  1682. "$type": "StylingComponentSaveData",
  1683. "SubStyle": ".getVariable"
  1684. },
  1685. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  1686. "$type": "PersistentIdComponentSaveData",
  1687. "PersistentId": "{965AB05F-FDD9-4B0E-8D55-E045F3CF3495}"
  1688. }
  1689. }
  1690. }
  1691. },
  1692. {
  1693. "Key": {
  1694. "id": 2662178432153033
  1695. },
  1696. "Value": {
  1697. "ComponentData": {
  1698. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  1699. "$type": "NodeSaveData"
  1700. },
  1701. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  1702. "$type": "GeneralNodeTitleComponentSaveData",
  1703. "PaletteOverride": "GetVariableNodeTitlePalette"
  1704. },
  1705. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  1706. "$type": "GeometrySaveData",
  1707. "Position": [
  1708. 320.0,
  1709. 500.0
  1710. ]
  1711. },
  1712. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  1713. "$type": "StylingComponentSaveData",
  1714. "SubStyle": ".getVariable"
  1715. },
  1716. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  1717. "$type": "PersistentIdComponentSaveData",
  1718. "PersistentId": "{1C885577-B233-453A-96D7-DF1CA3B4C919}"
  1719. }
  1720. }
  1721. }
  1722. },
  1723. {
  1724. "Key": {
  1725. "id": 2662182727120329
  1726. },
  1727. "Value": {
  1728. "ComponentData": {
  1729. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  1730. "$type": "NodeSaveData"
  1731. },
  1732. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  1733. "$type": "GeneralNodeTitleComponentSaveData",
  1734. "PaletteOverride": "StringNodeTitlePalette"
  1735. },
  1736. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  1737. "$type": "GeometrySaveData",
  1738. "Position": [
  1739. 500.0,
  1740. 80.0
  1741. ]
  1742. },
  1743. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  1744. "$type": "StylingComponentSaveData"
  1745. },
  1746. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  1747. "$type": "PersistentIdComponentSaveData",
  1748. "PersistentId": "{32731093-DB30-4AAD-A84D-4FF3CE31B248}"
  1749. }
  1750. }
  1751. }
  1752. },
  1753. {
  1754. "Key": {
  1755. "id": 2662187022087625
  1756. },
  1757. "Value": {
  1758. "ComponentData": {
  1759. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  1760. "$type": "NodeSaveData"
  1761. },
  1762. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  1763. "$type": "GeneralNodeTitleComponentSaveData",
  1764. "PaletteOverride": "StringNodeTitlePalette"
  1765. },
  1766. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  1767. "$type": "GeometrySaveData",
  1768. "Position": [
  1769. 140.0,
  1770. 80.0
  1771. ]
  1772. },
  1773. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  1774. "$type": "StylingComponentSaveData"
  1775. },
  1776. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  1777. "$type": "PersistentIdComponentSaveData",
  1778. "PersistentId": "{DAAE6EE0-EF67-43C3-85C0-BEC5091E2BD0}"
  1779. }
  1780. }
  1781. }
  1782. },
  1783. {
  1784. "Key": {
  1785. "id": 2662191317054921
  1786. },
  1787. "Value": {
  1788. "ComponentData": {
  1789. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  1790. "$type": "NodeSaveData"
  1791. },
  1792. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  1793. "$type": "GeneralNodeTitleComponentSaveData",
  1794. "PaletteOverride": "MethodNodeTitlePalette"
  1795. },
  1796. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  1797. "$type": "GeometrySaveData",
  1798. "Position": [
  1799. 860.0,
  1800. 80.0
  1801. ]
  1802. },
  1803. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  1804. "$type": "StylingComponentSaveData",
  1805. "SubStyle": ".method"
  1806. },
  1807. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  1808. "$type": "PersistentIdComponentSaveData",
  1809. "PersistentId": "{21B09386-D674-4D32-AE80-AA612CDE44A1}"
  1810. }
  1811. }
  1812. }
  1813. },
  1814. {
  1815. "Key": {
  1816. "id": 2662195612022217
  1817. },
  1818. "Value": {
  1819. "ComponentData": {
  1820. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  1821. "$type": "NodeSaveData"
  1822. },
  1823. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  1824. "$type": "GeneralNodeTitleComponentSaveData",
  1825. "PaletteOverride": "GetVariableNodeTitlePalette"
  1826. },
  1827. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  1828. "$type": "GeometrySaveData",
  1829. "Position": [
  1830. 640.0,
  1831. 360.0
  1832. ]
  1833. },
  1834. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  1835. "$type": "StylingComponentSaveData",
  1836. "SubStyle": ".getVariable"
  1837. },
  1838. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  1839. "$type": "PersistentIdComponentSaveData",
  1840. "PersistentId": "{3C8AA283-EDCE-45AF-9954-A0BF8C2C6ED0}"
  1841. }
  1842. }
  1843. }
  1844. },
  1845. {
  1846. "Key": {
  1847. "id": 2662199906989513
  1848. },
  1849. "Value": {
  1850. "ComponentData": {
  1851. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  1852. "$type": "NodeSaveData"
  1853. },
  1854. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  1855. "$type": "GeneralNodeTitleComponentSaveData",
  1856. "PaletteOverride": "GetVariableNodeTitlePalette"
  1857. },
  1858. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  1859. "$type": "GeometrySaveData",
  1860. "Position": [
  1861. -20.0,
  1862. 240.0
  1863. ]
  1864. },
  1865. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  1866. "$type": "StylingComponentSaveData",
  1867. "SubStyle": ".getVariable"
  1868. },
  1869. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  1870. "$type": "PersistentIdComponentSaveData",
  1871. "PersistentId": "{8140D04C-4BFE-47C7-A483-2F4486ED31F6}"
  1872. }
  1873. }
  1874. }
  1875. }
  1876. ],
  1877. "StatisticsHelper": {
  1878. "InstanceCounter": [
  1879. {
  1880. "Key": 4053150093067829293,
  1881. "Value": 1
  1882. },
  1883. {
  1884. "Key": 4199610336680704683,
  1885. "Value": 1
  1886. },
  1887. {
  1888. "Key": 4846425829683551338,
  1889. "Value": 2
  1890. },
  1891. {
  1892. "Key": 7650545958182243975,
  1893. "Value": 1
  1894. },
  1895. {
  1896. "Key": 10204019744198319120,
  1897. "Value": 1
  1898. },
  1899. {
  1900. "Key": 10536477751581889422,
  1901. "Value": 1
  1902. },
  1903. {
  1904. "Key": 12764509279997611165,
  1905. "Value": 1
  1906. },
  1907. {
  1908. "Key": 17021813365517490306,
  1909. "Value": 1
  1910. },
  1911. {
  1912. "Key": 17591129516174243873,
  1913. "Value": 1
  1914. }
  1915. ]
  1916. }
  1917. },
  1918. "Component_[2078489918934419710]": {
  1919. "$type": "EditorGraphVariableManagerComponent",
  1920. "Id": 2078489918934419710,
  1921. "m_variableData": {
  1922. "m_nameVariableMap": [
  1923. {
  1924. "Key": {
  1925. "m_id": "{5F23FE74-3AFC-4AE4-B9C6-E72CAC95A0BA}"
  1926. },
  1927. "Value": {
  1928. "Datum": {
  1929. "isOverloadedStorage": false,
  1930. "scriptCanvasType": {
  1931. "m_type": 5
  1932. },
  1933. "isNullPointer": false,
  1934. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1935. "value": "This",
  1936. "label": "String"
  1937. },
  1938. "VariableId": {
  1939. "m_id": "{5F23FE74-3AFC-4AE4-B9C6-E72CAC95A0BA}"
  1940. },
  1941. "VariableName": "This"
  1942. }
  1943. },
  1944. {
  1945. "Key": {
  1946. "m_id": "{6E1C919C-736F-4F01-8EBD-810E7B6C90EA}"
  1947. },
  1948. "Value": {
  1949. "Datum": {
  1950. "isOverloadedStorage": false,
  1951. "scriptCanvasType": {
  1952. "m_type": 5
  1953. },
  1954. "isNullPointer": false,
  1955. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1956. "value": "Test",
  1957. "label": "String"
  1958. },
  1959. "VariableId": {
  1960. "m_id": "{6E1C919C-736F-4F01-8EBD-810E7B6C90EA}"
  1961. },
  1962. "VariableName": "Test"
  1963. }
  1964. },
  1965. {
  1966. "Key": {
  1967. "m_id": "{7257C20E-D6FF-4F3F-AEF7-677E37AE71F8}"
  1968. },
  1969. "Value": {
  1970. "Datum": {
  1971. "isOverloadedStorage": false,
  1972. "scriptCanvasType": {
  1973. "m_type": 5
  1974. },
  1975. "isNullPointer": false,
  1976. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1977. "value": "String",
  1978. "label": "String"
  1979. },
  1980. "VariableId": {
  1981. "m_id": "{7257C20E-D6FF-4F3F-AEF7-677E37AE71F8}"
  1982. },
  1983. "VariableName": "String"
  1984. }
  1985. },
  1986. {
  1987. "Key": {
  1988. "m_id": "{75A1189C-C691-42B9-81CC-423C266A9F4F}"
  1989. },
  1990. "Value": {
  1991. "Datum": {
  1992. "isOverloadedStorage": false,
  1993. "scriptCanvasType": {
  1994. "m_type": 5
  1995. },
  1996. "isNullPointer": false,
  1997. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1998. "value": "This Is Test String",
  1999. "label": "String"
  2000. },
  2001. "VariableId": {
  2002. "m_id": "{75A1189C-C691-42B9-81CC-423C266A9F4F}"
  2003. },
  2004. "VariableName": "ThisIsTestString"
  2005. }
  2006. },
  2007. {
  2008. "Key": {
  2009. "m_id": "{D336E539-D295-4627-ADA7-E3A1060DA01B}"
  2010. },
  2011. "Value": {
  2012. "Datum": {
  2013. "isOverloadedStorage": false,
  2014. "scriptCanvasType": {
  2015. "m_type": 5
  2016. },
  2017. "isNullPointer": false,
  2018. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  2019. "value": "Is",
  2020. "label": "String"
  2021. },
  2022. "VariableId": {
  2023. "m_id": "{D336E539-D295-4627-ADA7-E3A1060DA01B}"
  2024. },
  2025. "VariableName": "Is"
  2026. }
  2027. }
  2028. ]
  2029. }
  2030. }
  2031. }
  2032. }
  2033. }
  2034. }