qconnect-2020-10-19.min.json 61 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649
  1. {
  2. "version": "2.0",
  3. "metadata": {
  4. "apiVersion": "2020-10-19",
  5. "endpointPrefix": "wisdom",
  6. "jsonVersion": "1.1",
  7. "protocol": "rest-json",
  8. "serviceFullName": "Amazon Q Connect",
  9. "serviceId": "QConnect",
  10. "signatureVersion": "v4",
  11. "signingName": "wisdom",
  12. "uid": "qconnect-2020-10-19"
  13. },
  14. "operations": {
  15. "CreateAssistant": {
  16. "http": {
  17. "requestUri": "/assistants",
  18. "responseCode": 200
  19. },
  20. "input": {
  21. "type": "structure",
  22. "required": [
  23. "name",
  24. "type"
  25. ],
  26. "members": {
  27. "clientToken": {
  28. "idempotencyToken": true
  29. },
  30. "description": {},
  31. "name": {},
  32. "serverSideEncryptionConfiguration": {
  33. "shape": "S5"
  34. },
  35. "tags": {
  36. "shape": "S7"
  37. },
  38. "type": {}
  39. }
  40. },
  41. "output": {
  42. "type": "structure",
  43. "members": {
  44. "assistant": {
  45. "shape": "Sc"
  46. }
  47. }
  48. },
  49. "idempotent": true
  50. },
  51. "CreateAssistantAssociation": {
  52. "http": {
  53. "requestUri": "/assistants/{assistantId}/associations",
  54. "responseCode": 200
  55. },
  56. "input": {
  57. "type": "structure",
  58. "required": [
  59. "assistantId",
  60. "association",
  61. "associationType"
  62. ],
  63. "members": {
  64. "assistantId": {
  65. "location": "uri",
  66. "locationName": "assistantId"
  67. },
  68. "association": {
  69. "type": "structure",
  70. "members": {
  71. "knowledgeBaseId": {}
  72. },
  73. "union": true
  74. },
  75. "associationType": {},
  76. "clientToken": {
  77. "idempotencyToken": true
  78. },
  79. "tags": {
  80. "shape": "S7"
  81. }
  82. }
  83. },
  84. "output": {
  85. "type": "structure",
  86. "members": {
  87. "assistantAssociation": {
  88. "shape": "Sp"
  89. }
  90. }
  91. },
  92. "idempotent": true
  93. },
  94. "CreateContent": {
  95. "http": {
  96. "requestUri": "/knowledgeBases/{knowledgeBaseId}/contents",
  97. "responseCode": 200
  98. },
  99. "input": {
  100. "type": "structure",
  101. "required": [
  102. "knowledgeBaseId",
  103. "name",
  104. "uploadId"
  105. ],
  106. "members": {
  107. "clientToken": {
  108. "idempotencyToken": true
  109. },
  110. "knowledgeBaseId": {
  111. "location": "uri",
  112. "locationName": "knowledgeBaseId"
  113. },
  114. "metadata": {
  115. "shape": "St"
  116. },
  117. "name": {},
  118. "overrideLinkOutUri": {},
  119. "tags": {
  120. "shape": "S7"
  121. },
  122. "title": {},
  123. "uploadId": {}
  124. }
  125. },
  126. "output": {
  127. "type": "structure",
  128. "members": {
  129. "content": {
  130. "shape": "Sy"
  131. }
  132. }
  133. },
  134. "idempotent": true
  135. },
  136. "CreateKnowledgeBase": {
  137. "http": {
  138. "requestUri": "/knowledgeBases",
  139. "responseCode": 200
  140. },
  141. "input": {
  142. "type": "structure",
  143. "required": [
  144. "knowledgeBaseType",
  145. "name"
  146. ],
  147. "members": {
  148. "clientToken": {
  149. "idempotencyToken": true
  150. },
  151. "description": {},
  152. "knowledgeBaseType": {},
  153. "name": {},
  154. "renderingConfiguration": {
  155. "shape": "S15"
  156. },
  157. "serverSideEncryptionConfiguration": {
  158. "shape": "S5"
  159. },
  160. "sourceConfiguration": {
  161. "shape": "S16"
  162. },
  163. "tags": {
  164. "shape": "S7"
  165. }
  166. }
  167. },
  168. "output": {
  169. "type": "structure",
  170. "members": {
  171. "knowledgeBase": {
  172. "shape": "S1a"
  173. }
  174. }
  175. },
  176. "idempotent": true
  177. },
  178. "CreateQuickResponse": {
  179. "http": {
  180. "requestUri": "/knowledgeBases/{knowledgeBaseId}/quickResponses",
  181. "responseCode": 200
  182. },
  183. "input": {
  184. "type": "structure",
  185. "required": [
  186. "content",
  187. "knowledgeBaseId",
  188. "name"
  189. ],
  190. "members": {
  191. "channels": {
  192. "shape": "S1d"
  193. },
  194. "clientToken": {
  195. "idempotencyToken": true
  196. },
  197. "content": {
  198. "shape": "S1f"
  199. },
  200. "contentType": {},
  201. "description": {},
  202. "groupingConfiguration": {
  203. "shape": "S1j"
  204. },
  205. "isActive": {
  206. "type": "boolean"
  207. },
  208. "knowledgeBaseId": {
  209. "location": "uri",
  210. "locationName": "knowledgeBaseId"
  211. },
  212. "language": {},
  213. "name": {},
  214. "shortcutKey": {},
  215. "tags": {
  216. "shape": "S7"
  217. }
  218. }
  219. },
  220. "output": {
  221. "type": "structure",
  222. "members": {
  223. "quickResponse": {
  224. "shape": "S1s"
  225. }
  226. }
  227. },
  228. "idempotent": true
  229. },
  230. "CreateSession": {
  231. "http": {
  232. "requestUri": "/assistants/{assistantId}/sessions",
  233. "responseCode": 200
  234. },
  235. "input": {
  236. "type": "structure",
  237. "required": [
  238. "assistantId",
  239. "name"
  240. ],
  241. "members": {
  242. "assistantId": {
  243. "location": "uri",
  244. "locationName": "assistantId"
  245. },
  246. "clientToken": {
  247. "idempotencyToken": true
  248. },
  249. "description": {},
  250. "name": {},
  251. "tagFilter": {
  252. "shape": "S1x"
  253. },
  254. "tags": {
  255. "shape": "S7"
  256. }
  257. }
  258. },
  259. "output": {
  260. "type": "structure",
  261. "members": {
  262. "session": {
  263. "shape": "S23"
  264. }
  265. }
  266. },
  267. "idempotent": true
  268. },
  269. "DeleteAssistant": {
  270. "http": {
  271. "method": "DELETE",
  272. "requestUri": "/assistants/{assistantId}",
  273. "responseCode": 204
  274. },
  275. "input": {
  276. "type": "structure",
  277. "required": [
  278. "assistantId"
  279. ],
  280. "members": {
  281. "assistantId": {
  282. "location": "uri",
  283. "locationName": "assistantId"
  284. }
  285. }
  286. },
  287. "output": {
  288. "type": "structure",
  289. "members": {}
  290. },
  291. "idempotent": true
  292. },
  293. "DeleteAssistantAssociation": {
  294. "http": {
  295. "method": "DELETE",
  296. "requestUri": "/assistants/{assistantId}/associations/{assistantAssociationId}",
  297. "responseCode": 204
  298. },
  299. "input": {
  300. "type": "structure",
  301. "required": [
  302. "assistantAssociationId",
  303. "assistantId"
  304. ],
  305. "members": {
  306. "assistantAssociationId": {
  307. "location": "uri",
  308. "locationName": "assistantAssociationId"
  309. },
  310. "assistantId": {
  311. "location": "uri",
  312. "locationName": "assistantId"
  313. }
  314. }
  315. },
  316. "output": {
  317. "type": "structure",
  318. "members": {}
  319. },
  320. "idempotent": true
  321. },
  322. "DeleteContent": {
  323. "http": {
  324. "method": "DELETE",
  325. "requestUri": "/knowledgeBases/{knowledgeBaseId}/contents/{contentId}",
  326. "responseCode": 204
  327. },
  328. "input": {
  329. "type": "structure",
  330. "required": [
  331. "contentId",
  332. "knowledgeBaseId"
  333. ],
  334. "members": {
  335. "contentId": {
  336. "location": "uri",
  337. "locationName": "contentId"
  338. },
  339. "knowledgeBaseId": {
  340. "location": "uri",
  341. "locationName": "knowledgeBaseId"
  342. }
  343. }
  344. },
  345. "output": {
  346. "type": "structure",
  347. "members": {}
  348. },
  349. "idempotent": true
  350. },
  351. "DeleteImportJob": {
  352. "http": {
  353. "method": "DELETE",
  354. "requestUri": "/knowledgeBases/{knowledgeBaseId}/importJobs/{importJobId}",
  355. "responseCode": 204
  356. },
  357. "input": {
  358. "type": "structure",
  359. "required": [
  360. "importJobId",
  361. "knowledgeBaseId"
  362. ],
  363. "members": {
  364. "importJobId": {
  365. "location": "uri",
  366. "locationName": "importJobId"
  367. },
  368. "knowledgeBaseId": {
  369. "location": "uri",
  370. "locationName": "knowledgeBaseId"
  371. }
  372. }
  373. },
  374. "output": {
  375. "type": "structure",
  376. "members": {}
  377. },
  378. "idempotent": true
  379. },
  380. "DeleteKnowledgeBase": {
  381. "http": {
  382. "method": "DELETE",
  383. "requestUri": "/knowledgeBases/{knowledgeBaseId}",
  384. "responseCode": 204
  385. },
  386. "input": {
  387. "type": "structure",
  388. "required": [
  389. "knowledgeBaseId"
  390. ],
  391. "members": {
  392. "knowledgeBaseId": {
  393. "location": "uri",
  394. "locationName": "knowledgeBaseId"
  395. }
  396. }
  397. },
  398. "output": {
  399. "type": "structure",
  400. "members": {}
  401. },
  402. "idempotent": true
  403. },
  404. "DeleteQuickResponse": {
  405. "http": {
  406. "method": "DELETE",
  407. "requestUri": "/knowledgeBases/{knowledgeBaseId}/quickResponses/{quickResponseId}",
  408. "responseCode": 204
  409. },
  410. "input": {
  411. "type": "structure",
  412. "required": [
  413. "knowledgeBaseId",
  414. "quickResponseId"
  415. ],
  416. "members": {
  417. "knowledgeBaseId": {
  418. "location": "uri",
  419. "locationName": "knowledgeBaseId"
  420. },
  421. "quickResponseId": {
  422. "location": "uri",
  423. "locationName": "quickResponseId"
  424. }
  425. }
  426. },
  427. "output": {
  428. "type": "structure",
  429. "members": {}
  430. },
  431. "idempotent": true
  432. },
  433. "GetAssistant": {
  434. "http": {
  435. "method": "GET",
  436. "requestUri": "/assistants/{assistantId}",
  437. "responseCode": 200
  438. },
  439. "input": {
  440. "type": "structure",
  441. "required": [
  442. "assistantId"
  443. ],
  444. "members": {
  445. "assistantId": {
  446. "location": "uri",
  447. "locationName": "assistantId"
  448. }
  449. }
  450. },
  451. "output": {
  452. "type": "structure",
  453. "members": {
  454. "assistant": {
  455. "shape": "Sc"
  456. }
  457. }
  458. }
  459. },
  460. "GetAssistantAssociation": {
  461. "http": {
  462. "method": "GET",
  463. "requestUri": "/assistants/{assistantId}/associations/{assistantAssociationId}",
  464. "responseCode": 200
  465. },
  466. "input": {
  467. "type": "structure",
  468. "required": [
  469. "assistantAssociationId",
  470. "assistantId"
  471. ],
  472. "members": {
  473. "assistantAssociationId": {
  474. "location": "uri",
  475. "locationName": "assistantAssociationId"
  476. },
  477. "assistantId": {
  478. "location": "uri",
  479. "locationName": "assistantId"
  480. }
  481. }
  482. },
  483. "output": {
  484. "type": "structure",
  485. "members": {
  486. "assistantAssociation": {
  487. "shape": "Sp"
  488. }
  489. }
  490. }
  491. },
  492. "GetContent": {
  493. "http": {
  494. "method": "GET",
  495. "requestUri": "/knowledgeBases/{knowledgeBaseId}/contents/{contentId}",
  496. "responseCode": 200
  497. },
  498. "input": {
  499. "type": "structure",
  500. "required": [
  501. "contentId",
  502. "knowledgeBaseId"
  503. ],
  504. "members": {
  505. "contentId": {
  506. "location": "uri",
  507. "locationName": "contentId"
  508. },
  509. "knowledgeBaseId": {
  510. "location": "uri",
  511. "locationName": "knowledgeBaseId"
  512. }
  513. }
  514. },
  515. "output": {
  516. "type": "structure",
  517. "members": {
  518. "content": {
  519. "shape": "Sy"
  520. }
  521. }
  522. }
  523. },
  524. "GetContentSummary": {
  525. "http": {
  526. "method": "GET",
  527. "requestUri": "/knowledgeBases/{knowledgeBaseId}/contents/{contentId}/summary",
  528. "responseCode": 200
  529. },
  530. "input": {
  531. "type": "structure",
  532. "required": [
  533. "contentId",
  534. "knowledgeBaseId"
  535. ],
  536. "members": {
  537. "contentId": {
  538. "location": "uri",
  539. "locationName": "contentId"
  540. },
  541. "knowledgeBaseId": {
  542. "location": "uri",
  543. "locationName": "knowledgeBaseId"
  544. }
  545. }
  546. },
  547. "output": {
  548. "type": "structure",
  549. "members": {
  550. "contentSummary": {
  551. "shape": "S2p"
  552. }
  553. }
  554. }
  555. },
  556. "GetImportJob": {
  557. "http": {
  558. "method": "GET",
  559. "requestUri": "/knowledgeBases/{knowledgeBaseId}/importJobs/{importJobId}",
  560. "responseCode": 200
  561. },
  562. "input": {
  563. "type": "structure",
  564. "required": [
  565. "importJobId",
  566. "knowledgeBaseId"
  567. ],
  568. "members": {
  569. "importJobId": {
  570. "location": "uri",
  571. "locationName": "importJobId"
  572. },
  573. "knowledgeBaseId": {
  574. "location": "uri",
  575. "locationName": "knowledgeBaseId"
  576. }
  577. }
  578. },
  579. "output": {
  580. "type": "structure",
  581. "members": {
  582. "importJob": {
  583. "shape": "S2s"
  584. }
  585. }
  586. }
  587. },
  588. "GetKnowledgeBase": {
  589. "http": {
  590. "method": "GET",
  591. "requestUri": "/knowledgeBases/{knowledgeBaseId}",
  592. "responseCode": 200
  593. },
  594. "input": {
  595. "type": "structure",
  596. "required": [
  597. "knowledgeBaseId"
  598. ],
  599. "members": {
  600. "knowledgeBaseId": {
  601. "location": "uri",
  602. "locationName": "knowledgeBaseId"
  603. }
  604. }
  605. },
  606. "output": {
  607. "type": "structure",
  608. "members": {
  609. "knowledgeBase": {
  610. "shape": "S1a"
  611. }
  612. }
  613. }
  614. },
  615. "GetQuickResponse": {
  616. "http": {
  617. "method": "GET",
  618. "requestUri": "/knowledgeBases/{knowledgeBaseId}/quickResponses/{quickResponseId}",
  619. "responseCode": 200
  620. },
  621. "input": {
  622. "type": "structure",
  623. "required": [
  624. "knowledgeBaseId",
  625. "quickResponseId"
  626. ],
  627. "members": {
  628. "knowledgeBaseId": {
  629. "location": "uri",
  630. "locationName": "knowledgeBaseId"
  631. },
  632. "quickResponseId": {
  633. "location": "uri",
  634. "locationName": "quickResponseId"
  635. }
  636. }
  637. },
  638. "output": {
  639. "type": "structure",
  640. "members": {
  641. "quickResponse": {
  642. "shape": "S1s"
  643. }
  644. }
  645. }
  646. },
  647. "GetRecommendations": {
  648. "http": {
  649. "method": "GET",
  650. "requestUri": "/assistants/{assistantId}/sessions/{sessionId}/recommendations",
  651. "responseCode": 200
  652. },
  653. "input": {
  654. "type": "structure",
  655. "required": [
  656. "assistantId",
  657. "sessionId"
  658. ],
  659. "members": {
  660. "assistantId": {
  661. "location": "uri",
  662. "locationName": "assistantId"
  663. },
  664. "maxResults": {
  665. "location": "querystring",
  666. "locationName": "maxResults",
  667. "type": "integer"
  668. },
  669. "sessionId": {
  670. "location": "uri",
  671. "locationName": "sessionId"
  672. },
  673. "waitTimeSeconds": {
  674. "location": "querystring",
  675. "locationName": "waitTimeSeconds",
  676. "type": "integer"
  677. }
  678. }
  679. },
  680. "output": {
  681. "type": "structure",
  682. "required": [
  683. "recommendations"
  684. ],
  685. "members": {
  686. "recommendations": {
  687. "type": "list",
  688. "member": {
  689. "type": "structure",
  690. "required": [
  691. "recommendationId"
  692. ],
  693. "members": {
  694. "data": {
  695. "shape": "S39"
  696. },
  697. "document": {
  698. "shape": "S3t"
  699. },
  700. "recommendationId": {},
  701. "relevanceLevel": {},
  702. "relevanceScore": {
  703. "type": "double"
  704. },
  705. "type": {}
  706. }
  707. }
  708. },
  709. "triggers": {
  710. "type": "list",
  711. "member": {
  712. "type": "structure",
  713. "required": [
  714. "data",
  715. "id",
  716. "recommendationIds",
  717. "source",
  718. "type"
  719. ],
  720. "members": {
  721. "data": {
  722. "type": "structure",
  723. "members": {
  724. "query": {
  725. "type": "structure",
  726. "members": {
  727. "text": {
  728. "shape": "S40"
  729. }
  730. }
  731. }
  732. },
  733. "union": true
  734. },
  735. "id": {},
  736. "recommendationIds": {
  737. "shape": "S41"
  738. },
  739. "source": {},
  740. "type": {}
  741. }
  742. }
  743. }
  744. }
  745. },
  746. "deprecated": true,
  747. "deprecatedMessage": "GetRecommendations API will be discontinued starting June 1, 2024. To receive generative responses after March 1, 2024 you will need to create a new Assistant in the Connect console and integrate the Amazon Q in Connect JavaScript library (amazon-q-connectjs) into your applications."
  748. },
  749. "GetSession": {
  750. "http": {
  751. "method": "GET",
  752. "requestUri": "/assistants/{assistantId}/sessions/{sessionId}",
  753. "responseCode": 200
  754. },
  755. "input": {
  756. "type": "structure",
  757. "required": [
  758. "assistantId",
  759. "sessionId"
  760. ],
  761. "members": {
  762. "assistantId": {
  763. "location": "uri",
  764. "locationName": "assistantId"
  765. },
  766. "sessionId": {
  767. "location": "uri",
  768. "locationName": "sessionId"
  769. }
  770. }
  771. },
  772. "output": {
  773. "type": "structure",
  774. "members": {
  775. "session": {
  776. "shape": "S23"
  777. }
  778. }
  779. }
  780. },
  781. "ListAssistantAssociations": {
  782. "http": {
  783. "method": "GET",
  784. "requestUri": "/assistants/{assistantId}/associations",
  785. "responseCode": 200
  786. },
  787. "input": {
  788. "type": "structure",
  789. "required": [
  790. "assistantId"
  791. ],
  792. "members": {
  793. "assistantId": {
  794. "location": "uri",
  795. "locationName": "assistantId"
  796. },
  797. "maxResults": {
  798. "location": "querystring",
  799. "locationName": "maxResults",
  800. "type": "integer"
  801. },
  802. "nextToken": {
  803. "location": "querystring",
  804. "locationName": "nextToken"
  805. }
  806. }
  807. },
  808. "output": {
  809. "type": "structure",
  810. "required": [
  811. "assistantAssociationSummaries"
  812. ],
  813. "members": {
  814. "assistantAssociationSummaries": {
  815. "type": "list",
  816. "member": {
  817. "type": "structure",
  818. "required": [
  819. "assistantArn",
  820. "assistantAssociationArn",
  821. "assistantAssociationId",
  822. "assistantId",
  823. "associationData",
  824. "associationType"
  825. ],
  826. "members": {
  827. "assistantArn": {},
  828. "assistantAssociationArn": {},
  829. "assistantAssociationId": {},
  830. "assistantId": {},
  831. "associationData": {
  832. "shape": "Sq"
  833. },
  834. "associationType": {},
  835. "tags": {
  836. "shape": "S7"
  837. }
  838. }
  839. }
  840. },
  841. "nextToken": {}
  842. }
  843. }
  844. },
  845. "ListAssistants": {
  846. "http": {
  847. "method": "GET",
  848. "requestUri": "/assistants",
  849. "responseCode": 200
  850. },
  851. "input": {
  852. "type": "structure",
  853. "members": {
  854. "maxResults": {
  855. "location": "querystring",
  856. "locationName": "maxResults",
  857. "type": "integer"
  858. },
  859. "nextToken": {
  860. "location": "querystring",
  861. "locationName": "nextToken"
  862. }
  863. }
  864. },
  865. "output": {
  866. "type": "structure",
  867. "required": [
  868. "assistantSummaries"
  869. ],
  870. "members": {
  871. "assistantSummaries": {
  872. "type": "list",
  873. "member": {
  874. "type": "structure",
  875. "required": [
  876. "assistantArn",
  877. "assistantId",
  878. "name",
  879. "status",
  880. "type"
  881. ],
  882. "members": {
  883. "assistantArn": {},
  884. "assistantId": {},
  885. "capabilityConfiguration": {
  886. "shape": "Sf"
  887. },
  888. "description": {},
  889. "integrationConfiguration": {
  890. "shape": "Sh"
  891. },
  892. "name": {},
  893. "serverSideEncryptionConfiguration": {
  894. "shape": "S5"
  895. },
  896. "status": {},
  897. "tags": {
  898. "shape": "S7"
  899. },
  900. "type": {}
  901. }
  902. }
  903. },
  904. "nextToken": {}
  905. }
  906. }
  907. },
  908. "ListContents": {
  909. "http": {
  910. "method": "GET",
  911. "requestUri": "/knowledgeBases/{knowledgeBaseId}/contents",
  912. "responseCode": 200
  913. },
  914. "input": {
  915. "type": "structure",
  916. "required": [
  917. "knowledgeBaseId"
  918. ],
  919. "members": {
  920. "knowledgeBaseId": {
  921. "location": "uri",
  922. "locationName": "knowledgeBaseId"
  923. },
  924. "maxResults": {
  925. "location": "querystring",
  926. "locationName": "maxResults",
  927. "type": "integer"
  928. },
  929. "nextToken": {
  930. "location": "querystring",
  931. "locationName": "nextToken"
  932. }
  933. }
  934. },
  935. "output": {
  936. "type": "structure",
  937. "required": [
  938. "contentSummaries"
  939. ],
  940. "members": {
  941. "contentSummaries": {
  942. "shape": "S4h"
  943. },
  944. "nextToken": {}
  945. }
  946. }
  947. },
  948. "ListImportJobs": {
  949. "http": {
  950. "method": "GET",
  951. "requestUri": "/knowledgeBases/{knowledgeBaseId}/importJobs",
  952. "responseCode": 200
  953. },
  954. "input": {
  955. "type": "structure",
  956. "required": [
  957. "knowledgeBaseId"
  958. ],
  959. "members": {
  960. "knowledgeBaseId": {
  961. "location": "uri",
  962. "locationName": "knowledgeBaseId"
  963. },
  964. "maxResults": {
  965. "location": "querystring",
  966. "locationName": "maxResults",
  967. "type": "integer"
  968. },
  969. "nextToken": {
  970. "location": "querystring",
  971. "locationName": "nextToken"
  972. }
  973. }
  974. },
  975. "output": {
  976. "type": "structure",
  977. "required": [
  978. "importJobSummaries"
  979. ],
  980. "members": {
  981. "importJobSummaries": {
  982. "type": "list",
  983. "member": {
  984. "type": "structure",
  985. "required": [
  986. "createdTime",
  987. "importJobId",
  988. "importJobType",
  989. "knowledgeBaseArn",
  990. "knowledgeBaseId",
  991. "lastModifiedTime",
  992. "status",
  993. "uploadId"
  994. ],
  995. "members": {
  996. "createdTime": {
  997. "shape": "S12"
  998. },
  999. "externalSourceConfiguration": {
  1000. "shape": "S2t"
  1001. },
  1002. "importJobId": {},
  1003. "importJobType": {},
  1004. "knowledgeBaseArn": {},
  1005. "knowledgeBaseId": {},
  1006. "lastModifiedTime": {
  1007. "shape": "S12"
  1008. },
  1009. "metadata": {
  1010. "shape": "St"
  1011. },
  1012. "status": {},
  1013. "uploadId": {}
  1014. }
  1015. }
  1016. },
  1017. "nextToken": {}
  1018. }
  1019. }
  1020. },
  1021. "ListKnowledgeBases": {
  1022. "http": {
  1023. "method": "GET",
  1024. "requestUri": "/knowledgeBases",
  1025. "responseCode": 200
  1026. },
  1027. "input": {
  1028. "type": "structure",
  1029. "members": {
  1030. "maxResults": {
  1031. "location": "querystring",
  1032. "locationName": "maxResults",
  1033. "type": "integer"
  1034. },
  1035. "nextToken": {
  1036. "location": "querystring",
  1037. "locationName": "nextToken"
  1038. }
  1039. }
  1040. },
  1041. "output": {
  1042. "type": "structure",
  1043. "required": [
  1044. "knowledgeBaseSummaries"
  1045. ],
  1046. "members": {
  1047. "knowledgeBaseSummaries": {
  1048. "type": "list",
  1049. "member": {
  1050. "type": "structure",
  1051. "required": [
  1052. "knowledgeBaseArn",
  1053. "knowledgeBaseId",
  1054. "knowledgeBaseType",
  1055. "name",
  1056. "status"
  1057. ],
  1058. "members": {
  1059. "description": {},
  1060. "knowledgeBaseArn": {},
  1061. "knowledgeBaseId": {},
  1062. "knowledgeBaseType": {},
  1063. "name": {},
  1064. "renderingConfiguration": {
  1065. "shape": "S15"
  1066. },
  1067. "serverSideEncryptionConfiguration": {
  1068. "shape": "S5"
  1069. },
  1070. "sourceConfiguration": {
  1071. "shape": "S16"
  1072. },
  1073. "status": {},
  1074. "tags": {
  1075. "shape": "S7"
  1076. }
  1077. }
  1078. }
  1079. },
  1080. "nextToken": {}
  1081. }
  1082. }
  1083. },
  1084. "ListQuickResponses": {
  1085. "http": {
  1086. "method": "GET",
  1087. "requestUri": "/knowledgeBases/{knowledgeBaseId}/quickResponses",
  1088. "responseCode": 200
  1089. },
  1090. "input": {
  1091. "type": "structure",
  1092. "required": [
  1093. "knowledgeBaseId"
  1094. ],
  1095. "members": {
  1096. "knowledgeBaseId": {
  1097. "location": "uri",
  1098. "locationName": "knowledgeBaseId"
  1099. },
  1100. "maxResults": {
  1101. "location": "querystring",
  1102. "locationName": "maxResults",
  1103. "type": "integer"
  1104. },
  1105. "nextToken": {
  1106. "location": "querystring",
  1107. "locationName": "nextToken"
  1108. }
  1109. }
  1110. },
  1111. "output": {
  1112. "type": "structure",
  1113. "required": [
  1114. "quickResponseSummaries"
  1115. ],
  1116. "members": {
  1117. "nextToken": {},
  1118. "quickResponseSummaries": {
  1119. "type": "list",
  1120. "member": {
  1121. "type": "structure",
  1122. "required": [
  1123. "contentType",
  1124. "createdTime",
  1125. "knowledgeBaseArn",
  1126. "knowledgeBaseId",
  1127. "lastModifiedTime",
  1128. "name",
  1129. "quickResponseArn",
  1130. "quickResponseId",
  1131. "status"
  1132. ],
  1133. "members": {
  1134. "channels": {
  1135. "shape": "S1d"
  1136. },
  1137. "contentType": {},
  1138. "createdTime": {
  1139. "shape": "S12"
  1140. },
  1141. "description": {},
  1142. "isActive": {
  1143. "type": "boolean"
  1144. },
  1145. "knowledgeBaseArn": {},
  1146. "knowledgeBaseId": {},
  1147. "lastModifiedBy": {},
  1148. "lastModifiedTime": {
  1149. "shape": "S12"
  1150. },
  1151. "name": {},
  1152. "quickResponseArn": {},
  1153. "quickResponseId": {},
  1154. "status": {},
  1155. "tags": {
  1156. "shape": "S7"
  1157. }
  1158. }
  1159. }
  1160. }
  1161. }
  1162. }
  1163. },
  1164. "ListTagsForResource": {
  1165. "http": {
  1166. "method": "GET",
  1167. "requestUri": "/tags/{resourceArn}",
  1168. "responseCode": 200
  1169. },
  1170. "input": {
  1171. "type": "structure",
  1172. "required": [
  1173. "resourceArn"
  1174. ],
  1175. "members": {
  1176. "resourceArn": {
  1177. "location": "uri",
  1178. "locationName": "resourceArn"
  1179. }
  1180. }
  1181. },
  1182. "output": {
  1183. "type": "structure",
  1184. "members": {
  1185. "tags": {
  1186. "shape": "S7"
  1187. }
  1188. }
  1189. }
  1190. },
  1191. "NotifyRecommendationsReceived": {
  1192. "http": {
  1193. "requestUri": "/assistants/{assistantId}/sessions/{sessionId}/recommendations/notify",
  1194. "responseCode": 200
  1195. },
  1196. "input": {
  1197. "type": "structure",
  1198. "required": [
  1199. "assistantId",
  1200. "recommendationIds",
  1201. "sessionId"
  1202. ],
  1203. "members": {
  1204. "assistantId": {
  1205. "location": "uri",
  1206. "locationName": "assistantId"
  1207. },
  1208. "recommendationIds": {
  1209. "shape": "S41"
  1210. },
  1211. "sessionId": {
  1212. "location": "uri",
  1213. "locationName": "sessionId"
  1214. }
  1215. }
  1216. },
  1217. "output": {
  1218. "type": "structure",
  1219. "members": {
  1220. "errors": {
  1221. "type": "list",
  1222. "member": {
  1223. "type": "structure",
  1224. "members": {
  1225. "message": {},
  1226. "recommendationId": {}
  1227. }
  1228. }
  1229. },
  1230. "recommendationIds": {
  1231. "shape": "S41"
  1232. }
  1233. }
  1234. },
  1235. "idempotent": true
  1236. },
  1237. "PutFeedback": {
  1238. "http": {
  1239. "method": "PUT",
  1240. "requestUri": "/assistants/{assistantId}/feedback",
  1241. "responseCode": 200
  1242. },
  1243. "input": {
  1244. "type": "structure",
  1245. "required": [
  1246. "assistantId",
  1247. "contentFeedback",
  1248. "targetId",
  1249. "targetType"
  1250. ],
  1251. "members": {
  1252. "assistantId": {
  1253. "location": "uri",
  1254. "locationName": "assistantId"
  1255. },
  1256. "contentFeedback": {
  1257. "shape": "S52"
  1258. },
  1259. "targetId": {},
  1260. "targetType": {}
  1261. }
  1262. },
  1263. "output": {
  1264. "type": "structure",
  1265. "required": [
  1266. "assistantArn",
  1267. "assistantId",
  1268. "contentFeedback",
  1269. "targetId",
  1270. "targetType"
  1271. ],
  1272. "members": {
  1273. "assistantArn": {},
  1274. "assistantId": {},
  1275. "contentFeedback": {
  1276. "shape": "S52"
  1277. },
  1278. "targetId": {},
  1279. "targetType": {}
  1280. }
  1281. },
  1282. "idempotent": true
  1283. },
  1284. "QueryAssistant": {
  1285. "http": {
  1286. "requestUri": "/assistants/{assistantId}/query",
  1287. "responseCode": 200
  1288. },
  1289. "input": {
  1290. "type": "structure",
  1291. "required": [
  1292. "assistantId",
  1293. "queryText"
  1294. ],
  1295. "members": {
  1296. "assistantId": {
  1297. "location": "uri",
  1298. "locationName": "assistantId"
  1299. },
  1300. "maxResults": {
  1301. "type": "integer"
  1302. },
  1303. "nextToken": {},
  1304. "queryCondition": {
  1305. "type": "list",
  1306. "member": {
  1307. "type": "structure",
  1308. "members": {
  1309. "single": {
  1310. "type": "structure",
  1311. "required": [
  1312. "comparator",
  1313. "field",
  1314. "value"
  1315. ],
  1316. "members": {
  1317. "comparator": {},
  1318. "field": {},
  1319. "value": {}
  1320. }
  1321. }
  1322. },
  1323. "union": true
  1324. }
  1325. },
  1326. "queryText": {
  1327. "shape": "S40"
  1328. },
  1329. "sessionId": {}
  1330. }
  1331. },
  1332. "output": {
  1333. "type": "structure",
  1334. "required": [
  1335. "results"
  1336. ],
  1337. "members": {
  1338. "nextToken": {},
  1339. "results": {
  1340. "type": "list",
  1341. "member": {
  1342. "type": "structure",
  1343. "required": [
  1344. "resultId"
  1345. ],
  1346. "members": {
  1347. "data": {
  1348. "shape": "S39"
  1349. },
  1350. "document": {
  1351. "shape": "S3t"
  1352. },
  1353. "relevanceScore": {
  1354. "type": "double"
  1355. },
  1356. "resultId": {},
  1357. "type": {}
  1358. }
  1359. }
  1360. }
  1361. }
  1362. },
  1363. "deprecated": true,
  1364. "deprecatedMessage": "QueryAssistant API will be discontinued starting June 1, 2024. To receive generative responses after March 1, 2024 you will need to create a new Assistant in the Connect console and integrate the Amazon Q in Connect JavaScript library (amazon-q-connectjs) into your applications."
  1365. },
  1366. "RemoveKnowledgeBaseTemplateUri": {
  1367. "http": {
  1368. "method": "DELETE",
  1369. "requestUri": "/knowledgeBases/{knowledgeBaseId}/templateUri",
  1370. "responseCode": 204
  1371. },
  1372. "input": {
  1373. "type": "structure",
  1374. "required": [
  1375. "knowledgeBaseId"
  1376. ],
  1377. "members": {
  1378. "knowledgeBaseId": {
  1379. "location": "uri",
  1380. "locationName": "knowledgeBaseId"
  1381. }
  1382. }
  1383. },
  1384. "output": {
  1385. "type": "structure",
  1386. "members": {}
  1387. }
  1388. },
  1389. "SearchContent": {
  1390. "http": {
  1391. "requestUri": "/knowledgeBases/{knowledgeBaseId}/search",
  1392. "responseCode": 200
  1393. },
  1394. "input": {
  1395. "type": "structure",
  1396. "required": [
  1397. "knowledgeBaseId",
  1398. "searchExpression"
  1399. ],
  1400. "members": {
  1401. "knowledgeBaseId": {
  1402. "location": "uri",
  1403. "locationName": "knowledgeBaseId"
  1404. },
  1405. "maxResults": {
  1406. "location": "querystring",
  1407. "locationName": "maxResults",
  1408. "type": "integer"
  1409. },
  1410. "nextToken": {
  1411. "location": "querystring",
  1412. "locationName": "nextToken"
  1413. },
  1414. "searchExpression": {
  1415. "shape": "S5k"
  1416. }
  1417. }
  1418. },
  1419. "output": {
  1420. "type": "structure",
  1421. "required": [
  1422. "contentSummaries"
  1423. ],
  1424. "members": {
  1425. "contentSummaries": {
  1426. "shape": "S4h"
  1427. },
  1428. "nextToken": {}
  1429. }
  1430. }
  1431. },
  1432. "SearchQuickResponses": {
  1433. "http": {
  1434. "requestUri": "/knowledgeBases/{knowledgeBaseId}/search/quickResponses",
  1435. "responseCode": 200
  1436. },
  1437. "input": {
  1438. "type": "structure",
  1439. "required": [
  1440. "knowledgeBaseId",
  1441. "searchExpression"
  1442. ],
  1443. "members": {
  1444. "attributes": {
  1445. "type": "map",
  1446. "key": {},
  1447. "value": {},
  1448. "sensitive": true
  1449. },
  1450. "knowledgeBaseId": {
  1451. "location": "uri",
  1452. "locationName": "knowledgeBaseId"
  1453. },
  1454. "maxResults": {
  1455. "location": "querystring",
  1456. "locationName": "maxResults",
  1457. "type": "integer"
  1458. },
  1459. "nextToken": {
  1460. "location": "querystring",
  1461. "locationName": "nextToken"
  1462. },
  1463. "searchExpression": {
  1464. "type": "structure",
  1465. "members": {
  1466. "filters": {
  1467. "type": "list",
  1468. "member": {
  1469. "type": "structure",
  1470. "required": [
  1471. "name",
  1472. "operator"
  1473. ],
  1474. "members": {
  1475. "includeNoExistence": {
  1476. "type": "boolean"
  1477. },
  1478. "name": {},
  1479. "operator": {},
  1480. "values": {
  1481. "type": "list",
  1482. "member": {}
  1483. }
  1484. }
  1485. }
  1486. },
  1487. "orderOnField": {
  1488. "type": "structure",
  1489. "required": [
  1490. "name"
  1491. ],
  1492. "members": {
  1493. "name": {},
  1494. "order": {}
  1495. }
  1496. },
  1497. "queries": {
  1498. "type": "list",
  1499. "member": {
  1500. "type": "structure",
  1501. "required": [
  1502. "name",
  1503. "operator",
  1504. "values"
  1505. ],
  1506. "members": {
  1507. "allowFuzziness": {
  1508. "type": "boolean"
  1509. },
  1510. "name": {},
  1511. "operator": {},
  1512. "priority": {},
  1513. "values": {
  1514. "type": "list",
  1515. "member": {}
  1516. }
  1517. }
  1518. }
  1519. }
  1520. }
  1521. }
  1522. }
  1523. },
  1524. "output": {
  1525. "type": "structure",
  1526. "required": [
  1527. "results"
  1528. ],
  1529. "members": {
  1530. "nextToken": {},
  1531. "results": {
  1532. "type": "list",
  1533. "member": {
  1534. "type": "structure",
  1535. "required": [
  1536. "contentType",
  1537. "contents",
  1538. "createdTime",
  1539. "isActive",
  1540. "knowledgeBaseArn",
  1541. "knowledgeBaseId",
  1542. "lastModifiedTime",
  1543. "name",
  1544. "quickResponseArn",
  1545. "quickResponseId",
  1546. "status"
  1547. ],
  1548. "members": {
  1549. "attributesInterpolated": {
  1550. "shape": "S6b"
  1551. },
  1552. "attributesNotInterpolated": {
  1553. "shape": "S6b"
  1554. },
  1555. "channels": {
  1556. "shape": "S1d"
  1557. },
  1558. "contentType": {},
  1559. "contents": {
  1560. "shape": "S1t"
  1561. },
  1562. "createdTime": {
  1563. "shape": "S12"
  1564. },
  1565. "description": {},
  1566. "groupingConfiguration": {
  1567. "shape": "S1j"
  1568. },
  1569. "isActive": {
  1570. "type": "boolean"
  1571. },
  1572. "knowledgeBaseArn": {},
  1573. "knowledgeBaseId": {},
  1574. "language": {},
  1575. "lastModifiedBy": {},
  1576. "lastModifiedTime": {
  1577. "shape": "S12"
  1578. },
  1579. "name": {},
  1580. "quickResponseArn": {},
  1581. "quickResponseId": {},
  1582. "shortcutKey": {},
  1583. "status": {},
  1584. "tags": {
  1585. "shape": "S7"
  1586. }
  1587. }
  1588. }
  1589. }
  1590. }
  1591. }
  1592. },
  1593. "SearchSessions": {
  1594. "http": {
  1595. "requestUri": "/assistants/{assistantId}/searchSessions",
  1596. "responseCode": 200
  1597. },
  1598. "input": {
  1599. "type": "structure",
  1600. "required": [
  1601. "assistantId",
  1602. "searchExpression"
  1603. ],
  1604. "members": {
  1605. "assistantId": {
  1606. "location": "uri",
  1607. "locationName": "assistantId"
  1608. },
  1609. "maxResults": {
  1610. "location": "querystring",
  1611. "locationName": "maxResults",
  1612. "type": "integer"
  1613. },
  1614. "nextToken": {
  1615. "location": "querystring",
  1616. "locationName": "nextToken"
  1617. },
  1618. "searchExpression": {
  1619. "shape": "S5k"
  1620. }
  1621. }
  1622. },
  1623. "output": {
  1624. "type": "structure",
  1625. "required": [
  1626. "sessionSummaries"
  1627. ],
  1628. "members": {
  1629. "nextToken": {},
  1630. "sessionSummaries": {
  1631. "type": "list",
  1632. "member": {
  1633. "type": "structure",
  1634. "required": [
  1635. "assistantArn",
  1636. "assistantId",
  1637. "sessionArn",
  1638. "sessionId"
  1639. ],
  1640. "members": {
  1641. "assistantArn": {},
  1642. "assistantId": {},
  1643. "sessionArn": {},
  1644. "sessionId": {}
  1645. }
  1646. }
  1647. }
  1648. }
  1649. }
  1650. },
  1651. "StartContentUpload": {
  1652. "http": {
  1653. "requestUri": "/knowledgeBases/{knowledgeBaseId}/upload",
  1654. "responseCode": 200
  1655. },
  1656. "input": {
  1657. "type": "structure",
  1658. "required": [
  1659. "contentType",
  1660. "knowledgeBaseId"
  1661. ],
  1662. "members": {
  1663. "contentType": {},
  1664. "knowledgeBaseId": {
  1665. "location": "uri",
  1666. "locationName": "knowledgeBaseId"
  1667. },
  1668. "presignedUrlTimeToLive": {
  1669. "type": "integer"
  1670. }
  1671. }
  1672. },
  1673. "output": {
  1674. "type": "structure",
  1675. "required": [
  1676. "headersToInclude",
  1677. "uploadId",
  1678. "url",
  1679. "urlExpiry"
  1680. ],
  1681. "members": {
  1682. "headersToInclude": {
  1683. "type": "map",
  1684. "key": {},
  1685. "value": {}
  1686. },
  1687. "uploadId": {},
  1688. "url": {
  1689. "shape": "S11"
  1690. },
  1691. "urlExpiry": {
  1692. "shape": "S12"
  1693. }
  1694. }
  1695. }
  1696. },
  1697. "StartImportJob": {
  1698. "http": {
  1699. "requestUri": "/knowledgeBases/{knowledgeBaseId}/importJobs",
  1700. "responseCode": 200
  1701. },
  1702. "input": {
  1703. "type": "structure",
  1704. "required": [
  1705. "importJobType",
  1706. "knowledgeBaseId",
  1707. "uploadId"
  1708. ],
  1709. "members": {
  1710. "clientToken": {
  1711. "idempotencyToken": true
  1712. },
  1713. "externalSourceConfiguration": {
  1714. "shape": "S2t"
  1715. },
  1716. "importJobType": {},
  1717. "knowledgeBaseId": {
  1718. "location": "uri",
  1719. "locationName": "knowledgeBaseId"
  1720. },
  1721. "metadata": {
  1722. "shape": "St"
  1723. },
  1724. "uploadId": {}
  1725. }
  1726. },
  1727. "output": {
  1728. "type": "structure",
  1729. "members": {
  1730. "importJob": {
  1731. "shape": "S2s"
  1732. }
  1733. }
  1734. },
  1735. "idempotent": true
  1736. },
  1737. "TagResource": {
  1738. "http": {
  1739. "requestUri": "/tags/{resourceArn}",
  1740. "responseCode": 200
  1741. },
  1742. "input": {
  1743. "type": "structure",
  1744. "required": [
  1745. "resourceArn",
  1746. "tags"
  1747. ],
  1748. "members": {
  1749. "resourceArn": {
  1750. "location": "uri",
  1751. "locationName": "resourceArn"
  1752. },
  1753. "tags": {
  1754. "shape": "S7"
  1755. }
  1756. }
  1757. },
  1758. "output": {
  1759. "type": "structure",
  1760. "members": {}
  1761. },
  1762. "idempotent": true
  1763. },
  1764. "UntagResource": {
  1765. "http": {
  1766. "method": "DELETE",
  1767. "requestUri": "/tags/{resourceArn}",
  1768. "responseCode": 200
  1769. },
  1770. "input": {
  1771. "type": "structure",
  1772. "required": [
  1773. "resourceArn",
  1774. "tagKeys"
  1775. ],
  1776. "members": {
  1777. "resourceArn": {
  1778. "location": "uri",
  1779. "locationName": "resourceArn"
  1780. },
  1781. "tagKeys": {
  1782. "location": "querystring",
  1783. "locationName": "tagKeys",
  1784. "type": "list",
  1785. "member": {}
  1786. }
  1787. }
  1788. },
  1789. "output": {
  1790. "type": "structure",
  1791. "members": {}
  1792. },
  1793. "idempotent": true
  1794. },
  1795. "UpdateContent": {
  1796. "http": {
  1797. "requestUri": "/knowledgeBases/{knowledgeBaseId}/contents/{contentId}",
  1798. "responseCode": 200
  1799. },
  1800. "input": {
  1801. "type": "structure",
  1802. "required": [
  1803. "contentId",
  1804. "knowledgeBaseId"
  1805. ],
  1806. "members": {
  1807. "contentId": {
  1808. "location": "uri",
  1809. "locationName": "contentId"
  1810. },
  1811. "knowledgeBaseId": {
  1812. "location": "uri",
  1813. "locationName": "knowledgeBaseId"
  1814. },
  1815. "metadata": {
  1816. "shape": "St"
  1817. },
  1818. "overrideLinkOutUri": {},
  1819. "removeOverrideLinkOutUri": {
  1820. "type": "boolean"
  1821. },
  1822. "revisionId": {},
  1823. "title": {},
  1824. "uploadId": {}
  1825. }
  1826. },
  1827. "output": {
  1828. "type": "structure",
  1829. "members": {
  1830. "content": {
  1831. "shape": "Sy"
  1832. }
  1833. }
  1834. }
  1835. },
  1836. "UpdateKnowledgeBaseTemplateUri": {
  1837. "http": {
  1838. "requestUri": "/knowledgeBases/{knowledgeBaseId}/templateUri",
  1839. "responseCode": 200
  1840. },
  1841. "input": {
  1842. "type": "structure",
  1843. "required": [
  1844. "knowledgeBaseId",
  1845. "templateUri"
  1846. ],
  1847. "members": {
  1848. "knowledgeBaseId": {
  1849. "location": "uri",
  1850. "locationName": "knowledgeBaseId"
  1851. },
  1852. "templateUri": {}
  1853. }
  1854. },
  1855. "output": {
  1856. "type": "structure",
  1857. "members": {
  1858. "knowledgeBase": {
  1859. "shape": "S1a"
  1860. }
  1861. }
  1862. }
  1863. },
  1864. "UpdateQuickResponse": {
  1865. "http": {
  1866. "requestUri": "/knowledgeBases/{knowledgeBaseId}/quickResponses/{quickResponseId}",
  1867. "responseCode": 200
  1868. },
  1869. "input": {
  1870. "type": "structure",
  1871. "required": [
  1872. "knowledgeBaseId",
  1873. "quickResponseId"
  1874. ],
  1875. "members": {
  1876. "channels": {
  1877. "shape": "S1d"
  1878. },
  1879. "content": {
  1880. "shape": "S1f"
  1881. },
  1882. "contentType": {},
  1883. "description": {},
  1884. "groupingConfiguration": {
  1885. "shape": "S1j"
  1886. },
  1887. "isActive": {
  1888. "type": "boolean"
  1889. },
  1890. "knowledgeBaseId": {
  1891. "location": "uri",
  1892. "locationName": "knowledgeBaseId"
  1893. },
  1894. "language": {},
  1895. "name": {},
  1896. "quickResponseId": {
  1897. "location": "uri",
  1898. "locationName": "quickResponseId"
  1899. },
  1900. "removeDescription": {
  1901. "type": "boolean"
  1902. },
  1903. "removeGroupingConfiguration": {
  1904. "type": "boolean"
  1905. },
  1906. "removeShortcutKey": {
  1907. "type": "boolean"
  1908. },
  1909. "shortcutKey": {}
  1910. }
  1911. },
  1912. "output": {
  1913. "type": "structure",
  1914. "members": {
  1915. "quickResponse": {
  1916. "shape": "S1s"
  1917. }
  1918. }
  1919. }
  1920. },
  1921. "UpdateSession": {
  1922. "http": {
  1923. "requestUri": "/assistants/{assistantId}/sessions/{sessionId}",
  1924. "responseCode": 200
  1925. },
  1926. "input": {
  1927. "type": "structure",
  1928. "required": [
  1929. "assistantId",
  1930. "sessionId"
  1931. ],
  1932. "members": {
  1933. "assistantId": {
  1934. "location": "uri",
  1935. "locationName": "assistantId"
  1936. },
  1937. "description": {},
  1938. "sessionId": {
  1939. "location": "uri",
  1940. "locationName": "sessionId"
  1941. },
  1942. "tagFilter": {
  1943. "shape": "S1x"
  1944. }
  1945. }
  1946. },
  1947. "output": {
  1948. "type": "structure",
  1949. "members": {
  1950. "session": {
  1951. "shape": "S23"
  1952. }
  1953. }
  1954. }
  1955. }
  1956. },
  1957. "shapes": {
  1958. "S5": {
  1959. "type": "structure",
  1960. "members": {
  1961. "kmsKeyId": {}
  1962. }
  1963. },
  1964. "S7": {
  1965. "type": "map",
  1966. "key": {},
  1967. "value": {}
  1968. },
  1969. "Sc": {
  1970. "type": "structure",
  1971. "required": [
  1972. "assistantArn",
  1973. "assistantId",
  1974. "name",
  1975. "status",
  1976. "type"
  1977. ],
  1978. "members": {
  1979. "assistantArn": {},
  1980. "assistantId": {},
  1981. "capabilityConfiguration": {
  1982. "shape": "Sf"
  1983. },
  1984. "description": {},
  1985. "integrationConfiguration": {
  1986. "shape": "Sh"
  1987. },
  1988. "name": {},
  1989. "serverSideEncryptionConfiguration": {
  1990. "shape": "S5"
  1991. },
  1992. "status": {},
  1993. "tags": {
  1994. "shape": "S7"
  1995. },
  1996. "type": {}
  1997. }
  1998. },
  1999. "Sf": {
  2000. "type": "structure",
  2001. "members": {
  2002. "type": {}
  2003. }
  2004. },
  2005. "Sh": {
  2006. "type": "structure",
  2007. "members": {
  2008. "topicIntegrationArn": {}
  2009. }
  2010. },
  2011. "Sp": {
  2012. "type": "structure",
  2013. "required": [
  2014. "assistantArn",
  2015. "assistantAssociationArn",
  2016. "assistantAssociationId",
  2017. "assistantId",
  2018. "associationData",
  2019. "associationType"
  2020. ],
  2021. "members": {
  2022. "assistantArn": {},
  2023. "assistantAssociationArn": {},
  2024. "assistantAssociationId": {},
  2025. "assistantId": {},
  2026. "associationData": {
  2027. "shape": "Sq"
  2028. },
  2029. "associationType": {},
  2030. "tags": {
  2031. "shape": "S7"
  2032. }
  2033. }
  2034. },
  2035. "Sq": {
  2036. "type": "structure",
  2037. "members": {
  2038. "knowledgeBaseAssociation": {
  2039. "type": "structure",
  2040. "members": {
  2041. "knowledgeBaseArn": {},
  2042. "knowledgeBaseId": {}
  2043. }
  2044. }
  2045. },
  2046. "union": true
  2047. },
  2048. "St": {
  2049. "type": "map",
  2050. "key": {},
  2051. "value": {}
  2052. },
  2053. "Sy": {
  2054. "type": "structure",
  2055. "required": [
  2056. "contentArn",
  2057. "contentId",
  2058. "contentType",
  2059. "knowledgeBaseArn",
  2060. "knowledgeBaseId",
  2061. "metadata",
  2062. "name",
  2063. "revisionId",
  2064. "status",
  2065. "title",
  2066. "url",
  2067. "urlExpiry"
  2068. ],
  2069. "members": {
  2070. "contentArn": {},
  2071. "contentId": {},
  2072. "contentType": {},
  2073. "knowledgeBaseArn": {},
  2074. "knowledgeBaseId": {},
  2075. "linkOutUri": {},
  2076. "metadata": {
  2077. "shape": "St"
  2078. },
  2079. "name": {},
  2080. "revisionId": {},
  2081. "status": {},
  2082. "tags": {
  2083. "shape": "S7"
  2084. },
  2085. "title": {},
  2086. "url": {
  2087. "shape": "S11"
  2088. },
  2089. "urlExpiry": {
  2090. "shape": "S12"
  2091. }
  2092. }
  2093. },
  2094. "S11": {
  2095. "type": "string",
  2096. "sensitive": true
  2097. },
  2098. "S12": {
  2099. "type": "timestamp",
  2100. "timestampFormat": "unixTimestamp"
  2101. },
  2102. "S15": {
  2103. "type": "structure",
  2104. "members": {
  2105. "templateUri": {}
  2106. }
  2107. },
  2108. "S16": {
  2109. "type": "structure",
  2110. "members": {
  2111. "appIntegrations": {
  2112. "type": "structure",
  2113. "required": [
  2114. "appIntegrationArn"
  2115. ],
  2116. "members": {
  2117. "appIntegrationArn": {},
  2118. "objectFields": {
  2119. "type": "list",
  2120. "member": {}
  2121. }
  2122. }
  2123. }
  2124. },
  2125. "union": true
  2126. },
  2127. "S1a": {
  2128. "type": "structure",
  2129. "required": [
  2130. "knowledgeBaseArn",
  2131. "knowledgeBaseId",
  2132. "knowledgeBaseType",
  2133. "name",
  2134. "status"
  2135. ],
  2136. "members": {
  2137. "description": {},
  2138. "knowledgeBaseArn": {},
  2139. "knowledgeBaseId": {},
  2140. "knowledgeBaseType": {},
  2141. "lastContentModificationTime": {
  2142. "shape": "S12"
  2143. },
  2144. "name": {},
  2145. "renderingConfiguration": {
  2146. "shape": "S15"
  2147. },
  2148. "serverSideEncryptionConfiguration": {
  2149. "shape": "S5"
  2150. },
  2151. "sourceConfiguration": {
  2152. "shape": "S16"
  2153. },
  2154. "status": {},
  2155. "tags": {
  2156. "shape": "S7"
  2157. }
  2158. }
  2159. },
  2160. "S1d": {
  2161. "type": "list",
  2162. "member": {
  2163. "type": "string",
  2164. "sensitive": true
  2165. }
  2166. },
  2167. "S1f": {
  2168. "type": "structure",
  2169. "members": {
  2170. "content": {
  2171. "shape": "S1g"
  2172. }
  2173. },
  2174. "union": true
  2175. },
  2176. "S1g": {
  2177. "type": "string",
  2178. "sensitive": true
  2179. },
  2180. "S1j": {
  2181. "type": "structure",
  2182. "members": {
  2183. "criteria": {
  2184. "type": "string",
  2185. "sensitive": true
  2186. },
  2187. "values": {
  2188. "type": "list",
  2189. "member": {
  2190. "type": "string",
  2191. "sensitive": true
  2192. }
  2193. }
  2194. }
  2195. },
  2196. "S1s": {
  2197. "type": "structure",
  2198. "required": [
  2199. "contentType",
  2200. "createdTime",
  2201. "knowledgeBaseArn",
  2202. "knowledgeBaseId",
  2203. "lastModifiedTime",
  2204. "name",
  2205. "quickResponseArn",
  2206. "quickResponseId",
  2207. "status"
  2208. ],
  2209. "members": {
  2210. "channels": {
  2211. "shape": "S1d"
  2212. },
  2213. "contentType": {},
  2214. "contents": {
  2215. "shape": "S1t"
  2216. },
  2217. "createdTime": {
  2218. "shape": "S12"
  2219. },
  2220. "description": {},
  2221. "groupingConfiguration": {
  2222. "shape": "S1j"
  2223. },
  2224. "isActive": {
  2225. "type": "boolean"
  2226. },
  2227. "knowledgeBaseArn": {},
  2228. "knowledgeBaseId": {},
  2229. "language": {},
  2230. "lastModifiedBy": {},
  2231. "lastModifiedTime": {
  2232. "shape": "S12"
  2233. },
  2234. "name": {},
  2235. "quickResponseArn": {},
  2236. "quickResponseId": {},
  2237. "shortcutKey": {},
  2238. "status": {},
  2239. "tags": {
  2240. "shape": "S7"
  2241. }
  2242. }
  2243. },
  2244. "S1t": {
  2245. "type": "structure",
  2246. "members": {
  2247. "markdown": {
  2248. "shape": "S1u"
  2249. },
  2250. "plainText": {
  2251. "shape": "S1u"
  2252. }
  2253. }
  2254. },
  2255. "S1u": {
  2256. "type": "structure",
  2257. "members": {
  2258. "content": {
  2259. "shape": "S1g"
  2260. }
  2261. },
  2262. "union": true
  2263. },
  2264. "S1x": {
  2265. "type": "structure",
  2266. "members": {
  2267. "andConditions": {
  2268. "shape": "S1y"
  2269. },
  2270. "orConditions": {
  2271. "type": "list",
  2272. "member": {
  2273. "type": "structure",
  2274. "members": {
  2275. "andConditions": {
  2276. "shape": "S1y"
  2277. },
  2278. "tagCondition": {
  2279. "shape": "S1z"
  2280. }
  2281. },
  2282. "union": true
  2283. }
  2284. },
  2285. "tagCondition": {
  2286. "shape": "S1z"
  2287. }
  2288. },
  2289. "union": true
  2290. },
  2291. "S1y": {
  2292. "type": "list",
  2293. "member": {
  2294. "shape": "S1z"
  2295. }
  2296. },
  2297. "S1z": {
  2298. "type": "structure",
  2299. "required": [
  2300. "key"
  2301. ],
  2302. "members": {
  2303. "key": {},
  2304. "value": {}
  2305. }
  2306. },
  2307. "S23": {
  2308. "type": "structure",
  2309. "required": [
  2310. "name",
  2311. "sessionArn",
  2312. "sessionId"
  2313. ],
  2314. "members": {
  2315. "description": {},
  2316. "integrationConfiguration": {
  2317. "type": "structure",
  2318. "members": {
  2319. "topicIntegrationArn": {}
  2320. }
  2321. },
  2322. "name": {},
  2323. "sessionArn": {},
  2324. "sessionId": {},
  2325. "tagFilter": {
  2326. "shape": "S1x"
  2327. },
  2328. "tags": {
  2329. "shape": "S7"
  2330. }
  2331. }
  2332. },
  2333. "S2p": {
  2334. "type": "structure",
  2335. "required": [
  2336. "contentArn",
  2337. "contentId",
  2338. "contentType",
  2339. "knowledgeBaseArn",
  2340. "knowledgeBaseId",
  2341. "metadata",
  2342. "name",
  2343. "revisionId",
  2344. "status",
  2345. "title"
  2346. ],
  2347. "members": {
  2348. "contentArn": {},
  2349. "contentId": {},
  2350. "contentType": {},
  2351. "knowledgeBaseArn": {},
  2352. "knowledgeBaseId": {},
  2353. "metadata": {
  2354. "shape": "St"
  2355. },
  2356. "name": {},
  2357. "revisionId": {},
  2358. "status": {},
  2359. "tags": {
  2360. "shape": "S7"
  2361. },
  2362. "title": {}
  2363. }
  2364. },
  2365. "S2s": {
  2366. "type": "structure",
  2367. "required": [
  2368. "createdTime",
  2369. "importJobId",
  2370. "importJobType",
  2371. "knowledgeBaseArn",
  2372. "knowledgeBaseId",
  2373. "lastModifiedTime",
  2374. "status",
  2375. "uploadId",
  2376. "url",
  2377. "urlExpiry"
  2378. ],
  2379. "members": {
  2380. "createdTime": {
  2381. "shape": "S12"
  2382. },
  2383. "externalSourceConfiguration": {
  2384. "shape": "S2t"
  2385. },
  2386. "failedRecordReport": {
  2387. "shape": "S11"
  2388. },
  2389. "importJobId": {},
  2390. "importJobType": {},
  2391. "knowledgeBaseArn": {},
  2392. "knowledgeBaseId": {},
  2393. "lastModifiedTime": {
  2394. "shape": "S12"
  2395. },
  2396. "metadata": {
  2397. "shape": "St"
  2398. },
  2399. "status": {},
  2400. "uploadId": {},
  2401. "url": {
  2402. "shape": "S11"
  2403. },
  2404. "urlExpiry": {
  2405. "shape": "S12"
  2406. }
  2407. }
  2408. },
  2409. "S2t": {
  2410. "type": "structure",
  2411. "required": [
  2412. "configuration",
  2413. "source"
  2414. ],
  2415. "members": {
  2416. "configuration": {
  2417. "type": "structure",
  2418. "members": {
  2419. "connectConfiguration": {
  2420. "type": "structure",
  2421. "members": {
  2422. "instanceId": {}
  2423. }
  2424. }
  2425. },
  2426. "union": true
  2427. },
  2428. "source": {}
  2429. }
  2430. },
  2431. "S39": {
  2432. "type": "structure",
  2433. "required": [
  2434. "details",
  2435. "reference"
  2436. ],
  2437. "members": {
  2438. "details": {
  2439. "type": "structure",
  2440. "members": {
  2441. "contentData": {
  2442. "type": "structure",
  2443. "required": [
  2444. "rankingData",
  2445. "textData"
  2446. ],
  2447. "members": {
  2448. "rankingData": {
  2449. "shape": "S3c"
  2450. },
  2451. "textData": {
  2452. "shape": "S3f"
  2453. }
  2454. }
  2455. },
  2456. "generativeData": {
  2457. "type": "structure",
  2458. "required": [
  2459. "completion",
  2460. "rankingData",
  2461. "references"
  2462. ],
  2463. "members": {
  2464. "completion": {
  2465. "shape": "S3k"
  2466. },
  2467. "rankingData": {
  2468. "shape": "S3c"
  2469. },
  2470. "references": {
  2471. "type": "list",
  2472. "member": {
  2473. "shape": "S39"
  2474. }
  2475. }
  2476. }
  2477. },
  2478. "sourceContentData": {
  2479. "type": "structure",
  2480. "required": [
  2481. "id",
  2482. "rankingData",
  2483. "textData",
  2484. "type"
  2485. ],
  2486. "members": {
  2487. "id": {},
  2488. "rankingData": {
  2489. "shape": "S3c"
  2490. },
  2491. "textData": {
  2492. "shape": "S3f"
  2493. },
  2494. "type": {}
  2495. }
  2496. }
  2497. },
  2498. "union": true
  2499. },
  2500. "reference": {
  2501. "type": "structure",
  2502. "members": {
  2503. "contentReference": {
  2504. "shape": "S3q"
  2505. },
  2506. "generativeReference": {
  2507. "type": "structure",
  2508. "members": {
  2509. "generationId": {},
  2510. "modelId": {}
  2511. }
  2512. }
  2513. },
  2514. "union": true
  2515. }
  2516. }
  2517. },
  2518. "S3c": {
  2519. "type": "structure",
  2520. "members": {
  2521. "relevanceLevel": {},
  2522. "relevanceScore": {
  2523. "type": "double"
  2524. }
  2525. }
  2526. },
  2527. "S3f": {
  2528. "type": "structure",
  2529. "members": {
  2530. "excerpt": {
  2531. "shape": "S3g"
  2532. },
  2533. "title": {
  2534. "shape": "S3g"
  2535. }
  2536. }
  2537. },
  2538. "S3g": {
  2539. "type": "structure",
  2540. "members": {
  2541. "highlights": {
  2542. "type": "list",
  2543. "member": {
  2544. "type": "structure",
  2545. "members": {
  2546. "beginOffsetInclusive": {
  2547. "type": "integer"
  2548. },
  2549. "endOffsetExclusive": {
  2550. "type": "integer"
  2551. }
  2552. }
  2553. }
  2554. },
  2555. "text": {
  2556. "shape": "S3k"
  2557. }
  2558. }
  2559. },
  2560. "S3k": {
  2561. "type": "string",
  2562. "sensitive": true
  2563. },
  2564. "S3q": {
  2565. "type": "structure",
  2566. "members": {
  2567. "contentArn": {},
  2568. "contentId": {},
  2569. "knowledgeBaseArn": {},
  2570. "knowledgeBaseId": {}
  2571. }
  2572. },
  2573. "S3t": {
  2574. "type": "structure",
  2575. "required": [
  2576. "contentReference"
  2577. ],
  2578. "members": {
  2579. "contentReference": {
  2580. "shape": "S3q"
  2581. },
  2582. "excerpt": {
  2583. "shape": "S3g"
  2584. },
  2585. "title": {
  2586. "shape": "S3g"
  2587. }
  2588. }
  2589. },
  2590. "S40": {
  2591. "type": "string",
  2592. "sensitive": true
  2593. },
  2594. "S41": {
  2595. "type": "list",
  2596. "member": {}
  2597. },
  2598. "S4h": {
  2599. "type": "list",
  2600. "member": {
  2601. "shape": "S2p"
  2602. }
  2603. },
  2604. "S52": {
  2605. "type": "structure",
  2606. "members": {
  2607. "generativeContentFeedbackData": {
  2608. "type": "structure",
  2609. "required": [
  2610. "relevance"
  2611. ],
  2612. "members": {
  2613. "relevance": {}
  2614. }
  2615. }
  2616. },
  2617. "union": true
  2618. },
  2619. "S5k": {
  2620. "type": "structure",
  2621. "required": [
  2622. "filters"
  2623. ],
  2624. "members": {
  2625. "filters": {
  2626. "type": "list",
  2627. "member": {
  2628. "type": "structure",
  2629. "required": [
  2630. "field",
  2631. "operator",
  2632. "value"
  2633. ],
  2634. "members": {
  2635. "field": {},
  2636. "operator": {},
  2637. "value": {}
  2638. }
  2639. }
  2640. }
  2641. }
  2642. },
  2643. "S6b": {
  2644. "type": "list",
  2645. "member": {},
  2646. "sensitive": true
  2647. }
  2648. }
  2649. }