diff --git a/.github/workflows/preview-docs.yml b/.github/workflows/preview-docs.yml index 94ea44ac0ae..bb920f02975 100644 --- a/.github/workflows/preview-docs.yml +++ b/.github/workflows/preview-docs.yml @@ -4,6 +4,9 @@ on: pull_request_target: branches: - main + paths: + - 'fern/**' + - 'packages/cli/docs-**' workflow_dispatch: inputs: prNumber: @@ -38,10 +41,26 @@ jobs: echo "$OUTPUT" URL=$(echo "$OUTPUT" | grep -oP 'Published docs to \K.*(?= \()') echo "Preview URL: $URL" - echo "🌿 Preview your docs: $URL" > preview_url.txt + echo "$URL" > preview_url.txt - - name: Comment URL in PR - uses: thollander/actions-comment-pull-request@v2.4.3 - with: - filePath: preview_url.txt - comment_tag: docs-preview-link + - name: Comment or Update URL in PR + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + run: | + COMMENT_TAG="" + PREVIEW_URL=$(cat preview_url.txt) + + # Get existing comments + EXISTING_COMMENT=$(gh api repos/${{ github.repository }}/issues/${{ github.event.pull_request.number }}/comments \ + --jq ".[] | select(.body | contains(\"${COMMENT_TAG}\")) | .id") + + if [ -z "$EXISTING_COMMENT" ]; then + # No existing comment, create one + gh api repos/${{ github.repository }}/issues/${{ github.event.pull_request.number }}/comments \ + -f body="${COMMENT_TAG}🌿 Preview your docs: $PREVIEW_URL" + else + # Update existing comment + gh api repos/${{ github.repository }}/issues/comments/$EXISTING_COMMENT \ + -X PATCH \ + -f body="${COMMENT_TAG}🌿 Preview your docs: $PREVIEW_URL" + fi diff --git a/fern/pages/changelogs/cli/2024-11-29.mdx b/fern/pages/changelogs/cli/2024-11-29.mdx new file mode 100644 index 00000000000..604e6f91b7c --- /dev/null +++ b/fern/pages/changelogs/cli/2024-11-29.mdx @@ -0,0 +1,4 @@ +## 0.45.1-rc0 +**`(fix):`** Generate valid examples using spec validation information; respect `null` entries during example generation. + + diff --git a/fern/pages/docs/building-your-docs/announcement-banner.mdx b/fern/pages/docs/building-your-docs/announcement-banner.mdx index d43b20f89c2..a6c5f9acb1b 100644 --- a/fern/pages/docs/building-your-docs/announcement-banner.mdx +++ b/fern/pages/docs/building-your-docs/announcement-banner.mdx @@ -12,3 +12,5 @@ announcement: ``` Markdown and HTML is supported in the announcement message. You can include links, images, and other formatting. [Custom css](/learn/docs/building-your-docs/custom-css-global-js#custom-css) can be used to customize the style of the announcement. + +Another docs change \ No newline at end of file diff --git a/fern/pages/sdks/capabilities/discriminated-unions.mdx b/fern/pages/sdks/capabilities/discriminated-unions.mdx index 812962e22e1..16f156fedf2 100644 --- a/fern/pages/sdks/capabilities/discriminated-unions.mdx +++ b/fern/pages/sdks/capabilities/discriminated-unions.mdx @@ -3,7 +3,7 @@ title: Discriminated Unions description: Fern SDKs include idiomatic support for discriminated unions --- -The SDKs natively support discriminated [unions](../../api-definition/fern/types#unions) for both OpenAPI and Fern APIs. +The SDKs natively support [discriminated unions](../../api-definition/fern/types#discriminated-unions) for both OpenAPI and Fern APIs. @@ -224,4 +224,4 @@ func ComputeArea(shape *Shape) float64 { ``` - \ No newline at end of file + diff --git a/fern/pages/welcome.mdx b/fern/pages/welcome.mdx index 2fbf0d5b1b9..cce37eda4c9 100644 --- a/fern/pages/welcome.mdx +++ b/fern/pages/welcome.mdx @@ -6,7 +6,7 @@ layout: overview hide-toc: true --- -Our entire docs website (the one you're looking at right now!) is built using Fern. [See the source Markdown.](https://github.com/fern-api/fern/blob/main/fern/pages/welcome.mdx) +Our entire docs website (the one you're looking at right now!) is built using Fern. [See the source Markdown.](https://github.com/fern-api/fern/blob/main/fern/pages/welcome.mdx?plain=1) ## Products diff --git a/packages/cli/api-importers/openapi/openapi-ir-parser/src/schema/examples/ExampleTypeFactory.ts b/packages/cli/api-importers/openapi/openapi-ir-parser/src/schema/examples/ExampleTypeFactory.ts index 9c22aba86c0..5f84f90b58d 100644 --- a/packages/cli/api-importers/openapi/openapi-ir-parser/src/schema/examples/ExampleTypeFactory.ts +++ b/packages/cli/api-importers/openapi/openapi-ir-parser/src/schema/examples/ExampleTypeFactory.ts @@ -125,6 +125,9 @@ export class ExampleTypeFactory { ) { return undefined; } + if (Object.is(example, null)) { + return undefined; + } const result = this.buildExampleHelper({ schema: schema.value, visitedSchemaIds, diff --git a/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi-docs/aries.json b/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi-docs/aries.json index ce5781685ec..931c7890e17 100644 --- a/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi-docs/aries.json +++ b/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi-docs/aries.json @@ -11681,23 +11681,7 @@ types: "conn_id": "conn_id", }, "response": { - "body": { - "result": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "description": "This menu presents options", - "errormsg": "Error: item not found", - "options": [ - { - "description": "Window display preferences", - "disabled": false, - "name": "window_prefs", - "title": "Window Preferences", - }, - ], - "title": "My Menu", - }, - }, + "body": {}, }, }, ], @@ -11914,18 +11898,7 @@ service: - path-parameters: conn_id: conn_id response: - body: - result: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - description: This menu presents options - errormsg: 'Error: item not found' - options: - - description: Window display preferences - disabled: false - name: window_prefs - title: Window Preferences - title: My Menu + body: {} perform_action_by_conn_id: path: /action-menu/{conn_id}/perform method: POST @@ -13881,27 +13854,6 @@ docs: Connection management "type": { "key": "value", }, - "value": { - "primary": { - "n": "0", - "rctxt": "0", - "s": "0", - "z": "0", - }, - "revocation": { - "g": "1 1F14F&ECB578F 2 095E45DDF417D", - "g_dash": "1 1D64716fCDC00C 1 0C781960FA66E3D3 2 095E45DDF417D", - "h": "1 16675DAE54BFAE8 2 095E45DD417D", - "h0": "1 21E5EF9476EAF18 2 095E45DDF417D", - "h1": "1 236D1D99236090 2 095E45DDF417D", - "h2": "1 1C3AE8D1F1E277 2 095E45DDF417D", - "h_cap": "1 1B2A32CF3167 1 2490FEBF6EE55 1 0000000000000000", - "htilde": "1 1D8549E8C0F8 2 095E45DDF417D", - "pk": "1 142CD5E5A7DC 1 153885BD903312 2 095E45DDF417D", - "u": "1 0C430AAB2B4710 1 1CB3A0932EE7E 1 0000000000000000", - "y": "1 153558BD903312 2 095E45DDF417D 1 0000000000000000", - }, - }, "ver": "1.0", }, }, @@ -13942,39 +13894,6 @@ docs: Connection management "sent": { "credential_definition_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", }, - "txn": { - "_type": "101", - "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "created_at": "2021-12-31 23:59:59+00:00", - "endorser_write_txn": true, - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "dif/endorse-transaction/request@v1.0", - }, - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "dif/endorse-transaction/request@v1.0", - }, - ], - "messages_attach": [ - {}, - {}, - ], - "signature_request": [ - {}, - {}, - ], - "signature_response": [ - {}, - {}, - ], - "state": "active", - "thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "trace": true, - "transaction_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "updated_at": "2021-12-31 23:59:59+00:00", - }, }, }, }, @@ -14057,27 +13976,6 @@ docs: Connection management "type": { "key": "value", }, - "value": { - "primary": { - "n": "0", - "rctxt": "0", - "s": "0", - "z": "0", - }, - "revocation": { - "g": "1 1F14F&ECB578F 2 095E45DDF417D", - "g_dash": "1 1D64716fCDC00C 1 0C781960FA66E3D3 2 095E45DDF417D", - "h": "1 16675DAE54BFAE8 2 095E45DD417D", - "h0": "1 21E5EF9476EAF18 2 095E45DDF417D", - "h1": "1 236D1D99236090 2 095E45DDF417D", - "h2": "1 1C3AE8D1F1E277 2 095E45DDF417D", - "h_cap": "1 1B2A32CF3167 1 2490FEBF6EE55 1 0000000000000000", - "htilde": "1 1D8549E8C0F8 2 095E45DDF417D", - "pk": "1 142CD5E5A7DC 1 153885BD903312 2 095E45DDF417D", - "u": "1 0C430AAB2B4710 1 1CB3A0932EE7E 1 0000000000000000", - "y": "1 153558BD903312 2 095E45DDF417D 1 0000000000000000", - }, - }, "ver": "1.0", }, }, @@ -14163,30 +14061,6 @@ service: body: sent: credential_definition_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - txn: - _type: '101' - connection_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - created_at: '2021-12-31 23:59:59+00:00' - endorser_write_txn: true - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: dif/endorse-transaction/request@v1.0 - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: dif/endorse-transaction/request@v1.0 - messages_attach: - - {} - - {} - signature_request: - - {} - - {} - signature_response: - - {} - - {} - state: active - thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - trace: true - transaction_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - updated_at: '2021-12-31 23:59:59+00:00' get_created_cred_defs: path: /credential-definitions/created method: GET @@ -14263,24 +14137,6 @@ service: tag: tag type: key: value - value: - primary: - 'n': '0' - rctxt: '0' - s: '0' - z: '0' - revocation: - g: 1 1F14F&ECB578F 2 095E45DDF417D - g_dash: 1 1D64716fCDC00C 1 0C781960FA66E3D3 2 095E45DDF417D - h: 1 16675DAE54BFAE8 2 095E45DD417D - h0: 1 21E5EF9476EAF18 2 095E45DDF417D - h1: 1 236D1D99236090 2 095E45DDF417D - h2: 1 1C3AE8D1F1E277 2 095E45DDF417D - h_cap: 1 1B2A32CF3167 1 2490FEBF6EE55 1 0000000000000000 - htilde: 1 1D8549E8C0F8 2 095E45DDF417D - pk: 1 142CD5E5A7DC 1 153885BD903312 2 095E45DDF417D - u: 1 0C430AAB2B4710 1 1CB3A0932EE7E 1 0000000000000000 - 'y': 1 153558BD903312 2 095E45DDF417D 1 0000000000000000 ver: '1.0' write_credential_definition: path: /credential-definitions/{cred_def_id}/write_record @@ -14307,24 +14163,6 @@ service: tag: tag type: key: value - value: - primary: - 'n': '0' - rctxt: '0' - s: '0' - z: '0' - revocation: - g: 1 1F14F&ECB578F 2 095E45DDF417D - g_dash: 1 1D64716fCDC00C 1 0C781960FA66E3D3 2 095E45DDF417D - h: 1 16675DAE54BFAE8 2 095E45DD417D - h0: 1 21E5EF9476EAF18 2 095E45DDF417D - h1: 1 236D1D99236090 2 095E45DDF417D - h2: 1 1C3AE8D1F1E277 2 095E45DDF417D - h_cap: 1 1B2A32CF3167 1 2490FEBF6EE55 1 0000000000000000 - htilde: 1 1D8549E8C0F8 2 095E45DDF417D - pk: 1 142CD5E5A7DC 1 153885BD903312 2 095E45DDF417D - u: 1 0C430AAB2B4710 1 1CB3A0932EE7E 1 0000000000000000 - 'y': 1 153558BD903312 2 095E45DDF417D 1 0000000000000000 ver: '1.0' source: openapi: ../openapi.yml @@ -15474,25 +15312,6 @@ docs: Holder credential management "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "@type": "https://didcomm.org/my-family/1.0/my-message-type", "did": "WgWxqztrNooG92RXvxSTWv", - "did_doc~attach": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, "label": "Request to connect with Bob", }, "response": { @@ -15723,22 +15542,6 @@ service: '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 '@type': https://didcomm.org/my-family/1.0/my-message-type did: WgWxqztrNooG92RXvxSTWv - did_doc~attach: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png label: Request to connect with Bob response: body: @@ -15897,21 +15700,7 @@ docs: Connection management via DID exchange { "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "created_at": "2021-12-31 23:59:59+00:00", - "disclose": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "protocols": [ - { - "pid": "pid", - }, - ], - }, "discovery_exchange_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "query_msg": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "query": "query", - }, "state": "active", "thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "trace": true, @@ -15920,21 +15709,7 @@ docs: Connection management via DID exchange { "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "created_at": "2021-12-31 23:59:59+00:00", - "disclose": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "protocols": [ - { - "pid": "pid", - }, - ], - }, "discovery_exchange_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "query_msg": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "query": "query", - }, "state": "active", "thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "trace": true, @@ -15975,22 +15750,7 @@ docs: Connection management via DID exchange "body": { "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "created_at": "2021-12-31 23:59:59+00:00", - "disclose": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "protocols": [ - { - "pid": "pid", - }, - ], - }, "discovery_exchange_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "query_msg": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "query": "query", - }, "state": "active", "thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "trace": true, @@ -16068,17 +15828,7 @@ service: body: connection_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 created_at: '2021-12-31 23:59:59+00:00' - disclose: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - protocols: - - pid: pid discovery_exchange_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - query_msg: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - query: query state: active thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 trace: true @@ -16105,32 +15855,14 @@ service: results: - connection_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 created_at: '2021-12-31 23:59:59+00:00' - disclose: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - protocols: - - pid: pid discovery_exchange_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - query_msg: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - query: query state: active thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 trace: true updated_at: '2021-12-31 23:59:59+00:00' - connection_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 created_at: '2021-12-31 23:59:59+00:00' - disclose: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - protocols: - - pid: pid discovery_exchange_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - query_msg: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - query: query state: active thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 trace: true @@ -16238,36 +15970,7 @@ docs: Feature discovery "examples": [ { "response": { - "body": { - "results": { - "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "created_at": "2021-12-31 23:59:59+00:00", - "disclosures": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "disclosures": [ - { - "key": "value", - }, - ], - }, - "discovery_exchange_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "queries_msg": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "queries": [ - { - "feature-type": "protocol", - "match": "match", - }, - ], - }, - "state": "active", - "thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "trace": true, - "updated_at": "2021-12-31 23:59:59+00:00", - }, - }, + "body": {}, }, }, ], @@ -16337,26 +16040,7 @@ service: type: root.V20DiscoveryExchangeResult examples: - response: - body: - results: - connection_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - created_at: '2021-12-31 23:59:59+00:00' - disclosures: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - disclosures: - - key: value - discovery_exchange_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - queries_msg: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - queries: - - feature-type: protocol - match: match - state: active - thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - trace: true - updated_at: '2021-12-31 23:59:59+00:00' + body: {} get_v20_feature_records: path: /discover-features-2.0/records method: GET @@ -17591,123 +17275,12 @@ docs: Introduction of known parties "auto_remove": false, "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "created_at": "2021-12-31 23:59:59+00:00", - "credential": { - "attrs": { - "key": "alice", - }, - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "cred_rev_id": "12345", - "referent": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "rev_reg_id": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - }, "credential_definition_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", "credential_exchange_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "credential_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "credential_offer": { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "key_correctness_proof": { - "c": "0", - "xr_cap": [ - [ - "xr_cap", - ], - ], - "xz_cap": "0", - }, - "nonce": "0", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - }, - "credential_offer_dict": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "credential_preview": { - "@type": "issue-credential/1.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "offers~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, - "credential_proposal_dict": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "credential_proposal": { - "@type": "issue-credential/1.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "issuer_did": "WgWxqztrNooG92RXvxSTWv", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "schema_issuer_did": "WgWxqztrNooG92RXvxSTWv", - "schema_name": "schema_name", - "schema_version": "1.0", - }, - "credential_request": { - "blinded_ms": {}, - "blinded_ms_correctness_proof": {}, - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "nonce": "0", - "prover_did": "WgWxqztrNooG92RXvxSTWv", - }, "error_msg": "Credential definition identifier is not set in proposal", "initiator": "self", "parent_thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "raw_credential": { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "rev_reg_id": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "signature": {}, - "signature_correctness_proof": {}, - "values": { - "key": { - "encoded": "-1", - "raw": "raw", - }, - }, - }, "revoc_reg_id": "revoc_reg_id", "revocation_id": "revocation_id", "role": "issuer", @@ -17846,123 +17419,12 @@ docs: Introduction of known parties "auto_remove": false, "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "created_at": "2021-12-31 23:59:59+00:00", - "credential": { - "attrs": { - "key": "alice", - }, - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "cred_rev_id": "12345", - "referent": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "rev_reg_id": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - }, "credential_definition_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", "credential_exchange_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "credential_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "credential_offer": { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "key_correctness_proof": { - "c": "0", - "xr_cap": [ - [ - "xr_cap", - ], - ], - "xz_cap": "0", - }, - "nonce": "0", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - }, - "credential_offer_dict": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "credential_preview": { - "@type": "issue-credential/1.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "offers~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, - "credential_proposal_dict": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "credential_proposal": { - "@type": "issue-credential/1.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "issuer_did": "WgWxqztrNooG92RXvxSTWv", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "schema_issuer_did": "WgWxqztrNooG92RXvxSTWv", - "schema_name": "schema_name", - "schema_version": "1.0", - }, - "credential_request": { - "blinded_ms": {}, - "blinded_ms_correctness_proof": {}, - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "nonce": "0", - "prover_did": "WgWxqztrNooG92RXvxSTWv", - }, "error_msg": "Credential definition identifier is not set in proposal", "initiator": "self", "parent_thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "raw_credential": { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "rev_reg_id": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "signature": {}, - "signature_correctness_proof": {}, - "values": { - "key": { - "encoded": "-1", - "raw": "raw", - }, - }, - }, "revoc_reg_id": "revoc_reg_id", "revocation_id": "revocation_id", "role": "issuer", @@ -18075,123 +17537,12 @@ docs: Introduction of known parties "auto_remove": false, "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "created_at": "2021-12-31 23:59:59+00:00", - "credential": { - "attrs": { - "key": "alice", - }, - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "cred_rev_id": "12345", - "referent": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "rev_reg_id": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - }, "credential_definition_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", "credential_exchange_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "credential_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "credential_offer": { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "key_correctness_proof": { - "c": "0", - "xr_cap": [ - [ - "xr_cap", - ], - ], - "xz_cap": "0", - }, - "nonce": "0", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - }, - "credential_offer_dict": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "credential_preview": { - "@type": "issue-credential/1.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "offers~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, - "credential_proposal_dict": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "credential_proposal": { - "@type": "issue-credential/1.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "issuer_did": "WgWxqztrNooG92RXvxSTWv", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "schema_issuer_did": "WgWxqztrNooG92RXvxSTWv", - "schema_name": "schema_name", - "schema_version": "1.0", - }, - "credential_request": { - "blinded_ms": {}, - "blinded_ms_correctness_proof": {}, - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "nonce": "0", - "prover_did": "WgWxqztrNooG92RXvxSTWv", - }, "error_msg": "Credential definition identifier is not set in proposal", "initiator": "self", "parent_thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "raw_credential": { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "rev_reg_id": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "signature": {}, - "signature_correctness_proof": {}, - "values": { - "key": { - "encoded": "-1", - "raw": "raw", - }, - }, - }, "revoc_reg_id": "revoc_reg_id", "revocation_id": "revocation_id", "role": "issuer", @@ -18236,119 +17587,12 @@ docs: Introduction of known parties "auto_remove": false, "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "created_at": "2021-12-31 23:59:59+00:00", - "credential": { - "attrs": { - "key": "alice", - }, - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "cred_rev_id": "12345", - "referent": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "rev_reg_id": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - }, "credential_definition_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", "credential_exchange_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "credential_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "credential_offer": { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "key_correctness_proof": { - "c": "0", - "xr_cap": [ - [ - "xr_cap", - ], - ], - "xz_cap": "0", - }, - "nonce": "0", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - }, - "credential_offer_dict": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "credential_preview": { - "@type": "issue-credential/1.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "offers~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, - "credential_proposal_dict": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "credential_proposal": { - "@type": "issue-credential/1.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "issuer_did": "WgWxqztrNooG92RXvxSTWv", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "schema_issuer_did": "WgWxqztrNooG92RXvxSTWv", - "schema_version": "1.0", - }, - "credential_request": { - "blinded_ms": {}, - "blinded_ms_correctness_proof": {}, - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "nonce": "0", - "prover_did": "WgWxqztrNooG92RXvxSTWv", - }, "error_msg": "Credential definition identifier is not set in proposal", "initiator": "self", "parent_thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "raw_credential": { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "signature": {}, - "signature_correctness_proof": {}, - "values": { - "key": { - "encoded": "-1", - "raw": "raw", - }, - }, - }, "revoc_reg_id": "revoc_reg_id", "revocation_id": "revocation_id", "role": "issuer", @@ -18364,119 +17608,12 @@ docs: Introduction of known parties "auto_remove": false, "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "created_at": "2021-12-31 23:59:59+00:00", - "credential": { - "attrs": { - "key": "alice", - }, - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "cred_rev_id": "12345", - "referent": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "rev_reg_id": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - }, "credential_definition_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", "credential_exchange_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "credential_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "credential_offer": { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "key_correctness_proof": { - "c": "0", - "xr_cap": [ - [ - "xr_cap", - ], - ], - "xz_cap": "0", - }, - "nonce": "0", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - }, - "credential_offer_dict": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "credential_preview": { - "@type": "issue-credential/1.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "offers~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, - "credential_proposal_dict": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "credential_proposal": { - "@type": "issue-credential/1.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "issuer_did": "WgWxqztrNooG92RXvxSTWv", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "schema_issuer_did": "WgWxqztrNooG92RXvxSTWv", - "schema_version": "1.0", - }, - "credential_request": { - "blinded_ms": {}, - "blinded_ms_correctness_proof": {}, - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "nonce": "0", - "prover_did": "WgWxqztrNooG92RXvxSTWv", - }, "error_msg": "Credential definition identifier is not set in proposal", "initiator": "self", "parent_thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "raw_credential": { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "signature": {}, - "signature_correctness_proof": {}, - "values": { - "key": { - "encoded": "-1", - "raw": "raw", - }, - }, - }, "revoc_reg_id": "revoc_reg_id", "revocation_id": "revocation_id", "role": "issuer", @@ -18554,123 +17691,12 @@ docs: Introduction of known parties "auto_remove": false, "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "created_at": "2021-12-31 23:59:59+00:00", - "credential": { - "attrs": { - "key": "alice", - }, - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "cred_rev_id": "12345", - "referent": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "rev_reg_id": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - }, "credential_definition_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", "credential_exchange_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "credential_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "credential_offer": { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "key_correctness_proof": { - "c": "0", - "xr_cap": [ - [ - "xr_cap", - ], - ], - "xz_cap": "0", - }, - "nonce": "0", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - }, - "credential_offer_dict": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "credential_preview": { - "@type": "issue-credential/1.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "offers~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, - "credential_proposal_dict": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "credential_proposal": { - "@type": "issue-credential/1.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "issuer_did": "WgWxqztrNooG92RXvxSTWv", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "schema_issuer_did": "WgWxqztrNooG92RXvxSTWv", - "schema_name": "schema_name", - "schema_version": "1.0", - }, - "credential_request": { - "blinded_ms": {}, - "blinded_ms_correctness_proof": {}, - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "nonce": "0", - "prover_did": "WgWxqztrNooG92RXvxSTWv", - }, "error_msg": "Credential definition identifier is not set in proposal", "initiator": "self", "parent_thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "raw_credential": { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "rev_reg_id": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "signature": {}, - "signature_correctness_proof": {}, - "values": { - "key": { - "encoded": "-1", - "raw": "raw", - }, - }, - }, "revoc_reg_id": "revoc_reg_id", "revocation_id": "revocation_id", "role": "issuer", @@ -18780,123 +17806,12 @@ docs: Introduction of known parties "auto_remove": false, "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "created_at": "2021-12-31 23:59:59+00:00", - "credential": { - "attrs": { - "key": "alice", - }, - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "cred_rev_id": "12345", - "referent": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "rev_reg_id": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - }, "credential_definition_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", "credential_exchange_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "credential_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "credential_offer": { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "key_correctness_proof": { - "c": "0", - "xr_cap": [ - [ - "xr_cap", - ], - ], - "xz_cap": "0", - }, - "nonce": "0", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - }, - "credential_offer_dict": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "credential_preview": { - "@type": "issue-credential/1.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "offers~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, - "credential_proposal_dict": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "credential_proposal": { - "@type": "issue-credential/1.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "issuer_did": "WgWxqztrNooG92RXvxSTWv", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "schema_issuer_did": "WgWxqztrNooG92RXvxSTWv", - "schema_name": "schema_name", - "schema_version": "1.0", - }, - "credential_request": { - "blinded_ms": {}, - "blinded_ms_correctness_proof": {}, - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "nonce": "0", - "prover_did": "WgWxqztrNooG92RXvxSTWv", - }, "error_msg": "Credential definition identifier is not set in proposal", "initiator": "self", "parent_thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "raw_credential": { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "rev_reg_id": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "signature": {}, - "signature_correctness_proof": {}, - "values": { - "key": { - "encoded": "-1", - "raw": "raw", - }, - }, - }, "revoc_reg_id": "revoc_reg_id", "revocation_id": "revocation_id", "role": "issuer", @@ -18956,123 +17871,12 @@ docs: Introduction of known parties "auto_remove": false, "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "created_at": "2021-12-31 23:59:59+00:00", - "credential": { - "attrs": { - "key": "alice", - }, - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "cred_rev_id": "12345", - "referent": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "rev_reg_id": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - }, "credential_definition_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", "credential_exchange_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "credential_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "credential_offer": { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "key_correctness_proof": { - "c": "0", - "xr_cap": [ - [ - "xr_cap", - ], - ], - "xz_cap": "0", - }, - "nonce": "0", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - }, - "credential_offer_dict": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "credential_preview": { - "@type": "issue-credential/1.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "offers~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, - "credential_proposal_dict": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "credential_proposal": { - "@type": "issue-credential/1.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "issuer_did": "WgWxqztrNooG92RXvxSTWv", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "schema_issuer_did": "WgWxqztrNooG92RXvxSTWv", - "schema_name": "schema_name", - "schema_version": "1.0", - }, - "credential_request": { - "blinded_ms": {}, - "blinded_ms_correctness_proof": {}, - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "nonce": "0", - "prover_did": "WgWxqztrNooG92RXvxSTWv", - }, "error_msg": "Credential definition identifier is not set in proposal", "initiator": "self", "parent_thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "raw_credential": { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "rev_reg_id": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "signature": {}, - "signature_correctness_proof": {}, - "values": { - "key": { - "encoded": "-1", - "raw": "raw", - }, - }, - }, "revoc_reg_id": "revoc_reg_id", "revocation_id": "revocation_id", "role": "issuer", @@ -19142,123 +17946,12 @@ docs: Introduction of known parties "auto_remove": false, "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "created_at": "2021-12-31 23:59:59+00:00", - "credential": { - "attrs": { - "key": "alice", - }, - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "cred_rev_id": "12345", - "referent": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "rev_reg_id": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - }, "credential_definition_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", "credential_exchange_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "credential_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "credential_offer": { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "key_correctness_proof": { - "c": "0", - "xr_cap": [ - [ - "xr_cap", - ], - ], - "xz_cap": "0", - }, - "nonce": "0", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - }, - "credential_offer_dict": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "credential_preview": { - "@type": "issue-credential/1.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "offers~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, - "credential_proposal_dict": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "credential_proposal": { - "@type": "issue-credential/1.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "issuer_did": "WgWxqztrNooG92RXvxSTWv", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "schema_issuer_did": "WgWxqztrNooG92RXvxSTWv", - "schema_name": "schema_name", - "schema_version": "1.0", - }, - "credential_request": { - "blinded_ms": {}, - "blinded_ms_correctness_proof": {}, - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "nonce": "0", - "prover_did": "WgWxqztrNooG92RXvxSTWv", - }, "error_msg": "Credential definition identifier is not set in proposal", "initiator": "self", "parent_thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "raw_credential": { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "rev_reg_id": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "signature": {}, - "signature_correctness_proof": {}, - "values": { - "key": { - "encoded": "-1", - "raw": "raw", - }, - }, - }, "revoc_reg_id": "revoc_reg_id", "revocation_id": "revocation_id", "role": "issuer", @@ -19408,123 +18101,12 @@ docs: Introduction of known parties "auto_remove": false, "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "created_at": "2021-12-31 23:59:59+00:00", - "credential": { - "attrs": { - "key": "alice", - }, - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "cred_rev_id": "12345", - "referent": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "rev_reg_id": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - }, "credential_definition_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", "credential_exchange_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "credential_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "credential_offer": { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "key_correctness_proof": { - "c": "0", - "xr_cap": [ - [ - "xr_cap", - ], - ], - "xz_cap": "0", - }, - "nonce": "0", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - }, - "credential_offer_dict": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "credential_preview": { - "@type": "issue-credential/1.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "offers~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, - "credential_proposal_dict": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "credential_proposal": { - "@type": "issue-credential/1.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "issuer_did": "WgWxqztrNooG92RXvxSTWv", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "schema_issuer_did": "WgWxqztrNooG92RXvxSTWv", - "schema_name": "schema_name", - "schema_version": "1.0", - }, - "credential_request": { - "blinded_ms": {}, - "blinded_ms_correctness_proof": {}, - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "nonce": "0", - "prover_did": "WgWxqztrNooG92RXvxSTWv", - }, "error_msg": "Credential definition identifier is not set in proposal", "initiator": "self", "parent_thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "raw_credential": { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "rev_reg_id": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "signature": {}, - "signature_correctness_proof": {}, - "values": { - "key": { - "encoded": "-1", - "raw": "raw", - }, - }, - }, "revoc_reg_id": "revoc_reg_id", "revocation_id": "revocation_id", "role": "issuer", @@ -19638,123 +18220,12 @@ docs: Introduction of known parties "auto_remove": false, "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "created_at": "2021-12-31 23:59:59+00:00", - "credential": { - "attrs": { - "key": "alice", - }, - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "cred_rev_id": "12345", - "referent": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "rev_reg_id": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - }, "credential_definition_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", "credential_exchange_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "credential_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "credential_offer": { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "key_correctness_proof": { - "c": "0", - "xr_cap": [ - [ - "xr_cap", - ], - ], - "xz_cap": "0", - }, - "nonce": "0", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - }, - "credential_offer_dict": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "credential_preview": { - "@type": "issue-credential/1.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "offers~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, - "credential_proposal_dict": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "credential_proposal": { - "@type": "issue-credential/1.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "issuer_did": "WgWxqztrNooG92RXvxSTWv", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "schema_issuer_did": "WgWxqztrNooG92RXvxSTWv", - "schema_name": "schema_name", - "schema_version": "1.0", - }, - "credential_request": { - "blinded_ms": {}, - "blinded_ms_correctness_proof": {}, - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "nonce": "0", - "prover_did": "WgWxqztrNooG92RXvxSTWv", - }, "error_msg": "Credential definition identifier is not set in proposal", "initiator": "self", "parent_thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "raw_credential": { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "rev_reg_id": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "signature": {}, - "signature_correctness_proof": {}, - "values": { - "key": { - "encoded": "-1", - "raw": "raw", - }, - }, - }, "revoc_reg_id": "revoc_reg_id", "revocation_id": "revocation_id", "role": "issuer", @@ -19887,123 +18358,12 @@ docs: Introduction of known parties "auto_remove": false, "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "created_at": "2021-12-31 23:59:59+00:00", - "credential": { - "attrs": { - "key": "alice", - }, - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "cred_rev_id": "12345", - "referent": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "rev_reg_id": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - }, "credential_definition_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", "credential_exchange_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "credential_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "credential_offer": { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "key_correctness_proof": { - "c": "0", - "xr_cap": [ - [ - "xr_cap", - ], - ], - "xz_cap": "0", - }, - "nonce": "0", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - }, - "credential_offer_dict": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "credential_preview": { - "@type": "issue-credential/1.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "offers~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, - "credential_proposal_dict": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "credential_proposal": { - "@type": "issue-credential/1.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "issuer_did": "WgWxqztrNooG92RXvxSTWv", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "schema_issuer_did": "WgWxqztrNooG92RXvxSTWv", - "schema_name": "schema_name", - "schema_version": "1.0", - }, - "credential_request": { - "blinded_ms": {}, - "blinded_ms_correctness_proof": {}, - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "nonce": "0", - "prover_did": "WgWxqztrNooG92RXvxSTWv", - }, "error_msg": "Credential definition identifier is not set in proposal", "initiator": "self", "parent_thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "raw_credential": { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "rev_reg_id": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "signature": {}, - "signature_correctness_proof": {}, - "values": { - "key": { - "encoded": "-1", - "raw": "raw", - }, - }, - }, "revoc_reg_id": "revoc_reg_id", "revocation_id": "revocation_id", "role": "issuer", @@ -20177,95 +18537,12 @@ service: auto_remove: false connection_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 created_at: '2021-12-31 23:59:59+00:00' - credential: - attrs: - key: alice - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - cred_rev_id: '12345' - referent: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - rev_reg_id: >- - WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0 - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 credential_definition_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag credential_exchange_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 credential_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - credential_offer: - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - key_correctness_proof: - c: '0' - xr_cap: - - - xr_cap - xz_cap: '0' - nonce: '0' - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 - credential_offer_dict: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - credential_preview: - '@type': issue-credential/1.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - offers~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - credential_proposal_dict: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - credential_proposal: - '@type': issue-credential/1.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - issuer_did: WgWxqztrNooG92RXvxSTWv - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 - schema_issuer_did: WgWxqztrNooG92RXvxSTWv - schema_name: schema_name - schema_version: '1.0' - credential_request: - blinded_ms: {} - blinded_ms_correctness_proof: {} - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - nonce: '0' - prover_did: WgWxqztrNooG92RXvxSTWv error_msg: Credential definition identifier is not set in proposal initiator: self parent_thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - raw_credential: - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - rev_reg_id: >- - WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0 - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 - signature: {} - signature_correctness_proof: {} - values: - key: - encoded: '-1' - raw: raw revoc_reg_id: revoc_reg_id revocation_id: revocation_id role: issuer @@ -20336,95 +18613,12 @@ service: auto_remove: false connection_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 created_at: '2021-12-31 23:59:59+00:00' - credential: - attrs: - key: alice - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - cred_rev_id: '12345' - referent: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - rev_reg_id: >- - WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0 - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 credential_definition_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag credential_exchange_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 credential_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - credential_offer: - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - key_correctness_proof: - c: '0' - xr_cap: - - - xr_cap - xz_cap: '0' - nonce: '0' - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 - credential_offer_dict: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - credential_preview: - '@type': issue-credential/1.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - offers~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - credential_proposal_dict: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - credential_proposal: - '@type': issue-credential/1.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - issuer_did: WgWxqztrNooG92RXvxSTWv - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 - schema_issuer_did: WgWxqztrNooG92RXvxSTWv - schema_name: schema_name - schema_version: '1.0' - credential_request: - blinded_ms: {} - blinded_ms_correctness_proof: {} - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - nonce: '0' - prover_did: WgWxqztrNooG92RXvxSTWv error_msg: Credential definition identifier is not set in proposal initiator: self parent_thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - raw_credential: - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - rev_reg_id: >- - WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0 - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 - signature: {} - signature_correctness_proof: {} - values: - key: - encoded: '-1' - raw: raw revoc_reg_id: revoc_reg_id revocation_id: revocation_id role: issuer @@ -20471,90 +18665,12 @@ service: auto_remove: false connection_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 created_at: '2021-12-31 23:59:59+00:00' - credential: - attrs: - key: alice - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - cred_rev_id: '12345' - referent: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - rev_reg_id: >- - WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0 - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 credential_definition_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag credential_exchange_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 credential_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - credential_offer: - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - key_correctness_proof: - c: '0' - xr_cap: - - - xr_cap - xz_cap: '0' - nonce: '0' - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 - credential_offer_dict: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - credential_preview: - '@type': issue-credential/1.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - offers~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - credential_proposal_dict: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - credential_proposal: - '@type': issue-credential/1.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - issuer_did: WgWxqztrNooG92RXvxSTWv - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 - schema_issuer_did: WgWxqztrNooG92RXvxSTWv - schema_version: '1.0' - credential_request: - blinded_ms: {} - blinded_ms_correctness_proof: {} - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - nonce: '0' - prover_did: WgWxqztrNooG92RXvxSTWv error_msg: Credential definition identifier is not set in proposal initiator: self parent_thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - raw_credential: - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 - signature: {} - signature_correctness_proof: {} - values: - key: - encoded: '-1' - raw: raw revoc_reg_id: revoc_reg_id revocation_id: revocation_id role: issuer @@ -20568,90 +18684,12 @@ service: auto_remove: false connection_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 created_at: '2021-12-31 23:59:59+00:00' - credential: - attrs: - key: alice - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - cred_rev_id: '12345' - referent: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - rev_reg_id: >- - WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0 - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 credential_definition_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag credential_exchange_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 credential_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - credential_offer: - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - key_correctness_proof: - c: '0' - xr_cap: - - - xr_cap - xz_cap: '0' - nonce: '0' - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 - credential_offer_dict: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - credential_preview: - '@type': issue-credential/1.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - offers~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - credential_proposal_dict: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - credential_proposal: - '@type': issue-credential/1.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - issuer_did: WgWxqztrNooG92RXvxSTWv - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 - schema_issuer_did: WgWxqztrNooG92RXvxSTWv - schema_version: '1.0' - credential_request: - blinded_ms: {} - blinded_ms_correctness_proof: {} - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - nonce: '0' - prover_did: WgWxqztrNooG92RXvxSTWv error_msg: Credential definition identifier is not set in proposal initiator: self parent_thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - raw_credential: - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 - signature: {} - signature_correctness_proof: {} - values: - key: - encoded: '-1' - raw: raw revoc_reg_id: revoc_reg_id revocation_id: revocation_id role: issuer @@ -20684,95 +18722,12 @@ service: auto_remove: false connection_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 created_at: '2021-12-31 23:59:59+00:00' - credential: - attrs: - key: alice - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - cred_rev_id: '12345' - referent: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - rev_reg_id: >- - WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0 - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 credential_definition_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag credential_exchange_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 credential_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - credential_offer: - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - key_correctness_proof: - c: '0' - xr_cap: - - - xr_cap - xz_cap: '0' - nonce: '0' - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 - credential_offer_dict: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - credential_preview: - '@type': issue-credential/1.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - offers~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - credential_proposal_dict: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - credential_proposal: - '@type': issue-credential/1.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - issuer_did: WgWxqztrNooG92RXvxSTWv - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 - schema_issuer_did: WgWxqztrNooG92RXvxSTWv - schema_name: schema_name - schema_version: '1.0' - credential_request: - blinded_ms: {} - blinded_ms_correctness_proof: {} - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - nonce: '0' - prover_did: WgWxqztrNooG92RXvxSTWv error_msg: Credential definition identifier is not set in proposal initiator: self parent_thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - raw_credential: - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - rev_reg_id: >- - WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0 - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 - signature: {} - signature_correctness_proof: {} - values: - key: - encoded: '-1' - raw: raw revoc_reg_id: revoc_reg_id revocation_id: revocation_id role: issuer @@ -20835,95 +18790,12 @@ service: auto_remove: false connection_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 created_at: '2021-12-31 23:59:59+00:00' - credential: - attrs: - key: alice - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - cred_rev_id: '12345' - referent: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - rev_reg_id: >- - WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0 - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 credential_definition_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag credential_exchange_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 credential_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - credential_offer: - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - key_correctness_proof: - c: '0' - xr_cap: - - - xr_cap - xz_cap: '0' - nonce: '0' - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 - credential_offer_dict: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - credential_preview: - '@type': issue-credential/1.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - offers~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - credential_proposal_dict: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - credential_proposal: - '@type': issue-credential/1.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - issuer_did: WgWxqztrNooG92RXvxSTWv - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 - schema_issuer_did: WgWxqztrNooG92RXvxSTWv - schema_name: schema_name - schema_version: '1.0' - credential_request: - blinded_ms: {} - blinded_ms_correctness_proof: {} - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - nonce: '0' - prover_did: WgWxqztrNooG92RXvxSTWv error_msg: Credential definition identifier is not set in proposal initiator: self parent_thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - raw_credential: - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - rev_reg_id: >- - WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0 - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 - signature: {} - signature_correctness_proof: {} - values: - key: - encoded: '-1' - raw: raw revoc_reg_id: revoc_reg_id revocation_id: revocation_id role: issuer @@ -20992,95 +18864,12 @@ service: auto_remove: false connection_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 created_at: '2021-12-31 23:59:59+00:00' - credential: - attrs: - key: alice - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - cred_rev_id: '12345' - referent: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - rev_reg_id: >- - WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0 - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 credential_definition_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag credential_exchange_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 credential_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - credential_offer: - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - key_correctness_proof: - c: '0' - xr_cap: - - - xr_cap - xz_cap: '0' - nonce: '0' - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 - credential_offer_dict: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - credential_preview: - '@type': issue-credential/1.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - offers~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - credential_proposal_dict: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - credential_proposal: - '@type': issue-credential/1.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - issuer_did: WgWxqztrNooG92RXvxSTWv - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 - schema_issuer_did: WgWxqztrNooG92RXvxSTWv - schema_name: schema_name - schema_version: '1.0' - credential_request: - blinded_ms: {} - blinded_ms_correctness_proof: {} - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - nonce: '0' - prover_did: WgWxqztrNooG92RXvxSTWv error_msg: Credential definition identifier is not set in proposal initiator: self parent_thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - raw_credential: - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - rev_reg_id: >- - WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0 - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 - signature: {} - signature_correctness_proof: {} - values: - key: - encoded: '-1' - raw: raw revoc_reg_id: revoc_reg_id revocation_id: revocation_id role: issuer @@ -21113,95 +18902,12 @@ service: auto_remove: false connection_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 created_at: '2021-12-31 23:59:59+00:00' - credential: - attrs: - key: alice - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - cred_rev_id: '12345' - referent: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - rev_reg_id: >- - WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0 - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 credential_definition_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag credential_exchange_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 credential_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - credential_offer: - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - key_correctness_proof: - c: '0' - xr_cap: - - - xr_cap - xz_cap: '0' - nonce: '0' - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 - credential_offer_dict: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - credential_preview: - '@type': issue-credential/1.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - offers~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - credential_proposal_dict: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - credential_proposal: - '@type': issue-credential/1.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - issuer_did: WgWxqztrNooG92RXvxSTWv - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 - schema_issuer_did: WgWxqztrNooG92RXvxSTWv - schema_name: schema_name - schema_version: '1.0' - credential_request: - blinded_ms: {} - blinded_ms_correctness_proof: {} - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - nonce: '0' - prover_did: WgWxqztrNooG92RXvxSTWv error_msg: Credential definition identifier is not set in proposal initiator: self parent_thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - raw_credential: - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - rev_reg_id: >- - WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0 - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 - signature: {} - signature_correctness_proof: {} - values: - key: - encoded: '-1' - raw: raw revoc_reg_id: revoc_reg_id revocation_id: revocation_id role: issuer @@ -21243,95 +18949,12 @@ service: auto_remove: false connection_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 created_at: '2021-12-31 23:59:59+00:00' - credential: - attrs: - key: alice - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - cred_rev_id: '12345' - referent: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - rev_reg_id: >- - WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0 - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 credential_definition_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag credential_exchange_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 credential_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - credential_offer: - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - key_correctness_proof: - c: '0' - xr_cap: - - - xr_cap - xz_cap: '0' - nonce: '0' - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 - credential_offer_dict: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - credential_preview: - '@type': issue-credential/1.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - offers~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - credential_proposal_dict: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - credential_proposal: - '@type': issue-credential/1.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - issuer_did: WgWxqztrNooG92RXvxSTWv - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 - schema_issuer_did: WgWxqztrNooG92RXvxSTWv - schema_name: schema_name - schema_version: '1.0' - credential_request: - blinded_ms: {} - blinded_ms_correctness_proof: {} - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - nonce: '0' - prover_did: WgWxqztrNooG92RXvxSTWv error_msg: Credential definition identifier is not set in proposal initiator: self parent_thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - raw_credential: - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - rev_reg_id: >- - WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0 - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 - signature: {} - signature_correctness_proof: {} - values: - key: - encoded: '-1' - raw: raw revoc_reg_id: revoc_reg_id revocation_id: revocation_id role: issuer @@ -21433,95 +19056,12 @@ service: auto_remove: false connection_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 created_at: '2021-12-31 23:59:59+00:00' - credential: - attrs: - key: alice - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - cred_rev_id: '12345' - referent: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - rev_reg_id: >- - WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0 - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 credential_definition_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag credential_exchange_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 credential_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - credential_offer: - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - key_correctness_proof: - c: '0' - xr_cap: - - - xr_cap - xz_cap: '0' - nonce: '0' - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 - credential_offer_dict: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - credential_preview: - '@type': issue-credential/1.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - offers~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - credential_proposal_dict: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - credential_proposal: - '@type': issue-credential/1.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - issuer_did: WgWxqztrNooG92RXvxSTWv - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 - schema_issuer_did: WgWxqztrNooG92RXvxSTWv - schema_name: schema_name - schema_version: '1.0' - credential_request: - blinded_ms: {} - blinded_ms_correctness_proof: {} - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - nonce: '0' - prover_did: WgWxqztrNooG92RXvxSTWv error_msg: Credential definition identifier is not set in proposal initiator: self parent_thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - raw_credential: - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - rev_reg_id: >- - WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0 - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 - signature: {} - signature_correctness_proof: {} - values: - key: - encoded: '-1' - raw: raw revoc_reg_id: revoc_reg_id revocation_id: revocation_id role: issuer @@ -21598,95 +19138,12 @@ service: auto_remove: false connection_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 created_at: '2021-12-31 23:59:59+00:00' - credential: - attrs: - key: alice - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - cred_rev_id: '12345' - referent: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - rev_reg_id: >- - WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0 - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 credential_definition_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag credential_exchange_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 credential_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - credential_offer: - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - key_correctness_proof: - c: '0' - xr_cap: - - - xr_cap - xz_cap: '0' - nonce: '0' - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 - credential_offer_dict: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - credential_preview: - '@type': issue-credential/1.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - offers~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - credential_proposal_dict: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - credential_proposal: - '@type': issue-credential/1.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - issuer_did: WgWxqztrNooG92RXvxSTWv - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 - schema_issuer_did: WgWxqztrNooG92RXvxSTWv - schema_name: schema_name - schema_version: '1.0' - credential_request: - blinded_ms: {} - blinded_ms_correctness_proof: {} - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - nonce: '0' - prover_did: WgWxqztrNooG92RXvxSTWv error_msg: Credential definition identifier is not set in proposal initiator: self parent_thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - raw_credential: - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - rev_reg_id: >- - WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0 - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 - signature: {} - signature_correctness_proof: {} - values: - key: - encoded: '-1' - raw: raw revoc_reg_id: revoc_reg_id revocation_id: revocation_id role: issuer @@ -21788,95 +19245,12 @@ service: auto_remove: false connection_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 created_at: '2021-12-31 23:59:59+00:00' - credential: - attrs: - key: alice - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - cred_rev_id: '12345' - referent: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - rev_reg_id: >- - WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0 - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 credential_definition_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag credential_exchange_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 credential_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - credential_offer: - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - key_correctness_proof: - c: '0' - xr_cap: - - - xr_cap - xz_cap: '0' - nonce: '0' - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 - credential_offer_dict: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - credential_preview: - '@type': issue-credential/1.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - offers~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - credential_proposal_dict: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - credential_proposal: - '@type': issue-credential/1.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - issuer_did: WgWxqztrNooG92RXvxSTWv - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 - schema_issuer_did: WgWxqztrNooG92RXvxSTWv - schema_name: schema_name - schema_version: '1.0' - credential_request: - blinded_ms: {} - blinded_ms_correctness_proof: {} - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - nonce: '0' - prover_did: WgWxqztrNooG92RXvxSTWv error_msg: Credential definition identifier is not set in proposal initiator: self parent_thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - raw_credential: - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - rev_reg_id: >- - WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0 - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 - signature: {} - signature_correctness_proof: {} - values: - key: - encoded: '-1' - raw: raw revoc_reg_id: revoc_reg_id revocation_id: revocation_id role: issuer @@ -21960,181 +19334,6 @@ types: "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "created_at": "2021-12-31 23:59:59+00:00", "cred_ex_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "cred_issue": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "credentials~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - "replacement_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - }, - "cred_offer": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "credential_preview": { - "@type": "issue-credential/2.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - "offers~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - "replacement_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - }, - "cred_preview": { - "@type": "issue-credential/2.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "cred_proposal": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "credential_preview": { - "@type": "issue-credential/2.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "filters~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - }, - "cred_request": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - "requests~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, "error_msg": "The front fell off", "initiator": "self", "parent_thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", @@ -22221,181 +19420,6 @@ types: "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "created_at": "2021-12-31 23:59:59+00:00", "cred_ex_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "cred_issue": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "credentials~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - "replacement_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - }, - "cred_offer": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "credential_preview": { - "@type": "issue-credential/2.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - "offers~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - "replacement_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - }, - "cred_preview": { - "@type": "issue-credential/2.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "cred_proposal": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "credential_preview": { - "@type": "issue-credential/2.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "filters~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - }, - "cred_request": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - "requests~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, "error_msg": "The front fell off", "initiator": "self", "parent_thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", @@ -22494,197 +19518,6 @@ types: }, "response": { "body": { - "cred_ex_record": { - "auto_issue": false, - "auto_offer": false, - "auto_remove": false, - "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "created_at": "2021-12-31 23:59:59+00:00", - "cred_ex_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "cred_issue": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "credentials~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - "replacement_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - }, - "cred_offer": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "credential_preview": { - "@type": "issue-credential/2.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - "offers~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - "replacement_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - }, - "cred_preview": { - "@type": "issue-credential/2.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "cred_proposal": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "credential_preview": { - "@type": "issue-credential/2.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "filters~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - }, - "cred_request": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - "requests~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, - "error_msg": "The front fell off", - "initiator": "self", - "parent_thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "role": "issuer", - "state": "done", - "thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "trace": true, - "updated_at": "2021-12-31 23:59:59+00:00", - }, "indy": { "created_at": "2021-12-31 23:59:59+00:00", "cred_ex_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", @@ -22734,193 +19567,6 @@ types: "body": { "results": [ { - "cred_ex_record": { - "auto_issue": false, - "auto_offer": false, - "auto_remove": false, - "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "created_at": "2021-12-31 23:59:59+00:00", - "cred_ex_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "cred_issue": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "credentials~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - "replacement_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - }, - "cred_offer": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "credential_preview": { - "@type": "issue-credential/2.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - "offers~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - "replacement_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - }, - "cred_preview": { - "@type": "issue-credential/2.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "cred_proposal": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "credential_preview": { - "@type": "issue-credential/2.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "filters~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - }, - "cred_request": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - "requests~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, - "error_msg": "The front fell off", - "initiator": "self", - "parent_thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "role": "issuer", - "state": "done", - "thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "trace": true, - "updated_at": "2021-12-31 23:59:59+00:00", - }, "indy": { "created_at": "2021-12-31 23:59:59+00:00", "cred_ex_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", @@ -22941,193 +19587,6 @@ types: }, }, { - "cred_ex_record": { - "auto_issue": false, - "auto_offer": false, - "auto_remove": false, - "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "created_at": "2021-12-31 23:59:59+00:00", - "cred_ex_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "cred_issue": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "credentials~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - "replacement_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - }, - "cred_offer": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "credential_preview": { - "@type": "issue-credential/2.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - "offers~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - "replacement_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - }, - "cred_preview": { - "@type": "issue-credential/2.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "cred_proposal": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "credential_preview": { - "@type": "issue-credential/2.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "filters~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - }, - "cred_request": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - "requests~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, - "error_msg": "The front fell off", - "initiator": "self", - "parent_thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "role": "issuer", - "state": "done", - "thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "trace": true, - "updated_at": "2021-12-31 23:59:59+00:00", - }, "indy": { "created_at": "2021-12-31 23:59:59+00:00", "cred_ex_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", @@ -23210,197 +19669,6 @@ types: }, "response": { "body": { - "cred_ex_record": { - "auto_issue": false, - "auto_offer": false, - "auto_remove": false, - "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "created_at": "2021-12-31 23:59:59+00:00", - "cred_ex_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "cred_issue": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "credentials~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - "replacement_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - }, - "cred_offer": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "credential_preview": { - "@type": "issue-credential/2.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - "offers~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - "replacement_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - }, - "cred_preview": { - "@type": "issue-credential/2.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "cred_proposal": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "credential_preview": { - "@type": "issue-credential/2.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "filters~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - }, - "cred_request": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - "requests~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, - "error_msg": "The front fell off", - "initiator": "self", - "parent_thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "role": "issuer", - "state": "done", - "thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "trace": true, - "updated_at": "2021-12-31 23:59:59+00:00", - }, "indy": { "created_at": "2021-12-31 23:59:59+00:00", "cred_ex_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", @@ -23512,23 +19780,7 @@ types: "path-parameters": { "cred_ex_id": "cred_ex_id", }, - "request": { - "counter_preview": { - "@type": "issue-credential/2.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - }, + "request": {}, "response": { "body": { "auto_issue": false, @@ -23537,181 +19789,6 @@ types: "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "created_at": "2021-12-31 23:59:59+00:00", "cred_ex_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "cred_issue": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "credentials~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - "replacement_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - }, - "cred_offer": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "credential_preview": { - "@type": "issue-credential/2.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - "offers~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - "replacement_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - }, - "cred_preview": { - "@type": "issue-credential/2.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "cred_proposal": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "credential_preview": { - "@type": "issue-credential/2.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "filters~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - }, - "cred_request": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - "requests~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, "error_msg": "The front fell off", "initiator": "self", "parent_thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", @@ -23778,181 +19855,6 @@ types: "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "created_at": "2021-12-31 23:59:59+00:00", "cred_ex_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "cred_issue": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "credentials~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - "replacement_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - }, - "cred_offer": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "credential_preview": { - "@type": "issue-credential/2.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - "offers~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - "replacement_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - }, - "cred_preview": { - "@type": "issue-credential/2.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "cred_proposal": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "credential_preview": { - "@type": "issue-credential/2.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "filters~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - }, - "cred_request": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - "requests~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, "error_msg": "The front fell off", "initiator": "self", "parent_thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", @@ -24034,181 +19936,6 @@ types: "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "created_at": "2021-12-31 23:59:59+00:00", "cred_ex_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "cred_issue": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "credentials~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - "replacement_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - }, - "cred_offer": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "credential_preview": { - "@type": "issue-credential/2.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - "offers~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - "replacement_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - }, - "cred_preview": { - "@type": "issue-credential/2.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "cred_proposal": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "credential_preview": { - "@type": "issue-credential/2.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "filters~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - }, - "cred_request": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - "requests~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, "error_msg": "The front fell off", "initiator": "self", "parent_thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", @@ -24275,181 +20002,6 @@ types: "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "created_at": "2021-12-31 23:59:59+00:00", "cred_ex_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "cred_issue": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "credentials~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - "replacement_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - }, - "cred_offer": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "credential_preview": { - "@type": "issue-credential/2.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - "offers~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - "replacement_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - }, - "cred_preview": { - "@type": "issue-credential/2.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "cred_proposal": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "credential_preview": { - "@type": "issue-credential/2.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "filters~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - }, - "cred_request": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - "requests~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, "error_msg": "The front fell off", "initiator": "self", "parent_thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", @@ -24551,181 +20103,6 @@ types: "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "created_at": "2021-12-31 23:59:59+00:00", "cred_ex_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "cred_issue": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "credentials~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - "replacement_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - }, - "cred_offer": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "credential_preview": { - "@type": "issue-credential/2.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - "offers~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - "replacement_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - }, - "cred_preview": { - "@type": "issue-credential/2.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "cred_proposal": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "credential_preview": { - "@type": "issue-credential/2.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "filters~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - }, - "cred_request": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - "requests~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, "error_msg": "The front fell off", "initiator": "self", "parent_thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", @@ -24789,196 +20166,21 @@ types: ], }, "options": { - "proofType": "Ed25519Signature2018", - }, - }, - }, - "holder_did": "did:key:ahsdkjahsdkjhaskjdhakjshdkajhsdkjahs", - "trace": false, - }, - "response": { - "body": { - "auto_issue": false, - "auto_offer": false, - "auto_remove": false, - "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "created_at": "2021-12-31 23:59:59+00:00", - "cred_ex_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "cred_issue": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "credentials~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - "replacement_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - }, - "cred_offer": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "credential_preview": { - "@type": "issue-credential/2.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - "offers~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - "replacement_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - }, - "cred_preview": { - "@type": "issue-credential/2.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "cred_proposal": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "credential_preview": { - "@type": "issue-credential/2.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "filters~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - }, - "cred_request": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - "requests~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], + "proofType": "Ed25519Signature2018", + }, }, + }, + "holder_did": "did:key:ahsdkjahsdkjhaskjdhakjshdkajhsdkjahs", + "trace": false, + }, + "response": { + "body": { + "auto_issue": false, + "auto_offer": false, + "auto_remove": false, + "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "created_at": "2021-12-31 23:59:59+00:00", + "cred_ex_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "error_msg": "The front fell off", "initiator": "self", "parent_thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", @@ -25054,197 +20256,6 @@ types: }, "response": { "body": { - "cred_ex_record": { - "auto_issue": false, - "auto_offer": false, - "auto_remove": false, - "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "created_at": "2021-12-31 23:59:59+00:00", - "cred_ex_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "cred_issue": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "credentials~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - "replacement_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - }, - "cred_offer": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "credential_preview": { - "@type": "issue-credential/2.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - "offers~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - "replacement_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - }, - "cred_preview": { - "@type": "issue-credential/2.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "cred_proposal": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "credential_preview": { - "@type": "issue-credential/2.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "filters~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - }, - "cred_request": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - "requests~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, - "error_msg": "The front fell off", - "initiator": "self", - "parent_thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "role": "issuer", - "state": "done", - "thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "trace": true, - "updated_at": "2021-12-31 23:59:59+00:00", - }, "indy": { "created_at": "2021-12-31 23:59:59+00:00", "cred_ex_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", @@ -25420,127 +20431,6 @@ service: connection_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 created_at: '2021-12-31 23:59:59+00:00' cred_ex_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - cred_issue: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - credentials~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - replacement_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - cred_offer: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - credential_preview: - '@type': issue-credential/2.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - offers~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - replacement_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - cred_preview: - '@type': issue-credential/2.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - cred_proposal: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - credential_preview: - '@type': issue-credential/2.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - filters~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - cred_request: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - requests~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png error_msg: The front fell off initiator: self parent_thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 @@ -25607,127 +20497,6 @@ service: connection_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 created_at: '2021-12-31 23:59:59+00:00' cred_ex_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - cred_issue: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - credentials~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - replacement_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - cred_offer: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - credential_preview: - '@type': issue-credential/2.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - offers~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - replacement_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - cred_preview: - '@type': issue-credential/2.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - cred_proposal: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - credential_preview: - '@type': issue-credential/2.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - filters~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - cred_request: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - requests~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png error_msg: The front fell off initiator: self parent_thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 @@ -25769,139 +20538,7 @@ service: - response: body: results: - - cred_ex_record: - auto_issue: false - auto_offer: false - auto_remove: false - connection_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - created_at: '2021-12-31 23:59:59+00:00' - cred_ex_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - cred_issue: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - credentials~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - replacement_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - cred_offer: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - credential_preview: - '@type': issue-credential/2.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - offers~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - replacement_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - cred_preview: - '@type': issue-credential/2.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - cred_proposal: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - credential_preview: - '@type': issue-credential/2.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - filters~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - cred_request: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - requests~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - error_msg: The front fell off - initiator: self - parent_thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - role: issuer - state: done - thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - trace: true - updated_at: '2021-12-31 23:59:59+00:00' - indy: + - indy: created_at: '2021-12-31 23:59:59+00:00' cred_ex_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 cred_ex_indy_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 @@ -25918,139 +20555,7 @@ service: cred_id_stored: 3fa85f64-5717-4562-b3fc-2c963f66afa6 state: active updated_at: '2021-12-31 23:59:59+00:00' - - cred_ex_record: - auto_issue: false - auto_offer: false - auto_remove: false - connection_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - created_at: '2021-12-31 23:59:59+00:00' - cred_ex_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - cred_issue: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - credentials~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - replacement_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - cred_offer: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - credential_preview: - '@type': issue-credential/2.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - offers~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - replacement_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - cred_preview: - '@type': issue-credential/2.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - cred_proposal: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - credential_preview: - '@type': issue-credential/2.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - filters~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - cred_request: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - requests~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - error_msg: The front fell off - initiator: self - parent_thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - role: issuer - state: done - thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - trace: true - updated_at: '2021-12-31 23:59:59+00:00' - indy: + - indy: created_at: '2021-12-31 23:59:59+00:00' cred_ex_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 cred_ex_indy_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 @@ -26086,142 +20591,6 @@ service: cred_ex_id: cred_ex_id response: body: - cred_ex_record: - auto_issue: false - auto_offer: false - auto_remove: false - connection_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - created_at: '2021-12-31 23:59:59+00:00' - cred_ex_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - cred_issue: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - credentials~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - replacement_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - cred_offer: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - credential_preview: - '@type': issue-credential/2.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - offers~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - replacement_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - cred_preview: - '@type': issue-credential/2.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - cred_proposal: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - credential_preview: - '@type': issue-credential/2.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - filters~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - cred_request: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - requests~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - error_msg: The front fell off - initiator: self - parent_thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - role: issuer - state: done - thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - trace: true - updated_at: '2021-12-31 23:59:59+00:00' indy: created_at: '2021-12-31 23:59:59+00:00' cred_ex_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 @@ -26277,153 +20646,17 @@ service: comment: type: optional docs: Human-readable comment - content-type: application/json - response: - docs: '' - type: root.V20CredExRecordDetail - examples: - - path-parameters: - cred_ex_id: cred_ex_id - request: - comment: comment - response: - body: - cred_ex_record: - auto_issue: false - auto_offer: false - auto_remove: false - connection_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - created_at: '2021-12-31 23:59:59+00:00' - cred_ex_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - cred_issue: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - credentials~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - replacement_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - cred_offer: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - credential_preview: - '@type': issue-credential/2.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - offers~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - replacement_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - cred_preview: - '@type': issue-credential/2.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - cred_proposal: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - credential_preview: - '@type': issue-credential/2.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - filters~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - cred_request: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - requests~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - error_msg: The front fell off - initiator: self - parent_thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - role: issuer - state: done - thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - trace: true - updated_at: '2021-12-31 23:59:59+00:00' + content-type: application/json + response: + docs: '' + type: root.V20CredExRecordDetail + examples: + - path-parameters: + cred_ex_id: cred_ex_id + request: + comment: comment + response: + body: indy: created_at: '2021-12-31 23:59:59+00:00' cred_ex_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 @@ -26495,16 +20728,7 @@ service: examples: - path-parameters: cred_ex_id: cred_ex_id - request: - counter_preview: - '@type': issue-credential/2.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini + request: {} response: body: auto_issue: false @@ -26513,127 +20737,6 @@ service: connection_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 created_at: '2021-12-31 23:59:59+00:00' cred_ex_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - cred_issue: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - credentials~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - replacement_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - cred_offer: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - credential_preview: - '@type': issue-credential/2.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - offers~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - replacement_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - cred_preview: - '@type': issue-credential/2.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - cred_proposal: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - credential_preview: - '@type': issue-credential/2.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - filters~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - cred_request: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - requests~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png error_msg: The front fell off initiator: self parent_thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 @@ -26677,127 +20780,6 @@ service: connection_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 created_at: '2021-12-31 23:59:59+00:00' cred_ex_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - cred_issue: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - credentials~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - replacement_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - cred_offer: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - credential_preview: - '@type': issue-credential/2.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - offers~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - replacement_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - cred_preview: - '@type': issue-credential/2.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - cred_proposal: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - credential_preview: - '@type': issue-credential/2.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - filters~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - cred_request: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - requests~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png error_msg: The front fell off initiator: self parent_thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 @@ -26834,142 +20816,6 @@ service: credential_id: credential_id response: body: - cred_ex_record: - auto_issue: false - auto_offer: false - auto_remove: false - connection_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - created_at: '2021-12-31 23:59:59+00:00' - cred_ex_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - cred_issue: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - credentials~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - replacement_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - cred_offer: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - credential_preview: - '@type': issue-credential/2.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - offers~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - replacement_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - cred_preview: - '@type': issue-credential/2.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - cred_proposal: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - credential_preview: - '@type': issue-credential/2.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - filters~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - cred_request: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - requests~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - error_msg: The front fell off - initiator: self - parent_thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - role: issuer - state: done - thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - trace: true - updated_at: '2021-12-31 23:59:59+00:00' indy: created_at: '2021-12-31 23:59:59+00:00' cred_ex_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 @@ -27011,142 +20857,21 @@ service: attributes: - mime-type: image/jpeg name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - filter: {} - trace: true - verification_method: verification_method - response: - body: - auto_issue: false - auto_offer: false - auto_remove: false - connection_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - created_at: '2021-12-31 23:59:59+00:00' - cred_ex_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - cred_issue: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - credentials~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - replacement_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - cred_offer: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - credential_preview: - '@type': issue-credential/2.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - offers~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - replacement_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - cred_preview: - '@type': issue-credential/2.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - cred_proposal: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - credential_preview: - '@type': issue-credential/2.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - filters~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - cred_request: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - requests~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png + value: martini + - mime-type: image/jpeg + name: favourite_drink + value: martini + filter: {} + trace: true + verification_method: verification_method + response: + body: + auto_issue: false + auto_offer: false + auto_remove: false + connection_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 + created_at: '2021-12-31 23:59:59+00:00' + cred_ex_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 error_msg: The front fell off initiator: self parent_thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 @@ -27219,127 +20944,6 @@ service: connection_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 created_at: '2021-12-31 23:59:59+00:00' cred_ex_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - cred_issue: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - credentials~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - replacement_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - cred_offer: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - credential_preview: - '@type': issue-credential/2.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - offers~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - replacement_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - cred_preview: - '@type': issue-credential/2.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - cred_proposal: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - credential_preview: - '@type': issue-credential/2.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - filters~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - cred_request: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - requests~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png error_msg: The front fell off initiator: self parent_thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 @@ -27387,127 +20991,6 @@ service: connection_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 created_at: '2021-12-31 23:59:59+00:00' cred_ex_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - cred_issue: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - credentials~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - replacement_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - cred_offer: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - credential_preview: - '@type': issue-credential/2.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - offers~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - replacement_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - cred_preview: - '@type': issue-credential/2.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - cred_proposal: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - credential_preview: - '@type': issue-credential/2.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - filters~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - cred_request: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - requests~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png error_msg: The front fell off initiator: self parent_thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 @@ -27550,161 +21033,40 @@ service: type: optional docs: Whether to trace event (default false) content-type: application/json - response: - docs: '' - type: root.V20CredExRecord - examples: - - request: - auto_remove: true - comment: comment - connection_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - filter: - ld_proof: - credential: - '@context': - - key: value - - key: value - credentialSubject: - key: value - issuanceDate: '2010-01-01 19:23:24+00:00' - issuer: - key: value - type: - - VerifiableCredential - - AlumniCredential - options: - proofType: Ed25519Signature2018 - holder_did: did:key:ahsdkjahsdkjhaskjdhakjshdkajhsdkjahs - trace: false - response: - body: - auto_issue: false - auto_offer: false - auto_remove: false - connection_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - created_at: '2021-12-31 23:59:59+00:00' - cred_ex_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - cred_issue: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - credentials~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - replacement_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - cred_offer: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - credential_preview: - '@type': issue-credential/2.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - offers~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - replacement_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - cred_preview: - '@type': issue-credential/2.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - cred_proposal: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - credential_preview: - '@type': issue-credential/2.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - filters~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - cred_request: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - requests~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png + response: + docs: '' + type: root.V20CredExRecord + examples: + - request: + auto_remove: true + comment: comment + connection_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 + filter: + ld_proof: + credential: + '@context': + - key: value + - key: value + credentialSubject: + key: value + issuanceDate: '2010-01-01 19:23:24+00:00' + issuer: + key: value + type: + - VerifiableCredential + - AlumniCredential + options: + proofType: Ed25519Signature2018 + holder_did: did:key:ahsdkjahsdkjhaskjdhakjshdkajhsdkjahs + trace: false + response: + body: + auto_issue: false + auto_offer: false + auto_remove: false + connection_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 + created_at: '2021-12-31 23:59:59+00:00' + cred_ex_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 error_msg: The front fell off initiator: self parent_thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 @@ -28252,39 +21614,6 @@ docs: Sign and verify json-ld data "response": { "body": { "success": true, - "txn": { - "_type": "101", - "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "created_at": "2021-12-31 23:59:59+00:00", - "endorser_write_txn": true, - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "dif/endorse-transaction/request@v1.0", - }, - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "dif/endorse-transaction/request@v1.0", - }, - ], - "messages_attach": [ - {}, - {}, - ], - "signature_request": [ - {}, - {}, - ], - "signature_response": [ - {}, - {}, - ], - "state": "active", - "thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "trace": true, - "transaction_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "updated_at": "2021-12-31 23:59:59+00:00", - }, }, }, }, @@ -28578,30 +21907,6 @@ service: response: body: success: true - txn: - _type: '101' - connection_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - created_at: '2021-12-31 23:59:59+00:00' - endorser_write_txn: true - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: dif/endorse-transaction/request@v1.0 - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: dif/endorse-transaction/request@v1.0 - messages_attach: - - {} - - {} - signature_request: - - {} - - {} - signature_response: - - {} - - {} - state: active - thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - trace: true - transaction_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - updated_at: '2021-12-31 23:59:59+00:00' rotate_public_did_keypair: path: /ledger/rotate-public-did-keypair method: PATCH @@ -29240,10 +22545,6 @@ docs: Interaction with ledger "body": { "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "paginate": { - "limit": 30, - "offset": 0, - }, }, }, }, @@ -29658,9 +22959,6 @@ service: body: '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 '@type': https://didcomm.org/my-family/1.0/my-message-type - paginate: - limit: 30 - offset: 0 send_keylist_update_to_mediator: path: /mediation/keylists/{mediation_id}/send-keylist-update method: POST @@ -30818,77 +24116,6 @@ docs: Multitenant wallet management "body": { "created_at": "2021-12-31 23:59:59+00:00", "invi_msg_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "invitation": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "accept": [ - "didcomm/aip1", - "didcomm/aip2;env=rfc19", - ], - "handshake_protocols": [ - "did:sov:BzCbsNYhMrjHiqZDTUASHg;spec/didexchange/1.0", - "did:sov:BzCbsNYhMrjHiqZDTUASHg;spec/didexchange/1.0", - ], - "imageUrl": "http://192.168.56.101/img/logo.jpg", - "label": "Bob", - "requests~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - "services": [ - { - "did": "WgWxqztrNooG92RXvxSTWv", - "id": "string", - "recipientKeys": [ - "did:key:z6MkpTHR8VNsBxYAAWHut2Geadd9jSwuBV8xRoAnwWsdvktH", - ], - "routingKeys": [ - "did:key:z6MkpTHR8VNsBxYAAWHut2Geadd9jSwuBV8xRoAnwWsdvktH", - ], - "serviceEndpoint": "http://192.168.56.101:8020", - "type": "string", - }, - { - "key": "value", - }, - ], - }, "invitation_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "invitation_url": "https://example.com/endpoint?c_i=eyJAdHlwZSI6ICIuLi4iLCAiLi4uIjogIi4uLiJ9XX0=", "oob_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", @@ -31294,58 +24521,6 @@ service: body: created_at: '2021-12-31 23:59:59+00:00' invi_msg_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - invitation: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - accept: - - didcomm/aip1 - - didcomm/aip2;env=rfc19 - handshake_protocols: - - did:sov:BzCbsNYhMrjHiqZDTUASHg;spec/didexchange/1.0 - - did:sov:BzCbsNYhMrjHiqZDTUASHg;spec/didexchange/1.0 - imageUrl: http://192.168.56.101/img/logo.jpg - label: Bob - requests~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - services: - - did: WgWxqztrNooG92RXvxSTWv - id: string - recipientKeys: - - did:key:z6MkpTHR8VNsBxYAAWHut2Geadd9jSwuBV8xRoAnwWsdvktH - routingKeys: - - did:key:z6MkpTHR8VNsBxYAAWHut2Geadd9jSwuBV8xRoAnwWsdvktH - serviceEndpoint: http://192.168.56.101:8020 - type: string - - key: value invitation_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 invitation_url: >- https://example.com/endpoint?c_i=eyJAdHlwZSI6ICIuLi4iLCAiLi4uIjogIi4uLiJ9XX0= @@ -31559,154 +24734,31 @@ docs: Out-of-band connections "requested_predicates": { "key": { "name": "index", - "p_type": ">=", - "p_value": 0, - "restrictions": [ - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - ], - }, - }, - "version": "1.0", - }, - "trace": false, - }, - "response": { - "body": { - "auto_present": false, - "auto_verify": true, - "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "created_at": "2021-12-31 23:59:59+00:00", - "error_msg": "Invalid structure", - "initiator": "self", - "presentation": { - "identifiers": [ - { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - }, - ], - "proof": { - "proofs": [ - {}, - ], - }, - "requested_proof": { - "predicates": { - "key": {}, - }, - }, - }, - "presentation_exchange_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "presentation_proposal_dict": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "presentation_proposal": { - "@type": "did:sov:BzCbsNYhMrjHiqZDTUASHg;spec/present-proof/1.0/presentation-preview", - "attributes": [ - { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "mime-type": "image/jpeg", - "name": "favourite_drink", - "referent": "0", - "value": "martini", - }, - { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "mime-type": "image/jpeg", - "name": "favourite_drink", - "referent": "0", - "value": "martini", - }, - ], - "predicates": [ - { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "name": "high_score", - "predicate": ">=", - "threshold": 0, - }, - { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "name": "high_score", - "predicate": ">=", - "threshold": 0, - }, - ], - }, - }, - "presentation_request": { - "name": "Proof request", - "non_revoked": { - "from": 1640995199, - "to": 1640995199, - }, - "nonce": "1", - "requested_attributes": { - "key": { - "name": "favouriteDrink", - "names": [ - "age", - "age", - ], - "restrictions": [ - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - ], - }, - }, - "requested_predicates": { - "key": { - "name": "index", - "p_type": ">=", - "p_value": 0, - "restrictions": [ - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - ], - }, - }, - "version": "1.0", - }, - "presentation_request_dict": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "request_presentations~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", + "p_type": ">=", + "p_value": 0, + "restrictions": [ + { + "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], + { + "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", + }, + ], + }, }, + "version": "1.0", + }, + "trace": false, + }, + "response": { + "body": { + "auto_present": false, + "auto_verify": true, + "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "created_at": "2021-12-31 23:59:59+00:00", + "error_msg": "Invalid structure", + "initiator": "self", + "presentation_exchange_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "role": "prover", "state": "verified", "thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", @@ -31807,105 +24859,6 @@ docs: Out-of-band connections "error_msg": "Invalid structure", "initiator": "self", "presentation_exchange_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "presentation_proposal_dict": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "presentation_proposal": { - "@type": "did:sov:BzCbsNYhMrjHiqZDTUASHg;spec/present-proof/1.0/presentation-preview", - "attributes": [ - { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "mime-type": "image/jpeg", - "name": "favourite_drink", - "referent": "0", - "value": "martini", - }, - { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "mime-type": "image/jpeg", - "name": "favourite_drink", - "referent": "0", - "value": "martini", - }, - ], - "predicates": [ - { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "name": "high_score", - "predicate": ">=", - "threshold": 0, - }, - { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "name": "high_score", - "predicate": ">=", - "threshold": 0, - }, - ], - }, - }, - "presentation_request": { - "name": "Proof request", - "nonce": "1", - "requested_attributes": { - "key": { - "name": "favouriteDrink", - "names": [ - "age", - "age", - ], - "restrictions": [ - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - ], - }, - }, - "requested_predicates": { - "key": { - "name": "index", - "p_type": ">=", - "p_value": 0, - "restrictions": [ - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - ], - }, - }, - "version": "1.0", - }, - "presentation_request_dict": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "request_presentations~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, "role": "prover", "state": "verified", "thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", @@ -31925,105 +24878,6 @@ docs: Out-of-band connections "error_msg": "Invalid structure", "initiator": "self", "presentation_exchange_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "presentation_proposal_dict": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "presentation_proposal": { - "@type": "did:sov:BzCbsNYhMrjHiqZDTUASHg;spec/present-proof/1.0/presentation-preview", - "attributes": [ - { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "mime-type": "image/jpeg", - "name": "favourite_drink", - "referent": "0", - "value": "martini", - }, - { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "mime-type": "image/jpeg", - "name": "favourite_drink", - "referent": "0", - "value": "martini", - }, - ], - "predicates": [ - { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "name": "high_score", - "predicate": ">=", - "threshold": 0, - }, - { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "name": "high_score", - "predicate": ">=", - "threshold": 0, - }, - ], - }, - }, - "presentation_request": { - "name": "Proof request", - "nonce": "1", - "requested_attributes": { - "key": { - "name": "favouriteDrink", - "names": [ - "age", - "age", - ], - "restrictions": [ - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - ], - }, - }, - "requested_predicates": { - "key": { - "name": "index", - "p_type": ">=", - "p_value": 0, - "restrictions": [ - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - ], - }, - }, - "version": "1.0", - }, - "presentation_request_dict": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "request_presentations~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, "role": "prover", "state": "verified", "thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", @@ -32096,20 +24950,6 @@ docs: Out-of-band connections "response": { "body": [ { - "cred_info": { - "attrs": { - "key": "alice", - }, - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "cred_rev_id": "12345", - "referent": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "rev_reg_id": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - }, - "interval": { - "from": 1640995199, - "to": 1640995199, - }, "presentation_referents": [ "1_age_uuid", "1_age_uuid", @@ -32192,130 +25032,7 @@ docs: Out-of-band connections "created_at": "2021-12-31 23:59:59+00:00", "error_msg": "Invalid structure", "initiator": "self", - "presentation": { - "identifiers": [ - { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - }, - ], - "proof": { - "proofs": [ - {}, - ], - }, - "requested_proof": { - "predicates": { - "key": {}, - }, - }, - }, "presentation_exchange_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "presentation_proposal_dict": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "presentation_proposal": { - "@type": "did:sov:BzCbsNYhMrjHiqZDTUASHg;spec/present-proof/1.0/presentation-preview", - "attributes": [ - { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "mime-type": "image/jpeg", - "name": "favourite_drink", - "referent": "0", - "value": "martini", - }, - { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "mime-type": "image/jpeg", - "name": "favourite_drink", - "referent": "0", - "value": "martini", - }, - ], - "predicates": [ - { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "name": "high_score", - "predicate": ">=", - "threshold": 0, - }, - { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "name": "high_score", - "predicate": ">=", - "threshold": 0, - }, - ], - }, - }, - "presentation_request": { - "name": "Proof request", - "non_revoked": { - "from": 1640995199, - "to": 1640995199, - }, - "nonce": "1", - "requested_attributes": { - "key": { - "name": "favouriteDrink", - "names": [ - "age", - "age", - ], - "restrictions": [ - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - ], - }, - }, - "requested_predicates": { - "key": { - "name": "index", - "p_type": ">=", - "p_value": 0, - "restrictions": [ - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - ], - }, - }, - "version": "1.0", - }, - "presentation_request_dict": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "request_presentations~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, "role": "prover", "state": "verified", "thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", @@ -32452,130 +25169,7 @@ docs: Out-of-band connections "created_at": "2021-12-31 23:59:59+00:00", "error_msg": "Invalid structure", "initiator": "self", - "presentation": { - "identifiers": [ - { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - }, - ], - "proof": { - "proofs": [ - {}, - ], - }, - "requested_proof": { - "predicates": { - "key": {}, - }, - }, - }, "presentation_exchange_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "presentation_proposal_dict": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "presentation_proposal": { - "@type": "did:sov:BzCbsNYhMrjHiqZDTUASHg;spec/present-proof/1.0/presentation-preview", - "attributes": [ - { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "mime-type": "image/jpeg", - "name": "favourite_drink", - "referent": "0", - "value": "martini", - }, - { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "mime-type": "image/jpeg", - "name": "favourite_drink", - "referent": "0", - "value": "martini", - }, - ], - "predicates": [ - { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "name": "high_score", - "predicate": ">=", - "threshold": 0, - }, - { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "name": "high_score", - "predicate": ">=", - "threshold": 0, - }, - ], - }, - }, - "presentation_request": { - "name": "Proof request", - "non_revoked": { - "from": 1640995199, - "to": 1640995199, - }, - "nonce": "1", - "requested_attributes": { - "key": { - "name": "favouriteDrink", - "names": [ - "age", - "age", - ], - "restrictions": [ - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - ], - }, - }, - "requested_predicates": { - "key": { - "name": "index", - "p_type": ">=", - "p_value": 0, - "restrictions": [ - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - ], - }, - }, - "version": "1.0", - }, - "presentation_request_dict": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "request_presentations~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, "role": "prover", "state": "verified", "thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", @@ -32673,146 +25267,23 @@ docs: Out-of-band connections }, { "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "name": "high_score", - "predicate": ">=", - "threshold": 0, - }, - ], - }, - "trace": false, - }, - "response": { - "body": { - "auto_present": false, - "auto_verify": true, - "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "created_at": "2021-12-31 23:59:59+00:00", - "error_msg": "Invalid structure", - "initiator": "self", - "presentation": { - "identifiers": [ - { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - }, - ], - "proof": { - "proofs": [ - {}, - ], - }, - "requested_proof": { - "predicates": { - "key": {}, - }, - }, - }, - "presentation_exchange_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "presentation_proposal_dict": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "presentation_proposal": { - "@type": "did:sov:BzCbsNYhMrjHiqZDTUASHg;spec/present-proof/1.0/presentation-preview", - "attributes": [ - { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "mime-type": "image/jpeg", - "name": "favourite_drink", - "referent": "0", - "value": "martini", - }, - { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "mime-type": "image/jpeg", - "name": "favourite_drink", - "referent": "0", - "value": "martini", - }, - ], - "predicates": [ - { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "name": "high_score", - "predicate": ">=", - "threshold": 0, - }, - { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "name": "high_score", - "predicate": ">=", - "threshold": 0, - }, - ], - }, - }, - "presentation_request": { - "name": "Proof request", - "non_revoked": { - "from": 1640995199, - "to": 1640995199, - }, - "nonce": "1", - "requested_attributes": { - "key": { - "name": "favouriteDrink", - "names": [ - "age", - "age", - ], - "restrictions": [ - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - ], - }, - }, - "requested_predicates": { - "key": { - "name": "index", - "p_type": ">=", - "p_value": 0, - "restrictions": [ - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - ], - }, + "name": "high_score", + "predicate": ">=", + "threshold": 0, }, - "version": "1.0", - }, - "presentation_request_dict": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "request_presentations~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, + ], + }, + "trace": false, + }, + "response": { + "body": { + "auto_present": false, + "auto_verify": true, + "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "created_at": "2021-12-31 23:59:59+00:00", + "error_msg": "Invalid structure", + "initiator": "self", + "presentation_exchange_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "role": "prover", "state": "verified", "thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", @@ -32909,130 +25380,7 @@ docs: Out-of-band connections "created_at": "2021-12-31 23:59:59+00:00", "error_msg": "Invalid structure", "initiator": "self", - "presentation": { - "identifiers": [ - { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - }, - ], - "proof": { - "proofs": [ - {}, - ], - }, - "requested_proof": { - "predicates": { - "key": {}, - }, - }, - }, "presentation_exchange_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "presentation_proposal_dict": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "presentation_proposal": { - "@type": "did:sov:BzCbsNYhMrjHiqZDTUASHg;spec/present-proof/1.0/presentation-preview", - "attributes": [ - { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "mime-type": "image/jpeg", - "name": "favourite_drink", - "referent": "0", - "value": "martini", - }, - { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "mime-type": "image/jpeg", - "name": "favourite_drink", - "referent": "0", - "value": "martini", - }, - ], - "predicates": [ - { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "name": "high_score", - "predicate": ">=", - "threshold": 0, - }, - { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "name": "high_score", - "predicate": ">=", - "threshold": 0, - }, - ], - }, - }, - "presentation_request": { - "name": "Proof request", - "non_revoked": { - "from": 1640995199, - "to": 1640995199, - }, - "nonce": "1", - "requested_attributes": { - "key": { - "name": "favouriteDrink", - "names": [ - "age", - "age", - ], - "restrictions": [ - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - ], - }, - }, - "requested_predicates": { - "key": { - "name": "index", - "p_type": ">=", - "p_value": 0, - "restrictions": [ - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - ], - }, - }, - "version": "1.0", - }, - "presentation_request_dict": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "request_presentations~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, "role": "prover", "state": "verified", "thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", @@ -33091,130 +25439,7 @@ docs: Out-of-band connections "created_at": "2021-12-31 23:59:59+00:00", "error_msg": "Invalid structure", "initiator": "self", - "presentation": { - "identifiers": [ - { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - }, - ], - "proof": { - "proofs": [ - {}, - ], - }, - "requested_proof": { - "predicates": { - "key": {}, - }, - }, - }, "presentation_exchange_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "presentation_proposal_dict": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "presentation_proposal": { - "@type": "did:sov:BzCbsNYhMrjHiqZDTUASHg;spec/present-proof/1.0/presentation-preview", - "attributes": [ - { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "mime-type": "image/jpeg", - "name": "favourite_drink", - "referent": "0", - "value": "martini", - }, - { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "mime-type": "image/jpeg", - "name": "favourite_drink", - "referent": "0", - "value": "martini", - }, - ], - "predicates": [ - { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "name": "high_score", - "predicate": ">=", - "threshold": 0, - }, - { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "name": "high_score", - "predicate": ">=", - "threshold": 0, - }, - ], - }, - }, - "presentation_request": { - "name": "Proof request", - "non_revoked": { - "from": 1640995199, - "to": 1640995199, - }, - "nonce": "1", - "requested_attributes": { - "key": { - "name": "favouriteDrink", - "names": [ - "age", - "age", - ], - "restrictions": [ - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - ], - }, - }, - "requested_predicates": { - "key": { - "name": "index", - "p_type": ">=", - "p_value": 0, - "restrictions": [ - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - ], - }, - }, - "version": "1.0", - }, - "presentation_request_dict": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "request_presentations~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, "role": "prover", "state": "verified", "thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", @@ -33260,152 +25485,29 @@ docs: Out-of-band connections "response": { "docs": "", "type": "root.V10PresentationExchange", - }, - "source": { - "openapi": "../openapi.yml", - }, - }, - "verify_received_presentation": { - "auth": true, - "display-name": "Verify a received presentation", - "docs": undefined, - "examples": [ - { - "path-parameters": { - "pres_ex_id": "pres_ex_id", - }, - "response": { - "body": { - "auto_present": false, - "auto_verify": true, - "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "created_at": "2021-12-31 23:59:59+00:00", - "error_msg": "Invalid structure", - "initiator": "self", - "presentation": { - "identifiers": [ - { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - }, - ], - "proof": { - "proofs": [ - {}, - ], - }, - "requested_proof": { - "predicates": { - "key": {}, - }, - }, - }, - "presentation_exchange_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "presentation_proposal_dict": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "presentation_proposal": { - "@type": "did:sov:BzCbsNYhMrjHiqZDTUASHg;spec/present-proof/1.0/presentation-preview", - "attributes": [ - { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "mime-type": "image/jpeg", - "name": "favourite_drink", - "referent": "0", - "value": "martini", - }, - { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "mime-type": "image/jpeg", - "name": "favourite_drink", - "referent": "0", - "value": "martini", - }, - ], - "predicates": [ - { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "name": "high_score", - "predicate": ">=", - "threshold": 0, - }, - { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "name": "high_score", - "predicate": ">=", - "threshold": 0, - }, - ], - }, - }, - "presentation_request": { - "name": "Proof request", - "non_revoked": { - "from": 1640995199, - "to": 1640995199, - }, - "nonce": "1", - "requested_attributes": { - "key": { - "name": "favouriteDrink", - "names": [ - "age", - "age", - ], - "restrictions": [ - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - ], - }, - }, - "requested_predicates": { - "key": { - "name": "index", - "p_type": ">=", - "p_value": 0, - "restrictions": [ - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - ], - }, - }, - "version": "1.0", - }, - "presentation_request_dict": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "request_presentations~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, + }, + "source": { + "openapi": "../openapi.yml", + }, + }, + "verify_received_presentation": { + "auth": true, + "display-name": "Verify a received presentation", + "docs": undefined, + "examples": [ + { + "path-parameters": { + "pres_ex_id": "pres_ex_id", + }, + "response": { + "body": { + "auto_present": false, + "auto_verify": true, + "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "created_at": "2021-12-31 23:59:59+00:00", + "error_msg": "Invalid structure", + "initiator": "self", + "presentation_exchange_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "role": "prover", "state": "verified", "thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", @@ -33535,88 +25637,7 @@ service: created_at: '2021-12-31 23:59:59+00:00' error_msg: Invalid structure initiator: self - presentation: - identifiers: - - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 - proof: - proofs: - - {} - requested_proof: - predicates: - key: {} presentation_exchange_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - presentation_proposal_dict: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - presentation_proposal: - '@type': >- - did:sov:BzCbsNYhMrjHiqZDTUASHg;spec/present-proof/1.0/presentation-preview - attributes: - - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - mime-type: image/jpeg - name: favourite_drink - referent: '0' - value: martini - - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - mime-type: image/jpeg - name: favourite_drink - referent: '0' - value: martini - predicates: - - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - name: high_score - predicate: '>=' - threshold: 0 - - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - name: high_score - predicate: '>=' - threshold: 0 - presentation_request: - name: Proof request - non_revoked: - from: 1640995199 - to: 1640995199 - nonce: '1' - requested_attributes: - key: - name: favouriteDrink - names: - - age - - age - restrictions: - - key: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - - key: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - requested_predicates: - key: - name: index - p_type: '>=' - p_value: 0 - restrictions: - - key: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - - key: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - version: '1.0' - presentation_request_dict: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - request_presentations~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png role: prover state: verified thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 @@ -33666,72 +25687,6 @@ service: error_msg: Invalid structure initiator: self presentation_exchange_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - presentation_proposal_dict: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - presentation_proposal: - '@type': >- - did:sov:BzCbsNYhMrjHiqZDTUASHg;spec/present-proof/1.0/presentation-preview - attributes: - - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - mime-type: image/jpeg - name: favourite_drink - referent: '0' - value: martini - - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - mime-type: image/jpeg - name: favourite_drink - referent: '0' - value: martini - predicates: - - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - name: high_score - predicate: '>=' - threshold: 0 - - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - name: high_score - predicate: '>=' - threshold: 0 - presentation_request: - name: Proof request - nonce: '1' - requested_attributes: - key: - name: favouriteDrink - names: - - age - - age - restrictions: - - key: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - - key: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - requested_predicates: - key: - name: index - p_type: '>=' - p_value: 0 - restrictions: - - key: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - - key: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - version: '1.0' - presentation_request_dict: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - request_presentations~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png role: prover state: verified thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 @@ -33748,72 +25703,6 @@ service: error_msg: Invalid structure initiator: self presentation_exchange_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - presentation_proposal_dict: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - presentation_proposal: - '@type': >- - did:sov:BzCbsNYhMrjHiqZDTUASHg;spec/present-proof/1.0/presentation-preview - attributes: - - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - mime-type: image/jpeg - name: favourite_drink - referent: '0' - value: martini - - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - mime-type: image/jpeg - name: favourite_drink - referent: '0' - value: martini - predicates: - - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - name: high_score - predicate: '>=' - threshold: 0 - - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - name: high_score - predicate: '>=' - threshold: 0 - presentation_request: - name: Proof request - nonce: '1' - requested_attributes: - key: - name: favouriteDrink - names: - - age - - age - restrictions: - - key: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - - key: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - requested_predicates: - key: - name: index - p_type: '>=' - p_value: 0 - restrictions: - - key: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - - key: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - version: '1.0' - presentation_request_dict: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - request_presentations~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png role: prover state: verified thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 @@ -33848,88 +25737,7 @@ service: created_at: '2021-12-31 23:59:59+00:00' error_msg: Invalid structure initiator: self - presentation: - identifiers: - - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 - proof: - proofs: - - {} - requested_proof: - predicates: - key: {} presentation_exchange_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - presentation_proposal_dict: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - presentation_proposal: - '@type': >- - did:sov:BzCbsNYhMrjHiqZDTUASHg;spec/present-proof/1.0/presentation-preview - attributes: - - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - mime-type: image/jpeg - name: favourite_drink - referent: '0' - value: martini - - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - mime-type: image/jpeg - name: favourite_drink - referent: '0' - value: martini - predicates: - - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - name: high_score - predicate: '>=' - threshold: 0 - - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - name: high_score - predicate: '>=' - threshold: 0 - presentation_request: - name: Proof request - non_revoked: - from: 1640995199 - to: 1640995199 - nonce: '1' - requested_attributes: - key: - name: favouriteDrink - names: - - age - - age - restrictions: - - key: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - - key: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - requested_predicates: - key: - name: index - p_type: '>=' - p_value: 0 - restrictions: - - key: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - - key: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - version: '1.0' - presentation_request_dict: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - request_presentations~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png role: prover state: verified thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 @@ -33999,19 +25807,7 @@ service: pres_ex_id: pres_ex_id response: body: - - cred_info: - attrs: - key: alice - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - cred_rev_id: '12345' - referent: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - rev_reg_id: >- - WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0 - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 - interval: - from: 1640995199 - to: 1640995199 - presentation_referents: + - presentation_referents: - 1_age_uuid - 1_age_uuid report_pres_ex_problem: @@ -34083,88 +25879,7 @@ service: created_at: '2021-12-31 23:59:59+00:00' error_msg: Invalid structure initiator: self - presentation: - identifiers: - - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 - proof: - proofs: - - {} - requested_proof: - predicates: - key: {} presentation_exchange_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - presentation_proposal_dict: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - presentation_proposal: - '@type': >- - did:sov:BzCbsNYhMrjHiqZDTUASHg;spec/present-proof/1.0/presentation-preview - attributes: - - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - mime-type: image/jpeg - name: favourite_drink - referent: '0' - value: martini - - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - mime-type: image/jpeg - name: favourite_drink - referent: '0' - value: martini - predicates: - - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - name: high_score - predicate: '>=' - threshold: 0 - - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - name: high_score - predicate: '>=' - threshold: 0 - presentation_request: - name: Proof request - non_revoked: - from: 1640995199 - to: 1640995199 - nonce: '1' - requested_attributes: - key: - name: favouriteDrink - names: - - age - - age - restrictions: - - key: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - - key: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - requested_predicates: - key: - name: index - p_type: '>=' - p_value: 0 - restrictions: - - key: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - - key: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - version: '1.0' - presentation_request_dict: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - request_presentations~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png role: prover state: verified thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 @@ -34213,88 +25928,7 @@ service: created_at: '2021-12-31 23:59:59+00:00' error_msg: Invalid structure initiator: self - presentation: - identifiers: - - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 - proof: - proofs: - - {} - requested_proof: - predicates: - key: {} presentation_exchange_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - presentation_proposal_dict: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - presentation_proposal: - '@type': >- - did:sov:BzCbsNYhMrjHiqZDTUASHg;spec/present-proof/1.0/presentation-preview - attributes: - - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - mime-type: image/jpeg - name: favourite_drink - referent: '0' - value: martini - - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - mime-type: image/jpeg - name: favourite_drink - referent: '0' - value: martini - predicates: - - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - name: high_score - predicate: '>=' - threshold: 0 - - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - name: high_score - predicate: '>=' - threshold: 0 - presentation_request: - name: Proof request - non_revoked: - from: 1640995199 - to: 1640995199 - nonce: '1' - requested_attributes: - key: - name: favouriteDrink - names: - - age - - age - restrictions: - - key: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - - key: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - requested_predicates: - key: - name: index - p_type: '>=' - p_value: 0 - restrictions: - - key: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - - key: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - version: '1.0' - presentation_request_dict: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - request_presentations~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png role: prover state: verified thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 @@ -34329,88 +25963,7 @@ service: created_at: '2021-12-31 23:59:59+00:00' error_msg: Invalid structure initiator: self - presentation: - identifiers: - - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 - proof: - proofs: - - {} - requested_proof: - predicates: - key: {} presentation_exchange_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - presentation_proposal_dict: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - presentation_proposal: - '@type': >- - did:sov:BzCbsNYhMrjHiqZDTUASHg;spec/present-proof/1.0/presentation-preview - attributes: - - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - mime-type: image/jpeg - name: favourite_drink - referent: '0' - value: martini - - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - mime-type: image/jpeg - name: favourite_drink - referent: '0' - value: martini - predicates: - - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - name: high_score - predicate: '>=' - threshold: 0 - - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - name: high_score - predicate: '>=' - threshold: 0 - presentation_request: - name: Proof request - non_revoked: - from: 1640995199 - to: 1640995199 - nonce: '1' - requested_attributes: - key: - name: favouriteDrink - names: - - age - - age - restrictions: - - key: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - - key: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - requested_predicates: - key: - name: index - p_type: '>=' - p_value: 0 - restrictions: - - key: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - - key: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - version: '1.0' - presentation_request_dict: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - request_presentations~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png role: prover state: verified thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 @@ -34490,88 +26043,7 @@ service: created_at: '2021-12-31 23:59:59+00:00' error_msg: Invalid structure initiator: self - presentation: - identifiers: - - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 - proof: - proofs: - - {} - requested_proof: - predicates: - key: {} presentation_exchange_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - presentation_proposal_dict: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - presentation_proposal: - '@type': >- - did:sov:BzCbsNYhMrjHiqZDTUASHg;spec/present-proof/1.0/presentation-preview - attributes: - - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - mime-type: image/jpeg - name: favourite_drink - referent: '0' - value: martini - - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - mime-type: image/jpeg - name: favourite_drink - referent: '0' - value: martini - predicates: - - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - name: high_score - predicate: '>=' - threshold: 0 - - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - name: high_score - predicate: '>=' - threshold: 0 - presentation_request: - name: Proof request - non_revoked: - from: 1640995199 - to: 1640995199 - nonce: '1' - requested_attributes: - key: - name: favouriteDrink - names: - - age - - age - restrictions: - - key: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - - key: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - requested_predicates: - key: - name: index - p_type: '>=' - p_value: 0 - restrictions: - - key: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - - key: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - version: '1.0' - presentation_request_dict: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - request_presentations~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png role: prover state: verified thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 @@ -34646,88 +26118,7 @@ service: created_at: '2021-12-31 23:59:59+00:00' error_msg: Invalid structure initiator: self - presentation: - identifiers: - - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 - proof: - proofs: - - {} - requested_proof: - predicates: - key: {} presentation_exchange_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - presentation_proposal_dict: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - presentation_proposal: - '@type': >- - did:sov:BzCbsNYhMrjHiqZDTUASHg;spec/present-proof/1.0/presentation-preview - attributes: - - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - mime-type: image/jpeg - name: favourite_drink - referent: '0' - value: martini - - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - mime-type: image/jpeg - name: favourite_drink - referent: '0' - value: martini - predicates: - - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - name: high_score - predicate: '>=' - threshold: 0 - - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - name: high_score - predicate: '>=' - threshold: 0 - presentation_request: - name: Proof request - non_revoked: - from: 1640995199 - to: 1640995199 - nonce: '1' - requested_attributes: - key: - name: favouriteDrink - names: - - age - - age - restrictions: - - key: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - - key: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - requested_predicates: - key: - name: index - p_type: '>=' - p_value: 0 - restrictions: - - key: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - - key: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - version: '1.0' - presentation_request_dict: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - request_presentations~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png role: prover state: verified thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 @@ -34783,154 +26174,19 @@ types: { "request": { "auto_verify": false, - "comment": "comment", - "presentation_request": { - "indy": { - "name": "Proof request", - "nonce": "1", - "requested_attributes": { - "key": { - "name": "favouriteDrink", - "names": [ - "age", - "age", - ], - "restrictions": [ - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - ], - }, - }, - "requested_predicates": { - "key": { - "name": "index", - "p_type": ">=", - "p_value": 0, - "restrictions": [ - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - ], - }, - }, - "version": "1.0", - }, - }, - "trace": false, - }, - "response": { - "body": { - "auto_present": false, - "auto_verify": true, - "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "created_at": "2021-12-31 23:59:59+00:00", - "error_msg": "Invalid structure", - "initiator": "self", - "pres": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "dif/presentation-exchange/submission@v1.0", - }, - ], - "presentations~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, + "comment": "comment", + "presentation_request": {}, + "trace": false, + }, + "response": { + "body": { + "auto_present": false, + "auto_verify": true, + "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "created_at": "2021-12-31 23:59:59+00:00", + "error_msg": "Invalid structure", + "initiator": "self", "pres_ex_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "pres_proposal": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "dif/presentation-exchange/submission@v1.0", - }, - ], - "proposals~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, - "pres_request": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "dif/presentation-exchange/submission@v1.0", - }, - ], - "request_presentations~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - "will_confirm": true, - }, "role": "prover", "state": "proposal-sent", "thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", @@ -35030,100 +26286,7 @@ types: "created_at": "2021-12-31 23:59:59+00:00", "error_msg": "Invalid structure", "initiator": "self", - "pres": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "dif/presentation-exchange/submission@v1.0", - }, - ], - "presentations~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, "pres_ex_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "pres_proposal": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "dif/presentation-exchange/submission@v1.0", - }, - ], - "proposals~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, - "pres_request": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "dif/presentation-exchange/submission@v1.0", - }, - ], - "request_presentations~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, "role": "prover", "state": "proposal-sent", "thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", @@ -35142,100 +26305,7 @@ types: "created_at": "2021-12-31 23:59:59+00:00", "error_msg": "Invalid structure", "initiator": "self", - "pres": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "dif/presentation-exchange/submission@v1.0", - }, - ], - "presentations~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, "pres_ex_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "pres_proposal": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "dif/presentation-exchange/submission@v1.0", - }, - ], - "proposals~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, - "pres_request": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "dif/presentation-exchange/submission@v1.0", - }, - ], - "request_presentations~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, "role": "prover", "state": "proposal-sent", "thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", @@ -35308,20 +26378,6 @@ types: "response": { "body": [ { - "cred_info": { - "attrs": { - "key": "alice", - }, - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "cred_rev_id": "12345", - "referent": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "rev_reg_id": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - }, - "interval": { - "from": 1640995199, - "to": 1640995199, - }, "presentation_referents": [ "1_age_uuid", "1_age_uuid", @@ -35354,154 +26410,57 @@ types: }, }, "extra_query": { - "docs": "(JSON) object mapping referents to extra WQL queries", - "type": "optional", - "validation": { - "format": undefined, - "maxLength": undefined, - "minLength": undefined, - "pattern": "^{\s*".*?"\s*:\s*{.*?}\s*(,\s*".*?"\s*:\s*{.*?}\s*)*\s*}$", - }, - }, - "referent": { - "docs": "Proof request referents of interest, comma-separated", - "type": "optional", - }, - "start": { - "docs": "Start index", - "type": "optional", - "validation": { - "format": undefined, - "maxLength": undefined, - "minLength": undefined, - "pattern": "^[0-9]*$", - }, - }, - }, - }, - "response": { - "docs": "", - "type": "list", - }, - "source": { - "openapi": "../openapi.yml", - }, - }, - "get_pres_ex_record": { - "auth": true, - "display-name": "Fetch a single presentation exchange record", - "docs": undefined, - "examples": [ - { - "path-parameters": { - "pres_ex_id": "pres_ex_id", - }, - "response": { - "body": { - "auto_present": false, - "auto_verify": true, - "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "created_at": "2021-12-31 23:59:59+00:00", - "error_msg": "Invalid structure", - "initiator": "self", - "pres": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "dif/presentation-exchange/submission@v1.0", - }, - ], - "presentations~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, - "pres_ex_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "pres_proposal": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "dif/presentation-exchange/submission@v1.0", - }, - ], - "proposals~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, - "pres_request": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "dif/presentation-exchange/submission@v1.0", - }, - ], - "request_presentations~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - "will_confirm": true, - }, + "docs": "(JSON) object mapping referents to extra WQL queries", + "type": "optional", + "validation": { + "format": undefined, + "maxLength": undefined, + "minLength": undefined, + "pattern": "^{\s*".*?"\s*:\s*{.*?}\s*(,\s*".*?"\s*:\s*{.*?}\s*)*\s*}$", + }, + }, + "referent": { + "docs": "Proof request referents of interest, comma-separated", + "type": "optional", + }, + "start": { + "docs": "Start index", + "type": "optional", + "validation": { + "format": undefined, + "maxLength": undefined, + "minLength": undefined, + "pattern": "^[0-9]*$", + }, + }, + }, + }, + "response": { + "docs": "", + "type": "list", + }, + "source": { + "openapi": "../openapi.yml", + }, + }, + "get_pres_ex_record": { + "auth": true, + "display-name": "Fetch a single presentation exchange record", + "docs": undefined, + "examples": [ + { + "path-parameters": { + "pres_ex_id": "pres_ex_id", + }, + "response": { + "body": { + "auto_present": false, + "auto_verify": true, + "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "created_at": "2021-12-31 23:59:59+00:00", + "error_msg": "Invalid structure", + "initiator": "self", + "pres_ex_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "role": "prover", "state": "proposal-sent", "thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", @@ -35591,45 +26550,7 @@ types: "auto_verify": false, "comment": "comment", "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "presentation_request": { - "indy": { - "name": "Proof request", - "nonce": "1", - "requested_attributes": { - "key": { - "name": "favouriteDrink", - "names": [ - "age", - "age", - ], - "restrictions": [ - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - ], - }, - }, - "requested_predicates": { - "key": { - "name": "index", - "p_type": ">=", - "p_value": 0, - "restrictions": [ - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - ], - }, - }, - "version": "1.0", - }, - }, + "presentation_request": {}, "trace": false, }, "response": { @@ -35640,104 +26561,7 @@ types: "created_at": "2021-12-31 23:59:59+00:00", "error_msg": "Invalid structure", "initiator": "self", - "pres": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "dif/presentation-exchange/submission@v1.0", - }, - ], - "presentations~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, "pres_ex_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "pres_proposal": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "dif/presentation-exchange/submission@v1.0", - }, - ], - "proposals~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, - "pres_request": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "dif/presentation-exchange/submission@v1.0", - }, - ], - "request_presentations~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - "will_confirm": true, - }, "role": "prover", "state": "proposal-sent", "thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", @@ -35808,153 +26632,18 @@ types: "auto_present": true, "comment": "comment", "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "presentation_proposal": { - "indy": { - "name": "Proof request", - "nonce": "1", - "requested_attributes": { - "key": { - "name": "favouriteDrink", - "names": [ - "age", - "age", - ], - "restrictions": [ - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - ], - }, - }, - "requested_predicates": { - "key": { - "name": "index", - "p_type": ">=", - "p_value": 0, - "restrictions": [ - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - ], - }, - }, - "version": "1.0", - }, - }, + "presentation_proposal": {}, "trace": false, }, - "response": { - "body": { - "auto_present": false, - "auto_verify": true, - "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "created_at": "2021-12-31 23:59:59+00:00", - "error_msg": "Invalid structure", - "initiator": "self", - "pres": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "dif/presentation-exchange/submission@v1.0", - }, - ], - "presentations~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, - "pres_ex_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "pres_proposal": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "dif/presentation-exchange/submission@v1.0", - }, - ], - "proposals~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, - "pres_request": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "dif/presentation-exchange/submission@v1.0", - }, - ], - "request_presentations~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - "will_confirm": true, - }, + "response": { + "body": { + "auto_present": false, + "auto_verify": true, + "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "created_at": "2021-12-31 23:59:59+00:00", + "error_msg": "Invalid structure", + "initiator": "self", + "pres_ex_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "role": "prover", "state": "proposal-sent", "thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", @@ -36026,24 +26715,6 @@ types: "pres_ex_id": "pres_ex_id", }, "request": { - "indy": { - "requested_attributes": { - "key": { - "cred_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "revealed": true, - }, - }, - "requested_predicates": { - "key": { - "cred_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "timestamp": 1640995199, - }, - }, - "self_attested_attributes": { - "key": "self_attested_value", - }, - "trace": false, - }, "trace": true, }, "response": { @@ -36054,104 +26725,7 @@ types: "created_at": "2021-12-31 23:59:59+00:00", "error_msg": "Invalid structure", "initiator": "self", - "pres": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "dif/presentation-exchange/submission@v1.0", - }, - ], - "presentations~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, "pres_ex_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "pres_proposal": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "dif/presentation-exchange/submission@v1.0", - }, - ], - "proposals~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, - "pres_request": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "dif/presentation-exchange/submission@v1.0", - }, - ], - "request_presentations~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - "will_confirm": true, - }, "role": "prover", "state": "proposal-sent", "thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", @@ -36225,104 +26799,7 @@ types: "created_at": "2021-12-31 23:59:59+00:00", "error_msg": "Invalid structure", "initiator": "self", - "pres": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "dif/presentation-exchange/submission@v1.0", - }, - ], - "presentations~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, "pres_ex_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "pres_proposal": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "dif/presentation-exchange/submission@v1.0", - }, - ], - "proposals~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, - "pres_request": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "dif/presentation-exchange/submission@v1.0", - }, - ], - "request_presentations~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - "will_confirm": true, - }, "role": "prover", "state": "proposal-sent", "thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", @@ -36389,105 +26866,8 @@ types: "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "created_at": "2021-12-31 23:59:59+00:00", "error_msg": "Invalid structure", - "initiator": "self", - "pres": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "dif/presentation-exchange/submission@v1.0", - }, - ], - "presentations~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, - "pres_ex_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "pres_proposal": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "dif/presentation-exchange/submission@v1.0", - }, - ], - "proposals~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, - "pres_request": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "dif/presentation-exchange/submission@v1.0", - }, - ], - "request_presentations~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - "will_confirm": true, - }, + "initiator": "self", + "pres_ex_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "role": "prover", "state": "proposal-sent", "thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", @@ -36604,28 +26984,7 @@ service: - request: auto_verify: false comment: comment - presentation_request: - indy: - name: Proof request - nonce: '1' - requested_attributes: - key: - name: favouriteDrink - names: - - age - - age - restrictions: - - key: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - - key: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - requested_predicates: - key: - name: index - p_type: '>=' - p_value: 0 - restrictions: - - key: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - - key: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - version: '1.0' + presentation_request: {} trace: false response: body: @@ -36635,77 +26994,7 @@ service: created_at: '2021-12-31 23:59:59+00:00' error_msg: Invalid structure initiator: self - pres: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: dif/presentation-exchange/submission@v1.0 - presentations~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png pres_ex_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - pres_proposal: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: dif/presentation-exchange/submission@v1.0 - proposals~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - pres_request: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: dif/presentation-exchange/submission@v1.0 - request_presentations~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - will_confirm: true role: prover state: proposal-sent thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 @@ -36754,73 +27043,7 @@ service: created_at: '2021-12-31 23:59:59+00:00' error_msg: Invalid structure initiator: self - pres: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: dif/presentation-exchange/submission@v1.0 - presentations~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png pres_ex_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - pres_proposal: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: dif/presentation-exchange/submission@v1.0 - proposals~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - pres_request: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: dif/presentation-exchange/submission@v1.0 - request_presentations~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png role: prover state: proposal-sent thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 @@ -36836,73 +27059,7 @@ service: created_at: '2021-12-31 23:59:59+00:00' error_msg: Invalid structure initiator: self - pres: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: dif/presentation-exchange/submission@v1.0 - presentations~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png pres_ex_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - pres_proposal: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: dif/presentation-exchange/submission@v1.0 - proposals~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - pres_request: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: dif/presentation-exchange/submission@v1.0 - request_presentations~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png role: prover state: proposal-sent thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 @@ -36937,77 +27094,7 @@ service: created_at: '2021-12-31 23:59:59+00:00' error_msg: Invalid structure initiator: self - pres: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: dif/presentation-exchange/submission@v1.0 - presentations~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png pres_ex_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - pres_proposal: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: dif/presentation-exchange/submission@v1.0 - proposals~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - pres_request: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: dif/presentation-exchange/submission@v1.0 - request_presentations~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - will_confirm: true role: prover state: proposal-sent thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 @@ -37077,19 +27164,7 @@ service: pres_ex_id: pres_ex_id response: body: - - cred_info: - attrs: - key: alice - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - cred_rev_id: '12345' - referent: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - rev_reg_id: >- - WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0 - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 - interval: - from: 1640995199 - to: 1640995199 - presentation_referents: + - presentation_referents: - 1_age_uuid - 1_age_uuid report_pres_ex_problem: @@ -37150,18 +27225,6 @@ service: - path-parameters: pres_ex_id: pres_ex_id request: - indy: - requested_attributes: - key: - cred_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - revealed: true - requested_predicates: - key: - cred_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - timestamp: 1640995199 - self_attested_attributes: - key: self_attested_value - trace: false trace: true response: body: @@ -37171,77 +27234,7 @@ service: created_at: '2021-12-31 23:59:59+00:00' error_msg: Invalid structure initiator: self - pres: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: dif/presentation-exchange/submission@v1.0 - presentations~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png pres_ex_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - pres_proposal: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: dif/presentation-exchange/submission@v1.0 - proposals~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - pres_request: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: dif/presentation-exchange/submission@v1.0 - request_presentations~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - will_confirm: true role: prover state: proposal-sent thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 @@ -37290,77 +27283,7 @@ service: created_at: '2021-12-31 23:59:59+00:00' error_msg: Invalid structure initiator: self - pres: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: dif/presentation-exchange/submission@v1.0 - presentations~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png pres_ex_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - pres_proposal: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: dif/presentation-exchange/submission@v1.0 - proposals~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - pres_request: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: dif/presentation-exchange/submission@v1.0 - request_presentations~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - will_confirm: true role: prover state: proposal-sent thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 @@ -37391,81 +27314,11 @@ service: body: auto_present: false auto_verify: true - connection_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - created_at: '2021-12-31 23:59:59+00:00' - error_msg: Invalid structure - initiator: self - pres: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: dif/presentation-exchange/submission@v1.0 - presentations~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png + connection_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 + created_at: '2021-12-31 23:59:59+00:00' + error_msg: Invalid structure + initiator: self pres_ex_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - pres_proposal: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: dif/presentation-exchange/submission@v1.0 - proposals~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - pres_request: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: dif/presentation-exchange/submission@v1.0 - request_presentations~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - will_confirm: true role: prover state: proposal-sent thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 @@ -37513,28 +27366,7 @@ service: auto_present: true comment: comment connection_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - presentation_proposal: - indy: - name: Proof request - nonce: '1' - requested_attributes: - key: - name: favouriteDrink - names: - - age - - age - restrictions: - - key: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - - key: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - requested_predicates: - key: - name: index - p_type: '>=' - p_value: 0 - restrictions: - - key: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - - key: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - version: '1.0' + presentation_proposal: {} trace: false response: body: @@ -37544,77 +27376,7 @@ service: created_at: '2021-12-31 23:59:59+00:00' error_msg: Invalid structure initiator: self - pres: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: dif/presentation-exchange/submission@v1.0 - presentations~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png pres_ex_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - pres_proposal: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: dif/presentation-exchange/submission@v1.0 - proposals~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - pres_request: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: dif/presentation-exchange/submission@v1.0 - request_presentations~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - will_confirm: true role: prover state: proposal-sent thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 @@ -37659,28 +27421,7 @@ service: auto_verify: false comment: comment connection_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - presentation_request: - indy: - name: Proof request - nonce: '1' - requested_attributes: - key: - name: favouriteDrink - names: - - age - - age - restrictions: - - key: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - - key: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - requested_predicates: - key: - name: index - p_type: '>=' - p_value: 0 - restrictions: - - key: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - - key: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - version: '1.0' + presentation_request: {} trace: false response: body: @@ -37690,77 +27431,7 @@ service: created_at: '2021-12-31 23:59:59+00:00' error_msg: Invalid structure initiator: self - pres: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: dif/presentation-exchange/submission@v1.0 - presentations~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png pres_ex_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - pres_proposal: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: dif/presentation-exchange/submission@v1.0 - proposals~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - pres_request: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: dif/presentation-exchange/submission@v1.0 - request_presentations~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - will_confirm: true role: prover state: proposal-sent thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 @@ -37974,24 +27645,6 @@ docs: did resolver interface. ], "record_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "revoc_def_type": "CL_ACCUM", - "revoc_reg_def": { - "credDefId": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "id": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "revocDefType": "CL_ACCUM", - "tag": "tag", - "value": { - "maxCredNum": 10, - "tailsHash": "H3C2AVvLMv6gmMNam3uVAjZpfkcJCwDwnZn6z3wXmqPV", - }, - "ver": "1.0", - }, - "revoc_reg_entry": { - "value": { - "accum": "21 11792B036AED0AAA12A4 4 298B2571FFC63A737", - "prevAccum": "21 137AC810975E4 6 76F0384B6F23", - }, - "ver": "1.0", - }, "revoc_reg_id": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", "state": "active", "tag": "tag", @@ -38161,24 +27814,6 @@ docs: did resolver interface. ], "record_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "revoc_def_type": "CL_ACCUM", - "revoc_reg_def": { - "credDefId": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "id": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "revocDefType": "CL_ACCUM", - "tag": "tag", - "value": { - "maxCredNum": 10, - "tailsHash": "H3C2AVvLMv6gmMNam3uVAjZpfkcJCwDwnZn6z3wXmqPV", - }, - "ver": "1.0", - }, - "revoc_reg_entry": { - "value": { - "accum": "21 11792B036AED0AAA12A4 4 298B2571FFC63A737", - "prevAccum": "21 137AC810975E4 6 76F0384B6F23", - }, - "ver": "1.0", - }, "revoc_reg_id": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", "state": "active", "tag": "tag", @@ -38466,24 +28101,6 @@ docs: did resolver interface. ], "record_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "revoc_def_type": "CL_ACCUM", - "revoc_reg_def": { - "credDefId": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "id": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "revocDefType": "CL_ACCUM", - "tag": "tag", - "value": { - "maxCredNum": 10, - "tailsHash": "H3C2AVvLMv6gmMNam3uVAjZpfkcJCwDwnZn6z3wXmqPV", - }, - "ver": "1.0", - }, - "revoc_reg_entry": { - "value": { - "accum": "21 11792B036AED0AAA12A4 4 298B2571FFC63A737", - "prevAccum": "21 137AC810975E4 6 76F0384B6F23", - }, - "ver": "1.0", - }, "revoc_reg_id": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", "state": "active", "tag": "tag", @@ -38537,14 +28154,6 @@ docs: did resolver interface. ], "record_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "revoc_def_type": "CL_ACCUM", - "revoc_reg_def": { - "credDefId": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "id": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "ver": "1.0", - }, - "revoc_reg_entry": { - "ver": "1.0", - }, "revoc_reg_id": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", "state": "active", "tag": "tag", @@ -38554,39 +28163,6 @@ docs: did resolver interface. "updated_at": "2021-12-31 23:59:59+00:00", }, }, - "txn": { - "_type": "101", - "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "created_at": "2021-12-31 23:59:59+00:00", - "endorser_write_txn": true, - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "dif/endorse-transaction/request@v1.0", - }, - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "dif/endorse-transaction/request@v1.0", - }, - ], - "messages_attach": [ - {}, - {}, - ], - "signature_request": [ - {}, - {}, - ], - "signature_response": [ - {}, - {}, - ], - "state": "active", - "thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "trace": true, - "transaction_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "updated_at": "2021-12-31 23:59:59+00:00", - }, }, }, }, @@ -38644,24 +28220,6 @@ docs: did resolver interface. ], "record_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "revoc_def_type": "CL_ACCUM", - "revoc_reg_def": { - "credDefId": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "id": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "revocDefType": "CL_ACCUM", - "tag": "tag", - "value": { - "maxCredNum": 10, - "tailsHash": "H3C2AVvLMv6gmMNam3uVAjZpfkcJCwDwnZn6z3wXmqPV", - }, - "ver": "1.0", - }, - "revoc_reg_entry": { - "value": { - "accum": "21 11792B036AED0AAA12A4 4 298B2571FFC63A737", - "prevAccum": "21 137AC810975E4 6 76F0384B6F23", - }, - "ver": "1.0", - }, "revoc_reg_id": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", "state": "active", "tag": "tag", @@ -38728,39 +28286,6 @@ docs: did resolver interface. ], }, }, - "txn": { - "_type": "101", - "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "created_at": "2021-12-31 23:59:59+00:00", - "endorser_write_txn": true, - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "dif/endorse-transaction/request@v1.0", - }, - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "dif/endorse-transaction/request@v1.0", - }, - ], - "messages_attach": [ - {}, - {}, - ], - "signature_request": [ - {}, - {}, - ], - "signature_response": [ - {}, - {}, - ], - "state": "active", - "thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "trace": true, - "transaction_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "updated_at": "2021-12-31 23:59:59+00:00", - }, }, }, }, @@ -38914,24 +28439,6 @@ docs: did resolver interface. ], "record_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "revoc_def_type": "CL_ACCUM", - "revoc_reg_def": { - "credDefId": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "id": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "revocDefType": "CL_ACCUM", - "tag": "tag", - "value": { - "maxCredNum": 10, - "tailsHash": "H3C2AVvLMv6gmMNam3uVAjZpfkcJCwDwnZn6z3wXmqPV", - }, - "ver": "1.0", - }, - "revoc_reg_entry": { - "value": { - "accum": "21 11792B036AED0AAA12A4 4 298B2571FFC63A737", - "prevAccum": "21 137AC810975E4 6 76F0384B6F23", - }, - "ver": "1.0", - }, "revoc_reg_id": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", "state": "active", "tag": "tag", @@ -39039,24 +28546,6 @@ docs: did resolver interface. ], "record_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "revoc_def_type": "CL_ACCUM", - "revoc_reg_def": { - "credDefId": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "id": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "revocDefType": "CL_ACCUM", - "tag": "tag", - "value": { - "maxCredNum": 10, - "tailsHash": "H3C2AVvLMv6gmMNam3uVAjZpfkcJCwDwnZn6z3wXmqPV", - }, - "ver": "1.0", - }, - "revoc_reg_entry": { - "value": { - "accum": "21 11792B036AED0AAA12A4 4 298B2571FFC63A737", - "prevAccum": "21 137AC810975E4 6 76F0384B6F23", - }, - "ver": "1.0", - }, "revoc_reg_id": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", "state": "active", "tag": "tag", @@ -39212,21 +28701,6 @@ service: - '23' record_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 revoc_def_type: CL_ACCUM - revoc_reg_def: - credDefId: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - id: >- - WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0 - revocDefType: CL_ACCUM - tag: tag - value: - maxCredNum: 10 - tailsHash: H3C2AVvLMv6gmMNam3uVAjZpfkcJCwDwnZn6z3wXmqPV - ver: '1.0' - revoc_reg_entry: - value: - accum: 21 11792B036AED0AAA12A4 4 298B2571FFC63A737 - prevAccum: 21 137AC810975E4 6 76F0384B6F23 - ver: '1.0' revoc_reg_id: >- WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0 state: active @@ -39312,21 +28786,6 @@ service: - '23' record_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 revoc_def_type: CL_ACCUM - revoc_reg_def: - credDefId: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - id: >- - WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0 - revocDefType: CL_ACCUM - tag: tag - value: - maxCredNum: 10 - tailsHash: H3C2AVvLMv6gmMNam3uVAjZpfkcJCwDwnZn6z3wXmqPV - ver: '1.0' - revoc_reg_entry: - value: - accum: 21 11792B036AED0AAA12A4 4 298B2571FFC63A737 - prevAccum: 21 137AC810975E4 6 76F0384B6F23 - ver: '1.0' revoc_reg_id: >- WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0 state: active @@ -39406,30 +28865,6 @@ service: key: - '12345' - '12345' - txn: - _type: '101' - connection_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - created_at: '2021-12-31 23:59:59+00:00' - endorser_write_txn: true - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: dif/endorse-transaction/request@v1.0 - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: dif/endorse-transaction/request@v1.0 - messages_attach: - - {} - - {} - signature_request: - - {} - - {} - signature_response: - - {} - - {} - state: active - thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - trace: true - transaction_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - updated_at: '2021-12-31 23:59:59+00:00' get_created_registries: path: /revocation/registries/created method: GET @@ -39519,21 +28954,6 @@ service: - '23' record_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 revoc_def_type: CL_ACCUM - revoc_reg_def: - credDefId: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - id: >- - WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0 - revocDefType: CL_ACCUM - tag: tag - value: - maxCredNum: 10 - tailsHash: H3C2AVvLMv6gmMNam3uVAjZpfkcJCwDwnZn6z3wXmqPV - ver: '1.0' - revoc_reg_entry: - value: - accum: 21 11792B036AED0AAA12A4 4 298B2571FFC63A737 - prevAccum: 21 137AC810975E4 6 76F0384B6F23 - ver: '1.0' revoc_reg_id: >- WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0 state: active @@ -39583,21 +29003,6 @@ service: - '23' record_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 revoc_def_type: CL_ACCUM - revoc_reg_def: - credDefId: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - id: >- - WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0 - revocDefType: CL_ACCUM - tag: tag - value: - maxCredNum: 10 - tailsHash: H3C2AVvLMv6gmMNam3uVAjZpfkcJCwDwnZn6z3wXmqPV - ver: '1.0' - revoc_reg_entry: - value: - accum: 21 11792B036AED0AAA12A4 4 298B2571FFC63A737 - prevAccum: 21 137AC810975E4 6 76F0384B6F23 - ver: '1.0' revoc_reg_id: >- WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0 state: active @@ -39646,13 +29051,6 @@ service: - '23' record_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 revoc_def_type: CL_ACCUM - revoc_reg_def: - credDefId: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - id: >- - WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0 - ver: '1.0' - revoc_reg_entry: - ver: '1.0' revoc_reg_id: >- WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0 state: active @@ -39661,30 +29059,6 @@ service: tails_local_path: tails_local_path tails_public_uri: tails_public_uri updated_at: '2021-12-31 23:59:59+00:00' - txn: - _type: '101' - connection_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - created_at: '2021-12-31 23:59:59+00:00' - endorser_write_txn: true - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: dif/endorse-transaction/request@v1.0 - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: dif/endorse-transaction/request@v1.0 - messages_attach: - - {} - - {} - signature_request: - - {} - - {} - signature_response: - - {} - - {} - state: active - thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - trace: true - transaction_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - updated_at: '2021-12-31 23:59:59+00:00' publish_revocation_registry_entry: path: /revocation/registry/{rev_reg_id}/entry method: POST @@ -39724,21 +29098,6 @@ service: - '23' record_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 revoc_def_type: CL_ACCUM - revoc_reg_def: - credDefId: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - id: >- - WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0 - revocDefType: CL_ACCUM - tag: tag - value: - maxCredNum: 10 - tailsHash: H3C2AVvLMv6gmMNam3uVAjZpfkcJCwDwnZn6z3wXmqPV - ver: '1.0' - revoc_reg_entry: - value: - accum: 21 11792B036AED0AAA12A4 4 298B2571FFC63A737 - prevAccum: 21 137AC810975E4 6 76F0384B6F23 - ver: '1.0' revoc_reg_id: >- WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0 state: active @@ -39891,21 +29250,6 @@ service: - '23' record_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 revoc_def_type: CL_ACCUM - revoc_reg_def: - credDefId: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - id: >- - WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0 - revocDefType: CL_ACCUM - tag: tag - value: - maxCredNum: 10 - tailsHash: H3C2AVvLMv6gmMNam3uVAjZpfkcJCwDwnZn6z3wXmqPV - ver: '1.0' - revoc_reg_entry: - value: - accum: 21 11792B036AED0AAA12A4 4 298B2571FFC63A737 - prevAccum: 21 137AC810975E4 6 76F0384B6F23 - ver: '1.0' revoc_reg_id: >- WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0 state: active @@ -40206,55 +29550,7 @@ types: "schema_version": "1.0", }, "response": { - "body": { - "sent": { - "schema": { - "attrNames": [ - "score", - "score", - ], - "id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "name": "schema_name", - "seqNo": 10, - "ver": "1.0", - "version": "1.0", - }, - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - }, - "txn": { - "_type": "101", - "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "created_at": "2021-12-31 23:59:59+00:00", - "endorser_write_txn": true, - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "dif/endorse-transaction/request@v1.0", - }, - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "dif/endorse-transaction/request@v1.0", - }, - ], - "messages_attach": [ - {}, - {}, - ], - "signature_request": [ - {}, - {}, - ], - "signature_response": [ - {}, - {}, - ], - "state": "active", - "thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "trace": true, - "transaction_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "updated_at": "2021-12-31 23:59:59+00:00", - }, - }, + "body": {}, }, }, ], @@ -40403,42 +29699,7 @@ service: schema_name: prefs schema_version: '1.0' response: - body: - sent: - schema: - attrNames: - - score - - score - id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 - name: schema_name - seqNo: 10 - ver: '1.0' - version: '1.0' - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 - txn: - _type: '101' - connection_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - created_at: '2021-12-31 23:59:59+00:00' - endorser_write_txn: true - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: dif/endorse-transaction/request@v1.0 - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: dif/endorse-transaction/request@v1.0 - messages_attach: - - {} - - {} - signature_request: - - {} - - {} - signature_response: - - {} - - {} - state: active - thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - trace: true - transaction_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - updated_at: '2021-12-31 23:59:59+00:00' + body: {} get_matching_created_schemas: path: /schemas/created method: GET diff --git a/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi-docs/belvo.json b/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi-docs/belvo.json index 9da54d6be79..f53e5699ea0 100644 --- a/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi-docs/belvo.json +++ b/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi-docs/belvo.json @@ -29401,7 +29401,6 @@ client.connect() "current": 4523.48, }, "balance_type": "ASSET", - "bank_product_id": "bank_product_id", "category": "CHECKING_ACCOUNT", "collected_at": "2022-02-09T08:45:50Z", "created_at": "2022-02-09T08:46:20Z", @@ -29418,27 +29417,11 @@ client.connect() "no_interest_payment": 2690.83, }, "currency": "MXN", - "funds_data": [ - { - "balance": 88427.94, - "collected_at": "2020-04-23T21:32:55Z", - "name": "FIX X", - "percentage": 100, - "public_identifications": [ - { - "name": "CNPJ", - "value": "05.954.445/0221-68", - }, - ], - "type": "CNPJ", - }, - ], "id": "c21f3914-bcbe-44c4-a2e8-a5e33f6888d4", "institution": { "name": "erebor_mx_retail", "type": "bank", }, - "internal_identification": "internal_identification", "last_accessed_at": "2022-02-01T20:25:47Z", "link": "57f212dc-1ba4-407f-b7f0-15a5e5ff17ae", "loan_data": { @@ -29579,7 +29562,6 @@ client.connect() "current": 4049.85, }, "balance_type": "LIABILITY", - "bank_product_id": "bank_product_id", "category": "CREDIT_CARD", "collected_at": "2022-02-09T08:45:50Z", "created_at": "2022-02-09T08:46:20Z", @@ -29589,34 +29571,16 @@ client.connect() "cutting_date": "2021-04-11", "end_date": "end_date", "interest_rate": 4, - "last_payment_date": "last_payment_date", "minimum_payment": 690, - "monthly_payment": 1.1, "next_payment_date": "2021-03-31", "no_interest_payment": 11550.15, }, "currency": "MXN", - "funds_data": [ - { - "balance": 88427.94, - "collected_at": "2020-04-23T21:32:55Z", - "name": "FIX X", - "percentage": 100, - "public_identifications": [ - { - "name": "CNPJ", - "value": "05.954.445/0221-68", - }, - ], - "type": "CNPJ", - }, - ], "id": "0f82c5db-13a2-43c7-a69a-e036160aba3a", "institution": { "name": "erebor_mx_retail", "type": "bank", }, - "internal_identification": "internal_identification", "last_accessed_at": "2022-02-01T20:25:47Z", "link": "57f212dc-1ba4-407f-b7f0-15a5e5ff17ae", "loan_data": { @@ -29757,7 +29721,6 @@ client.connect() "current": 34708.36, }, "balance_type": "LIABILITY", - "bank_product_id": "bank_product_id", "category": "LOAN_ACCOUNT", "collected_at": "2022-02-09T08:45:50Z", "created_at": "2022-02-09T08:46:20Z", @@ -29774,27 +29737,11 @@ client.connect() "no_interest_payment": 2690.83, }, "currency": "MXN", - "funds_data": [ - { - "balance": 88427.94, - "collected_at": "2020-04-23T21:32:55Z", - "name": "FIX X", - "percentage": 100, - "public_identifications": [ - { - "name": "CNPJ", - "value": "05.954.445/0221-68", - }, - ], - "type": "CNPJ", - }, - ], "id": "0f82c5db-13a2-43c7-a69a-e036160aba3a", "institution": { "name": "erebor_mx_retail", "type": "bank", }, - "internal_identification": "internal_identification", "last_accessed_at": "2022-02-01T20:25:47Z", "link": "57f212dc-1ba4-407f-b7f0-15a5e5ff17ae", "loan_data": { @@ -29936,7 +29883,6 @@ client.connect() "current": 26305.33, }, "balance_type": "ASSET", - "bank_product_id": "bank_product_id", "category": "PENSION_FUND_ACCOUNT", "collected_at": "2022-02-09T08:45:50Z", "created_at": "2022-02-09T08:46:20Z", @@ -29994,7 +29940,6 @@ client.connect() "name": "erebor_br_retail", "type": "bank", }, - "internal_identification": "internal_identification", "last_accessed_at": "2021-03-09T08:19:05Z", "link": "fbbb5ea7-4605-437f-b5c5-667fd037a303", "loan_data": { @@ -30135,7 +30080,6 @@ client.connect() "current": 4978436.05, }, "balance_type": "ASSET", - "bank_product_id": "bank_product_id", "category": "SAVINGS_ACCOUNT", "collected_at": "2022-02-09T08:45:50Z", "created_at": "2022-02-09T08:46:20Z", @@ -30152,27 +30096,11 @@ client.connect() "no_interest_payment": 2690.83, }, "currency": "COP", - "funds_data": [ - { - "balance": 88427.94, - "collected_at": "2020-04-23T21:32:55Z", - "name": "FIX X", - "percentage": 100, - "public_identifications": [ - { - "name": "CNPJ", - "value": "05.954.445/0221-68", - }, - ], - "type": "CNPJ", - }, - ], "id": "3d5b0f90-90df-455d-a647-5b74feb746f6", "institution": { "name": "erebor_co_retail", "type": "bank", }, - "internal_identification": "internal_identification", "last_accessed_at": "2021-03-09T10:28:40Z", "link": "fbbb5ea7-4605-437f-b5c5-667fd037a303", "loan_data": { @@ -30761,7 +30689,6 @@ client.connect() "current": 4523.48, }, "balance_type": "ASSET", - "bank_product_id": "bank_product_id", "category": "CHECKING_ACCOUNT", "collected_at": "2022-02-09T08:45:50Z", "created_at": "2022-02-09T08:46:20Z", @@ -30778,17 +30705,11 @@ client.connect() "no_interest_payment": 2690.83, }, "currency": "MXN", - "funds_data": [ - { - "collected_at": "2020-04-23T21:32:55Z", - }, - ], "id": "c21f3914-bcbe-44c4-a2e8-a5e33f6888d4", "institution": { "name": "erebor_mx_retail", "type": "bank", }, - "internal_identification": "internal_identification", "last_accessed_at": "2022-02-01T20:25:47Z", "link": "57f212dc-1ba4-407f-b7f0-15a5e5ff17ae", "loan_data": { @@ -30949,7 +30870,6 @@ client.connect() "current": 4049.85, }, "balance_type": "LIABILITY", - "bank_product_id": "bank_product_id", "category": "CREDIT_CARD", "collected_at": "2022-02-09T08:45:50Z", "created_at": "2022-02-09T08:46:20Z", @@ -30959,24 +30879,16 @@ client.connect() "cutting_date": "2021-04-11", "end_date": "end_date", "interest_rate": 4, - "last_payment_date": "last_payment_date", "minimum_payment": 690, - "monthly_payment": 1.1, "next_payment_date": "2021-03-31", "no_interest_payment": 11550.15, }, "currency": "MXN", - "funds_data": [ - { - "collected_at": "2020-04-23T21:32:55Z", - }, - ], "id": "0f82c5db-13a2-43c7-a69a-e036160aba3a", "institution": { "name": "erebor_mx_retail", "type": "bank", }, - "internal_identification": "internal_identification", "last_accessed_at": "2022-02-01T20:25:47Z", "link": "57f212dc-1ba4-407f-b7f0-15a5e5ff17ae", "loan_data": { @@ -31137,7 +31049,6 @@ client.connect() "current": 34708.36, }, "balance_type": "LIABILITY", - "bank_product_id": "bank_product_id", "category": "LOAN_ACCOUNT", "collected_at": "2022-02-09T08:45:50Z", "created_at": "2022-02-09T08:46:20Z", @@ -31154,17 +31065,11 @@ client.connect() "no_interest_payment": 2690.83, }, "currency": "MXN", - "funds_data": [ - { - "collected_at": "2020-04-23T21:32:55Z", - }, - ], "id": "0f82c5db-13a2-43c7-a69a-e036160aba3a", "institution": { "name": "erebor_mx_retail", "type": "bank", }, - "internal_identification": "internal_identification", "last_accessed_at": "2022-02-01T20:25:47Z", "link": "57f212dc-1ba4-407f-b7f0-15a5e5ff17ae", "loan_data": { @@ -31326,7 +31231,6 @@ client.connect() "current": 26305.33, }, "balance_type": "ASSET", - "bank_product_id": "bank_product_id", "category": "PENSION_FUND_ACCOUNT", "collected_at": "2022-02-09T08:45:50Z", "created_at": "2022-02-09T08:46:20Z", @@ -31384,7 +31288,6 @@ client.connect() "name": "erebor_br_retail", "type": "bank", }, - "internal_identification": "internal_identification", "last_accessed_at": "2021-03-09T08:19:05Z", "link": "fbbb5ea7-4605-437f-b5c5-667fd037a303", "loan_data": { @@ -31545,7 +31448,6 @@ client.connect() "current": 4978436.05, }, "balance_type": "ASSET", - "bank_product_id": "bank_product_id", "category": "SAVINGS_ACCOUNT", "collected_at": "2022-02-09T08:45:50Z", "created_at": "2022-02-09T08:46:20Z", @@ -31562,17 +31464,11 @@ client.connect() "no_interest_payment": 2690.83, }, "currency": "COP", - "funds_data": [ - { - "collected_at": "2020-04-23T21:32:55Z", - }, - ], "id": "3d5b0f90-90df-455d-a647-5b74feb746f6", "institution": { "name": "erebor_co_retail", "type": "bank", }, - "internal_identification": "internal_identification", "last_accessed_at": "2021-03-09T10:28:40Z", "link": "fbbb5ea7-4605-437f-b5c5-667fd037a303", "loan_data": { @@ -31777,7 +31673,6 @@ client.connect() "current": 4523.48, }, "balance_type": "ASSET", - "bank_product_id": "bank_product_id", "category": "CHECKING_ACCOUNT", "collected_at": "2022-02-09T08:45:50Z", "created_at": "2022-02-09T08:46:20Z", @@ -31794,17 +31689,11 @@ client.connect() "no_interest_payment": 2690.83, }, "currency": "MXN", - "funds_data": [ - { - "collected_at": "2020-04-23T21:32:55Z", - }, - ], "id": "c21f3914-bcbe-44c4-a2e8-a5e33f6888d4", "institution": { "name": "erebor_mx_retail", "type": "bank", }, - "internal_identification": "internal_identification", "last_accessed_at": "2022-02-01T20:25:47Z", "link": "57f212dc-1ba4-407f-b7f0-15a5e5ff17ae", "loan_data": { @@ -31956,7 +31845,6 @@ client.connect() "current": 4049.85, }, "balance_type": "LIABILITY", - "bank_product_id": "bank_product_id", "category": "CREDIT_CARD", "collected_at": "2022-02-09T08:45:50Z", "created_at": "2022-02-09T08:46:20Z", @@ -31966,24 +31854,16 @@ client.connect() "cutting_date": "2021-04-11", "end_date": "end_date", "interest_rate": 4, - "last_payment_date": "last_payment_date", "minimum_payment": 690, - "monthly_payment": 1.1, "next_payment_date": "2021-03-31", "no_interest_payment": 11550.15, }, "currency": "MXN", - "funds_data": [ - { - "collected_at": "2020-04-23T21:32:55Z", - }, - ], "id": "0f82c5db-13a2-43c7-a69a-e036160aba3a", "institution": { "name": "erebor_mx_retail", "type": "bank", }, - "internal_identification": "internal_identification", "last_accessed_at": "2022-02-01T20:25:47Z", "link": "57f212dc-1ba4-407f-b7f0-15a5e5ff17ae", "loan_data": { @@ -32135,7 +32015,6 @@ client.connect() "current": 34708.36, }, "balance_type": "LIABILITY", - "bank_product_id": "bank_product_id", "category": "LOAN_ACCOUNT", "collected_at": "2022-02-09T08:45:50Z", "created_at": "2022-02-09T08:46:20Z", @@ -32152,17 +32031,11 @@ client.connect() "no_interest_payment": 2690.83, }, "currency": "MXN", - "funds_data": [ - { - "collected_at": "2020-04-23T21:32:55Z", - }, - ], "id": "0f82c5db-13a2-43c7-a69a-e036160aba3a", "institution": { "name": "erebor_mx_retail", "type": "bank", }, - "internal_identification": "internal_identification", "last_accessed_at": "2022-02-01T20:25:47Z", "link": "57f212dc-1ba4-407f-b7f0-15a5e5ff17ae", "loan_data": { @@ -32315,7 +32188,6 @@ client.connect() "current": 26305.33, }, "balance_type": "ASSET", - "bank_product_id": "bank_product_id", "category": "PENSION_FUND_ACCOUNT", "collected_at": "2022-02-09T08:45:50Z", "created_at": "2022-02-09T08:46:20Z", @@ -32373,7 +32245,6 @@ client.connect() "name": "erebor_br_retail", "type": "bank", }, - "internal_identification": "internal_identification", "last_accessed_at": "2021-03-09T08:19:05Z", "link": "fbbb5ea7-4605-437f-b5c5-667fd037a303", "loan_data": { @@ -32525,7 +32396,6 @@ client.connect() "current": 4978436.05, }, "balance_type": "ASSET", - "bank_product_id": "bank_product_id", "category": "SAVINGS_ACCOUNT", "collected_at": "2022-02-09T08:45:50Z", "created_at": "2022-02-09T08:46:20Z", @@ -32542,17 +32412,11 @@ client.connect() "no_interest_payment": 2690.83, }, "currency": "COP", - "funds_data": [ - { - "collected_at": "2020-04-23T21:32:55Z", - }, - ], "id": "3d5b0f90-90df-455d-a647-5b74feb746f6", "institution": { "name": "erebor_co_retail", "type": "bank", }, - "internal_identification": "internal_identification", "last_accessed_at": "2021-03-09T10:28:40Z", "link": "fbbb5ea7-4605-437f-b5c5-667fd037a303", "loan_data": { @@ -33133,15 +32997,11 @@ service: cutting_date: cutting_date last_payment_date: last_payment_date no_interest_payment: 1.1 - funds_data: - - collected_at: '2020-04-23T21:32:55Z' receivables_data: current: 2193.83 available: 800.37 anticipated: 1393.46 collected_at: '2022-02-09T08:45:50Z' - bank_product_id: bank_product_id - internal_identification: internal_identification code-samples: - language: cURL code: | @@ -33249,8 +33109,6 @@ service: no_interest_payment: 11550.15 interest_rate: 4 end_date: end_date - monthly_payment: 1.1 - last_payment_date: last_payment_date loan_data: collected_at: '2022-02-09T08:45:50Z' contract_amount: 202000 @@ -33279,15 +33137,11 @@ service: cutting_date: cutting_date last_payment_date: last_payment_date no_interest_payment: 1.1 - funds_data: - - collected_at: '2020-04-23T21:32:55Z' receivables_data: current: 2193.83 available: 800.37 anticipated: 1393.46 collected_at: '2022-02-09T08:45:50Z' - bank_product_id: bank_product_id - internal_identification: internal_identification code-samples: - language: cURL code: | @@ -33426,15 +33280,11 @@ service: cutting_date: cutting_date last_payment_date: last_payment_date no_interest_payment: 1.1 - funds_data: - - collected_at: '2020-04-23T21:32:55Z' receivables_data: current: 2193.83 available: 800.37 anticipated: 1393.46 collected_at: '2022-02-09T08:45:50Z' - bank_product_id: bank_product_id - internal_identification: internal_identification code-samples: - language: cURL code: | @@ -33598,8 +33448,6 @@ service: available: 800.37 anticipated: 1393.46 collected_at: '2022-02-09T08:45:50Z' - bank_product_id: bank_product_id - internal_identification: internal_identification code-samples: - language: cURL code: | @@ -33737,15 +33585,11 @@ service: cutting_date: cutting_date last_payment_date: last_payment_date no_interest_payment: 1.1 - funds_data: - - collected_at: '2020-04-23T21:32:55Z' receivables_data: current: 2193.83 available: 800.37 anticipated: 1393.46 collected_at: '2022-02-09T08:45:50Z' - bank_product_id: bank_product_id - internal_identification: internal_identification code-samples: - language: cURL code: | @@ -33937,15 +33781,11 @@ service: cutting_date: cutting_date last_payment_date: last_payment_date no_interest_payment: 1.1 - funds_data: - - collected_at: '2020-04-23T21:32:55Z' receivables_data: current: 2193.83 available: 800.37 anticipated: 1393.46 collected_at: '2022-02-09T08:45:50Z' - bank_product_id: bank_product_id - internal_identification: internal_identification code-samples: - language: cURL code: | @@ -34062,8 +33902,6 @@ service: no_interest_payment: 11550.15 interest_rate: 4 end_date: end_date - monthly_payment: 1.1 - last_payment_date: last_payment_date loan_data: collected_at: '2022-02-09T08:45:50Z' contract_amount: 202000 @@ -34092,15 +33930,11 @@ service: cutting_date: cutting_date last_payment_date: last_payment_date no_interest_payment: 1.1 - funds_data: - - collected_at: '2020-04-23T21:32:55Z' receivables_data: current: 2193.83 available: 800.37 anticipated: 1393.46 collected_at: '2022-02-09T08:45:50Z' - bank_product_id: bank_product_id - internal_identification: internal_identification code-samples: - language: cURL code: | @@ -34248,15 +34082,11 @@ service: cutting_date: cutting_date last_payment_date: last_payment_date no_interest_payment: 1.1 - funds_data: - - collected_at: '2020-04-23T21:32:55Z' receivables_data: current: 2193.83 available: 800.37 anticipated: 1393.46 collected_at: '2022-02-09T08:45:50Z' - bank_product_id: bank_product_id - internal_identification: internal_identification code-samples: - language: cURL code: | @@ -34429,8 +34259,6 @@ service: available: 800.37 anticipated: 1393.46 collected_at: '2022-02-09T08:45:50Z' - bank_product_id: bank_product_id - internal_identification: internal_identification code-samples: - language: cURL code: | @@ -34577,15 +34405,11 @@ service: cutting_date: cutting_date last_payment_date: last_payment_date no_interest_payment: 1.1 - funds_data: - - collected_at: '2020-04-23T21:32:55Z' receivables_data: current: 2193.83 available: 800.37 anticipated: 1393.46 collected_at: '2022-02-09T08:45:50Z' - bank_product_id: bank_product_id - internal_identification: internal_identification code-samples: - language: cURL code: | @@ -34782,22 +34606,11 @@ service: cutting_date: cutting_date last_payment_date: last_payment_date no_interest_payment: 1.1 - funds_data: - - collected_at: '2020-04-23T21:32:55Z' - name: FIX X - type: CNPJ - public_identifications: - - name: CNPJ - value: 05.954.445/0221-68 - balance: 88427.94 - percentage: 100 receivables_data: current: 2193.83 available: 800.37 anticipated: 1393.46 collected_at: '2022-02-09T08:45:50Z' - bank_product_id: bank_product_id - internal_identification: internal_identification code-samples: - language: cURL code: | @@ -34896,8 +34709,6 @@ service: no_interest_payment: 11550.15 interest_rate: 4 end_date: end_date - monthly_payment: 1.1 - last_payment_date: last_payment_date loan_data: collected_at: '2022-02-09T08:45:50Z' contract_amount: 202000 @@ -34926,22 +34737,11 @@ service: cutting_date: cutting_date last_payment_date: last_payment_date no_interest_payment: 1.1 - funds_data: - - collected_at: '2020-04-23T21:32:55Z' - name: FIX X - type: CNPJ - public_identifications: - - name: CNPJ - value: 05.954.445/0221-68 - balance: 88427.94 - percentage: 100 receivables_data: current: 2193.83 available: 800.37 anticipated: 1393.46 collected_at: '2022-02-09T08:45:50Z' - bank_product_id: bank_product_id - internal_identification: internal_identification code-samples: - language: cURL code: | @@ -35071,22 +34871,11 @@ service: cutting_date: cutting_date last_payment_date: last_payment_date no_interest_payment: 1.1 - funds_data: - - collected_at: '2020-04-23T21:32:55Z' - name: FIX X - type: CNPJ - public_identifications: - - name: CNPJ - value: 05.954.445/0221-68 - balance: 88427.94 - percentage: 100 receivables_data: current: 2193.83 available: 800.37 anticipated: 1393.46 collected_at: '2022-02-09T08:45:50Z' - bank_product_id: bank_product_id - internal_identification: internal_identification code-samples: - language: cURL code: | @@ -35241,8 +35030,6 @@ service: available: 800.37 anticipated: 1393.46 collected_at: '2022-02-09T08:45:50Z' - bank_product_id: bank_product_id - internal_identification: internal_identification code-samples: - language: cURL code: | @@ -35371,22 +35158,11 @@ service: cutting_date: cutting_date last_payment_date: last_payment_date no_interest_payment: 1.1 - funds_data: - - collected_at: '2020-04-23T21:32:55Z' - name: FIX X - type: CNPJ - public_identifications: - - name: CNPJ - value: 05.954.445/0221-68 - balance: 88427.94 - percentage: 100 receivables_data: current: 2193.83 available: 800.37 anticipated: 1393.46 collected_at: '2022-02-09T08:45:50Z' - bank_product_id: bank_product_id - internal_identification: internal_identification code-samples: - language: cURL code: | @@ -35974,7 +35750,6 @@ client.connect() "current": 146.81, }, "balance_type": "ASSET", - "bank_product_id": "bank_product_id", "category": "CHECKING_ACCOUNT", "collected_at": "2022-06-17T03:20:41Z", "created_at": "2021-10-27T16:18:15Z", @@ -36055,7 +35830,6 @@ client.connect() "collected_at": "2022-04-06T23:30:51Z", "current_balance": 4.25, "id": "b834e69b-1aa4-465d-969c-07c886a4fbed", - "statement": "statement", "value_date": "2022-04-04", }, }, @@ -36210,7 +35984,6 @@ client.connect() "body": { "count": 385, "next": "https://sandbox.belvo.com/api/balances/?page=2", - "previous": "previous", "results": [ { "account": { @@ -36248,7 +36021,6 @@ client.connect() "collected_at": "2022-04-06T23:30:51Z", "current_balance": 4.25, "id": "b834e69b-1aa4-465d-969c-07c886a4fbed", - "statement": "statement", "value_date": "2022-04-04", }, ], @@ -36533,7 +36305,6 @@ client.connect() "current": 146.81, }, "balance_type": "ASSET", - "bank_product_id": "bank_product_id", "category": "CHECKING_ACCOUNT", "collected_at": "2022-06-17T03:20:41Z", "created_at": "2021-10-27T16:18:15Z", @@ -36583,7 +36354,6 @@ client.connect() "collected_at": "2022-04-06T23:30:51Z", "current_balance": 4.25, "id": "b834e69b-1aa4-465d-969c-07c886a4fbed", - "statement": "statement", "value_date": "2022-04-04", }, ], @@ -36739,7 +36509,6 @@ client.connect() "current": 146.81, }, "balance_type": "ASSET", - "bank_product_id": "bank_product_id", "category": "CHECKING_ACCOUNT", "collected_at": "2022-06-17T03:20:41Z", "created_at": "2021-10-27T16:18:15Z", @@ -36789,7 +36558,6 @@ client.connect() "collected_at": "2022-04-06T23:30:51Z", "current_balance": 4.25, "id": "b834e69b-1aa4-465d-969c-07c886a4fbed", - "statement": "statement", "value_date": "2022-04-04", }, ], @@ -37086,7 +36854,6 @@ service: body: count: 385 next: https://sandbox.belvo.com/api/balances/?page=2 - previous: previous results: - id: b834e69b-1aa4-465d-969c-07c886a4fbed account: @@ -37119,7 +36886,6 @@ service: value_date: '2022-04-04' balance: 4.25 current_balance: 4.25 - statement: statement collected_at: '2022-04-06T23:30:51Z' code-samples: - language: cURL @@ -37324,12 +37090,10 @@ service: available: 800.37 anticipated: 1393.46 collected_at: '2022-02-09T08:45:50Z' - bank_product_id: bank_product_id internal_identification: 9fa5fab9-e2b7-4bd7-8413-71ed9bb94b4c value_date: '2022-04-04' balance: 4.25 current_balance: 4.25 - statement: statement collected_at: '2022-04-06T23:30:51Z' code-samples: - language: cURL @@ -37501,12 +37265,10 @@ service: available: 800.37 anticipated: 1393.46 collected_at: '2022-02-09T08:45:50Z' - bank_product_id: bank_product_id internal_identification: 9fa5fab9-e2b7-4bd7-8413-71ed9bb94b4c value_date: '2022-04-04' balance: 4.25 current_balance: 4.25 - statement: statement collected_at: '2022-04-06T23:30:51Z' code-samples: - language: cURL @@ -37698,12 +37460,10 @@ service: available: 800.37 anticipated: 1393.46 collected_at: '2022-02-09T08:45:50Z' - bank_product_id: bank_product_id internal_identification: 9fa5fab9-e2b7-4bd7-8413-71ed9bb94b4c value_date: '2022-04-04' balance: 4.25 current_balance: 4.25 - statement: statement collected_at: '2022-04-06T23:30:51Z' code-samples: - language: cURL @@ -38299,7 +38059,6 @@ docs: >- "body": { "count": 110, "next": "https://api.belvo.com/payments/{endpoint}/?page=2", - "previous": "previous", "results": [ { "created_at": "2023-02-15T07:52:31Z", @@ -38349,7 +38108,6 @@ docs: >- "body": { "count": 110, "next": "https://api.belvo.com/payments/{endpoint}/?page=2", - "previous": "previous", "results": [ { "created_at": "2023-02-15T07:52:31Z", @@ -38397,7 +38155,6 @@ docs: >- "body": { "count": 110, "next": "https://api.belvo.com/payments/{endpoint}/?page=2", - "previous": "previous", "results": [ { "created_at": "2023-02-15T07:52:31Z", @@ -38651,7 +38408,6 @@ service: body: count: 110 next: https://api.belvo.com/payments/{endpoint}/?page=2 - previous: previous results: - id: 90d90e38-0087-4b6d-b6dc-94ea561bb9cb created_at: '2023-02-15T07:52:31Z' @@ -38691,7 +38447,6 @@ service: body: count: 110 next: https://api.belvo.com/payments/{endpoint}/?page=2 - previous: previous results: - id: 7c2be016-37e3-44e2-8643-db2eb1129a3f created_at: '2023-02-15T07:52:31Z' @@ -38729,7 +38484,6 @@ service: body: count: 110 next: https://api.belvo.com/payments/{endpoint}/?page=2 - previous: previous results: - id: 7c2be016-37e3-44e2-8643-db2eb1129a3f created_at: '2023-02-15T07:52:31Z' @@ -39052,7 +38806,6 @@ types: "currency": "BRL", "description": "OXXO SP", "institution": "BCO DO BRASIL", - "mcc": 2345, "merchant": { "logo": "https://storage.googleapis.com/new-cdn.mercafacil.com/wl_assets/dynamic/65d84ba0-a2f3-11ed-8928-dd578f525074-MOBILE_1OCo1.png", "merchant_name": "Merchants R Us Global", @@ -39205,7 +38958,6 @@ service: amount: 999.9 currency: BRL institution: BCO DO BRASIL - mcc: 2345 category: Income & Payments subcategory: Freelance merchant: @@ -39463,7 +39215,6 @@ docs: >- "body": { "count": 110, "next": "https://api.belvo.com/payments/{endpoint}/?page=2", - "previous": "previous", "results": [ { "address": "Rua de Caetano Veloso 432, 70200 Brasilia", @@ -39513,7 +39264,6 @@ docs: >- "body": { "count": 110, "next": "https://api.belvo.com/payments/{endpoint}/?page=2", - "previous": "previous", "results": [ { "address": "Rua de Caetano Veloso 432, 70200 Brasilia", @@ -39563,7 +39313,6 @@ docs: >- "body": { "count": 110, "next": "https://api.belvo.com/payments/{endpoint}/?page=2", - "previous": "previous", "results": [ { "address": "Calle Carlos Vives 432, 80300 Bogota", @@ -39806,7 +39555,6 @@ service: body: count: 110 next: https://api.belvo.com/payments/{endpoint}/?page=2 - previous: previous results: - id: 7c2be016-37e3-44e2-8643-db2eb1129a3f created_at: '2022-02-09T08:45:50Z' @@ -39847,7 +39595,6 @@ service: body: count: 110 next: https://api.belvo.com/payments/{endpoint}/?page=2 - previous: previous results: - id: 7c2be016-37e3-44e2-8643-db2eb1129a3f created_at: '2022-02-09T08:45:50Z' @@ -39888,7 +39635,6 @@ service: body: count: 110 next: https://api.belvo.com/payments/{endpoint}/?page=2 - previous: previous results: - id: 7c2be016-37e3-44e2-8643-db2eb1129a3f created_at: '2022-02-09T08:45:50Z' @@ -45833,7 +45579,6 @@ client.connect() "invoice_identification": "862B9918-3K6H-4E0B-NAI9-2BE2D833B840", "invoice_type": "Pago", "link": "1bd948f7-245d-4313-b604-34d1044cb908", - "payment_method": "PUE", "payment_method_description": "payment_method_description", "payment_type": "99", "payment_type_description": "payment_type_description", @@ -46394,7 +46139,6 @@ client.connect() "invoice_identification": "862B9918-3K6H-4E0B-NAI9-2BE2D833B840", "invoice_type": "Traslado", "link": "1bd948f7-245d-4313-b604-34d1044cb908", - "payment_method": "PUE", "payment_method_description": "payment_method_description", "payment_type": "99", "payment_type_description": "payment_type_description", @@ -46611,7 +46355,6 @@ client.connect() "body": { "count": 110, "next": "https://sandbox.belvo.com/api/{endpoint}/?page=2", - "previous": "previous", "results": [ { "cancelation_status": "cancelation_status", @@ -46829,7 +46572,6 @@ client.connect() "body": { "count": 110, "next": "https://sandbox.belvo.com/api/{endpoint}/?page=2", - "previous": "previous", "results": [ { "cancelation_status": "cancelation_status", @@ -46869,7 +46611,6 @@ client.connect() "invoice_identification": "862B9918-3K6H-4E0B-NAI9-2BE2D833B840", "invoice_type": "Pago", "link": "1bd948f7-245d-4313-b604-34d1044cb908", - "payment_method": "PUE", "payment_method_description": "payment_method_description", "payment_type": "99", "payment_type_description": "payment_type_description", @@ -47048,7 +46789,6 @@ client.connect() "body": { "count": 110, "next": "https://sandbox.belvo.com/api/{endpoint}/?page=2", - "previous": "previous", "results": [ { "cancelation_status": "cancelation_status", @@ -47267,7 +47007,6 @@ client.connect() "body": { "count": 110, "next": "https://sandbox.belvo.com/api/{endpoint}/?page=2", - "previous": "previous", "results": [ { "cancelation_status": "cancelation_status", @@ -47485,7 +47224,6 @@ client.connect() "body": { "count": 110, "next": "https://sandbox.belvo.com/api/{endpoint}/?page=2", - "previous": "previous", "results": [ { "cancelation_status": "cancelation_status", @@ -47525,7 +47263,6 @@ client.connect() "invoice_identification": "862B9918-3K6H-4E0B-NAI9-2BE2D833B840", "invoice_type": "Traslado", "link": "1bd948f7-245d-4313-b604-34d1044cb908", - "payment_method": "PUE", "payment_method_description": "payment_method_description", "payment_type": "99", "payment_type_description": "payment_type_description", @@ -48342,7 +48079,6 @@ client.connect() "invoice_identification": "862B9918-3K6H-4E0B-NAI9-2BE2D833B840", "invoice_type": "Pago", "link": "1bd948f7-245d-4313-b604-34d1044cb908", - "payment_method": "PUE", "payment_method_description": "payment_method_description", "payment_type": "99", "payment_type_description": "payment_type_description", @@ -48958,7 +48694,6 @@ client.connect() "invoice_identification": "862B9918-3K6H-4E0B-NAI9-2BE2D833B840", "invoice_type": "Traslado", "link": "1bd948f7-245d-4313-b604-34d1044cb908", - "payment_method": "PUE", "payment_method_description": "payment_method_description", "payment_type": "99", "payment_type_description": "payment_type_description", @@ -49374,7 +49109,6 @@ service: body: count: 110 next: https://sandbox.belvo.com/api/{endpoint}/?page=2 - previous: previous results: - id: 90d90e38-0087-4b6d-b6dc-94ea561bb9cb link: 1bd948f7-245d-4313-b604-34d1044cb908 @@ -49563,7 +49297,6 @@ service: body: count: 110 next: https://sandbox.belvo.com/api/{endpoint}/?page=2 - previous: previous results: - id: 90d90e38-0087-4b6d-b6dc-94ea561bb9cb link: 1bd948f7-245d-4313-b604-34d1044cb908 @@ -49586,7 +49319,6 @@ service: certification_authority: FGV330542BG6 payment_type: '99' payment_type_description: payment_type_description - payment_method: PUE payment_method_description: payment_method_description usage: P01 version: '3.3' @@ -49753,7 +49485,6 @@ service: body: count: 110 next: https://sandbox.belvo.com/api/{endpoint}/?page=2 - previous: previous results: - id: 90d90e38-0087-4b6d-b6dc-94ea561bb9cb link: 1bd948f7-245d-4313-b604-34d1044cb908 @@ -49943,7 +49674,6 @@ service: body: count: 110 next: https://sandbox.belvo.com/api/{endpoint}/?page=2 - previous: previous results: - id: 90d90e38-0087-4b6d-b6dc-94ea561bb9cb link: 1bd948f7-245d-4313-b604-34d1044cb908 @@ -50132,7 +49862,6 @@ service: body: count: 110 next: https://sandbox.belvo.com/api/{endpoint}/?page=2 - previous: previous results: - id: 90d90e38-0087-4b6d-b6dc-94ea561bb9cb link: 1bd948f7-245d-4313-b604-34d1044cb908 @@ -50155,7 +49884,6 @@ service: certification_authority: FGV330542BG6 payment_type: '99' payment_type_description: payment_type_description - payment_method: PUE payment_method_description: payment_method_description usage: G03 version: '3.3' @@ -50576,7 +50304,6 @@ service: certification_authority: FGV330542BG6 payment_type: '99' payment_type_description: payment_type_description - payment_method: PUE payment_method_description: payment_method_description usage: P01 version: '3.3' @@ -51096,7 +50823,6 @@ service: certification_authority: FGV330542BG6 payment_type: '99' payment_type_description: payment_type_description - payment_method: PUE payment_method_description: payment_method_description usage: G03 version: '3.3' @@ -51667,7 +51393,6 @@ service: certification_authority: FGV330542BG6 payment_type: '99' payment_type_description: payment_type_description - payment_method: PUE payment_method_description: payment_method_description usage: P01 version: '3.3' @@ -52138,7 +51863,6 @@ service: certification_authority: FGV330542BG6 payment_type: '99' payment_type_description: payment_type_description - payment_method: PUE payment_method_description: payment_method_description usage: G03 version: '3.3' @@ -55363,13 +55087,10 @@ Cancun, COL 10447", "document_type": "CPF", }, "email": "maria@acme.com", - "first_name": "first_name", "id": "2b22f123-7c3a-4518-9ac2-863eb5d4613c", "internal_identification": "7e5838e4", - "last_name": "last_name", "link": "c38fb126-fc98-4d6c-8c80-587a97dd56cf", "phone_number": "90090508357", - "second_last_name": "second_last_name", }, }, }, @@ -55510,7 +55231,6 @@ client.connect() "body": { "count": 108, "next": "https://sandbox.belvo.com/api/{endpoint}/?page=2", - "previous": "previous", "results": [ { "address": "Retorno Gran Canaria 453 723 @@ -55523,13 +55243,10 @@ Cancun, COL 10447", "document_type": "CPF", }, "email": "maria@acme.com", - "first_name": "first_name", "id": "c749315b-eec2-435d-a458-06912878564f", "internal_identification": "7e5838e4", - "last_name": "last_name", "link": "c38fb126-fc98-4d6c-8c80-587a97dd56cf", "phone_number": "90090508357", - "second_last_name": "second_last_name", }, ], }, @@ -55747,13 +55464,10 @@ Cancun, COL 10447", "document_type": "CPF", }, "email": "maria@acme.com", - "first_name": "first_name", "id": "2b22f123-7c3a-4518-9ac2-863eb5d4613c", "internal_identification": "7e5838e4", - "last_name": "last_name", "link": "c38fb126-fc98-4d6c-8c80-587a97dd56cf", "phone_number": "90090508357", - "second_last_name": "second_last_name", }, ], }, @@ -55901,13 +55615,10 @@ Cancun, COL 10447", "document_type": "CPF", }, "email": "maria@acme.com", - "first_name": "first_name", "id": "2b22f123-7c3a-4518-9ac2-863eb5d4613c", "internal_identification": "7e5838e4", - "last_name": "last_name", "link": "c38fb126-fc98-4d6c-8c80-587a97dd56cf", "phone_number": "90090508357", - "second_last_name": "second_last_name", }, ], }, @@ -56069,7 +55780,6 @@ service: body: count: 108 next: https://sandbox.belvo.com/api/{endpoint}/?page=2 - previous: previous results: - id: c749315b-eec2-435d-a458-06912878564f link: c38fb126-fc98-4d6c-8c80-587a97dd56cf @@ -56085,9 +55795,6 @@ service: document_id: document_type: CPF document_number: 235578435-S - first_name: first_name - last_name: last_name - second_last_name: second_last_name code-samples: - language: cURL code: | @@ -56212,9 +55919,6 @@ service: document_id: document_type: CPF document_number: 235578435-S - first_name: first_name - last_name: last_name - second_last_name: second_last_name code-samples: - language: cURL code: | @@ -56348,9 +56052,6 @@ service: document_id: document_type: CPF document_number: 235578435-S - first_name: first_name - last_name: last_name - second_last_name: second_last_name code-samples: - language: cURL code: | @@ -56488,9 +56189,6 @@ service: document_id: document_type: CPF document_number: 235578435-S - first_name: first_name - last_name: last_name - second_last_name: second_last_name code-samples: - language: cURL code: | @@ -70729,7 +70427,6 @@ client.connect() "body": { "count": 101, "next": "https://sandbox.belvo.com/api/{endpoint}/?page=2", - "previous": "previous", "results": [ { "collected_at": "2022-02-09T08:45:50Z", @@ -71035,7 +70732,6 @@ client.connect() "body": { "count": 101, "next": "https://sandbox.belvo.com/api/{endpoint}/?page=2", - "previous": "previous", "results": [ { "collected_at": "2022-02-09T08:45:50Z", @@ -71195,7 +70891,6 @@ client.connect() "body": { "count": 101, "next": "https://sandbox.belvo.com/api/{endpoint}/?page=2", - "previous": "previous", "results": [ { "collected_at": "2022-02-09T08:45:50Z", @@ -71363,7 +71058,6 @@ client.connect() "body": { "count": 101, "next": "https://sandbox.belvo.com/api/{endpoint}/?page=2", - "previous": "previous", "results": [ { "cifras_cierre_ejercicio": { @@ -71636,7 +71330,6 @@ client.connect() "body": { "count": 101, "next": "https://sandbox.belvo.com/api/{endpoint}/?page=2", - "previous": "previous", "results": [ { "collected_at": "2022-02-09T08:45:50Z", @@ -73951,7 +73644,6 @@ service: body: count: 101 next: https://sandbox.belvo.com/api/{endpoint}/?page=2 - previous: previous results: - id: 02589c41-ba22-4d44-8558-8111cc751318 link: 19697249-01b8-443e-a451-76bfc5fbeebf @@ -74171,7 +73863,6 @@ service: body: count: 101 next: https://sandbox.belvo.com/api/{endpoint}/?page=2 - previous: previous results: - id: 0d3ffb69-f83b-456e-ad8e-208d0998d71d collected_at: '2022-02-09T08:45:50Z' @@ -74309,7 +74000,6 @@ service: body: count: 101 next: https://sandbox.belvo.com/api/{endpoint}/?page=2 - previous: previous results: - id: 0d3ffb69-f83b-456e-ad8e-208d0998d71d collected_at: '2022-02-09T08:45:50Z' @@ -74455,7 +74145,6 @@ service: body: count: 101 next: https://sandbox.belvo.com/api/{endpoint}/?page=2 - previous: previous results: - id: 02589c41-ba22-4d44-8558-8111cc751318 collected_at: '2022-02-09T08:45:50Z' @@ -74693,7 +74382,6 @@ service: body: count: 101 next: https://sandbox.belvo.com/api/{endpoint}/?page=2 - previous: previous results: - id: 0d3ffb69-f83b-456e-ad8e-208d0998d71d collected_at: '2022-02-09T08:45:50Z' @@ -77881,7 +77569,6 @@ client.connect() ], "exterior_number": "4360", "interior_number": "PLANTA BAJA", - "locality": "none", "municipality": "ALTOS DE MIRAMAR", "postal_code": "21255", "state": "CIUDAD DE MEXICO", @@ -77896,7 +77583,6 @@ client.connect() "economic_activity": [ { "economic_activity": "Asalariado", - "end_date": "end_date", "initial_date": "2014-11-05", "order": "1", "percentage": "100", @@ -77907,13 +77593,11 @@ client.connect() "link": "401d5a8e-79e2-472e-a1ca-8f4646f5cb24", "obligations": [ { - "end_date": "end_date", "expiration": "Conjuntamente con la declaración anual del ejercicio.", "initial_date": "2004-03-31", "obligation": "Declaración informativa de IVA con la anual de ISR", }, { - "end_date": "end_date", "expiration": "A más tardar el día 17 del mes inmediato posterior al periodo que corresponda.", "initial_date": "2004-03-31", "obligation": "Pago definitivo mensual de IVA.", @@ -77939,7 +77623,6 @@ client.connect() "phone": "667507132", "rfc": "GGTF770303G7", "second_last_name": "Robin", - "social_name": "John Doe SA DE CV", "start_operations_date": "2000-06-01", "status_padron": "ACTIVO", }, @@ -78039,7 +77722,6 @@ client.connect() ], "exterior_number": "4360", "interior_number": "PLANTA BAJA", - "locality": "none", "municipality": "ALTOS DE MIRAMAR", "postal_code": "21255", "state": "CIUDAD DE MEXICO", @@ -78054,7 +77736,6 @@ client.connect() "economic_activity": [ { "economic_activity": "Otros servicios profesionales, científicos y técnicos", - "end_date": "end_date", "initial_date": "2014-11-05", "order": "1", "percentage": "100", @@ -78065,13 +77746,11 @@ client.connect() "link": "0b2edc42-7214-4c68-b22e-ae6885bf7c07", "obligations": [ { - "end_date": "end_date", "expiration": "Conjuntamente con la declaración anual del ejercicio.", "initial_date": "2004-03-31", "obligation": "Declaración informativa de IVA con la anual de ISR", }, { - "end_date": "end_date", "expiration": "A más tardar el día 17 del mes inmediato posterior al periodo que corresponda.", "initial_date": "2004-03-31", "obligation": "Pago definitivo mensual de IVA.", @@ -78088,15 +77767,10 @@ client.connect() }, ], "tax_payer_information": { - "commercial_name": "Jar Jar Transport", - "curp": "curp", "email": "contact@acne.com", - "first_last_name": "DOE", "last_status_change_date": "1995-08-01", - "name": "JOHN", "phone": "555507122", "rfc": "GHTF980303F7", - "second_last_name": "SCHMOE", "social_name": "ACNE SA DE CV", "start_operations_date": "1995-08-01", "status_padron": "ACTIVO", @@ -78237,7 +77911,6 @@ client.connect() "body": { "count": 101, "next": "https://sandbox.belvo.com/api/{endpoint}/?page=2", - "previous": "previous", "results": [ { "address": { @@ -78404,7 +78077,6 @@ client.connect() "body": { "count": 101, "next": "https://sandbox.belvo.com/api/{endpoint}/?page=2", - "previous": "previous", "results": [ { "address": { @@ -78675,7 +78347,6 @@ client.connect() ], "exterior_number": "4360", "interior_number": "PLANTA BAJA", - "locality": "none", "municipality": "ALTOS DE MIRAMAR", "postal_code": "21255", "state": "CIUDAD DE MEXICO", @@ -78690,7 +78361,6 @@ client.connect() "economic_activity": [ { "economic_activity": "Asalariado", - "end_date": "end_date", "initial_date": "2014-11-05", "order": "1", "percentage": "100", @@ -78701,13 +78371,11 @@ client.connect() "link": "401d5a8e-79e2-472e-a1ca-8f4646f5cb24", "obligations": [ { - "end_date": "end_date", "expiration": "Conjuntamente con la declaración anual del ejercicio.", "initial_date": "2004-03-31", "obligation": "Declaración informativa de IVA con la anual de ISR", }, { - "end_date": "end_date", "expiration": "A más tardar el día 17 del mes inmediato posterior al periodo que corresponda.", "initial_date": "2004-03-31", "obligation": "Pago definitivo mensual de IVA.", @@ -78733,7 +78401,6 @@ client.connect() "phone": "667507132", "rfc": "GGTF770303G7", "second_last_name": "Robin", - "social_name": "John Doe SA DE CV", "start_operations_date": "2000-06-01", "status_padron": "ACTIVO", }, @@ -78843,7 +78510,6 @@ client.connect() ], "exterior_number": "4360", "interior_number": "PLANTA BAJA", - "locality": "none", "municipality": "ALTOS DE MIRAMAR", "postal_code": "21255", "state": "CIUDAD DE MEXICO", @@ -78858,7 +78524,6 @@ client.connect() "economic_activity": [ { "economic_activity": "Otros servicios profesionales, científicos y técnicos", - "end_date": "end_date", "initial_date": "2014-11-05", "order": "1", "percentage": "100", @@ -78869,13 +78534,11 @@ client.connect() "link": "0b2edc42-7214-4c68-b22e-ae6885bf7c07", "obligations": [ { - "end_date": "end_date", "expiration": "Conjuntamente con la declaración anual del ejercicio.", "initial_date": "2004-03-31", "obligation": "Declaración informativa de IVA con la anual de ISR", }, { - "end_date": "end_date", "expiration": "A más tardar el día 17 del mes inmediato posterior al periodo que corresponda.", "initial_date": "2004-03-31", "obligation": "Pago definitivo mensual de IVA.", @@ -78892,15 +78555,10 @@ client.connect() }, ], "tax_payer_information": { - "commercial_name": "Jar Jar Transport", - "curp": "curp", "email": "contact@acne.com", - "first_last_name": "DOE", "last_status_change_date": "1995-08-01", - "name": "JOHN", "phone": "555507122", "rfc": "GHTF980303F7", - "second_last_name": "SCHMOE", "social_name": "ACNE SA DE CV", "start_operations_date": "1995-08-01", "status_padron": "ACTIVO", @@ -79124,7 +78782,6 @@ service: body: count: 101 next: https://sandbox.belvo.com/api/{endpoint}/?page=2 - previous: previous results: - id: e88d29d1-3dc6-407f-825c-a9b50453e349 link: 401d5a8e-79e2-472e-a1ca-8f4646f5cb24 @@ -79265,7 +78922,6 @@ service: body: count: 101 next: https://sandbox.belvo.com/api/{endpoint}/?page=2 - previous: previous results: - id: 6de34cb3-bf0d-445d-b832-7ec7781e2c6f link: 0b2edc42-7214-4c68-b22e-ae6885bf7c07 @@ -79462,7 +79118,6 @@ service: status_padron: ACTIVO last_status_change_date: '2000-06-01' commercial_name: Alfredo Gonzalo Robin - social_name: John Doe SA DE CV email: alfredo@robin.com phone: '667507132' address: @@ -79472,7 +79127,6 @@ service: exterior_number: '4360' interior_number: PLANTA BAJA suburb: BUENAVENTURA - locality: none municipality: ALTOS DE MIRAMAR state: CIUDAD DE MEXICO between_street: @@ -79481,7 +79135,6 @@ service: economic_activity: - economic_activity: Asalariado initial_date: '2014-11-05' - end_date: end_date order: '1' percentage: '100' regimes: @@ -79494,13 +79147,11 @@ service: - obligation: Declaración informativa de IVA con la anual de ISR expiration: Conjuntamente con la declaración anual del ejercicio. initial_date: '2004-03-31' - end_date: end_date - obligation: Pago definitivo mensual de IVA. expiration: >- A más tardar el día 17 del mes inmediato posterior al periodo que corresponda. initial_date: '2004-03-31' - end_date: end_date digital_stamp: >- ||2020/09/26|GHTF980303F7|CONSTANCIA DE SITUACIÓN FISCAL|2044441088666600000034|| @@ -79596,14 +79247,9 @@ service: id_cif: '2274235873432' tax_payer_information: rfc: GHTF980303F7 - curp: curp - name: JOHN - first_last_name: DOE - second_last_name: SCHMOE start_operations_date: '1995-08-01' status_padron: ACTIVO last_status_change_date: '1995-08-01' - commercial_name: Jar Jar Transport social_name: ACNE SA DE CV email: contact@acne.com phone: '555507122' @@ -79614,7 +79260,6 @@ service: exterior_number: '4360' interior_number: PLANTA BAJA suburb: BUENAVENTURA - locality: none municipality: ALTOS DE MIRAMAR state: CIUDAD DE MEXICO between_street: @@ -79623,7 +79268,6 @@ service: economic_activity: - economic_activity: Otros servicios profesionales, científicos y técnicos initial_date: '2014-11-05' - end_date: end_date order: '1' percentage: '100' regimes: @@ -79634,13 +79278,11 @@ service: - obligation: Declaración informativa de IVA con la anual de ISR expiration: Conjuntamente con la declaración anual del ejercicio. initial_date: '2004-03-31' - end_date: end_date - obligation: Pago definitivo mensual de IVA. expiration: >- A más tardar el día 17 del mes inmediato posterior al periodo que corresponda. initial_date: '2004-03-31' - end_date: end_date digital_stamp: >- ||2020/04/26|GHTF980303F7|CONSTANCIA DE SITUACIÓN FISCAL|2044441088666600000034|| @@ -79780,7 +79422,6 @@ service: status_padron: ACTIVO last_status_change_date: '2000-06-01' commercial_name: Alfredo Gonzalo Robin - social_name: John Doe SA DE CV email: alfredo@robin.com phone: '667507132' address: @@ -79790,7 +79431,6 @@ service: exterior_number: '4360' interior_number: PLANTA BAJA suburb: BUENAVENTURA - locality: none municipality: ALTOS DE MIRAMAR state: CIUDAD DE MEXICO between_street: @@ -79799,7 +79439,6 @@ service: economic_activity: - economic_activity: Asalariado initial_date: '2014-11-05' - end_date: end_date order: '1' percentage: '100' regimes: @@ -79812,13 +79451,11 @@ service: - obligation: Declaración informativa de IVA con la anual de ISR expiration: Conjuntamente con la declaración anual del ejercicio. initial_date: '2004-03-31' - end_date: end_date - obligation: Pago definitivo mensual de IVA. expiration: >- A más tardar el día 17 del mes inmediato posterior al periodo que corresponda. initial_date: '2004-03-31' - end_date: end_date digital_stamp: >- ||2020/09/26|GHTF980303F7|CONSTANCIA DE SITUACIÓN FISCAL|2044441088666600000034|| @@ -79904,14 +79541,9 @@ service: id_cif: '2274235873432' tax_payer_information: rfc: GHTF980303F7 - curp: curp - name: JOHN - first_last_name: DOE - second_last_name: SCHMOE start_operations_date: '1995-08-01' status_padron: ACTIVO last_status_change_date: '1995-08-01' - commercial_name: Jar Jar Transport social_name: ACNE SA DE CV email: contact@acne.com phone: '555507122' @@ -79922,7 +79554,6 @@ service: exterior_number: '4360' interior_number: PLANTA BAJA suburb: BUENAVENTURA - locality: none municipality: ALTOS DE MIRAMAR state: CIUDAD DE MEXICO between_street: @@ -79931,7 +79562,6 @@ service: economic_activity: - economic_activity: Otros servicios profesionales, científicos y técnicos initial_date: '2014-11-05' - end_date: end_date order: '1' percentage: '100' regimes: @@ -79942,13 +79572,11 @@ service: - obligation: Declaración informativa de IVA con la anual de ISR expiration: Conjuntamente con la declaración anual del ejercicio. initial_date: '2004-03-31' - end_date: end_date - obligation: Pago definitivo mensual de IVA. expiration: >- A más tardar el día 17 del mes inmediato posterior al periodo que corresponda. initial_date: '2004-03-31' - end_date: end_date digital_stamp: >- ||2020/04/26|GHTF980303F7|CONSTANCIA DE SITUACIÓN FISCAL|2044441088666600000034|| @@ -80673,7 +80301,6 @@ client.connect() "current": 4.09, }, "balance_type": "ASSET", - "bank_product_id": "bank_product_id", "category": "SAVINGS_ACCOUNT", "collected_at": "2022-02-09T08:45:50Z", "created_at": "2022-02-09T08:46:20Z", @@ -80871,7 +80498,6 @@ client.connect() "current": 5874.13, }, "balance_type": "LIABILITY", - "bank_product_id": "bank_product_id", "category": "CREDIT_CARD", "collected_at": "2022-02-09T08:45:50Z", "created_at": "2022-02-09T08:46:20Z", @@ -80879,26 +80505,17 @@ client.connect() "collected_at": "2022-02-09T08:45:50Z", "credit_limit": 192000, "cutting_date": "2019-12-11", - "end_date": "end_date", "interest_rate": 4, - "last_payment_date": "last_payment_date", "minimum_payment": 2400, - "monthly_payment": 1.1, "next_payment_date": "2019-12-01", "no_interest_payment": 37390.83, }, "currency": "MXN", - "funds_data": [ - { - "collected_at": "2020-04-23T21:32:55Z", - }, - ], "id": "02589c41-ba22-4d44-8558-8111cc751318", "institution": { "name": "erebor_mx_retail", "type": "bank", }, - "internal_identification": "internal_identification", "last_accessed_at": "2021-03-09T10:28:40Z", "link": "30cb4806-6e00-48a4-91c9-ca55968576c8", "loan_data": { @@ -81159,7 +80776,6 @@ client.connect() "body": { "count": 198, "next": "https://sandbox.belvo.com/api/{endpoint}/?page=2", - "previous": "previous", "results": [ { "account": { @@ -81361,7 +80977,6 @@ client.connect() "body": { "count": 198, "next": "https://sandbox.belvo.com/api/{endpoint}/?page=2", - "previous": "previous", "results": [ { "account": { @@ -81562,7 +81177,6 @@ client.connect() "body": { "count": 198, "next": "https://sandbox.belvo.com/api/{endpoint}/?page=2", - "previous": "previous", "results": [ { "account": { @@ -82220,7 +81834,6 @@ client.connect() "current": 4.09, }, "balance_type": "ASSET", - "bank_product_id": "bank_product_id", "category": "SAVINGS_ACCOUNT", "collected_at": "2022-02-09T08:45:50Z", "created_at": "2022-02-09T08:46:20Z", @@ -82407,7 +82020,6 @@ client.connect() "current": 5874.13, }, "balance_type": "LIABILITY", - "bank_product_id": "bank_product_id", "category": "CREDIT_CARD", "collected_at": "2022-02-09T08:45:50Z", "created_at": "2022-02-09T08:46:20Z", @@ -82421,17 +82033,11 @@ client.connect() "no_interest_payment": 37390.83, }, "currency": "MXN", - "funds_data": [ - { - "collected_at": "2020-04-23T21:32:55Z", - }, - ], "id": "02589c41-ba22-4d44-8558-8111cc751318", "institution": { "name": "erebor_mx_retail", "type": "bank", }, - "internal_identification": "internal_identification", "last_accessed_at": "2021-03-09T10:28:40Z", "link": "30cb4806-6e00-48a4-91c9-ca55968576c8", "loan_data": { @@ -82833,7 +82439,6 @@ client.connect() "current": 4.09, }, "balance_type": "ASSET", - "bank_product_id": "bank_product_id", "category": "SAVINGS_ACCOUNT", "collected_at": "2022-02-09T08:45:50Z", "created_at": "2022-02-09T08:46:20Z", @@ -83025,7 +82630,6 @@ client.connect() "current": 5874.13, }, "balance_type": "LIABILITY", - "bank_product_id": "bank_product_id", "category": "CREDIT_CARD", "collected_at": "2022-02-09T08:45:50Z", "created_at": "2022-02-09T08:46:20Z", @@ -83039,17 +82643,11 @@ client.connect() "no_interest_payment": 37390.83, }, "currency": "MXN", - "funds_data": [ - { - "collected_at": "2020-04-23T21:32:55Z", - }, - ], "id": "02589c41-ba22-4d44-8558-8111cc751318", "institution": { "name": "erebor_mx_retail", "type": "bank", }, - "internal_identification": "internal_identification", "last_accessed_at": "2021-03-09T10:28:40Z", "link": "30cb4806-6e00-48a4-91c9-ca55968576c8", "loan_data": { @@ -83679,7 +83277,6 @@ service: body: count: 198 next: https://sandbox.belvo.com/api/{endpoint}/?page=2 - previous: previous results: - id: e5588958-48f2-427c-9300-945207532f5d internal_identification: LCzHexIyHi @@ -83859,7 +83456,6 @@ service: body: count: 198 next: https://sandbox.belvo.com/api/{endpoint}/?page=2 - previous: previous results: - id: e5588958-48f2-427c-9300-945207532f5d internal_identification: '0089608418' @@ -84038,7 +83634,6 @@ service: body: count: 198 next: https://sandbox.belvo.com/api/{endpoint}/?page=2 - previous: previous results: - id: 076c66e5-90f5-4e01-99c7-50e32f65ae42 internal_identification: TXpRMU9UQTROMWhZV2xSU1FUazJSMDl @@ -84428,7 +84023,6 @@ service: available: 800.37 anticipated: 1393.46 collected_at: '2022-02-09T08:45:50Z' - bank_product_id: bank_product_id internal_identification: '996685090015' collected_at: '2022-07-20T22:09:33Z' created_at: '2022-07-20T22:09:35Z' @@ -84583,15 +84177,11 @@ service: outstanding_balance: 182000 monthly_payment: 1000 contract_end_date: '2027-10-01' - funds_data: - - collected_at: '2020-04-23T21:32:55Z' receivables_data: current: 2193.83 available: 800.37 anticipated: 1393.46 collected_at: '2022-02-09T08:45:50Z' - bank_product_id: bank_product_id - internal_identification: internal_identification collected_at: '2022-02-09T08:45:50Z' created_at: '2022-02-09T08:45:50Z' value_date: '2019-10-23' @@ -85096,7 +84686,6 @@ service: available: 800.37 anticipated: 1393.46 collected_at: '2022-02-09T08:45:50Z' - bank_product_id: bank_product_id internal_identification: '996685090015' collected_at: '2022-07-20T22:09:33Z' created_at: '2022-07-20T22:09:35Z' @@ -85246,15 +84835,11 @@ service: outstanding_balance: 182000 monthly_payment: 1000 contract_end_date: '2027-10-01' - funds_data: - - collected_at: '2020-04-23T21:32:55Z' receivables_data: current: 2193.83 available: 800.37 anticipated: 1393.46 collected_at: '2022-02-09T08:45:50Z' - bank_product_id: bank_product_id - internal_identification: internal_identification collected_at: '2022-02-09T08:45:50Z' created_at: '2022-02-09T08:45:50Z' value_date: '2019-10-23' @@ -85634,7 +85219,6 @@ service: available: 800.37 anticipated: 1393.46 collected_at: '2022-02-09T08:45:50Z' - bank_product_id: bank_product_id internal_identification: '996685090015' collected_at: '2022-07-20T22:09:33Z' created_at: '2022-07-20T22:09:35Z' @@ -85760,9 +85344,6 @@ service: minimum_payment: 2400 no_interest_payment: 37390.83 interest_rate: 4 - end_date: end_date - monthly_payment: 1.1 - last_payment_date: last_payment_date loan_data: collected_at: '2022-02-09T08:45:50Z' contract_amount: 202000 @@ -85791,15 +85372,11 @@ service: cutting_date: cutting_date last_payment_date: last_payment_date no_interest_payment: 1.1 - funds_data: - - collected_at: '2020-04-23T21:32:55Z' receivables_data: current: 2193.83 available: 800.37 anticipated: 1393.46 collected_at: '2022-02-09T08:45:50Z' - bank_product_id: bank_product_id - internal_identification: internal_identification collected_at: '2022-02-09T08:45:50Z' created_at: '2022-02-09T08:45:50Z' value_date: '2019-10-23' diff --git a/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi-docs/flexport.json b/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi-docs/flexport.json index 1ccfb5ee3b1..7e7d2119f2d 100644 --- a/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi-docs/flexport.json +++ b/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi-docs/flexport.json @@ -10551,7 +10551,6 @@ errors: "city": "Los Angeles", "country": "United States", "country_code": "US", - "ref": "address_ref_x", "street_address": "123 Queen St", "timezone": "America/Los_Angeles", "unlocode": "USLA", @@ -10577,7 +10576,6 @@ errors: "city": "Shanghai", "country": "China", "country_code": "CN", - "ref": "address_ref_x", "street_address": "123 Queen St", "timezone": "America/Los_Angeles", "unlocode": "CNSZP", @@ -10642,7 +10640,6 @@ errors: "wants_import_customs_service": true, }, ], - "next": "https://api.flexport.com/bookings?page=3&per=10", "prev": "https://api.flexport.com/bookings?page=12&per=10", }, "self": "https://api.flexport.com/bookings?page=13&per=10", @@ -10855,28 +10852,6 @@ errors: "_object": "/api/response", "data": { "_object": "/booking", - "air_booking": { - "_object": "/air/booking", - "destination_port": { - "_object": "/place", - "name": "ORD - Chicago - IL", - }, - "incoterm": "EXW", - "origin_port": { - "_object": "/place", - "name": "ORD - Chicago - IL", - }, - "product_descriptions": [ - { - "_object": "/bookings/product_descriptions", - "description": "Wristwatches", - "description_for_export_customs": "手表", - "description_for_export_customs_locale": "zh_CN", - }, - ], - "wants_delivery_service": false, - "wants_pickup_service": true, - }, "booking_line_items": { "_object": "/api/refs/collection", "link": "https://api.flexport.com/booking_line_items?f.booking.id=123", @@ -10990,7 +10965,6 @@ errors: ], }, "name": "PO 123", - "notify_party": "John Doe | john@example.com | 905-555-1234", "ocean_booking": { "_object": "/ocean/booking", "container_counts": { @@ -11080,7 +11054,6 @@ errors: "unlocode": "US AL2", "zip": "56307", }, - "quote_status": "pending_quote", "shipment": { "_object": "/api/refs/object", "id": 123, @@ -11116,12 +11089,6 @@ errors: "special_instructions": "Handle carefully", "status": "archived", "transportation_mode": "ocean", - "trucking_booking": { - "_object": "/trucking/booking", - "description_of_products": "Wristwatches", - "is_ftl": false, - "payment_terms": "collect", - }, "wants_export_customs_service": true, "wants_import_customs_service": true, }, @@ -11254,28 +11221,6 @@ errors: "_object": "/api/response", "data": { "_object": "/booking", - "air_booking": { - "_object": "/air/booking", - "destination_port": { - "_object": "/place", - "name": "ORD - Chicago - IL", - }, - "incoterm": "EXW", - "origin_port": { - "_object": "/place", - "name": "ORD - Chicago - IL", - }, - "product_descriptions": [ - { - "_object": "/bookings/product_descriptions", - "description": "Wristwatches", - "description_for_export_customs": "手表", - "description_for_export_customs_locale": "zh_CN", - }, - ], - "wants_delivery_service": false, - "wants_pickup_service": true, - }, "booking_line_items": { "_object": "/api/refs/collection", "link": "https://api.flexport.com/booking_line_items?f.booking.id=123", @@ -11509,12 +11454,6 @@ errors: "special_instructions": "", "status": "archived", "transportation_mode": "ocean", - "trucking_booking": { - "_object": "/trucking/booking", - "description_of_products": "Wristwatches", - "is_ftl": false, - "payment_terms": "collect", - }, "wants_export_customs_service": true, "wants_import_customs_service": true, }, @@ -11827,7 +11766,6 @@ service: data: _object: /api/collections/paginated prev: https://api.flexport.com/bookings?page=12&per=10 - next: https://api.flexport.com/bookings?page=3&per=10 data: - _object: /booking id: 123 @@ -11897,7 +11835,6 @@ service: country: China country_code: CN timezone: America/Los_Angeles - ref: address_ref_x unlocode: CNSZP details: - _object: /trucking/port @@ -11914,7 +11851,6 @@ service: country: United States country_code: US timezone: America/Los_Angeles - ref: address_ref_x unlocode: USLA details: - _object: /trucking/port @@ -12174,7 +12110,6 @@ service: link: https://api.flexport.com/shipments/123 id: 123 status: archived - quote_status: pending_quote shipper_entity: _object: /company_entity id: 9281 @@ -12217,7 +12152,6 @@ service: - _object: company_entity/vat_number country_code: US number: US 123746396 - notify_party: John Doe | john@example.com | 905-555-1234 transportation_mode: ocean ocean_booking: _object: /ocean/booking @@ -12277,27 +12211,6 @@ service: 36177-92-1) (provided for in subheading 2933.39.91) code: '9101.00' country_code: US - air_booking: - _object: /air/booking - incoterm: EXW - wants_pickup_service: true - wants_delivery_service: false - origin_port: - _object: /place - name: ORD - Chicago - IL - destination_port: - _object: /place - name: ORD - Chicago - IL - product_descriptions: - - _object: /bookings/product_descriptions - description: Wristwatches - description_for_export_customs: 手表 - description_for_export_customs_locale: zh_CN - trucking_booking: - _object: /trucking/booking - is_ftl: false - payment_terms: collect - description_of_products: Wristwatches origin_address: _object: /address street_address: 1641 Settlers Lane @@ -12514,27 +12427,6 @@ service: description: Wristwatches description_for_export_customs: 手表 description_for_export_customs_locale: zh_CN - air_booking: - _object: /air/booking - incoterm: EXW - wants_pickup_service: true - wants_delivery_service: false - origin_port: - _object: /place - name: ORD - Chicago - IL - destination_port: - _object: /place - name: ORD - Chicago - IL - product_descriptions: - - _object: /bookings/product_descriptions - description: Wristwatches - description_for_export_customs: 手表 - description_for_export_customs_locale: zh_CN - trucking_booking: - _object: /trucking/booking - is_ftl: false - payment_terms: collect - description_of_products: Wristwatches origin_address: _object: /address street_address: 1641 Settlers Lane @@ -12799,12 +12691,9 @@ docs: Endpoints relating to Booking objects "country": "China", "country_code": "CN", "ref": "my-shanghai-address-ref", - "state": "MN", "street_address": "123 Queen St", - "street_address2": "STE 2918", "timezone": "China/Shanghai", "unlocode": "CNSHA", - "zip": "56307", }, "new_port_of_loading": { "_object": "/address", @@ -12812,12 +12701,9 @@ docs: Endpoints relating to Booking objects "country": "China", "country_code": "CN", "ref": "my-shanghai-address-ref", - "state": "MN", "street_address": "123 Queen St", - "street_address2": "STE 2918", "timezone": "China/Shanghai", "unlocode": "CNSHA", - "zip": "56307", }, "new_port_of_unloading": { "_object": "/address", @@ -13119,24 +13005,18 @@ service: new_origin_address: _object: /address street_address: 123 Queen St - street_address2: STE 2918 city: Shanghai - state: MN country: China country_code: CN - zip: '56307' timezone: China/Shanghai ref: my-shanghai-address-ref unlocode: CNSHA new_port_of_loading: _object: /address street_address: 123 Queen St - street_address2: STE 2918 city: Shanghai - state: MN country: China country_code: CN - zip: '56307' timezone: China/Shanghai ref: my-shanghai-address-ref unlocode: CNSHA @@ -13343,7 +13223,6 @@ docs: >- "units": 200, }, ], - "next": "https://api.flexport.com/booking_line_items?page=3&per=10", "prev": "https://api.flexport.com/booking_line_items?page=12&per=10", }, "self": "https://api.flexport.com/booking_line_items?page=13&per=10", @@ -13638,7 +13517,6 @@ service: data: _object: /api/collections/paginated prev: https://api.flexport.com/booking_line_items?page=12&per=10 - next: https://api.flexport.com/booking_line_items?page=3&per=10 data: - _object: /purchase_orders/booking_line_item id: 123456 @@ -14468,7 +14346,6 @@ docs: Endpoints relating to Carbon Calculations }, }, ], - "next": "https://api.flexport.com/commercial_invoices?page=3&per=10", "prev": "https://api.flexport.com/commercial_invoices?page=1&per=10", }, "self": "https://api.flexport.com/commercial_invoices?page=2&per=10", @@ -15021,7 +14898,6 @@ service: data: _object: /api/collections/paginated prev: https://api.flexport.com/commercial_invoices?page=1&per=10 - next: https://api.flexport.com/commercial_invoices?page=3&per=10 data: - _object: /commercial_invoices id: abcxyz-23456-def @@ -15693,7 +15569,6 @@ docs: Endpoints relating to Commercial Invoice objects "ref": "ref_for_company", }, ], - "next": "https://api.flexport.com/network/companies?page=3&per=10", "prev": "https://api.flexport.com/network/companies?page=12&per=10", "total_count": 121, }, @@ -16225,7 +16100,6 @@ service: data: _object: /api/collections/paginated prev: https://api.flexport.com/network/companies?page=12&per=10 - next: https://api.flexport.com/network/companies?page=3&per=10 total_count: 121 data: - _object: /network/company @@ -16603,7 +16477,6 @@ docs: Endpoints relating to Company objects ], }, ], - "next": "https://api.flexport.com/network/company_entities?page=3&per=10", "prev": "https://api.flexport.com/network/company_entities?page=12&per=10", "total_count": 121, }, @@ -17088,8 +16961,6 @@ service: _object: /api/collections/paginated prev: >- https://api.flexport.com/network/company_entities?page=12&per=10 - next: >- - https://api.flexport.com/network/company_entities?page=3&per=10 total_count: 121 data: - _object: /company_entity @@ -17436,7 +17307,6 @@ docs: Endpoints relating to CompanyEntity objects "phone_number": "6789998212", }, ], - "next": "https://api.flexport.com/network/contacts?page=3&per=10", "prev": "https://api.flexport.com/network/contacts?page=12&per=10", "total_count": 121, }, @@ -17808,7 +17678,6 @@ service: data: _object: /api/collections/paginated prev: https://api.flexport.com/network/contacts?page=12&per=10 - next: https://api.flexport.com/network/contacts?page=3&per=10 total_count: 121 data: - _object: /network/contact @@ -18945,7 +18814,6 @@ docs: Endpoints relating to ContainerLeg objects }, }, ], - "next": "https://api.flexport.com/customs_entries?page=3&per=10", "prev": "https://api.flexport.com/customs_entries?page=12&per=10", }, "self": "https://api.flexport.com/customs_entries?page=13&per=10", @@ -19172,7 +19040,6 @@ service: data: _object: /api/collections/paginated prev: https://api.flexport.com/customs_entries?page=12&per=10 - next: https://api.flexport.com/customs_entries?page=3&per=10 data: - _object: /customs_entries id: ABC123 @@ -19352,7 +19219,6 @@ docs: Endpoints relating to Customs Entry objects }, }, ], - "next": "https://api.flexport.com/documents?page=3&per=10", "prev": "https://api.flexport.com/documents?page=12&per=10", "total_count": 121, }, @@ -19446,7 +19312,6 @@ docs: Endpoints relating to Customs Entry objects "_object": "/api/response", "data": { "_object": "/document", - "archived_at": "2024-01-15T09:30:00Z", "document_type": "billing_packet", "file_link": "https://api.flexport.com/documents/ABC123/download", "file_metadata": { @@ -19456,7 +19321,6 @@ docs: Endpoints relating to Customs Entry objects }, "file_name": "readme.txt", "id": "ABC123", - "memo": "memo", "shipment": { "_object": "/api/refs/object", "id": 123456, @@ -19660,7 +19524,6 @@ service: data: _object: /api/collections/paginated prev: https://api.flexport.com/documents?page=12&per=10 - next: https://api.flexport.com/documents?page=3&per=10 total_count: 121 data: - _object: /document @@ -19745,9 +19608,7 @@ service: id: ABC123 file_name: readme.txt document_type: billing_packet - memo: memo file_link: https://api.flexport.com/documents/ABC123/download - archived_at: '2024-01-15T09:30:00Z' file_metadata: _object: file/metadata size: 20000 @@ -20540,7 +20401,6 @@ Other details about this invoice", }, ], "next": "https://api.flexport.com/invoices?page=2&per=10", - "prev": "https://api.flexport.com/invoices?page=1&per=10", }, "self": "https://api.flexport.com/invoices", "version": 2, @@ -21136,7 +20996,6 @@ service: version: 2 data: _object: /api/collections/paginated - prev: https://api.flexport.com/invoices?page=1&per=10 next: https://api.flexport.com/invoices?page=2&per=10 data: - _object: /invoice @@ -21585,7 +21444,6 @@ docs: Endpoints relating to Invoice objects "name": "Wayne Enterprises", }, ], - "next": "https://api.flexport.com/network/locations?page=3&per=10", "prev": "https://api.flexport.com/network/locations?page=1&per=10", "total_count": 11, }, @@ -21856,7 +21714,6 @@ docs: Endpoints relating to Invoice objects "ref": "zoomit-management-co", "state": "CA", "street_address": "2 World Way", - "street_address2": "STE 2918", "timezone": "America/Los_Angeles", "unlocode": "USLAX", "zip": "90045", @@ -22117,7 +21974,6 @@ service: data: _object: /api/collections/paginated prev: https://api.flexport.com/network/locations?page=1&per=10 - next: https://api.flexport.com/network/locations?page=3&per=10 total_count: 11 data: - _object: /network/location @@ -22339,7 +22195,6 @@ service: address: _object: /address street_address: 2 World Way - street_address2: STE 2918 city: Los Angeles state: CA country: United States of America @@ -23883,22 +23738,18 @@ docs: Endpoints relating to Product objects "country_code": "US", "ref": "id-313120", "state": "GA", - "street_address": "1641 Settlers Lane", "timezone": "America/New_York", "unlocode": "USFBN", }, "details": [ { "_object": "/ocean/railport", - "port_code": "3901", }, { "_object": "/trucking/port", - "port_code": "3901", }, { "_object": "/ocean/port", - "port_code": "3901", }, ], "name": "Fairburn", @@ -23939,22 +23790,18 @@ docs: Endpoints relating to Product objects "country_code": "US", "ref": "id-313120", "state": "GA", - "street_address": "1641 Settlers Lane", "timezone": "America/New_York", "unlocode": "USFBN", }, "details": [ { "_object": "/ocean/railport", - "port_code": "3901", }, { "_object": "/trucking/port", - "port_code": "3901", }, { "_object": "/ocean/port", - "port_code": "3901", }, ], "name": "Fairburn", @@ -23969,7 +23816,6 @@ docs: Endpoints relating to Product objects "city": "shanghai", "country": "China", "country_code": "CN", - "ref": "address_ref_x", "state": "Shanghai", "street_address": "test", "timezone": "Asia/Shanghai", @@ -24029,7 +23875,6 @@ docs: Endpoints relating to Product objects "city": "shanghai", "country": "China", "country_code": "CN", - "ref": "address_ref_x", "state": "Shanghai", "street_address": "test", "timezone": "Asia/Shanghai", @@ -24062,7 +23907,6 @@ docs: Endpoints relating to Product objects "updated_at": "2020-07-31T19:52:58.161Z", }, ], - "next": "https://api.flexport.com/purchase_orders?page=3&per=10", "prev": "https://api.flexport.com/purchase_orders?page=12&per=10", }, "self": "https://api.flexport.com/purchase_orders?page=13&per=10", @@ -24789,7 +24633,6 @@ service: data: _object: /api/collections/paginated prev: https://api.flexport.com/purchase_orders?page=12&per=10 - next: https://api.flexport.com/purchase_orders?page=3&per=10 data: - id: 109771 _object: /purchase_order @@ -24807,7 +24650,6 @@ service: name: Fairburn address: _object: /address - street_address: 1641 Settlers Lane city: Fairburn state: GA country: United States @@ -24817,11 +24659,8 @@ service: unlocode: USFBN details: - _object: /ocean/railport - port_code: '3901' - _object: /trucking/port - port_code: '3901' - _object: /ocean/port - port_code: '3901' origin_address: _object: /address street_address: No 1, 123 St @@ -24836,7 +24675,6 @@ service: name: Fairburn address: _object: /address - street_address: 1641 Settlers Lane city: Fairburn state: GA country: United States @@ -24846,11 +24684,8 @@ service: unlocode: USFBN details: - _object: /ocean/railport - port_code: '3901' - _object: /trucking/port - port_code: '3901' - _object: /ocean/port - port_code: '3901' destination_addresses: - _object: /address street_address: Vandelay street 1 @@ -24876,7 +24711,6 @@ service: country: China country_code: CN timezone: Asia/Shanghai - ref: address_ref_x vat_numbers: - _object: /company_entity/vat_number country_code: GB @@ -24917,7 +24751,6 @@ service: country: China country_code: CN timezone: Asia/Shanghai - ref: address_ref_x vat_numbers: - _object: /company_entity/vat_number country_code: GB @@ -25506,7 +25339,6 @@ docs: >- "city": "Albany", "country": "United States of America", "country_code": "US", - "ref": "address_ref_x", "state": "MN", "street_address": "1641 Settlers Lane", "street_address2": "STE 2918", @@ -25599,7 +25431,6 @@ docs: >- "units": 20, }, ], - "next": "https://api.flexport.com/purchase_order_line_items?page=3&per=10", "prev": "https://api.flexport.com/purchase_orders?page=12&per=10", }, "self": "https://api.flexport.com/purchase_orders?page=13&per=10", @@ -25692,7 +25523,6 @@ docs: >- "city": "Albany", "country": "United States of America", "country_code": "US", - "ref": "address_ref_x", "state": "MN", "street_address": "1641 Settlers Lane", "street_address2": "STE 2918", @@ -25721,28 +25551,6 @@ docs: >- "units": 1, }, ], - "destination_port": { - "_object": "/place", - "address": { - "_object": "/address", - "city": "Albany", - "country": "United States of America", - "country_code": "US", - "ref": "address_ref_x", - "street_address": "1641 Settlers Lane", - "timezone": "America/Los_Angeles", - }, - "details": [ - { - "_object": "/air/port", - "country_code": "US", - "iata_code": "LAX", - "icao_code": "KLAX", - "port_code": "3901", - }, - ], - "name": "ORD - Chicago - IL", - }, "hs_codes": [ { "_object": "/hs_code", @@ -25776,34 +25584,8 @@ docs: >- "ref": "sellingcoaddress", "state": "44", "street_address": "10th YouSong Industrial District", - "street_address2": "STE 2918", "timezone": "China/Shenzhen", - "unlocode": "US AL2", - "zip": "56307", - }, - "origin_port": { - "_object": "/place", - "address": { - "_object": "/address", - "city": "Albany", - "country": "United States of America", - "country_code": "US", - "ref": "address_ref_x", - "street_address": "1641 Settlers Lane", - "timezone": "America/Los_Angeles", - }, - "details": [ - { - "_object": "/air/port", - "country_code": "US", - "iata_code": "LAX", - "icao_code": "KLAX", - "port_code": "3901", - }, - ], - "name": "ORD - Chicago - IL", }, - "parent_line_key": "parent_line_key", "product": { "color": "red", "country_of_origin": "US", @@ -26012,8 +25794,6 @@ service: data: _object: /api/collections/paginated prev: https://api.flexport.com/purchase_orders?page=12&per=10 - next: >- - https://api.flexport.com/purchase_order_line_items?page=3&per=10 data: - _object: /purchase_orders/line_item id: 123456 @@ -26082,7 +25862,6 @@ service: country_code: US zip: '56307' timezone: America/Los_Angeles - ref: address_ref_x unlocode: US AL2 vat_numbers: - _object: company_entity/vat_number @@ -26158,52 +25937,15 @@ service: transportation_mode: air unit_of_measure: HUN must_arrive_date: '2019-03-11' - origin_port: - _object: /place - name: ORD - Chicago - IL - address: - _object: /address - street_address: 1641 Settlers Lane - city: Albany - country: United States of America - country_code: US - timezone: America/Los_Angeles - ref: address_ref_x - details: - - _object: /air/port - port_code: '3901' - country_code: US - iata_code: LAX - icao_code: KLAX origin_location: _object: /address street_address: 10th YouSong Industrial District - street_address2: STE 2918 city: Shenzhen state: '44' country: China country_code: CN - zip: '56307' timezone: China/Shenzhen ref: sellingcoaddress - unlocode: US AL2 - destination_port: - _object: /place - name: ORD - Chicago - IL - address: - _object: /address - street_address: 1641 Settlers Lane - city: Albany - country: United States of America - country_code: US - timezone: America/Los_Angeles - ref: address_ref_x - details: - - _object: /air/port - port_code: '3901' - country_code: US - iata_code: LAX - icao_code: KLAX destination_addresses: - location_ref: id-1234 units: 1 @@ -26211,7 +25953,6 @@ service: - _object: /hs_code code: 8309.90.10.00 country_code: US - parent_line_key: parent_line_key assigned_party: _object: /company_entity id: 9281 @@ -26227,7 +25968,6 @@ service: country_code: US zip: '56307' timezone: America/Los_Angeles - ref: address_ref_x unlocode: US AL2 vat_numbers: - _object: company_entity/vat_number @@ -26551,8 +26291,6 @@ docs: >- "wants_trade_declaration_service": false, }, ], - "next": "next", - "prev": "prev", }, "self": "https://api.flexport.com/shipments?page=1&per=20&sort=id&direction=desc", "version": 2, @@ -26804,19 +26542,6 @@ docs: >- "actual_delivered_in_full_date": "2019-02-06T19:28:25Z", "actual_departure_date": "2019-02-06T19:28:25Z", "actual_picked_up_in_full_date": "2019-02-06T19:28:25Z", - "air_shipment": { - "_object": "/air/shipment", - "chargeable_volume": { - "_object": "/quantity/volume", - "value": 472.62, - }, - "chargeable_weight": { - "_object": "/quantity/weight", - "value": 2300.4, - }, - "house_airway_bill": "HWXJKE67732", - "master_airway_bill": "22831046871", - }, "arrival_date": "2019-02-06T19:28:25Z", "belongs_to_a_buyers_consol": false, "booking": { @@ -26864,14 +26589,6 @@ docs: >- "value": 2300.4, }, "cargo_ready_date": "2019-02-06", - "child_shipments": [ - { - "_object": "/api/refs/object", - "id": 123, - "link": "https://api.flexport.com/shipments/123", - "ref_type": "/shipment", - }, - ], "commercial_invoices": { "_object": "/api/refs/collection", "link": "https://api.flexport.com/commercial_invoices?f.shipment.id=2983", @@ -27012,12 +26729,6 @@ docs: >- "is_lcl": false, "master_bill_number": "NEWO697216024", }, - "parent_shipment": { - "_object": "/api/refs/object", - "id": 123, - "link": "https://api.flexport.com/shipments/123", - "ref_type": "/shipment", - }, "picked_up_in_full_date": "2019-02-06T19:28:25Z", "pieces": 8372, "priority": "high", @@ -27138,19 +26849,6 @@ docs: >- "actual_delivered_in_full_date": "2019-02-06T19:28:25Z", "actual_departure_date": "2019-02-06T19:28:25Z", "actual_picked_up_in_full_date": "2019-02-06T19:28:25Z", - "air_shipment": { - "_object": "/air/shipment", - "chargeable_volume": { - "_object": "/quantity/volume", - "value": 472.62, - }, - "chargeable_weight": { - "_object": "/quantity/weight", - "value": 2300.4, - }, - "house_airway_bill": "HWXJKE67732", - "master_airway_bill": "22831046871", - }, "arrival_date": "2019-02-06T19:28:25Z", "belongs_to_a_buyers_consol": true, "booking": { @@ -27840,8 +27538,6 @@ service: version: 2 data: _object: /api/collections/paginated - prev: prev - next: next data: - metadata: key: value @@ -28126,16 +27822,6 @@ service: visibility_only: false wants_delivery_service: false belongs_to_a_buyers_consol: false - child_shipments: - - _object: /api/refs/object - ref_type: /shipment - link: https://api.flexport.com/shipments/123 - id: 123 - parent_shipment: - _object: /api/refs/object - ref_type: /shipment - link: https://api.flexport.com/shipments/123 - id: 123 estimated_picked_up_in_full_date: '2019-02-06T19:28:25Z' actual_picked_up_in_full_date: '2019-02-06T19:28:25Z' target_delivery_date: target_delivery_date @@ -28155,16 +27841,6 @@ service: ref_type: /ocean/shipment_container link: >- https://api.flexport.com/ocean/shipment_containers?f.shipment.id=123 - air_shipment: - _object: /air/shipment - house_airway_bill: HWXJKE67732 - master_airway_bill: '22831046871' - chargeable_weight: - value: 2300.4 - _object: /quantity/weight - chargeable_volume: - value: 472.62 - _object: /quantity/volume dangerous_goods: _object: /shipment/dangerous_goods review_status: complete @@ -28428,16 +28104,6 @@ service: ref_type: /ocean/shipment_container link: >- https://api.flexport.com/ocean/shipment_containers?f.shipment.id=123 - air_shipment: - _object: /air/shipment - house_airway_bill: HWXJKE67732 - master_airway_bill: '22831046871' - chargeable_weight: - value: 2300.4 - _object: /quantity/weight - chargeable_volume: - value: 472.62 - _object: /quantity/volume dangerous_goods: _object: /shipment/dangerous_goods review_status: complete @@ -28888,12 +28554,6 @@ docs: Endpoints relating to Shipment objects "delivery_completed": "2019-07-14T04:00:00Z", "loaded_on_truck_date": "2019-07-13T04:00:00Z", }, - "air_leg": { - "_object": "/air/shipment_leg", - "flight_number": "Y8 1234", - "iata_code": "2Q", - "icao_code": "SNC", - }, "cargo_ready_date": "cargo_ready_date", "carrier_name": "Liberty Carrier", "deleted_at": "2024-01-15T09:30:00Z", @@ -28932,11 +28592,6 @@ docs: Endpoints relating to Shipment objects "tags": [ "port_of_loading", ], - "terminal": { - "_object": "/shipment_node/terminal", - "firms_code": "I092", - "name": "Terminal 3", - }, }, "estimated_arrival_date": "2019-02-06T19:28:25Z", "estimated_departure_date": "2019-02-06T19:28:25Z", @@ -29006,14 +28661,6 @@ docs: Endpoints relating to Shipment objects "name": "Terminal 3", }, }, - "rail_leg": { - "_object": "/rail/shipment_leg", - "container_legs": { - "_object": "/api/refs/collection", - "link": "https://api.flexport.com/ocean/shipment_container_legs?f.shipment_container.id=123", - "ref_type": "/ocean/shipment_container_leg", - }, - }, "shipment": { "_object": "/api/refs/object", "id": 123, @@ -29021,18 +28668,6 @@ docs: Endpoints relating to Shipment objects "ref_type": "/shipment", }, "transportation_mode": "ocean", - "trucking_leg": { - "_object": "/trucking/shipment_leg", - "container_legs": { - "_object": "/api/refs/collection", - "link": "https://api.flexport.com/ocean/shipment_container_legs?f.shipment_container.id=123", - "ref_type": "/ocean/shipment_container_leg", - }, - "pieces": 32, - "scac_code": "ABCD", - "service_type": "ltl", - "tracking_number": "FBA123456789", - }, }, "self": "https://api.flexport.com/shipment_legs/948211", "version": 2, @@ -29422,17 +29057,8 @@ service: icao_code: KORD - _object: /trucking/port port_code: '3901' - terminal: - _object: /shipment_node/terminal - name: Terminal 3 - firms_code: I092 transportation_mode: ocean carrier_name: Liberty Carrier - air_leg: - _object: /air/shipment_leg - iata_code: 2Q - icao_code: SNC - flight_number: Y8 1234 ocean_leg: _object: /ocean/shipment_leg scac_code: XJAE @@ -29444,24 +29070,6 @@ service: ref_type: /ocean/shipment_container_leg link: >- https://api.flexport.com/ocean/shipment_container_legs?f.shipment_container.id=123 - trucking_leg: - _object: /trucking/shipment_leg - tracking_number: FBA123456789 - service_type: ltl - pieces: 32 - scac_code: ABCD - container_legs: - _object: /api/refs/collection - ref_type: /ocean/shipment_container_leg - link: >- - https://api.flexport.com/ocean/shipment_container_legs?f.shipment_container.id=123 - rail_leg: - _object: /rail/shipment_leg - container_legs: - _object: /api/refs/collection - ref_type: /ocean/shipment_container_leg - link: >- - https://api.flexport.com/ocean/shipment_container_legs?f.shipment_container.id=123 cargo_ready_date: cargo_ready_date source: openapi: ../openapi.yml diff --git a/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi-docs/intercom.json b/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi-docs/intercom.json index b87a42d8959..4593cee2110 100644 --- a/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi-docs/intercom.json +++ b/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi-docs/intercom.json @@ -13721,10 +13721,6 @@ You can view the currently authorised admin along with the embedded app object ( }, ], "pages": { - "next": { - "per_page": 2, - "starting_after": "your-cursor-from-response", - }, "page": 1, "per_page": 20, "total_pages": 1, @@ -14276,9 +14272,6 @@ service: pages: type: pages page: 1 - next: - per_page: 2 - starting_after: your-cursor-from-response per_page: 20 total_pages: 1 activity_logs: @@ -20669,10 +20662,6 @@ When using the Companies endpoint and the pages object to iterate through the re }, ], "pages": { - "next": { - "per_page": 2, - "starting_after": "your-cursor-from-response", - }, "page": 1, "per_page": 15, "total_pages": 1, @@ -20784,10 +20773,6 @@ You can fetch all companies and filter by `segment_id` or `tag_id` as a query pa }, ], "pages": { - "next": { - "per_page": 2, - "starting_after": "your-cursor-from-response", - }, "page": 1, "per_page": 15, "total_pages": 1, @@ -20907,18 +20892,7 @@ You can fetch all companies and filter by `segment_id` or `tag_id` as a query pa "website": "https://www.intercom.com", }, ], - "pages": { - "next": { - "per_page": 2, - "starting_after": "your-cursor-from-response", - }, - "page": 1, - "per_page": 2, - "total_pages": 13, - "type": "pages", - }, "scroll_param": "12d403b5-dc79-47b5-8ea1-01a5ac8cb6cc", - "total_count": 100, "type": "list", }, }, @@ -21152,9 +21126,6 @@ service: pages: type: pages page: 1 - next: - per_page: 2 - starting_after: your-cursor-from-response per_page: 15 total_pages: 1 total_count: 1 @@ -21585,9 +21556,6 @@ service: pages: type: pages page: 1 - next: - per_page: 2 - starting_after: your-cursor-from-response per_page: 15 total_pages: 1 total_count: 1 @@ -21699,15 +21667,6 @@ service: name: Active created_at: 1394621988 updated_at: 1394622004 - pages: - type: pages - page: 1 - next: - per_page: 2 - starting_after: your-cursor-from-response - per_page: 2 - total_pages: 13 - total_count: 100 scroll_param: 12d403b5-dc79-47b5-8ea1-01a5ac8cb6cc attachContactToACompany: path: /contacts/{id}/companies @@ -22086,19 +22045,6 @@ types: }, "response": { "body": { - "android_app_name": "Intercom", - "android_app_version": "5.0.0", - "android_device": "Pixel 3", - "android_last_seen_at": 1571672154, - "android_os_version": "10", - "android_sdk_version": "28", - "avatar": { - "image_url": "https://example.org/128Wash.jpg", - "type": "avatar", - }, - "browser": "Chrome", - "browser_language": "en-US", - "browser_version": "80.0.3987.132", "companies": { "has_more": false, "total_count": 0, @@ -22110,30 +22056,13 @@ types: }, "email": "joebloggs@intercom.io", "email_domain": "example.com", - "external_id": "f3b87a2e09d514c6c2e79b9a", "formatted_phone": "+1123456789", "has_hard_bounced": false, "id": "667d60b08a68186f43bafdbf", - "ios_app_name": "Intercom", - "ios_app_version": "5.0.0", - "ios_device": "iPhone 11", - "ios_last_seen_at": 1571672154, - "ios_os_version": "13.3.1", - "ios_sdk_version": "13.3.1", - "language_override": "en", - "last_contacted_at": 1571672154, - "last_email_clicked_at": 1571672154, - "last_email_opened_at": 1571672154, - "last_replied_at": 1571672154, - "last_seen_at": 1571672154, "location": { - "city": "Dublin", - "country": "Ireland", - "region": "Dublin", "type": "location", }, "marked_email_as_spam": false, - "name": "John Doe", "notes": { "data": [ { @@ -22146,11 +22075,7 @@ types: "total_count": 0, "url": "/contacts/667d60b08a68186f43bafdbf/notes", }, - "os": "Mac OS X", - "owner_id": 123, - "phone": "+1123456789", "role": "user", - "signed_up_at": 1571672154, "social_profiles": { "data": [ { @@ -22359,19 +22284,6 @@ types: }, "response": { "body": { - "android_app_name": "Intercom", - "android_app_version": "5.0.0", - "android_device": "Pixel 3", - "android_last_seen_at": 1571672154, - "android_os_version": "10", - "android_sdk_version": "28", - "avatar": { - "image_url": "https://example.org/128Wash.jpg", - "type": "avatar", - }, - "browser": "Chrome", - "browser_language": "en-US", - "browser_version": "80.0.3987.132", "companies": { "has_more": false, "total_count": 0, @@ -22387,22 +22299,7 @@ types: "formatted_phone": "+1123456789", "has_hard_bounced": false, "id": "667d60ac8a68186f43bafdbc", - "ios_app_name": "Intercom", - "ios_app_version": "5.0.0", - "ios_device": "iPhone 11", - "ios_last_seen_at": 1571672154, - "ios_os_version": "13.3.1", - "ios_sdk_version": "13.3.1", - "language_override": "en", - "last_contacted_at": 1571672154, - "last_email_clicked_at": 1571672154, - "last_email_opened_at": 1571672154, - "last_replied_at": 1571672154, - "last_seen_at": 1571672154, "location": { - "city": "Dublin", - "country": "Ireland", - "region": "Dublin", "type": "location", }, "marked_email_as_spam": false, @@ -22419,9 +22316,6 @@ types: "total_count": 0, "url": "/contacts/667d60ac8a68186f43bafdbc/notes", }, - "os": "Mac OS X", - "owner_id": 123, - "phone": "+1123456789", "role": "user", "signed_up_at": 1719492780, "social_profiles": { @@ -22722,19 +22616,6 @@ The table below shows the operators you can use to define how you want to search }, "response": { "body": { - "android_app_name": "Intercom", - "android_app_version": "5.0.0", - "android_device": "Pixel 3", - "android_last_seen_at": 1571672154, - "android_os_version": "10", - "android_sdk_version": "28", - "avatar": { - "image_url": "https://example.org/128Wash.jpg", - "type": "avatar", - }, - "browser": "Chrome", - "browser_language": "en-US", - "browser_version": "80.0.3987.132", "companies": { "has_more": false, "total_count": 0, @@ -22750,22 +22631,7 @@ The table below shows the operators you can use to define how you want to search "formatted_phone": "+1123456789", "has_hard_bounced": false, "id": "667d60a98a68186f43bafdb9", - "ios_app_name": "Intercom", - "ios_app_version": "5.0.0", - "ios_device": "iPhone 11", - "ios_last_seen_at": 1571672154, - "ios_os_version": "13.3.1", - "ios_sdk_version": "13.3.1", - "language_override": "en", - "last_contacted_at": 1571672154, - "last_email_clicked_at": 1571672154, - "last_email_opened_at": 1571672154, - "last_replied_at": 1571672154, - "last_seen_at": 1571672154, "location": { - "city": "Dublin", - "country": "Ireland", - "region": "Dublin", "type": "location", }, "marked_email_as_spam": false, @@ -22782,9 +22648,6 @@ The table below shows the operators you can use to define how you want to search "total_count": 0, "url": "/contacts/667d60a98a68186f43bafdb9/notes", }, - "os": "Mac OS X", - "owner_id": 123, - "phone": "+1123456789", "role": "user", "signed_up_at": 1719492777, "social_profiles": { @@ -22889,19 +22752,6 @@ The table below shows the operators you can use to define how you want to search }, "response": { "body": { - "android_app_name": "Intercom", - "android_app_version": "5.0.0", - "android_device": "Pixel 3", - "android_last_seen_at": 1571672154, - "android_os_version": "10", - "android_sdk_version": "28", - "avatar": { - "image_url": "https://example.org/128Wash.jpg", - "type": "avatar", - }, - "browser": "Chrome", - "browser_language": "en-US", - "browser_version": "80.0.3987.132", "companies": { "has_more": false, "total_count": 0, @@ -22917,22 +22767,7 @@ The table below shows the operators you can use to define how you want to search "formatted_phone": "+1123456789", "has_hard_bounced": false, "id": "667d60a88a68186f43bafdb8", - "ios_app_name": "Intercom", - "ios_app_version": "5.0.0", - "ios_device": "iPhone 11", - "ios_last_seen_at": 1571672154, - "ios_os_version": "13.3.1", - "ios_sdk_version": "13.3.1", - "language_override": "en", - "last_contacted_at": 1571672154, - "last_email_clicked_at": 1571672154, - "last_email_opened_at": 1571672154, - "last_replied_at": 1571672154, - "last_seen_at": 1571672154, "location": { - "city": "Dublin", - "country": "Ireland", - "region": "Dublin", "type": "location", }, "marked_email_as_spam": false, @@ -22949,9 +22784,6 @@ The table below shows the operators you can use to define how you want to search "total_count": 0, "url": "/contacts/667d60a88a68186f43bafdb8/notes", }, - "os": "Mac OS X", - "owner_id": 123, - "phone": "+1123456789", "role": "user", "signed_up_at": 1719492776, "social_profiles": { @@ -23101,7 +22933,6 @@ The table below shows the operators you can use to define how you want to search }, ], "pages": { - "next": "next", "page": 1, "per_page": 50, "total_pages": 1, @@ -23594,7 +23425,6 @@ service: pages: type: pages page: 1 - next: next per_page: 50 total_pages: 1 listSegmentsForAContact: @@ -23760,43 +23590,16 @@ service: role: user email: joe@bloggs.com email_domain: example.com - phone: '+1123456789' formatted_phone: '+1123456789' name: Joe Bloggs - owner_id: 123 has_hard_bounced: false marked_email_as_spam: false unsubscribed_from_emails: false created_at: 1719492777 updated_at: 1719492777 signed_up_at: 1719492777 - last_seen_at: 1571672154 - last_replied_at: 1571672154 - last_contacted_at: 1571672154 - last_email_opened_at: 1571672154 - last_email_clicked_at: 1571672154 - language_override: en - browser: Chrome - browser_version: 80.0.3987.132 - browser_language: en-US - os: Mac OS X - android_app_name: Intercom - android_app_version: 5.0.0 - android_device: Pixel 3 - android_os_version: '10' - android_sdk_version: '28' - android_last_seen_at: 1571672154 - ios_app_name: Intercom - ios_app_version: 5.0.0 - ios_device: iPhone 11 - ios_os_version: 13.3.1 - ios_sdk_version: 13.3.1 - ios_last_seen_at: 1571672154 custom_attributes: key: value - avatar: - type: avatar - image_url: https://example.org/128Wash.jpg tags: data: - type: note @@ -23819,9 +23622,6 @@ service: has_more: false location: type: location - country: Ireland - region: Dublin - city: Dublin social_profiles: data: - type: social_profile @@ -23902,43 +23702,16 @@ service: role: user email: joebloggs@intercom.io email_domain: example.com - phone: '+1123456789' formatted_phone: '+1123456789' name: joe bloggs - owner_id: 123 has_hard_bounced: false marked_email_as_spam: false unsubscribed_from_emails: false created_at: 1719492776 updated_at: 1719492776 signed_up_at: 1719492776 - last_seen_at: 1571672154 - last_replied_at: 1571672154 - last_contacted_at: 1571672154 - last_email_opened_at: 1571672154 - last_email_clicked_at: 1571672154 - language_override: en - browser: Chrome - browser_version: 80.0.3987.132 - browser_language: en-US - os: Mac OS X - android_app_name: Intercom - android_app_version: 5.0.0 - android_device: Pixel 3 - android_os_version: '10' - android_sdk_version: '28' - android_last_seen_at: 1571672154 - ios_app_name: Intercom - ios_app_version: 5.0.0 - ios_device: iPhone 11 - ios_os_version: 13.3.1 - ios_sdk_version: 13.3.1 - ios_last_seen_at: 1571672154 custom_attributes: key: value - avatar: - type: avatar - image_url: https://example.org/128Wash.jpg tags: data: - type: note @@ -23961,9 +23734,6 @@ service: has_more: false location: type: location - country: Ireland - region: Dublin - city: Dublin social_profiles: data: - type: social_profile @@ -24040,43 +23810,16 @@ service: role: user email: joe@bloggs.com email_domain: example.com - phone: '+1123456789' formatted_phone: '+1123456789' name: Joe Bloggs - owner_id: 123 has_hard_bounced: false marked_email_as_spam: false unsubscribed_from_emails: false created_at: 1719492780 updated_at: 1719492780 signed_up_at: 1719492780 - last_seen_at: 1571672154 - last_replied_at: 1571672154 - last_contacted_at: 1571672154 - last_email_opened_at: 1571672154 - last_email_clicked_at: 1571672154 - language_override: en - browser: Chrome - browser_version: 80.0.3987.132 - browser_language: en-US - os: Mac OS X - android_app_name: Intercom - android_app_version: 5.0.0 - android_device: Pixel 3 - android_os_version: '10' - android_sdk_version: '28' - android_last_seen_at: 1571672154 - ios_app_name: Intercom - ios_app_version: 5.0.0 - ios_device: iPhone 11 - ios_os_version: 13.3.1 - ios_sdk_version: 13.3.1 - ios_last_seen_at: 1571672154 custom_attributes: key: value - avatar: - type: avatar - image_url: https://example.org/128Wash.jpg tags: data: - type: note @@ -24099,9 +23842,6 @@ service: has_more: false location: type: location - country: Ireland - region: Dublin - city: Dublin social_profiles: data: - type: social_profile @@ -24532,48 +24272,18 @@ service: body: type: contact id: 667d60b08a68186f43bafdbf - external_id: f3b87a2e09d514c6c2e79b9a workspace_id: this_is_an_id272_that_should_be_at_least_ role: user email: joebloggs@intercom.io email_domain: example.com - phone: '+1123456789' formatted_phone: '+1123456789' - name: John Doe - owner_id: 123 has_hard_bounced: false marked_email_as_spam: false unsubscribed_from_emails: false created_at: 1719492784 updated_at: 1719492784 - signed_up_at: 1571672154 - last_seen_at: 1571672154 - last_replied_at: 1571672154 - last_contacted_at: 1571672154 - last_email_opened_at: 1571672154 - last_email_clicked_at: 1571672154 - language_override: en - browser: Chrome - browser_version: 80.0.3987.132 - browser_language: en-US - os: Mac OS X - android_app_name: Intercom - android_app_version: 5.0.0 - android_device: Pixel 3 - android_os_version: '10' - android_sdk_version: '28' - android_last_seen_at: 1571672154 - ios_app_name: Intercom - ios_app_version: 5.0.0 - ios_device: iPhone 11 - ios_os_version: 13.3.1 - ios_sdk_version: 13.3.1 - ios_last_seen_at: 1571672154 custom_attributes: key: value - avatar: - type: avatar - image_url: https://example.org/128Wash.jpg tags: data: - type: note @@ -24596,9 +24306,6 @@ service: has_more: false location: type: location - country: Ireland - region: Dublin - city: Dublin social_profiles: data: - type: social_profile @@ -25259,26 +24966,6 @@ It is not possible to use this endpoint with Workflows. }, "response": { "body": { - "admin_assignee_id": 0, - "ai_agent": { - "content_sources": { - "content_sources": [ - { - "locale": "en", - "title": "My internal content snippet", - "url": "/fin-ai-agent/content?content=content_snippet&id=3234924", - }, - ], - "total_count": 1, - "type": "content_source.list", - }, - "last_answer_type": "ai_answer", - "rating": 4, - "rating_remark": "Very helpful!", - "resolution_state": "assumed_resolution", - "source_title": "My AI Workflow", - "source_type": "essentials_plan_setup", - }, "ai_agent_participated": false, "contacts": { "contacts": [ @@ -25325,29 +25012,10 @@ It is not possible to use this endpoint with Workflows. "total_count": 1, "type": "conversation_part.list", }, - "conversation_rating": { - "contact": { - "external_id": "f3b87a2e09d514c6c2e79b9a", - "id": "5ba682d23d7cf92bef87bfd4", - "type": "contact", - }, - "created_at": 1671028894, - "rating": 5, - "remark": "", - "teammate": { - "id": "1a2b3c", - "type": "contact", - }, - }, "created_at": 1719492880, "custom_attributes": { "key": "value", }, - "first_contact_reply": { - "created_at": 1663597223, - "type": "conversation", - "url": "https://developers.intercom.com/", - }, "id": "409", "linked_objects": { "data": [ @@ -25362,12 +25030,6 @@ It is not possible to use this endpoint with Workflows. "open": false, "priority": "not_priority", "read": false, - "sla_applied": { - "sla_name": "", - "sla_status": "hit", - "type": "conversation_sla_summary", - }, - "snoozed_until": 1663597260, "source": { "attachments": [ { @@ -25392,30 +25054,8 @@ It is not possible to use this endpoint with Workflows. "redacted": false, "subject": "", "type": "conversation", - "url": "url", }, "state": "closed", - "statistics": { - "count_assignments": 1, - "count_conversation_parts": 1, - "count_reopens": 1, - "first_admin_reply_at": 1663597233, - "first_assignment_at": 1663597233, - "first_close_at": 1663597233, - "first_contact_reply_at": 1663597233, - "last_admin_reply_at": 1663597233, - "last_assignment_admin_reply_at": 1663597233, - "last_assignment_at": 1663597233, - "last_close_at": 1663597233, - "last_closed_by_id": "c3po", - "last_contact_reply_at": 1663597233, - "median_time_to_reply": 2310, - "time_to_admin_reply": 2310, - "time_to_assignment": 2310, - "time_to_first_close": 2310, - "time_to_last_close": 2310, - "type": "conversation_statistics", - }, "tags": { "tags": [ { @@ -25427,19 +25067,8 @@ It is not possible to use this endpoint with Workflows. ], "type": "tag.list", }, - "team_assignee_id": "5017691", - "teammates": { - "teammates": [ - { - "type": "contact", - }, - ], - "type": "admin.list", - }, - "title": "Conversation Title", "type": "conversation", "updated_at": 1719492881, - "waiting_since": 1663597260, }, }, }, @@ -26694,26 +26323,6 @@ You can optionally request the result page size and the cursor to start after to }, "response": { "body": { - "admin_assignee_id": 0, - "ai_agent": { - "content_sources": { - "content_sources": [ - { - "locale": "en", - "title": "My internal content snippet", - "url": "/fin-ai-agent/content?content=content_snippet&id=3234924", - }, - ], - "total_count": 1, - "type": "content_source.list", - }, - "last_answer_type": "ai_answer", - "rating": 4, - "rating_remark": "Very helpful!", - "resolution_state": "assumed_resolution", - "source_title": "My AI Workflow", - "source_type": "essentials_plan_setup", - }, "ai_agent_participated": false, "contacts": { "contacts": [ @@ -26758,29 +26367,10 @@ You can optionally request the result page size and the cursor to start after to "total_count": 1, "type": "conversation_part.list", }, - "conversation_rating": { - "contact": { - "external_id": "f3b87a2e09d514c6c2e79b9a", - "id": "5ba682d23d7cf92bef87bfd4", - "type": "contact", - }, - "created_at": 1671028894, - "rating": 5, - "remark": "", - "teammate": { - "id": "1a2b3c", - "type": "contact", - }, - }, "created_at": 1719492862, "custom_attributes": { "key": "value", }, - "first_contact_reply": { - "created_at": 1663597223, - "type": "conversation", - "url": "https://developers.intercom.com/", - }, "id": "394", "linked_objects": { "data": [ @@ -26795,12 +26385,6 @@ You can optionally request the result page size and the cursor to start after to "open": false, "priority": "not_priority", "read": false, - "sla_applied": { - "sla_name": "", - "sla_status": "hit", - "type": "conversation_sla_summary", - }, - "snoozed_until": 1663597260, "source": { "attachments": [ { @@ -26825,30 +26409,8 @@ You can optionally request the result page size and the cursor to start after to "redacted": false, "subject": "", "type": "conversation", - "url": "url", }, "state": "closed", - "statistics": { - "count_assignments": 1, - "count_conversation_parts": 1, - "count_reopens": 1, - "first_admin_reply_at": 1663597233, - "first_assignment_at": 1663597233, - "first_close_at": 1663597233, - "first_contact_reply_at": 1663597233, - "last_admin_reply_at": 1663597233, - "last_assignment_admin_reply_at": 1663597233, - "last_assignment_at": 1663597233, - "last_close_at": 1663597233, - "last_closed_by_id": "c3po", - "last_contact_reply_at": 1663597233, - "median_time_to_reply": 2310, - "time_to_admin_reply": 2310, - "time_to_assignment": 2310, - "time_to_first_close": 2310, - "time_to_last_close": 2310, - "type": "conversation_statistics", - }, "tags": { "tags": [ { @@ -26860,19 +26422,8 @@ You can optionally request the result page size and the cursor to start after to ], "type": "tag.list", }, - "team_assignee_id": "5017691", - "teammates": { - "teammates": [ - { - "type": "contact", - }, - ], - "type": "admin.list", - }, - "title": "Conversation Title", "type": "conversation", "updated_at": 1719492862, - "waiting_since": 1663597260, }, }, }, @@ -26890,26 +26441,6 @@ You can optionally request the result page size and the cursor to start after to }, "response": { "body": { - "admin_assignee_id": 0, - "ai_agent": { - "content_sources": { - "content_sources": [ - { - "locale": "en", - "title": "My internal content snippet", - "url": "/fin-ai-agent/content?content=content_snippet&id=3234924", - }, - ], - "total_count": 1, - "type": "content_source.list", - }, - "last_answer_type": "ai_answer", - "rating": 4, - "rating_remark": "Very helpful!", - "resolution_state": "assumed_resolution", - "source_title": "My AI Workflow", - "source_type": "essentials_plan_setup", - }, "ai_agent_participated": false, "contacts": { "contacts": [ @@ -26953,29 +26484,10 @@ You can optionally request the result page size and the cursor to start after to "total_count": 1, "type": "conversation_part.list", }, - "conversation_rating": { - "contact": { - "external_id": "f3b87a2e09d514c6c2e79b9a", - "id": "5ba682d23d7cf92bef87bfd4", - "type": "contact", - }, - "created_at": 1671028894, - "rating": 5, - "remark": "", - "teammate": { - "id": "1a2b3c", - "type": "contact", - }, - }, "created_at": 1719492864, "custom_attributes": { "key": "value", }, - "first_contact_reply": { - "created_at": 1663597223, - "type": "conversation", - "url": "https://developers.intercom.com/", - }, "id": "395", "linked_objects": { "data": [ @@ -26990,11 +26502,6 @@ You can optionally request the result page size and the cursor to start after to "open": true, "priority": "not_priority", "read": false, - "sla_applied": { - "sla_name": "", - "sla_status": "hit", - "type": "conversation_sla_summary", - }, "snoozed_until": 1719496464, "source": { "attachments": [ @@ -27020,30 +26527,8 @@ You can optionally request the result page size and the cursor to start after to "redacted": false, "subject": "", "type": "conversation", - "url": "url", }, "state": "snoozed", - "statistics": { - "count_assignments": 1, - "count_conversation_parts": 1, - "count_reopens": 1, - "first_admin_reply_at": 1663597233, - "first_assignment_at": 1663597233, - "first_close_at": 1663597233, - "first_contact_reply_at": 1663597233, - "last_admin_reply_at": 1663597233, - "last_assignment_admin_reply_at": 1663597233, - "last_assignment_at": 1663597233, - "last_close_at": 1663597233, - "last_closed_by_id": "c3po", - "last_contact_reply_at": 1663597233, - "median_time_to_reply": 2310, - "time_to_admin_reply": 2310, - "time_to_assignment": 2310, - "time_to_first_close": 2310, - "time_to_last_close": 2310, - "type": "conversation_statistics", - }, "tags": { "tags": [ { @@ -27055,19 +26540,8 @@ You can optionally request the result page size and the cursor to start after to ], "type": "tag.list", }, - "team_assignee_id": "5017691", - "teammates": { - "teammates": [ - { - "type": "contact", - }, - ], - "type": "admin.list", - }, - "title": "Conversation Title", "type": "conversation", "updated_at": 1719492864, - "waiting_since": 1663597260, }, }, }, @@ -27085,26 +26559,6 @@ You can optionally request the result page size and the cursor to start after to }, "response": { "body": { - "admin_assignee_id": 0, - "ai_agent": { - "content_sources": { - "content_sources": [ - { - "locale": "en", - "title": "My internal content snippet", - "url": "/fin-ai-agent/content?content=content_snippet&id=3234924", - }, - ], - "total_count": 1, - "type": "content_source.list", - }, - "last_answer_type": "ai_answer", - "rating": 4, - "rating_remark": "Very helpful!", - "resolution_state": "assumed_resolution", - "source_title": "My AI Workflow", - "source_type": "essentials_plan_setup", - }, "ai_agent_participated": false, "contacts": { "contacts": [ @@ -27148,29 +26602,10 @@ You can optionally request the result page size and the cursor to start after to "total_count": 1, "type": "conversation_part.list", }, - "conversation_rating": { - "contact": { - "external_id": "f3b87a2e09d514c6c2e79b9a", - "id": "5ba682d23d7cf92bef87bfd4", - "type": "contact", - }, - "created_at": 1671028894, - "rating": 5, - "remark": "", - "teammate": { - "id": "1a2b3c", - "type": "contact", - }, - }, "created_at": 1719492863, "custom_attributes": { "key": "value", }, - "first_contact_reply": { - "created_at": 1663597223, - "type": "conversation", - "url": "https://developers.intercom.com/", - }, "id": "400", "linked_objects": { "data": [ @@ -27185,12 +26620,6 @@ You can optionally request the result page size and the cursor to start after to "open": true, "priority": "not_priority", "read": true, - "sla_applied": { - "sla_name": "", - "sla_status": "hit", - "type": "conversation_sla_summary", - }, - "snoozed_until": 1663597260, "source": { "attachments": [ { @@ -27215,30 +26644,8 @@ You can optionally request the result page size and the cursor to start after to "redacted": false, "subject": "", "type": "conversation", - "url": "url", }, "state": "open", - "statistics": { - "count_assignments": 1, - "count_conversation_parts": 1, - "count_reopens": 1, - "first_admin_reply_at": 1663597233, - "first_assignment_at": 1663597233, - "first_close_at": 1663597233, - "first_contact_reply_at": 1663597233, - "last_admin_reply_at": 1663597233, - "last_assignment_admin_reply_at": 1663597233, - "last_assignment_at": 1663597233, - "last_close_at": 1663597233, - "last_closed_by_id": "c3po", - "last_contact_reply_at": 1663597233, - "median_time_to_reply": 2310, - "time_to_admin_reply": 2310, - "time_to_assignment": 2310, - "time_to_first_close": 2310, - "time_to_last_close": 2310, - "type": "conversation_statistics", - }, "tags": { "tags": [ { @@ -27250,19 +26657,9 @@ You can optionally request the result page size and the cursor to start after to ], "type": "tag.list", }, - "team_assignee_id": "5017691", - "teammates": { - "teammates": [ - { - "type": "contact", - }, - ], - "type": "admin.list", - }, "title": "", "type": "conversation", "updated_at": 1719492873, - "waiting_since": 1663597260, }, }, }, @@ -27281,25 +26678,6 @@ You can optionally request the result page size and the cursor to start after to "response": { "body": { "admin_assignee_id": 991267615, - "ai_agent": { - "content_sources": { - "content_sources": [ - { - "locale": "en", - "title": "My internal content snippet", - "url": "/fin-ai-agent/content?content=content_snippet&id=3234924", - }, - ], - "total_count": 1, - "type": "content_source.list", - }, - "last_answer_type": "ai_answer", - "rating": 4, - "rating_remark": "Very helpful!", - "resolution_state": "assumed_resolution", - "source_title": "My AI Workflow", - "source_type": "essentials_plan_setup", - }, "ai_agent_participated": false, "contacts": { "contacts": [ @@ -27347,29 +26725,10 @@ You can optionally request the result page size and the cursor to start after to "total_count": 1, "type": "conversation_part.list", }, - "conversation_rating": { - "contact": { - "external_id": "f3b87a2e09d514c6c2e79b9a", - "id": "5ba682d23d7cf92bef87bfd4", - "type": "contact", - }, - "created_at": 1671028894, - "rating": 5, - "remark": "", - "teammate": { - "id": "1a2b3c", - "type": "contact", - }, - }, "created_at": 1719492874, "custom_attributes": { "key": "value", }, - "first_contact_reply": { - "created_at": 1663597223, - "type": "conversation", - "url": "https://developers.intercom.com/", - }, "id": "405", "linked_objects": { "data": [ @@ -27384,12 +26743,6 @@ You can optionally request the result page size and the cursor to start after to "open": true, "priority": "not_priority", "read": false, - "sla_applied": { - "sla_name": "", - "sla_status": "hit", - "type": "conversation_sla_summary", - }, - "snoozed_until": 1663597260, "source": { "attachments": [ { @@ -27414,30 +26767,8 @@ You can optionally request the result page size and the cursor to start after to "redacted": false, "subject": "", "type": "conversation", - "url": "url", }, "state": "open", - "statistics": { - "count_assignments": 1, - "count_conversation_parts": 1, - "count_reopens": 1, - "first_admin_reply_at": 1663597233, - "first_assignment_at": 1663597233, - "first_close_at": 1663597233, - "first_contact_reply_at": 1663597233, - "last_admin_reply_at": 1663597233, - "last_assignment_admin_reply_at": 1663597233, - "last_assignment_at": 1663597233, - "last_close_at": 1663597233, - "last_closed_by_id": "c3po", - "last_contact_reply_at": 1663597233, - "median_time_to_reply": 2310, - "time_to_admin_reply": 2310, - "time_to_assignment": 2310, - "time_to_first_close": 2310, - "time_to_last_close": 2310, - "type": "conversation_statistics", - }, "tags": { "tags": [ { @@ -27449,19 +26780,8 @@ You can optionally request the result page size and the cursor to start after to ], "type": "tag.list", }, - "team_assignee_id": "5017691", - "teammates": { - "teammates": [ - { - "type": "contact", - }, - ], - "type": "admin.list", - }, - "title": "Conversation Title", "type": "conversation", "updated_at": 1719492875, - "waiting_since": 1663597260, }, }, }, @@ -27479,26 +26799,6 @@ You can optionally request the result page size and the cursor to start after to }, "response": { "body": { - "admin_assignee_id": 0, - "ai_agent": { - "content_sources": { - "content_sources": [ - { - "locale": "en", - "title": "My internal content snippet", - "url": "/fin-ai-agent/content?content=content_snippet&id=3234924", - }, - ], - "total_count": 1, - "type": "content_source.list", - }, - "last_answer_type": "ai_answer", - "rating": 4, - "rating_remark": "Very helpful!", - "resolution_state": "assumed_resolution", - "source_title": "My AI Workflow", - "source_type": "essentials_plan_setup", - }, "ai_agent_participated": false, "contacts": { "contacts": [ @@ -27543,29 +26843,10 @@ You can optionally request the result page size and the cursor to start after to "total_count": 1, "type": "conversation_part.list", }, - "conversation_rating": { - "contact": { - "external_id": "f3b87a2e09d514c6c2e79b9a", - "id": "5ba682d23d7cf92bef87bfd4", - "type": "contact", - }, - "created_at": 1671028894, - "rating": 5, - "remark": "", - "teammate": { - "id": "1a2b3c", - "type": "contact", - }, - }, "created_at": 1719492862, "custom_attributes": { "key": "value", }, - "first_contact_reply": { - "created_at": 1663597223, - "type": "conversation", - "url": "https://developers.intercom.com/", - }, "id": "394", "linked_objects": { "data": [ @@ -27580,12 +26861,6 @@ You can optionally request the result page size and the cursor to start after to "open": false, "priority": "not_priority", "read": false, - "sla_applied": { - "sla_name": "", - "sla_status": "hit", - "type": "conversation_sla_summary", - }, - "snoozed_until": 1663597260, "source": { "attachments": [ { @@ -27610,30 +26885,8 @@ You can optionally request the result page size and the cursor to start after to "redacted": false, "subject": "", "type": "conversation", - "url": "url", }, "state": "closed", - "statistics": { - "count_assignments": 1, - "count_conversation_parts": 1, - "count_reopens": 1, - "first_admin_reply_at": 1663597233, - "first_assignment_at": 1663597233, - "first_close_at": 1663597233, - "first_contact_reply_at": 1663597233, - "last_admin_reply_at": 1663597233, - "last_assignment_admin_reply_at": 1663597233, - "last_assignment_at": 1663597233, - "last_close_at": 1663597233, - "last_closed_by_id": "c3po", - "last_contact_reply_at": 1663597233, - "median_time_to_reply": 2310, - "time_to_admin_reply": 2310, - "time_to_assignment": 2310, - "time_to_first_close": 2310, - "time_to_last_close": 2310, - "type": "conversation_statistics", - }, "tags": { "tags": [ { @@ -27645,19 +26898,8 @@ You can optionally request the result page size and the cursor to start after to ], "type": "tag.list", }, - "team_assignee_id": "5017691", - "teammates": { - "teammates": [ - { - "type": "contact", - }, - ], - "type": "admin.list", - }, - "title": "Conversation Title", "type": "conversation", "updated_at": 1719492862, - "waiting_since": 1663597260, }, }, }, @@ -27707,26 +26949,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda }, "response": { "body": { - "admin_assignee_id": 0, - "ai_agent": { - "content_sources": { - "content_sources": [ - { - "locale": "en", - "title": "My internal content snippet", - "url": "/fin-ai-agent/content?content=content_snippet&id=3234924", - }, - ], - "total_count": 1, - "type": "content_source.list", - }, - "last_answer_type": "ai_answer", - "rating": 4, - "rating_remark": "Very helpful!", - "resolution_state": "assumed_resolution", - "source_title": "My AI Workflow", - "source_type": "essentials_plan_setup", - }, "ai_agent_participated": false, "contacts": { "contacts": [ @@ -27771,20 +26993,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda "total_count": 1, "type": "conversation_part.list", }, - "conversation_rating": { - "contact": { - "external_id": "f3b87a2e09d514c6c2e79b9a", - "id": "5ba682d23d7cf92bef87bfd4", - "type": "contact", - }, - "created_at": 1671028894, - "rating": 5, - "remark": "", - "teammate": { - "id": "1a2b3c", - "type": "contact", - }, - }, "created_at": 1719492938, "custom_attributes": { "key": "value", @@ -27792,7 +27000,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda "first_contact_reply": { "created_at": 1719492939, "type": "conversation", - "url": "https://developers.intercom.com/", }, "id": "471", "linked_objects": { @@ -27808,12 +27015,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda "open": true, "priority": "not_priority", "read": true, - "sla_applied": { - "sla_name": "", - "sla_status": "hit", - "type": "conversation_sla_summary", - }, - "snoozed_until": 1663597260, "source": { "attachments": [ { @@ -27838,30 +27039,8 @@ If you are redacting a conversation part, it must have a `body`. If you are reda "redacted": false, "subject": "", "type": "conversation", - "url": "url", }, "state": "open", - "statistics": { - "count_assignments": 1, - "count_conversation_parts": 1, - "count_reopens": 1, - "first_admin_reply_at": 1663597233, - "first_assignment_at": 1663597233, - "first_close_at": 1663597233, - "first_contact_reply_at": 1663597233, - "last_admin_reply_at": 1663597233, - "last_assignment_admin_reply_at": 1663597233, - "last_assignment_at": 1663597233, - "last_close_at": 1663597233, - "last_closed_by_id": "c3po", - "last_contact_reply_at": 1663597233, - "median_time_to_reply": 2310, - "time_to_admin_reply": 2310, - "time_to_assignment": 2310, - "time_to_first_close": 2310, - "time_to_last_close": 2310, - "type": "conversation_statistics", - }, "tags": { "tags": [ { @@ -27873,16 +27052,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda ], "type": "tag.list", }, - "team_assignee_id": "5017691", - "teammates": { - "teammates": [ - { - "type": "contact", - }, - ], - "type": "admin.list", - }, - "title": "Conversation Title", "type": "conversation", "updated_at": 1719492940, "waiting_since": 1719492939, @@ -27898,26 +27067,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda }, "response": { "body": { - "admin_assignee_id": 0, - "ai_agent": { - "content_sources": { - "content_sources": [ - { - "locale": "en", - "title": "My internal content snippet", - "url": "/fin-ai-agent/content?content=content_snippet&id=3234924", - }, - ], - "total_count": 1, - "type": "content_source.list", - }, - "last_answer_type": "ai_answer", - "rating": 4, - "rating_remark": "Very helpful!", - "resolution_state": "assumed_resolution", - "source_title": "My AI Workflow", - "source_type": "essentials_plan_setup", - }, "ai_agent_participated": false, "contacts": { "contacts": [ @@ -27962,20 +27111,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda "total_count": 1, "type": "conversation_part.list", }, - "conversation_rating": { - "contact": { - "external_id": "f3b87a2e09d514c6c2e79b9a", - "id": "5ba682d23d7cf92bef87bfd4", - "type": "contact", - }, - "created_at": 1671028894, - "rating": 5, - "remark": "", - "teammate": { - "id": "1a2b3c", - "type": "contact", - }, - }, "created_at": 1719492938, "custom_attributes": { "key": "value", @@ -27983,7 +27118,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda "first_contact_reply": { "created_at": 1719492939, "type": "conversation", - "url": "https://developers.intercom.com/", }, "id": "471", "linked_objects": { @@ -27999,12 +27133,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda "open": true, "priority": "not_priority", "read": true, - "sla_applied": { - "sla_name": "", - "sla_status": "hit", - "type": "conversation_sla_summary", - }, - "snoozed_until": 1663597260, "source": { "attachments": [ { @@ -28029,30 +27157,8 @@ If you are redacting a conversation part, it must have a `body`. If you are reda "redacted": false, "subject": "", "type": "conversation", - "url": "url", }, "state": "open", - "statistics": { - "count_assignments": 1, - "count_conversation_parts": 1, - "count_reopens": 1, - "first_admin_reply_at": 1663597233, - "first_assignment_at": 1663597233, - "first_close_at": 1663597233, - "first_contact_reply_at": 1663597233, - "last_admin_reply_at": 1663597233, - "last_assignment_admin_reply_at": 1663597233, - "last_assignment_at": 1663597233, - "last_close_at": 1663597233, - "last_closed_by_id": "c3po", - "last_contact_reply_at": 1663597233, - "median_time_to_reply": 2310, - "time_to_admin_reply": 2310, - "time_to_assignment": 2310, - "time_to_first_close": 2310, - "time_to_last_close": 2310, - "type": "conversation_statistics", - }, "tags": { "tags": [ { @@ -28064,16 +27170,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda ], "type": "tag.list", }, - "team_assignee_id": "5017691", - "teammates": { - "teammates": [ - { - "type": "contact", - }, - ], - "type": "admin.list", - }, - "title": "Conversation Title", "type": "conversation", "updated_at": 1719492940, "waiting_since": 1719492939, @@ -28119,26 +27215,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda }, "response": { "body": { - "admin_assignee_id": 0, - "ai_agent": { - "content_sources": { - "content_sources": [ - { - "locale": "en", - "title": "My internal content snippet", - "url": "/fin-ai-agent/content?content=content_snippet&id=3234924", - }, - ], - "total_count": 1, - "type": "content_source.list", - }, - "last_answer_type": "ai_answer", - "rating": 4, - "rating_remark": "Very helpful!", - "resolution_state": "assumed_resolution", - "source_title": "My AI Workflow", - "source_type": "essentials_plan_setup", - }, "ai_agent_participated": false, "contacts": { "contacts": [ @@ -28183,20 +27259,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda "total_count": 1, "type": "conversation_part.list", }, - "conversation_rating": { - "contact": { - "external_id": "f3b87a2e09d514c6c2e79b9a", - "id": "5ba682d23d7cf92bef87bfd4", - "type": "contact", - }, - "created_at": 1671028894, - "rating": 5, - "remark": "", - "teammate": { - "id": "1a2b3c", - "type": "contact", - }, - }, "created_at": 1719492849, "custom_attributes": { "key": "value", @@ -28204,7 +27266,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda "first_contact_reply": { "created_at": 1719492850, "type": "conversation", - "url": "https://developers.intercom.com/", }, "id": "387", "linked_objects": { @@ -28220,12 +27281,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda "open": true, "priority": "not_priority", "read": false, - "sla_applied": { - "sla_name": "", - "sla_status": "hit", - "type": "conversation_sla_summary", - }, - "snoozed_until": 1663597260, "source": { "attachments": [ { @@ -28250,30 +27305,8 @@ If you are redacting a conversation part, it must have a `body`. If you are reda "redacted": false, "subject": "", "type": "conversation", - "url": "url", }, "state": "open", - "statistics": { - "count_assignments": 1, - "count_conversation_parts": 1, - "count_reopens": 1, - "first_admin_reply_at": 1663597233, - "first_assignment_at": 1663597233, - "first_close_at": 1663597233, - "first_contact_reply_at": 1663597233, - "last_admin_reply_at": 1663597233, - "last_assignment_admin_reply_at": 1663597233, - "last_assignment_at": 1663597233, - "last_close_at": 1663597233, - "last_closed_by_id": "c3po", - "last_contact_reply_at": 1663597233, - "median_time_to_reply": 2310, - "time_to_admin_reply": 2310, - "time_to_assignment": 2310, - "time_to_first_close": 2310, - "time_to_last_close": 2310, - "type": "conversation_statistics", - }, "tags": { "tags": [ { @@ -28285,16 +27318,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda ], "type": "tag.list", }, - "team_assignee_id": "5017691", - "teammates": { - "teammates": [ - { - "type": "contact", - }, - ], - "type": "admin.list", - }, - "title": "Conversation Title", "type": "conversation", "updated_at": 1719492850, "waiting_since": 1719492850, @@ -28314,26 +27337,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda }, "response": { "body": { - "admin_assignee_id": 0, - "ai_agent": { - "content_sources": { - "content_sources": [ - { - "locale": "en", - "title": "My internal content snippet", - "url": "/fin-ai-agent/content?content=content_snippet&id=3234924", - }, - ], - "total_count": 1, - "type": "content_source.list", - }, - "last_answer_type": "ai_answer", - "rating": 4, - "rating_remark": "Very helpful!", - "resolution_state": "assumed_resolution", - "source_title": "My AI Workflow", - "source_type": "essentials_plan_setup", - }, "ai_agent_participated": false, "contacts": { "contacts": [ @@ -28389,29 +27392,10 @@ If you are redacting a conversation part, it must have a `body`. If you are reda "total_count": 1, "type": "conversation_part.list", }, - "conversation_rating": { - "contact": { - "external_id": "f3b87a2e09d514c6c2e79b9a", - "id": "5ba682d23d7cf92bef87bfd4", - "type": "contact", - }, - "created_at": 1671028894, - "rating": 5, - "remark": "", - "teammate": { - "id": "1a2b3c", - "type": "contact", - }, - }, "created_at": 1719492852, "custom_attributes": { "key": "value", }, - "first_contact_reply": { - "created_at": 1663597223, - "type": "conversation", - "url": "https://developers.intercom.com/", - }, "id": "388", "linked_objects": { "data": [ @@ -28426,12 +27410,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda "open": false, "priority": "not_priority", "read": false, - "sla_applied": { - "sla_name": "", - "sla_status": "hit", - "type": "conversation_sla_summary", - }, - "snoozed_until": 1663597260, "source": { "attachments": [ { @@ -28456,30 +27434,8 @@ If you are redacting a conversation part, it must have a `body`. If you are reda "redacted": false, "subject": "", "type": "conversation", - "url": "url", }, "state": "closed", - "statistics": { - "count_assignments": 1, - "count_conversation_parts": 1, - "count_reopens": 1, - "first_admin_reply_at": 1663597233, - "first_assignment_at": 1663597233, - "first_close_at": 1663597233, - "first_contact_reply_at": 1663597233, - "last_admin_reply_at": 1663597233, - "last_assignment_admin_reply_at": 1663597233, - "last_assignment_at": 1663597233, - "last_close_at": 1663597233, - "last_closed_by_id": "c3po", - "last_contact_reply_at": 1663597233, - "median_time_to_reply": 2310, - "time_to_admin_reply": 2310, - "time_to_assignment": 2310, - "time_to_first_close": 2310, - "time_to_last_close": 2310, - "type": "conversation_statistics", - }, "tags": { "tags": [ { @@ -28491,19 +27447,8 @@ If you are redacting a conversation part, it must have a `body`. If you are reda ], "type": "tag.list", }, - "team_assignee_id": "5017691", - "teammates": { - "teammates": [ - { - "type": "contact", - }, - ], - "type": "admin.list", - }, - "title": "Conversation Title", "type": "conversation", "updated_at": 1719492853, - "waiting_since": 1663597260, }, }, }, @@ -28520,26 +27465,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda }, "response": { "body": { - "admin_assignee_id": 0, - "ai_agent": { - "content_sources": { - "content_sources": [ - { - "locale": "en", - "title": "My internal content snippet", - "url": "/fin-ai-agent/content?content=content_snippet&id=3234924", - }, - ], - "total_count": 1, - "type": "content_source.list", - }, - "last_answer_type": "ai_answer", - "rating": 4, - "rating_remark": "Very helpful!", - "resolution_state": "assumed_resolution", - "source_title": "My AI Workflow", - "source_type": "essentials_plan_setup", - }, "ai_agent_participated": false, "contacts": { "contacts": [ @@ -28584,20 +27509,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda "total_count": 1, "type": "conversation_part.list", }, - "conversation_rating": { - "contact": { - "external_id": "f3b87a2e09d514c6c2e79b9a", - "id": "5ba682d23d7cf92bef87bfd4", - "type": "contact", - }, - "created_at": 1671028894, - "rating": 5, - "remark": "", - "teammate": { - "id": "1a2b3c", - "type": "contact", - }, - }, "created_at": 1719492855, "custom_attributes": { "key": "value", @@ -28605,7 +27516,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda "first_contact_reply": { "created_at": 1719492856, "type": "conversation", - "url": "https://developers.intercom.com/", }, "id": "390", "linked_objects": { @@ -28621,12 +27531,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda "open": true, "priority": "not_priority", "read": false, - "sla_applied": { - "sla_name": "", - "sla_status": "hit", - "type": "conversation_sla_summary", - }, - "snoozed_until": 1663597260, "source": { "attachments": [ { @@ -28651,30 +27555,8 @@ If you are redacting a conversation part, it must have a `body`. If you are reda "redacted": false, "subject": "", "type": "conversation", - "url": "url", }, "state": "open", - "statistics": { - "count_assignments": 1, - "count_conversation_parts": 1, - "count_reopens": 1, - "first_admin_reply_at": 1663597233, - "first_assignment_at": 1663597233, - "first_close_at": 1663597233, - "first_contact_reply_at": 1663597233, - "last_admin_reply_at": 1663597233, - "last_assignment_admin_reply_at": 1663597233, - "last_assignment_at": 1663597233, - "last_close_at": 1663597233, - "last_closed_by_id": "c3po", - "last_contact_reply_at": 1663597233, - "median_time_to_reply": 2310, - "time_to_admin_reply": 2310, - "time_to_assignment": 2310, - "time_to_first_close": 2310, - "time_to_last_close": 2310, - "type": "conversation_statistics", - }, "tags": { "tags": [ { @@ -28686,16 +27568,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda ], "type": "tag.list", }, - "team_assignee_id": "5017691", - "teammates": { - "teammates": [ - { - "type": "contact", - }, - ], - "type": "admin.list", - }, - "title": "Conversation Title", "type": "conversation", "updated_at": 1719492856, "waiting_since": 1719492856, @@ -28715,26 +27587,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda }, "response": { "body": { - "admin_assignee_id": 0, - "ai_agent": { - "content_sources": { - "content_sources": [ - { - "locale": "en", - "title": "My internal content snippet", - "url": "/fin-ai-agent/content?content=content_snippet&id=3234924", - }, - ], - "total_count": 1, - "type": "content_source.list", - }, - "last_answer_type": "ai_answer", - "rating": 4, - "rating_remark": "Very helpful!", - "resolution_state": "assumed_resolution", - "source_title": "My AI Workflow", - "source_type": "essentials_plan_setup", - }, "ai_agent_participated": false, "contacts": { "contacts": [ @@ -28779,20 +27631,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda "total_count": 1, "type": "conversation_part.list", }, - "conversation_rating": { - "contact": { - "external_id": "f3b87a2e09d514c6c2e79b9a", - "id": "5ba682d23d7cf92bef87bfd4", - "type": "contact", - }, - "created_at": 1671028894, - "rating": 5, - "remark": "", - "teammate": { - "id": "1a2b3c", - "type": "contact", - }, - }, "created_at": 1719492849, "custom_attributes": { "key": "value", @@ -28800,7 +27638,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda "first_contact_reply": { "created_at": 1719492850, "type": "conversation", - "url": "https://developers.intercom.com/", }, "id": "387", "linked_objects": { @@ -28816,12 +27653,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda "open": true, "priority": "not_priority", "read": false, - "sla_applied": { - "sla_name": "", - "sla_status": "hit", - "type": "conversation_sla_summary", - }, - "snoozed_until": 1663597260, "source": { "attachments": [ { @@ -28846,30 +27677,8 @@ If you are redacting a conversation part, it must have a `body`. If you are reda "redacted": false, "subject": "", "type": "conversation", - "url": "url", }, "state": "open", - "statistics": { - "count_assignments": 1, - "count_conversation_parts": 1, - "count_reopens": 1, - "first_admin_reply_at": 1663597233, - "first_assignment_at": 1663597233, - "first_close_at": 1663597233, - "first_contact_reply_at": 1663597233, - "last_admin_reply_at": 1663597233, - "last_assignment_admin_reply_at": 1663597233, - "last_assignment_at": 1663597233, - "last_close_at": 1663597233, - "last_closed_by_id": "c3po", - "last_contact_reply_at": 1663597233, - "median_time_to_reply": 2310, - "time_to_admin_reply": 2310, - "time_to_assignment": 2310, - "time_to_first_close": 2310, - "time_to_last_close": 2310, - "type": "conversation_statistics", - }, "tags": { "tags": [ { @@ -28881,16 +27690,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda ], "type": "tag.list", }, - "team_assignee_id": "5017691", - "teammates": { - "teammates": [ - { - "type": "contact", - }, - ], - "type": "admin.list", - }, - "title": "Conversation Title", "type": "conversation", "updated_at": 1719492850, "waiting_since": 1719492850, @@ -28949,26 +27748,6 @@ For AI agent conversation metadata, please note that you need to have the agent }, "response": { "body": { - "admin_assignee_id": 0, - "ai_agent": { - "content_sources": { - "content_sources": [ - { - "locale": "en", - "title": "My internal content snippet", - "url": "/fin-ai-agent/content?content=content_snippet&id=3234924", - }, - ], - "total_count": 1, - "type": "content_source.list", - }, - "last_answer_type": "ai_answer", - "rating": 4, - "rating_remark": "Very helpful!", - "resolution_state": "assumed_resolution", - "source_title": "My AI Workflow", - "source_type": "essentials_plan_setup", - }, "ai_agent_participated": false, "contacts": { "contacts": [ @@ -28995,29 +27774,10 @@ For AI agent conversation metadata, please note that you need to have the agent "total_count": 0, "type": "conversation_part.list", }, - "conversation_rating": { - "contact": { - "external_id": "f3b87a2e09d514c6c2e79b9a", - "id": "5ba682d23d7cf92bef87bfd4", - "type": "contact", - }, - "created_at": 1671028894, - "rating": 5, - "remark": "", - "teammate": { - "id": "1a2b3c", - "type": "contact", - }, - }, "created_at": 1719492825, "custom_attributes": { "key": "value", }, - "first_contact_reply": { - "created_at": 1663597223, - "type": "conversation", - "url": "https://developers.intercom.com/", - }, "id": "367", "linked_objects": { "data": [ @@ -29032,12 +27792,6 @@ For AI agent conversation metadata, please note that you need to have the agent "open": false, "priority": "not_priority", "read": false, - "sla_applied": { - "sla_name": "", - "sla_status": "hit", - "type": "conversation_sla_summary", - }, - "snoozed_until": 1663597260, "source": { "attachments": [ { @@ -29062,30 +27816,8 @@ For AI agent conversation metadata, please note that you need to have the agent "redacted": false, "subject": "", "type": "conversation", - "url": "url", }, "state": "closed", - "statistics": { - "count_assignments": 1, - "count_conversation_parts": 1, - "count_reopens": 1, - "first_admin_reply_at": 1663597233, - "first_assignment_at": 1663597233, - "first_close_at": 1663597233, - "first_contact_reply_at": 1663597233, - "last_admin_reply_at": 1663597233, - "last_assignment_admin_reply_at": 1663597233, - "last_assignment_at": 1663597233, - "last_close_at": 1663597233, - "last_closed_by_id": "c3po", - "last_contact_reply_at": 1663597233, - "median_time_to_reply": 2310, - "time_to_admin_reply": 2310, - "time_to_assignment": 2310, - "time_to_first_close": 2310, - "time_to_last_close": 2310, - "type": "conversation_statistics", - }, "tags": { "tags": [ { @@ -29097,19 +27829,8 @@ For AI agent conversation metadata, please note that you need to have the agent ], "type": "tag.list", }, - "team_assignee_id": "5017691", - "teammates": { - "teammates": [ - { - "type": "contact", - }, - ], - "type": "admin.list", - }, - "title": "Conversation Title", "type": "conversation", "updated_at": 1719492825, - "waiting_since": 1663597260, }, }, }, @@ -29264,7 +27985,6 @@ The table below shows the operators you can use to define how you want to search "body": { "conversations": [ { - "admin_assignee_id": 0, "ai_agent_participated": false, "contacts": { "contacts": [ @@ -29279,19 +27999,10 @@ The table below shows the operators you can use to define how you want to search "conversation_parts": { "total_count": 2, }, - "conversation_rating": { - "created_at": 1671028894, - "rating": 5, - "remark": "", - }, "created_at": 1719492843, "custom_attributes": { "key": "value", }, - "first_contact_reply": { - "created_at": 1663597223, - "type": "conversation", - }, "id": "378", "linked_objects": { "data": [ @@ -29306,11 +28017,6 @@ The table below shows the operators you can use to define how you want to search "open": false, "priority": "not_priority", "read": false, - "sla_applied": { - "sla_name": "", - "type": "conversation_sla_summary", - }, - "snoozed_until": 1663597260, "source": { "attachments": [ { @@ -29337,27 +28043,6 @@ The table below shows the operators you can use to define how you want to search "type": "conversation", }, "state": "closed", - "statistics": { - "count_assignments": 1, - "count_conversation_parts": 1, - "count_reopens": 1, - "first_admin_reply_at": 1663597233, - "first_assignment_at": 1663597233, - "first_close_at": 1663597233, - "first_contact_reply_at": 1663597233, - "last_admin_reply_at": 1663597233, - "last_assignment_admin_reply_at": 1663597233, - "last_assignment_at": 1663597233, - "last_close_at": 1663597233, - "last_closed_by_id": "c3po", - "last_contact_reply_at": 1663597233, - "median_time_to_reply": 2310, - "time_to_admin_reply": 2310, - "time_to_assignment": 2310, - "time_to_first_close": 2310, - "time_to_last_close": 2310, - "type": "conversation_statistics", - }, "tags": { "tags": [ { @@ -29369,14 +28054,8 @@ The table below shows the operators you can use to define how you want to search ], "type": "tag.list", }, - "team_assignee_id": "5017691", - "teammates": { - "type": "admin.list", - }, - "title": "Conversation Title", "type": "conversation", "updated_at": 1719492843, - "waiting_since": 1663597260, }, ], "pages": { @@ -29446,26 +28125,6 @@ If you want to reply to a coveration or take an action such as assign, unassign, }, "response": { "body": { - "admin_assignee_id": 0, - "ai_agent": { - "content_sources": { - "content_sources": [ - { - "locale": "en", - "title": "My internal content snippet", - "url": "/fin-ai-agent/content?content=content_snippet&id=3234924", - }, - ], - "total_count": 1, - "type": "content_source.list", - }, - "last_answer_type": "ai_answer", - "rating": 4, - "rating_remark": "Very helpful!", - "resolution_state": "assumed_resolution", - "source_title": "My AI Workflow", - "source_type": "essentials_plan_setup", - }, "ai_agent_participated": false, "contacts": { "contacts": [ @@ -29535,30 +28194,11 @@ If you want to reply to a coveration or take an action such as assign, unassign, "total_count": 2, "type": "conversation_part.list", }, - "conversation_rating": { - "contact": { - "external_id": "f3b87a2e09d514c6c2e79b9a", - "id": "5ba682d23d7cf92bef87bfd4", - "type": "contact", - }, - "created_at": 1671028894, - "rating": 5, - "remark": "", - "teammate": { - "id": "1a2b3c", - "type": "contact", - }, - }, "created_at": 1719492832, "custom_attributes": { "issue_type": "Billing", "priority": "High", }, - "first_contact_reply": { - "created_at": 1663597223, - "type": "conversation", - "url": "https://developers.intercom.com/", - }, "id": "371", "linked_objects": { "data": [ @@ -29573,12 +28213,6 @@ If you want to reply to a coveration or take an action such as assign, unassign, "open": false, "priority": "not_priority", "read": true, - "sla_applied": { - "sla_name": "", - "sla_status": "hit", - "type": "conversation_sla_summary", - }, - "snoozed_until": 1663597260, "source": { "attachments": [ { @@ -29603,30 +28237,8 @@ If you want to reply to a coveration or take an action such as assign, unassign, "redacted": false, "subject": "", "type": "conversation", - "url": "url", }, "state": "closed", - "statistics": { - "count_assignments": 1, - "count_conversation_parts": 1, - "count_reopens": 1, - "first_admin_reply_at": 1663597233, - "first_assignment_at": 1663597233, - "first_close_at": 1663597233, - "first_contact_reply_at": 1663597233, - "last_admin_reply_at": 1663597233, - "last_assignment_admin_reply_at": 1663597233, - "last_assignment_at": 1663597233, - "last_close_at": 1663597233, - "last_closed_by_id": "c3po", - "last_contact_reply_at": 1663597233, - "median_time_to_reply": 2310, - "time_to_admin_reply": 2310, - "time_to_assignment": 2310, - "time_to_first_close": 2310, - "time_to_last_close": 2310, - "type": "conversation_statistics", - }, "tags": { "tags": [ { @@ -29638,19 +28250,8 @@ If you want to reply to a coveration or take an action such as assign, unassign, ], "type": "tag.list", }, - "team_assignee_id": "5017691", - "teammates": { - "teammates": [ - { - "type": "contact", - }, - ], - "type": "admin.list", - }, - "title": "Conversation Title", "type": "conversation", "updated_at": 1719492834, - "waiting_since": 1663597260, }, }, }, @@ -29671,26 +28272,6 @@ If you want to reply to a coveration or take an action such as assign, unassign, }, "response": { "body": { - "admin_assignee_id": 0, - "ai_agent": { - "content_sources": { - "content_sources": [ - { - "locale": "en", - "title": "My internal content snippet", - "url": "/fin-ai-agent/content?content=content_snippet&id=3234924", - }, - ], - "total_count": 1, - "type": "content_source.list", - }, - "last_answer_type": "ai_answer", - "rating": 4, - "rating_remark": "Very helpful!", - "resolution_state": "assumed_resolution", - "source_title": "My AI Workflow", - "source_type": "essentials_plan_setup", - }, "ai_agent_participated": false, "contacts": { "contacts": [ @@ -29760,30 +28341,11 @@ If you want to reply to a coveration or take an action such as assign, unassign, "total_count": 2, "type": "conversation_part.list", }, - "conversation_rating": { - "contact": { - "external_id": "f3b87a2e09d514c6c2e79b9a", - "id": "5ba682d23d7cf92bef87bfd4", - "type": "contact", - }, - "created_at": 1671028894, - "rating": 5, - "remark": "", - "teammate": { - "id": "1a2b3c", - "type": "contact", - }, - }, "created_at": 1719492832, "custom_attributes": { "issue_type": "Billing", "priority": "High", }, - "first_contact_reply": { - "created_at": 1663597223, - "type": "conversation", - "url": "https://developers.intercom.com/", - }, "id": "371", "linked_objects": { "data": [ @@ -29798,12 +28360,6 @@ If you want to reply to a coveration or take an action such as assign, unassign, "open": false, "priority": "not_priority", "read": true, - "sla_applied": { - "sla_name": "", - "sla_status": "hit", - "type": "conversation_sla_summary", - }, - "snoozed_until": 1663597260, "source": { "attachments": [ { @@ -29828,30 +28384,8 @@ If you want to reply to a coveration or take an action such as assign, unassign, "redacted": false, "subject": "", "type": "conversation", - "url": "url", }, "state": "closed", - "statistics": { - "count_assignments": 1, - "count_conversation_parts": 1, - "count_reopens": 1, - "first_admin_reply_at": 1663597233, - "first_assignment_at": 1663597233, - "first_close_at": 1663597233, - "first_contact_reply_at": 1663597233, - "last_admin_reply_at": 1663597233, - "last_assignment_admin_reply_at": 1663597233, - "last_assignment_at": 1663597233, - "last_close_at": 1663597233, - "last_closed_by_id": "c3po", - "last_contact_reply_at": 1663597233, - "median_time_to_reply": 2310, - "time_to_admin_reply": 2310, - "time_to_assignment": 2310, - "time_to_first_close": 2310, - "time_to_last_close": 2310, - "type": "conversation_statistics", - }, "tags": { "tags": [ { @@ -29863,19 +28397,8 @@ If you want to reply to a coveration or take an action such as assign, unassign, ], "type": "tag.list", }, - "team_assignee_id": "5017691", - "teammates": { - "teammates": [ - { - "type": "contact", - }, - ], - "type": "admin.list", - }, - "title": "Conversation Title", "type": "conversation", "updated_at": 1719492834, - "waiting_since": 1663597260, }, }, }, @@ -30370,17 +28893,12 @@ service: body: type: conversation id: '367' - title: Conversation Title created_at: 1719492825 updated_at: 1719492825 - waiting_since: 1663597260 - snoozed_until: 1663597260 open: false state: closed read: false priority: not_priority - admin_assignee_id: 0 - team_assignee_id: '5017691' tags: type: tag.list tags: @@ -30388,17 +28906,6 @@ service: id: '123456' name: Test tag applied_at: 1663597223 - conversation_rating: - rating: 5 - remark: '' - created_at: 1671028894 - contact: - type: contact - id: 5ba682d23d7cf92bef87bfd4 - external_id: f3b87a2e09d514c6c2e79b9a - teammate: - type: contact - id: 1a2b3c source: type: conversation id: '403918255' @@ -30418,7 +28925,6 @@ service: filesize: 100 width: 100 height: 100 - url: url redacted: false contacts: type: contact.list @@ -30426,40 +28932,8 @@ service: - type: contact id: 667d60d88a68186f43bafde1 external_id: '70' - teammates: - type: admin.list - teammates: - - type: contact custom_attributes: key: value - first_contact_reply: - created_at: 1663597223 - type: conversation - url: https://developers.intercom.com/ - sla_applied: - type: conversation_sla_summary - sla_name: '' - sla_status: hit - statistics: - type: conversation_statistics - time_to_assignment: 2310 - time_to_admin_reply: 2310 - time_to_first_close: 2310 - time_to_last_close: 2310 - median_time_to_reply: 2310 - first_contact_reply_at: 1663597233 - first_assignment_at: 1663597233 - first_admin_reply_at: 1663597233 - first_close_at: 1663597233 - last_assignment_at: 1663597233 - last_assignment_admin_reply_at: 1663597233 - last_contact_reply_at: 1663597233 - last_admin_reply_at: 1663597233 - last_close_at: 1663597233 - last_closed_by_id: c3po - count_reopens: 1 - count_assignments: 1 - count_conversation_parts: 1 conversation_parts: type: conversation_part.list conversation_parts: @@ -30478,20 +28952,6 @@ service: data: - id: '7583' ai_agent_participated: false - ai_agent: - source_type: essentials_plan_setup - source_title: My AI Workflow - last_answer_type: ai_answer - resolution_state: assumed_resolution - rating: 4 - rating_remark: Very helpful! - content_sources: - type: content_source.list - total_count: 1 - content_sources: - - url: /fin-ai-agent/content?content=content_snippet&id=3234924 - title: My internal content snippet - locale: en updateConversation: path: /conversations/{id} method: PUT @@ -30552,17 +29012,12 @@ service: body: type: conversation id: '371' - title: Conversation Title created_at: 1719492832 updated_at: 1719492834 - waiting_since: 1663597260 - snoozed_until: 1663597260 open: false state: closed read: true priority: not_priority - admin_assignee_id: 0 - team_assignee_id: '5017691' tags: type: tag.list tags: @@ -30570,17 +29025,6 @@ service: id: '123456' name: Test tag applied_at: 1663597223 - conversation_rating: - rating: 5 - remark: '' - created_at: 1671028894 - contact: - type: contact - id: 5ba682d23d7cf92bef87bfd4 - external_id: f3b87a2e09d514c6c2e79b9a - teammate: - type: contact - id: 1a2b3c source: type: conversation id: '403918259' @@ -30600,7 +29044,6 @@ service: filesize: 100 width: 100 height: 100 - url: url redacted: false contacts: type: contact.list @@ -30608,41 +29051,9 @@ service: - type: contact id: 667d60e08a68186f43bafde5 external_id: '70' - teammates: - type: admin.list - teammates: - - type: contact custom_attributes: issue_type: Billing priority: High - first_contact_reply: - created_at: 1663597223 - type: conversation - url: https://developers.intercom.com/ - sla_applied: - type: conversation_sla_summary - sla_name: '' - sla_status: hit - statistics: - type: conversation_statistics - time_to_assignment: 2310 - time_to_admin_reply: 2310 - time_to_first_close: 2310 - time_to_last_close: 2310 - median_time_to_reply: 2310 - first_contact_reply_at: 1663597233 - first_assignment_at: 1663597233 - first_admin_reply_at: 1663597233 - first_close_at: 1663597233 - last_assignment_at: 1663597233 - last_assignment_admin_reply_at: 1663597233 - last_contact_reply_at: 1663597233 - last_admin_reply_at: 1663597233 - last_close_at: 1663597233 - last_closed_by_id: c3po - count_reopens: 1 - count_assignments: 1 - count_conversation_parts: 1 conversation_parts: type: conversation_part.list conversation_parts: @@ -30696,20 +29107,6 @@ service: data: - id: '7583' ai_agent_participated: false - ai_agent: - source_type: essentials_plan_setup - source_title: My AI Workflow - last_answer_type: ai_answer - resolution_state: assumed_resolution - rating: 4 - rating_remark: Very helpful! - content_sources: - type: content_source.list - total_count: 1 - content_sources: - - url: /fin-ai-agent/content?content=content_snippet&id=3234924 - title: My internal content snippet - locale: en - name: Not found path-parameters: id: 1 @@ -30724,17 +29121,12 @@ service: body: type: conversation id: '371' - title: Conversation Title created_at: 1719492832 updated_at: 1719492834 - waiting_since: 1663597260 - snoozed_until: 1663597260 open: false state: closed read: true priority: not_priority - admin_assignee_id: 0 - team_assignee_id: '5017691' tags: type: tag.list tags: @@ -30742,17 +29134,6 @@ service: id: '123456' name: Test tag applied_at: 1663597223 - conversation_rating: - rating: 5 - remark: '' - created_at: 1671028894 - contact: - type: contact - id: 5ba682d23d7cf92bef87bfd4 - external_id: f3b87a2e09d514c6c2e79b9a - teammate: - type: contact - id: 1a2b3c source: type: conversation id: '403918259' @@ -30772,7 +29153,6 @@ service: filesize: 100 width: 100 height: 100 - url: url redacted: false contacts: type: contact.list @@ -30780,41 +29160,9 @@ service: - type: contact id: 667d60e08a68186f43bafde5 external_id: '70' - teammates: - type: admin.list - teammates: - - type: contact custom_attributes: issue_type: Billing priority: High - first_contact_reply: - created_at: 1663597223 - type: conversation - url: https://developers.intercom.com/ - sla_applied: - type: conversation_sla_summary - sla_name: '' - sla_status: hit - statistics: - type: conversation_statistics - time_to_assignment: 2310 - time_to_admin_reply: 2310 - time_to_first_close: 2310 - time_to_last_close: 2310 - median_time_to_reply: 2310 - first_contact_reply_at: 1663597233 - first_assignment_at: 1663597233 - first_admin_reply_at: 1663597233 - first_close_at: 1663597233 - last_assignment_at: 1663597233 - last_assignment_admin_reply_at: 1663597233 - last_contact_reply_at: 1663597233 - last_admin_reply_at: 1663597233 - last_close_at: 1663597233 - last_closed_by_id: c3po - count_reopens: 1 - count_assignments: 1 - count_conversation_parts: 1 conversation_parts: type: conversation_part.list conversation_parts: @@ -30868,20 +29216,6 @@ service: data: - id: '7583' ai_agent_participated: false - ai_agent: - source_type: essentials_plan_setup - source_title: My AI Workflow - last_answer_type: ai_answer - resolution_state: assumed_resolution - rating: 4 - rating_remark: Very helpful! - content_sources: - type: content_source.list - total_count: 1 - content_sources: - - url: /fin-ai-agent/content?content=content_snippet&id=3234924 - title: My internal content snippet - locale: en searchConversations: path: /conversations/search method: POST @@ -31233,17 +29567,12 @@ service: conversations: - type: conversation id: '378' - title: Conversation Title created_at: 1719492843 updated_at: 1719492843 - waiting_since: 1663597260 - snoozed_until: 1663597260 open: false state: closed read: false priority: not_priority - admin_assignee_id: 0 - team_assignee_id: '5017691' tags: type: tag.list tags: @@ -31251,10 +29580,6 @@ service: id: '123456' name: Test tag applied_at: 1663597223 - conversation_rating: - rating: 5 - remark: '' - created_at: 1671028894 source: type: conversation id: '403918266' @@ -31281,36 +29606,8 @@ service: - type: contact id: 667d60ea8a68186f43bafdec external_id: '70' - teammates: - type: admin.list custom_attributes: key: value - first_contact_reply: - created_at: 1663597223 - type: conversation - sla_applied: - type: conversation_sla_summary - sla_name: '' - statistics: - type: conversation_statistics - time_to_assignment: 2310 - time_to_admin_reply: 2310 - time_to_first_close: 2310 - time_to_last_close: 2310 - median_time_to_reply: 2310 - first_contact_reply_at: 1663597233 - first_assignment_at: 1663597233 - first_admin_reply_at: 1663597233 - first_close_at: 1663597233 - last_assignment_at: 1663597233 - last_assignment_admin_reply_at: 1663597233 - last_contact_reply_at: 1663597233 - last_admin_reply_at: 1663597233 - last_close_at: 1663597233 - last_closed_by_id: c3po - count_reopens: 1 - count_assignments: 1 - count_conversation_parts: 1 conversation_parts: total_count: 2 linked_objects: @@ -31368,17 +29665,13 @@ service: body: type: conversation id: '387' - title: Conversation Title created_at: 1719492849 updated_at: 1719492850 waiting_since: 1719492850 - snoozed_until: 1663597260 open: true state: open read: false priority: not_priority - admin_assignee_id: 0 - team_assignee_id: '5017691' tags: type: tag.list tags: @@ -31386,17 +29679,6 @@ service: id: '123456' name: Test tag applied_at: 1663597223 - conversation_rating: - rating: 5 - remark: '' - created_at: 1671028894 - contact: - type: contact - id: 5ba682d23d7cf92bef87bfd4 - external_id: f3b87a2e09d514c6c2e79b9a - teammate: - type: contact - id: 1a2b3c source: type: conversation id: '403918269' @@ -31416,7 +29698,6 @@ service: filesize: 100 width: 100 height: 100 - url: url redacted: false contacts: type: contact.list @@ -31424,40 +29705,11 @@ service: - type: contact id: 667d60f18a68186f43bafdf4 external_id: '70' - teammates: - type: admin.list - teammates: - - type: contact custom_attributes: key: value first_contact_reply: created_at: 1719492850 type: conversation - url: https://developers.intercom.com/ - sla_applied: - type: conversation_sla_summary - sla_name: '' - sla_status: hit - statistics: - type: conversation_statistics - time_to_assignment: 2310 - time_to_admin_reply: 2310 - time_to_first_close: 2310 - time_to_last_close: 2310 - median_time_to_reply: 2310 - first_contact_reply_at: 1663597233 - first_assignment_at: 1663597233 - first_admin_reply_at: 1663597233 - first_close_at: 1663597233 - last_assignment_at: 1663597233 - last_assignment_admin_reply_at: 1663597233 - last_contact_reply_at: 1663597233 - last_admin_reply_at: 1663597233 - last_close_at: 1663597233 - last_closed_by_id: c3po - count_reopens: 1 - count_assignments: 1 - count_conversation_parts: 1 conversation_parts: type: conversation_part.list conversation_parts: @@ -31490,20 +29742,6 @@ service: data: - id: '7583' ai_agent_participated: false - ai_agent: - source_type: essentials_plan_setup - source_title: My AI Workflow - last_answer_type: ai_answer - resolution_state: assumed_resolution - rating: 4 - rating_remark: Very helpful! - content_sources: - type: content_source.list - total_count: 1 - content_sources: - - url: /fin-ai-agent/content?content=content_snippet&id=3234924 - title: My internal content snippet - locale: en - name: Admin note reply path-parameters: id: 123 or "last" @@ -31520,17 +29758,12 @@ service: body: type: conversation id: '388' - title: Conversation Title created_at: 1719492852 updated_at: 1719492853 - waiting_since: 1663597260 - snoozed_until: 1663597260 open: false state: closed read: false priority: not_priority - admin_assignee_id: 0 - team_assignee_id: '5017691' tags: type: tag.list tags: @@ -31538,17 +29771,6 @@ service: id: '123456' name: Test tag applied_at: 1663597223 - conversation_rating: - rating: 5 - remark: '' - created_at: 1671028894 - contact: - type: contact - id: 5ba682d23d7cf92bef87bfd4 - external_id: f3b87a2e09d514c6c2e79b9a - teammate: - type: contact - id: 1a2b3c source: type: conversation id: '403918270' @@ -31568,7 +29790,6 @@ service: filesize: 100 width: 100 height: 100 - url: url redacted: false contacts: type: contact.list @@ -31576,40 +29797,8 @@ service: - type: contact id: 667d60f38a68186f43bafdf5 external_id: '70' - teammates: - type: admin.list - teammates: - - type: contact custom_attributes: key: value - first_contact_reply: - created_at: 1663597223 - type: conversation - url: https://developers.intercom.com/ - sla_applied: - type: conversation_sla_summary - sla_name: '' - sla_status: hit - statistics: - type: conversation_statistics - time_to_assignment: 2310 - time_to_admin_reply: 2310 - time_to_first_close: 2310 - time_to_last_close: 2310 - median_time_to_reply: 2310 - first_contact_reply_at: 1663597233 - first_assignment_at: 1663597233 - first_admin_reply_at: 1663597233 - first_close_at: 1663597233 - last_assignment_at: 1663597233 - last_assignment_admin_reply_at: 1663597233 - last_contact_reply_at: 1663597233 - last_admin_reply_at: 1663597233 - last_close_at: 1663597233 - last_closed_by_id: c3po - count_reopens: 1 - count_assignments: 1 - count_conversation_parts: 1 conversation_parts: type: conversation_part.list conversation_parts: @@ -31654,20 +29843,6 @@ service: data: - id: '7583' ai_agent_participated: false - ai_agent: - source_type: essentials_plan_setup - source_title: My AI Workflow - last_answer_type: ai_answer - resolution_state: assumed_resolution - rating: 4 - rating_remark: Very helpful! - content_sources: - type: content_source.list - total_count: 1 - content_sources: - - url: /fin-ai-agent/content?content=content_snippet&id=3234924 - title: My internal content snippet - locale: en - name: User last conversation reply path-parameters: id: 123 or "last" @@ -31680,17 +29855,13 @@ service: body: type: conversation id: '390' - title: Conversation Title created_at: 1719492855 updated_at: 1719492856 waiting_since: 1719492856 - snoozed_until: 1663597260 open: true state: open read: false priority: not_priority - admin_assignee_id: 0 - team_assignee_id: '5017691' tags: type: tag.list tags: @@ -31698,17 +29869,6 @@ service: id: '123456' name: Test tag applied_at: 1663597223 - conversation_rating: - rating: 5 - remark: '' - created_at: 1671028894 - contact: - type: contact - id: 5ba682d23d7cf92bef87bfd4 - external_id: f3b87a2e09d514c6c2e79b9a - teammate: - type: contact - id: 1a2b3c source: type: conversation id: '403918272' @@ -31728,7 +29888,6 @@ service: filesize: 100 width: 100 height: 100 - url: url redacted: false contacts: type: contact.list @@ -31736,40 +29895,11 @@ service: - type: contact id: 667d60f78a68186f43bafdf7 external_id: '70' - teammates: - type: admin.list - teammates: - - type: contact custom_attributes: key: value first_contact_reply: created_at: 1719492856 type: conversation - url: https://developers.intercom.com/ - sla_applied: - type: conversation_sla_summary - sla_name: '' - sla_status: hit - statistics: - type: conversation_statistics - time_to_assignment: 2310 - time_to_admin_reply: 2310 - time_to_first_close: 2310 - time_to_last_close: 2310 - median_time_to_reply: 2310 - first_contact_reply_at: 1663597233 - first_assignment_at: 1663597233 - first_admin_reply_at: 1663597233 - first_close_at: 1663597233 - last_assignment_at: 1663597233 - last_assignment_admin_reply_at: 1663597233 - last_contact_reply_at: 1663597233 - last_admin_reply_at: 1663597233 - last_close_at: 1663597233 - last_closed_by_id: c3po - count_reopens: 1 - count_assignments: 1 - count_conversation_parts: 1 conversation_parts: type: conversation_part.list conversation_parts: @@ -31802,20 +29932,6 @@ service: data: - id: '7583' ai_agent_participated: false - ai_agent: - source_type: essentials_plan_setup - source_title: My AI Workflow - last_answer_type: ai_answer - resolution_state: assumed_resolution - rating: 4 - rating_remark: Very helpful! - content_sources: - type: content_source.list - total_count: 1 - content_sources: - - url: /fin-ai-agent/content?content=content_snippet&id=3234924 - title: My internal content snippet - locale: en - name: Not found path-parameters: id: 123 or "last" @@ -31828,17 +29944,13 @@ service: body: type: conversation id: '387' - title: Conversation Title created_at: 1719492849 updated_at: 1719492850 waiting_since: 1719492850 - snoozed_until: 1663597260 open: true state: open read: false priority: not_priority - admin_assignee_id: 0 - team_assignee_id: '5017691' tags: type: tag.list tags: @@ -31846,17 +29958,6 @@ service: id: '123456' name: Test tag applied_at: 1663597223 - conversation_rating: - rating: 5 - remark: '' - created_at: 1671028894 - contact: - type: contact - id: 5ba682d23d7cf92bef87bfd4 - external_id: f3b87a2e09d514c6c2e79b9a - teammate: - type: contact - id: 1a2b3c source: type: conversation id: '403918269' @@ -31876,7 +29977,6 @@ service: filesize: 100 width: 100 height: 100 - url: url redacted: false contacts: type: contact.list @@ -31884,40 +29984,11 @@ service: - type: contact id: 667d60f18a68186f43bafdf4 external_id: '70' - teammates: - type: admin.list - teammates: - - type: contact custom_attributes: key: value first_contact_reply: created_at: 1719492850 type: conversation - url: https://developers.intercom.com/ - sla_applied: - type: conversation_sla_summary - sla_name: '' - sla_status: hit - statistics: - type: conversation_statistics - time_to_assignment: 2310 - time_to_admin_reply: 2310 - time_to_first_close: 2310 - time_to_last_close: 2310 - median_time_to_reply: 2310 - first_contact_reply_at: 1663597233 - first_assignment_at: 1663597233 - first_admin_reply_at: 1663597233 - first_close_at: 1663597233 - last_assignment_at: 1663597233 - last_assignment_admin_reply_at: 1663597233 - last_contact_reply_at: 1663597233 - last_admin_reply_at: 1663597233 - last_close_at: 1663597233 - last_closed_by_id: c3po - count_reopens: 1 - count_assignments: 1 - count_conversation_parts: 1 conversation_parts: type: conversation_part.list conversation_parts: @@ -31950,20 +30021,6 @@ service: data: - id: '7583' ai_agent_participated: false - ai_agent: - source_type: essentials_plan_setup - source_title: My AI Workflow - last_answer_type: ai_answer - resolution_state: assumed_resolution - rating: 4 - rating_remark: Very helpful! - content_sources: - type: content_source.list - total_count: 1 - content_sources: - - url: /fin-ai-agent/content?content=content_snippet&id=3234924 - title: My internal content snippet - locale: en manageConversation: path: /conversations/{id}/parts method: POST @@ -32005,17 +30062,12 @@ service: body: type: conversation id: '394' - title: Conversation Title created_at: 1719492862 updated_at: 1719492862 - waiting_since: 1663597260 - snoozed_until: 1663597260 open: false state: closed read: false priority: not_priority - admin_assignee_id: 0 - team_assignee_id: '5017691' tags: type: tag.list tags: @@ -32023,17 +30075,6 @@ service: id: '123456' name: Test tag applied_at: 1663597223 - conversation_rating: - rating: 5 - remark: '' - created_at: 1671028894 - contact: - type: contact - id: 5ba682d23d7cf92bef87bfd4 - external_id: f3b87a2e09d514c6c2e79b9a - teammate: - type: contact - id: 1a2b3c source: type: conversation id: '403918276' @@ -32053,7 +30094,6 @@ service: filesize: 100 width: 100 height: 100 - url: url redacted: false contacts: type: contact.list @@ -32061,40 +30101,8 @@ service: - type: contact id: 667d60fd8a68186f43bafdfb external_id: '70' - teammates: - type: admin.list - teammates: - - type: contact custom_attributes: key: value - first_contact_reply: - created_at: 1663597223 - type: conversation - url: https://developers.intercom.com/ - sla_applied: - type: conversation_sla_summary - sla_name: '' - sla_status: hit - statistics: - type: conversation_statistics - time_to_assignment: 2310 - time_to_admin_reply: 2310 - time_to_first_close: 2310 - time_to_last_close: 2310 - median_time_to_reply: 2310 - first_contact_reply_at: 1663597233 - first_assignment_at: 1663597233 - first_admin_reply_at: 1663597233 - first_close_at: 1663597233 - last_assignment_at: 1663597233 - last_assignment_admin_reply_at: 1663597233 - last_contact_reply_at: 1663597233 - last_admin_reply_at: 1663597233 - last_close_at: 1663597233 - last_closed_by_id: c3po - count_reopens: 1 - count_assignments: 1 - count_conversation_parts: 1 conversation_parts: type: conversation_part.list conversation_parts: @@ -32127,20 +30135,6 @@ service: data: - id: '7583' ai_agent_participated: false - ai_agent: - source_type: essentials_plan_setup - source_title: My AI Workflow - last_answer_type: ai_answer - resolution_state: assumed_resolution - rating: 4 - rating_remark: Very helpful! - content_sources: - type: content_source.list - total_count: 1 - content_sources: - - url: /fin-ai-agent/content?content=content_snippet&id=3234924 - title: My internal content snippet - locale: en - name: Snooze a conversation path-parameters: id: '123' @@ -32154,17 +30148,13 @@ service: body: type: conversation id: '395' - title: Conversation Title created_at: 1719492864 updated_at: 1719492864 - waiting_since: 1663597260 snoozed_until: 1719496464 open: true state: snoozed read: false priority: not_priority - admin_assignee_id: 0 - team_assignee_id: '5017691' tags: type: tag.list tags: @@ -32172,17 +30162,6 @@ service: id: '123456' name: Test tag applied_at: 1663597223 - conversation_rating: - rating: 5 - remark: '' - created_at: 1671028894 - contact: - type: contact - id: 5ba682d23d7cf92bef87bfd4 - external_id: f3b87a2e09d514c6c2e79b9a - teammate: - type: contact - id: 1a2b3c source: type: conversation id: '403918277' @@ -32202,7 +30181,6 @@ service: filesize: 100 width: 100 height: 100 - url: url redacted: false contacts: type: contact.list @@ -32210,40 +30188,8 @@ service: - type: contact id: 667d60ff8a68186f43bafdfc external_id: '70' - teammates: - type: admin.list - teammates: - - type: contact custom_attributes: key: value - first_contact_reply: - created_at: 1663597223 - type: conversation - url: https://developers.intercom.com/ - sla_applied: - type: conversation_sla_summary - sla_name: '' - sla_status: hit - statistics: - type: conversation_statistics - time_to_assignment: 2310 - time_to_admin_reply: 2310 - time_to_first_close: 2310 - time_to_last_close: 2310 - median_time_to_reply: 2310 - first_contact_reply_at: 1663597233 - first_assignment_at: 1663597233 - first_admin_reply_at: 1663597233 - first_close_at: 1663597233 - last_assignment_at: 1663597233 - last_assignment_admin_reply_at: 1663597233 - last_contact_reply_at: 1663597233 - last_admin_reply_at: 1663597233 - last_close_at: 1663597233 - last_closed_by_id: c3po - count_reopens: 1 - count_assignments: 1 - count_conversation_parts: 1 conversation_parts: type: conversation_part.list conversation_parts: @@ -32275,20 +30221,6 @@ service: data: - id: '7583' ai_agent_participated: false - ai_agent: - source_type: essentials_plan_setup - source_title: My AI Workflow - last_answer_type: ai_answer - resolution_state: assumed_resolution - rating: 4 - rating_remark: Very helpful! - content_sources: - type: content_source.list - total_count: 1 - content_sources: - - url: /fin-ai-agent/content?content=content_snippet&id=3234924 - title: My internal content snippet - locale: en - name: Open a conversation path-parameters: id: '123' @@ -32305,14 +30237,10 @@ service: title: '' created_at: 1719492863 updated_at: 1719492873 - waiting_since: 1663597260 - snoozed_until: 1663597260 open: true state: open read: true priority: not_priority - admin_assignee_id: 0 - team_assignee_id: '5017691' tags: type: tag.list tags: @@ -32320,17 +30248,6 @@ service: id: '123456' name: Test tag applied_at: 1663597223 - conversation_rating: - rating: 5 - remark: '' - created_at: 1671028894 - contact: - type: contact - id: 5ba682d23d7cf92bef87bfd4 - external_id: f3b87a2e09d514c6c2e79b9a - teammate: - type: contact - id: 1a2b3c source: type: conversation id: '403918278' @@ -32350,7 +30267,6 @@ service: filesize: 100 width: 100 height: 100 - url: url redacted: false contacts: type: contact.list @@ -32358,40 +30274,8 @@ service: - type: contact id: 667d61038a68186f43bafe01 external_id: '74' - teammates: - type: admin.list - teammates: - - type: contact custom_attributes: key: value - first_contact_reply: - created_at: 1663597223 - type: conversation - url: https://developers.intercom.com/ - sla_applied: - type: conversation_sla_summary - sla_name: '' - sla_status: hit - statistics: - type: conversation_statistics - time_to_assignment: 2310 - time_to_admin_reply: 2310 - time_to_first_close: 2310 - time_to_last_close: 2310 - median_time_to_reply: 2310 - first_contact_reply_at: 1663597233 - first_assignment_at: 1663597233 - first_admin_reply_at: 1663597233 - first_close_at: 1663597233 - last_assignment_at: 1663597233 - last_assignment_admin_reply_at: 1663597233 - last_contact_reply_at: 1663597233 - last_admin_reply_at: 1663597233 - last_close_at: 1663597233 - last_closed_by_id: c3po - count_reopens: 1 - count_assignments: 1 - count_conversation_parts: 1 conversation_parts: type: conversation_part.list conversation_parts: @@ -32423,20 +30307,6 @@ service: data: - id: '7583' ai_agent_participated: false - ai_agent: - source_type: essentials_plan_setup - source_title: My AI Workflow - last_answer_type: ai_answer - resolution_state: assumed_resolution - rating: 4 - rating_remark: Very helpful! - content_sources: - type: content_source.list - total_count: 1 - content_sources: - - url: /fin-ai-agent/content?content=content_snippet&id=3234924 - title: My internal content snippet - locale: en - name: Assign a conversation path-parameters: id: '123' @@ -32450,17 +30320,13 @@ service: body: type: conversation id: '405' - title: Conversation Title created_at: 1719492874 updated_at: 1719492875 - waiting_since: 1663597260 - snoozed_until: 1663597260 open: true state: open read: false priority: not_priority admin_assignee_id: 991267615 - team_assignee_id: '5017691' tags: type: tag.list tags: @@ -32468,17 +30334,6 @@ service: id: '123456' name: Test tag applied_at: 1663597223 - conversation_rating: - rating: 5 - remark: '' - created_at: 1671028894 - contact: - type: contact - id: 5ba682d23d7cf92bef87bfd4 - external_id: f3b87a2e09d514c6c2e79b9a - teammate: - type: contact - id: 1a2b3c source: type: conversation id: '403918281' @@ -32498,7 +30353,6 @@ service: filesize: 100 width: 100 height: 100 - url: url redacted: false contacts: type: contact.list @@ -32506,40 +30360,8 @@ service: - type: contact id: 667d610a8a68186f43bafe05 external_id: '70' - teammates: - type: admin.list - teammates: - - type: contact custom_attributes: key: value - first_contact_reply: - created_at: 1663597223 - type: conversation - url: https://developers.intercom.com/ - sla_applied: - type: conversation_sla_summary - sla_name: '' - sla_status: hit - statistics: - type: conversation_statistics - time_to_assignment: 2310 - time_to_admin_reply: 2310 - time_to_first_close: 2310 - time_to_last_close: 2310 - median_time_to_reply: 2310 - first_contact_reply_at: 1663597233 - first_assignment_at: 1663597233 - first_admin_reply_at: 1663597233 - first_close_at: 1663597233 - last_assignment_at: 1663597233 - last_assignment_admin_reply_at: 1663597233 - last_contact_reply_at: 1663597233 - last_admin_reply_at: 1663597233 - last_close_at: 1663597233 - last_closed_by_id: c3po - count_reopens: 1 - count_assignments: 1 - count_conversation_parts: 1 conversation_parts: type: conversation_part.list conversation_parts: @@ -32574,20 +30396,6 @@ service: data: - id: '7583' ai_agent_participated: false - ai_agent: - source_type: essentials_plan_setup - source_title: My AI Workflow - last_answer_type: ai_answer - resolution_state: assumed_resolution - rating: 4 - rating_remark: Very helpful! - content_sources: - type: content_source.list - total_count: 1 - content_sources: - - url: /fin-ai-agent/content?content=content_snippet&id=3234924 - title: My internal content snippet - locale: en - name: Not found path-parameters: id: '123' @@ -32601,17 +30409,12 @@ service: body: type: conversation id: '394' - title: Conversation Title created_at: 1719492862 updated_at: 1719492862 - waiting_since: 1663597260 - snoozed_until: 1663597260 open: false state: closed read: false priority: not_priority - admin_assignee_id: 0 - team_assignee_id: '5017691' tags: type: tag.list tags: @@ -32619,17 +30422,6 @@ service: id: '123456' name: Test tag applied_at: 1663597223 - conversation_rating: - rating: 5 - remark: '' - created_at: 1671028894 - contact: - type: contact - id: 5ba682d23d7cf92bef87bfd4 - external_id: f3b87a2e09d514c6c2e79b9a - teammate: - type: contact - id: 1a2b3c source: type: conversation id: '403918276' @@ -32649,7 +30441,6 @@ service: filesize: 100 width: 100 height: 100 - url: url redacted: false contacts: type: contact.list @@ -32657,40 +30448,8 @@ service: - type: contact id: 667d60fd8a68186f43bafdfb external_id: '70' - teammates: - type: admin.list - teammates: - - type: contact custom_attributes: key: value - first_contact_reply: - created_at: 1663597223 - type: conversation - url: https://developers.intercom.com/ - sla_applied: - type: conversation_sla_summary - sla_name: '' - sla_status: hit - statistics: - type: conversation_statistics - time_to_assignment: 2310 - time_to_admin_reply: 2310 - time_to_first_close: 2310 - time_to_last_close: 2310 - median_time_to_reply: 2310 - first_contact_reply_at: 1663597233 - first_assignment_at: 1663597233 - first_admin_reply_at: 1663597233 - first_close_at: 1663597233 - last_assignment_at: 1663597233 - last_assignment_admin_reply_at: 1663597233 - last_contact_reply_at: 1663597233 - last_admin_reply_at: 1663597233 - last_close_at: 1663597233 - last_closed_by_id: c3po - count_reopens: 1 - count_assignments: 1 - count_conversation_parts: 1 conversation_parts: type: conversation_part.list conversation_parts: @@ -32723,20 +30482,6 @@ service: data: - id: '7583' ai_agent_participated: false - ai_agent: - source_type: essentials_plan_setup - source_title: My AI Workflow - last_answer_type: ai_answer - resolution_state: assumed_resolution - rating: 4 - rating_remark: Very helpful! - content_sources: - type: content_source.list - total_count: 1 - content_sources: - - url: /fin-ai-agent/content?content=content_snippet&id=3234924 - title: My internal content snippet - locale: en autoAssignConversation: path: /conversations/{id}/run_assignment_rules method: POST @@ -32772,17 +30517,12 @@ service: body: type: conversation id: '409' - title: Conversation Title created_at: 1719492880 updated_at: 1719492881 - waiting_since: 1663597260 - snoozed_until: 1663597260 open: false state: closed read: false priority: not_priority - admin_assignee_id: 0 - team_assignee_id: '5017691' tags: type: tag.list tags: @@ -32790,17 +30530,6 @@ service: id: '123456' name: Test tag applied_at: 1663597223 - conversation_rating: - rating: 5 - remark: '' - created_at: 1671028894 - contact: - type: contact - id: 5ba682d23d7cf92bef87bfd4 - external_id: f3b87a2e09d514c6c2e79b9a - teammate: - type: contact - id: 1a2b3c source: type: conversation id: '403918285' @@ -32820,7 +30549,6 @@ service: filesize: 100 width: 100 height: 100 - url: url redacted: false contacts: type: contact.list @@ -32828,40 +30556,8 @@ service: - type: contact id: 667d61108a68186f43bafe09 external_id: '70' - teammates: - type: admin.list - teammates: - - type: contact custom_attributes: key: value - first_contact_reply: - created_at: 1663597223 - type: conversation - url: https://developers.intercom.com/ - sla_applied: - type: conversation_sla_summary - sla_name: '' - sla_status: hit - statistics: - type: conversation_statistics - time_to_assignment: 2310 - time_to_admin_reply: 2310 - time_to_first_close: 2310 - time_to_last_close: 2310 - median_time_to_reply: 2310 - first_contact_reply_at: 1663597233 - first_assignment_at: 1663597233 - first_admin_reply_at: 1663597233 - first_close_at: 1663597233 - last_assignment_at: 1663597233 - last_assignment_admin_reply_at: 1663597233 - last_contact_reply_at: 1663597233 - last_admin_reply_at: 1663597233 - last_close_at: 1663597233 - last_closed_by_id: c3po - count_reopens: 1 - count_assignments: 1 - count_conversation_parts: 1 conversation_parts: type: conversation_part.list conversation_parts: @@ -32896,20 +30592,6 @@ service: data: - id: '7583' ai_agent_participated: false - ai_agent: - source_type: essentials_plan_setup - source_title: My AI Workflow - last_answer_type: ai_answer - resolution_state: assumed_resolution - rating: 4 - rating_remark: Very helpful! - content_sources: - type: content_source.list - total_count: 1 - content_sources: - - url: /fin-ai-agent/content?content=content_snippet&id=3234924 - title: My internal content snippet - locale: en attachContactToConversation: path: /conversations/{id}/customers method: POST @@ -33818,17 +31500,13 @@ service: body: type: conversation id: '471' - title: Conversation Title created_at: 1719492938 updated_at: 1719492940 waiting_since: 1719492939 - snoozed_until: 1663597260 open: true state: open read: true priority: not_priority - admin_assignee_id: 0 - team_assignee_id: '5017691' tags: type: tag.list tags: @@ -33836,17 +31514,6 @@ service: id: '123456' name: Test tag applied_at: 1663597223 - conversation_rating: - rating: 5 - remark: '' - created_at: 1671028894 - contact: - type: contact - id: 5ba682d23d7cf92bef87bfd4 - external_id: f3b87a2e09d514c6c2e79b9a - teammate: - type: contact - id: 1a2b3c source: type: conversation id: '403918311' @@ -33866,7 +31533,6 @@ service: filesize: 100 width: 100 height: 100 - url: url redacted: false contacts: type: contact.list @@ -33874,40 +31540,11 @@ service: - type: contact id: 667d614a8a68186f43bafe42 external_id: '70' - teammates: - type: admin.list - teammates: - - type: contact custom_attributes: key: value first_contact_reply: created_at: 1719492939 type: conversation - url: https://developers.intercom.com/ - sla_applied: - type: conversation_sla_summary - sla_name: '' - sla_status: hit - statistics: - type: conversation_statistics - time_to_assignment: 2310 - time_to_admin_reply: 2310 - time_to_first_close: 2310 - time_to_last_close: 2310 - median_time_to_reply: 2310 - first_contact_reply_at: 1663597233 - first_assignment_at: 1663597233 - first_admin_reply_at: 1663597233 - first_close_at: 1663597233 - last_assignment_at: 1663597233 - last_assignment_admin_reply_at: 1663597233 - last_contact_reply_at: 1663597233 - last_admin_reply_at: 1663597233 - last_close_at: 1663597233 - last_closed_by_id: c3po - count_reopens: 1 - count_assignments: 1 - count_conversation_parts: 1 conversation_parts: type: conversation_part.list conversation_parts: @@ -33940,20 +31577,6 @@ service: data: - id: '7583' ai_agent_participated: false - ai_agent: - source_type: essentials_plan_setup - source_title: My AI Workflow - last_answer_type: ai_answer - resolution_state: assumed_resolution - rating: 4 - rating_remark: Very helpful! - content_sources: - type: content_source.list - total_count: 1 - content_sources: - - url: /fin-ai-agent/content?content=content_snippet&id=3234924 - title: My internal content snippet - locale: en - name: Not found request: type: conversation_part @@ -33963,17 +31586,13 @@ service: body: type: conversation id: '471' - title: Conversation Title created_at: 1719492938 updated_at: 1719492940 waiting_since: 1719492939 - snoozed_until: 1663597260 open: true state: open read: true priority: not_priority - admin_assignee_id: 0 - team_assignee_id: '5017691' tags: type: tag.list tags: @@ -33981,17 +31600,6 @@ service: id: '123456' name: Test tag applied_at: 1663597223 - conversation_rating: - rating: 5 - remark: '' - created_at: 1671028894 - contact: - type: contact - id: 5ba682d23d7cf92bef87bfd4 - external_id: f3b87a2e09d514c6c2e79b9a - teammate: - type: contact - id: 1a2b3c source: type: conversation id: '403918311' @@ -34011,7 +31619,6 @@ service: filesize: 100 width: 100 height: 100 - url: url redacted: false contacts: type: contact.list @@ -34019,40 +31626,11 @@ service: - type: contact id: 667d614a8a68186f43bafe42 external_id: '70' - teammates: - type: admin.list - teammates: - - type: contact custom_attributes: key: value first_contact_reply: created_at: 1719492939 type: conversation - url: https://developers.intercom.com/ - sla_applied: - type: conversation_sla_summary - sla_name: '' - sla_status: hit - statistics: - type: conversation_statistics - time_to_assignment: 2310 - time_to_admin_reply: 2310 - time_to_first_close: 2310 - time_to_last_close: 2310 - median_time_to_reply: 2310 - first_contact_reply_at: 1663597233 - first_assignment_at: 1663597233 - first_admin_reply_at: 1663597233 - first_close_at: 1663597233 - last_assignment_at: 1663597233 - last_assignment_admin_reply_at: 1663597233 - last_contact_reply_at: 1663597233 - last_admin_reply_at: 1663597233 - last_close_at: 1663597233 - last_closed_by_id: c3po - count_reopens: 1 - count_assignments: 1 - count_conversation_parts: 1 conversation_parts: type: conversation_part.list conversation_parts: @@ -34085,20 +31663,6 @@ service: data: - id: '7583' ai_agent_participated: false - ai_agent: - source_type: essentials_plan_setup - source_title: My AI Workflow - last_answer_type: ai_answer - resolution_state: assumed_resolution - rating: 4 - rating_remark: Very helpful! - content_sources: - type: content_source.list - total_count: 1 - content_sources: - - url: /fin-ai-agent/content?content=content_snippet&id=3234924 - title: My internal content snippet - locale: en convertConversationToTicket: path: /conversations/{id}/convert method: POST @@ -37542,7 +35106,6 @@ types: "id": "165", "name": "Thanks for everything", "order": 1, - "parent_id": "6871118", "translated_content": { "ar": { "description": " Collection description", @@ -37753,7 +35316,6 @@ types: "id": "165", "name": "Thanks for everything", "order": 1, - "parent_id": "6871118", "translated_content": { "ar": { "description": " Collection description", @@ -38055,7 +35617,6 @@ Collections will be returned in descending order on the `updated_at` attribute. "id": "159", "name": "English collection title", "order": 17, - "parent_id": "6871118", "updated_at": 1719492720, "url": "http://help-center.test/myapp-65/collection-17", "workspace_id": "this_is_an_id65_that_should_be_at_least_4", @@ -38063,8 +35624,6 @@ Collections will be returned in descending order on the `updated_at` attribute. { "created_at": 1719492720, "default_locale": "en", - "description": "Default language description", - "help_center_id": 1, "icon": "bookmark", "id": "160", "name": "English section title", @@ -38165,7 +35724,6 @@ Collections will be returned in descending order on the `updated_at` attribute. "id": "170", "name": "English collection title", "order": 22, - "parent_id": "6871118", "translated_content": { "ar": { "description": " Collection description", @@ -38449,7 +36007,6 @@ Collections will be returned in descending order on the `updated_at` attribute. "id": "176", "name": "Update collection name", "order": 25, - "parent_id": "6871118", "translated_content": { "ar": { "description": " Collection description", @@ -38662,7 +36219,6 @@ Collections will be returned in descending order on the `updated_at` attribute. "id": "176", "name": "Update collection name", "order": 25, - "parent_id": "6871118", "translated_content": { "ar": { "description": " Collection description", @@ -39074,12 +36630,10 @@ service: icon: bookmark order: 17 default_locale: en - parent_id: '6871118' help_center_id: 79 - id: '160' workspace_id: this_is_an_id65_that_should_be_at_least_4 name: English section title - description: Default language description created_at: 1719492720 updated_at: 1719492720 url: http://help-center.test/myapp-65/section-1 @@ -39087,7 +36641,6 @@ service: order: 1 default_locale: en parent_id: '159' - help_center_id: 1 createCollection: path: /help_center/collections method: POST @@ -39297,7 +36850,6 @@ service: type: group_content name: Collection name description: ' Collection description' - parent_id: '6871118' help_center_id: 81 - name: Bad Request request: @@ -39465,7 +37017,6 @@ service: type: group_content name: Collection name description: ' Collection description' - parent_id: '6871118' help_center_id: 81 retrieveCollection: path: /help_center/collections/{id} @@ -39653,7 +37204,6 @@ service: type: group_content name: Collection name description: ' Collection description' - parent_id: '6871118' help_center_id: 84 updateCollection: path: /help_center/collections/{id} @@ -39865,7 +37415,6 @@ service: type: group_content name: Collection name description: ' Collection description' - parent_id: '6871118' help_center_id: 87 - name: Collection Not Found path-parameters: @@ -40034,7 +37583,6 @@ service: type: group_content name: Collection name description: ' Collection description' - parent_id: '6871118' help_center_id: 87 deleteCollection: path: /help_center/collections/{id} @@ -40743,7 +38291,6 @@ types: "response": { "body": { "body": "

New costumes in store for this spooky season

", - "cover_image_url": "https://example.com/cover.jpg", "created_at": 1719492978, "deliver_silently": true, "id": "33", @@ -41012,7 +38559,6 @@ types: "response": { "body": { "body": "

Hello there,

", - "cover_image_url": "https://example.com/cover.jpg", "created_at": 1719492979, "deliver_silently": false, "id": "34", @@ -41123,7 +38669,6 @@ types: "response": { "body": { "body": "

New gifts in store for the jolly season

", - "cover_image_url": "https://example.com/cover.jpg", "created_at": 1719492982, "deliver_silently": false, "id": "37", @@ -41165,7 +38710,6 @@ types: "response": { "body": { "body": "

New gifts in store for the jolly season

", - "cover_image_url": "https://example.com/cover.jpg", "created_at": 1719492982, "deliver_silently": false, "id": "37", @@ -41438,7 +38982,6 @@ service: - New - Product - Update - cover_image_url: https://example.com/cover.jpg reactions: - 😆 - 😅 @@ -41480,7 +39023,6 @@ service: published_at: 1719492980 labels: - Product Update - cover_image_url: https://example.com/cover.jpg reactions: - 👍 - 👍 @@ -41534,7 +39076,6 @@ service: published_at: 1674917488 labels: - Product Update - cover_image_url: https://example.com/cover.jpg reactions: - 😝 - 😂 @@ -41564,7 +39105,6 @@ service: published_at: 1674917488 labels: - Product Update - cover_image_url: https://example.com/cover.jpg reactions: - 😝 - 😂 @@ -42097,10 +39637,6 @@ types: }, ], "pages": { - "next": { - "per_page": 2, - "starting_after": "your-cursor-from-response", - }, "page": 1, "per_page": 50, "total_pages": 1, @@ -42338,9 +39874,6 @@ service: pages: type: pages page: 1 - next: - per_page: 2 - starting_after: your-cursor-from-response per_page: 50 total_pages: 1 createNote: @@ -49845,19 +47378,6 @@ docs: Everything about your tickets }, "response": { "body": { - "android_app_name": "Intercom", - "android_app_version": "5.0.0", - "android_device": "Pixel 3", - "android_last_seen_at": 1571672154, - "android_os_version": "10", - "android_sdk_version": "28", - "avatar": { - "image_url": "https://example.org/128Wash.jpg", - "type": "avatar", - }, - "browser": "Chrome", - "browser_language": "en-US", - "browser_version": "80.0.3987.132", "companies": { "has_more": false, "total_count": 0, @@ -49869,30 +47389,13 @@ docs: Everything about your tickets }, "email": "foo@bar.com", "email_domain": "example.com", - "external_id": "f3b87a2e09d514c6c2e79b9a", "formatted_phone": "+1123456789", "has_hard_bounced": false, "id": "667d61d08a68186f43bafea2", - "ios_app_name": "Intercom", - "ios_app_version": "5.0.0", - "ios_device": "iPhone 11", - "ios_last_seen_at": 1571672154, - "ios_os_version": "13.3.1", - "ios_sdk_version": "13.3.1", - "language_override": "en", - "last_contacted_at": 1571672154, - "last_email_clicked_at": 1571672154, - "last_email_opened_at": 1571672154, - "last_replied_at": 1571672154, - "last_seen_at": 1571672154, "location": { - "city": "Dublin", - "country": "Ireland", - "region": "Dublin", "type": "location", }, "marked_email_as_spam": false, - "name": "John Doe", "notes": { "data": [ { @@ -49905,9 +47408,6 @@ docs: Everything about your tickets "total_count": 0, "url": "/contacts/667d61d08a68186f43bafea2/notes", }, - "os": "Mac OS X", - "owner_id": 123, - "phone": "+1123456789", "role": "user", "signed_up_at": 1719493072, "social_profiles": { @@ -49986,7 +47486,6 @@ docs: Everything about your tickets "anonymous": true, "app_id": "this_is_an_id677_that_should_be_at_least_", "avatar": { - "image_url": "https://example.com/avatar.png", "type": "avatar", }, "companies": { @@ -50019,7 +47518,6 @@ docs: Everything about your tickets "custom_attributes": { "key": "value", }, - "do_not_track": false, "email": "", "has_hard_bounced": false, "id": "667d61ce8a68186f43bafe9b", @@ -50035,11 +47533,6 @@ docs: Everything about your tickets "type": "location_data", }, "marked_email_as_spam": false, - "name": "Jane Doe", - "owner_id": "5169261", - "phone": "555-555-5555", - "pseudonym": "Red Duck from Dublin", - "referrer": "https://www.google.com/", "remote_created_at": 1719493070, "segments": { "segments": [ @@ -50068,11 +47561,6 @@ docs: Everything about your tickets "unsubscribed_from_emails": false, "updated_at": 1719493070, "user_id": "3ecf64d0-9ed1-4e9f-88e1-da7d6e6782f3", - "utm_campaign": "intercom-link", - "utm_content": "banner", - "utm_medium": "email", - "utm_source": "Intercom", - "utm_term": "messenger", }, }, }, @@ -50155,7 +47643,6 @@ docs: Everything about your tickets "custom_attributes": { "key": "value", }, - "do_not_track": false, "email": "", "has_hard_bounced": false, "id": "667d61cc8a68186f43bafe95", @@ -50172,10 +47659,7 @@ docs: Everything about your tickets }, "marked_email_as_spam": false, "name": "Gareth Bale", - "owner_id": "5169261", - "phone": "555-555-5555", "pseudonym": "Indigo Ghost", - "referrer": "https://www.google.com/", "remote_created_at": 1719493068, "segments": { "segments": [ @@ -50204,11 +47688,6 @@ docs: Everything about your tickets "unsubscribed_from_emails": false, "updated_at": 1719493068, "user_id": "3ecf64d0-9ed1-4e9f-88e1-da7d6e6782f3", - "utm_campaign": "intercom-link", - "utm_content": "banner", - "utm_medium": "email", - "utm_source": "Intercom", - "utm_term": "messenger", }, }, }, @@ -50256,7 +47735,6 @@ docs: Everything about your tickets "custom_attributes": { "key": "value", }, - "do_not_track": false, "email": "", "has_hard_bounced": false, "id": "667d61cc8a68186f43bafe95", @@ -50273,10 +47751,7 @@ docs: Everything about your tickets }, "marked_email_as_spam": false, "name": "Gareth Bale", - "owner_id": "5169261", - "phone": "555-555-5555", "pseudonym": "Indigo Ghost", - "referrer": "https://www.google.com/", "remote_created_at": 1719493068, "segments": { "segments": [ @@ -50305,11 +47780,6 @@ docs: Everything about your tickets "unsubscribed_from_emails": false, "updated_at": 1719493068, "user_id": "3ecf64d0-9ed1-4e9f-88e1-da7d6e6782f3", - "utm_campaign": "intercom-link", - "utm_content": "banner", - "utm_medium": "email", - "utm_source": "Intercom", - "utm_term": "messenger", }, }, }, @@ -50373,12 +47843,8 @@ service: user_id: 3ecf64d0-9ed1-4e9f-88e1-da7d6e6782f3 anonymous: true email: '' - phone: 555-555-5555 - name: Jane Doe - pseudonym: Red Duck from Dublin avatar: type: avatar - image_url: https://example.com/avatar.png app_id: this_is_an_id677_that_should_be_at_least_ companies: type: company.list @@ -50420,7 +47886,6 @@ service: type: social_profile.list social_profiles: - social_profiles - owner_id: '5169261' unsubscribed_from_emails: false marked_email_as_spam: false has_hard_bounced: false @@ -50435,13 +47900,6 @@ service: - segments custom_attributes: key: value - referrer: https://www.google.com/ - utm_campaign: intercom-link - utm_content: banner - utm_medium: email - utm_source: Intercom - utm_term: messenger - do_not_track: false updateVisitor: path: /visitors method: PUT @@ -50481,7 +47939,6 @@ service: user_id: 3ecf64d0-9ed1-4e9f-88e1-da7d6e6782f3 anonymous: true email: '' - phone: 555-555-5555 name: Gareth Bale pseudonym: Indigo Ghost avatar: @@ -50529,7 +47986,6 @@ service: type: social_profile.list social_profiles: - social_profiles - owner_id: '5169261' unsubscribed_from_emails: false marked_email_as_spam: false has_hard_bounced: false @@ -50544,13 +48000,6 @@ service: - segments custom_attributes: key: value - referrer: https://www.google.com/ - utm_campaign: intercom-link - utm_content: banner - utm_medium: email - utm_source: Intercom - utm_term: messenger - do_not_track: false - name: visitor Not Found request: user_id: fail @@ -50562,7 +48011,6 @@ service: user_id: 3ecf64d0-9ed1-4e9f-88e1-da7d6e6782f3 anonymous: true email: '' - phone: 555-555-5555 name: Gareth Bale pseudonym: Indigo Ghost avatar: @@ -50610,7 +48058,6 @@ service: type: social_profile.list social_profiles: - social_profiles - owner_id: '5169261' unsubscribed_from_emails: false marked_email_as_spam: false has_hard_bounced: false @@ -50625,13 +48072,6 @@ service: - segments custom_attributes: key: value - referrer: https://www.google.com/ - utm_campaign: intercom-link - utm_content: banner - utm_medium: email - utm_source: Intercom - utm_term: messenger - do_not_track: false convertVisitor: path: /visitors/convert method: POST @@ -50680,48 +48120,19 @@ service: body: type: contact id: 667d61d08a68186f43bafea2 - external_id: f3b87a2e09d514c6c2e79b9a workspace_id: this_is_an_id683_that_should_be_at_least_ role: user email: foo@bar.com email_domain: example.com - phone: '+1123456789' formatted_phone: '+1123456789' - name: John Doe - owner_id: 123 has_hard_bounced: false marked_email_as_spam: false unsubscribed_from_emails: false created_at: 1719493072 updated_at: 1719493072 signed_up_at: 1719493072 - last_seen_at: 1571672154 - last_replied_at: 1571672154 - last_contacted_at: 1571672154 - last_email_opened_at: 1571672154 - last_email_clicked_at: 1571672154 - language_override: en - browser: Chrome - browser_version: 80.0.3987.132 - browser_language: en-US - os: Mac OS X - android_app_name: Intercom - android_app_version: 5.0.0 - android_device: Pixel 3 - android_os_version: '10' - android_sdk_version: '28' - android_last_seen_at: 1571672154 - ios_app_name: Intercom - ios_app_version: 5.0.0 - ios_device: iPhone 11 - ios_os_version: 13.3.1 - ios_sdk_version: 13.3.1 - ios_last_seen_at: 1571672154 custom_attributes: key: value - avatar: - type: avatar - image_url: https://example.org/128Wash.jpg tags: data: - type: note @@ -50744,9 +48155,6 @@ service: has_more: false location: type: location - country: Ireland - region: Dublin - city: Dublin social_profiles: data: - type: social_profile diff --git a/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi-docs/ntropy.json b/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi-docs/ntropy.json index a1bfd4b33c3..58712f5011b 100644 --- a/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi-docs/ntropy.json +++ b/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi-docs/ntropy.json @@ -9468,10 +9468,6 @@ enriched = sdk.transactions.create([ }, ], }, - "error": { - "code": "account_holder_not_found", - "message": "message", - }, "id": "xbx8YP14g565Xk", "location": { "raw_address": "Nw 43rd Street 5480, Gainesville, Florida 32653, US", @@ -9969,9 +9965,6 @@ service: google_maps_url: >- https://www.google.com/maps/search/?api=1&query=29.704558,-82.389277 apple_maps_url: https://maps.apple.com/?q=29.704558,-82.389277 - error: - code: account_holder_not_found - message: message created_at: '2024-03-30T00:00:00Z' id: xbx8YP14g565Xk code-samples: diff --git a/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi-docs/only-include-referenced-schemas.json b/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi-docs/only-include-referenced-schemas.json index e7c0346d557..06f4b3d0bf1 100644 --- a/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi-docs/only-include-referenced-schemas.json +++ b/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi-docs/only-include-referenced-schemas.json @@ -13207,10 +13207,6 @@ You can view the currently authorised admin along with the embedded app object ( }, ], "pages": { - "next": { - "per_page": 2, - "starting_after": "your-cursor-from-response", - }, "page": 1, "per_page": 20, "total_pages": 1, @@ -13762,9 +13758,6 @@ service: pages: type: pages page: 1 - next: - per_page: 2 - starting_after: your-cursor-from-response per_page: 20 total_pages: 1 activity_logs: @@ -20155,10 +20148,6 @@ When using the Companies endpoint and the pages object to iterate through the re }, ], "pages": { - "next": { - "per_page": 2, - "starting_after": "your-cursor-from-response", - }, "page": 1, "per_page": 15, "total_pages": 1, @@ -20270,10 +20259,6 @@ You can fetch all companies and filter by `segment_id` or `tag_id` as a query pa }, ], "pages": { - "next": { - "per_page": 2, - "starting_after": "your-cursor-from-response", - }, "page": 1, "per_page": 15, "total_pages": 1, @@ -20393,18 +20378,7 @@ You can fetch all companies and filter by `segment_id` or `tag_id` as a query pa "website": "https://www.intercom.com", }, ], - "pages": { - "next": { - "per_page": 2, - "starting_after": "your-cursor-from-response", - }, - "page": 1, - "per_page": 2, - "total_pages": 13, - "type": "pages", - }, "scroll_param": "12d403b5-dc79-47b5-8ea1-01a5ac8cb6cc", - "total_count": 100, "type": "list", }, }, @@ -20638,9 +20612,6 @@ service: pages: type: pages page: 1 - next: - per_page: 2 - starting_after: your-cursor-from-response per_page: 15 total_pages: 1 total_count: 1 @@ -21071,9 +21042,6 @@ service: pages: type: pages page: 1 - next: - per_page: 2 - starting_after: your-cursor-from-response per_page: 15 total_pages: 1 total_count: 1 @@ -21185,15 +21153,6 @@ service: name: Active created_at: 1394621988 updated_at: 1394622004 - pages: - type: pages - page: 1 - next: - per_page: 2 - starting_after: your-cursor-from-response - per_page: 2 - total_pages: 13 - total_count: 100 scroll_param: 12d403b5-dc79-47b5-8ea1-01a5ac8cb6cc attachContactToACompany: path: /contacts/{id}/companies @@ -21572,19 +21531,6 @@ types: }, "response": { "body": { - "android_app_name": "Intercom", - "android_app_version": "5.0.0", - "android_device": "Pixel 3", - "android_last_seen_at": 1571672154, - "android_os_version": "10", - "android_sdk_version": "28", - "avatar": { - "image_url": "https://example.org/128Wash.jpg", - "type": "avatar", - }, - "browser": "Chrome", - "browser_language": "en-US", - "browser_version": "80.0.3987.132", "companies": { "has_more": false, "total_count": 0, @@ -21596,30 +21542,13 @@ types: }, "email": "joebloggs@intercom.io", "email_domain": "example.com", - "external_id": "f3b87a2e09d514c6c2e79b9a", "formatted_phone": "+1123456789", "has_hard_bounced": false, "id": "667d60b08a68186f43bafdbf", - "ios_app_name": "Intercom", - "ios_app_version": "5.0.0", - "ios_device": "iPhone 11", - "ios_last_seen_at": 1571672154, - "ios_os_version": "13.3.1", - "ios_sdk_version": "13.3.1", - "language_override": "en", - "last_contacted_at": 1571672154, - "last_email_clicked_at": 1571672154, - "last_email_opened_at": 1571672154, - "last_replied_at": 1571672154, - "last_seen_at": 1571672154, "location": { - "city": "Dublin", - "country": "Ireland", - "region": "Dublin", "type": "location", }, "marked_email_as_spam": false, - "name": "John Doe", "notes": { "data": [ { @@ -21632,11 +21561,7 @@ types: "total_count": 0, "url": "/contacts/667d60b08a68186f43bafdbf/notes", }, - "os": "Mac OS X", - "owner_id": 123, - "phone": "+1123456789", "role": "user", - "signed_up_at": 1571672154, "social_profiles": { "data": [ { @@ -21845,19 +21770,6 @@ types: }, "response": { "body": { - "android_app_name": "Intercom", - "android_app_version": "5.0.0", - "android_device": "Pixel 3", - "android_last_seen_at": 1571672154, - "android_os_version": "10", - "android_sdk_version": "28", - "avatar": { - "image_url": "https://example.org/128Wash.jpg", - "type": "avatar", - }, - "browser": "Chrome", - "browser_language": "en-US", - "browser_version": "80.0.3987.132", "companies": { "has_more": false, "total_count": 0, @@ -21873,22 +21785,7 @@ types: "formatted_phone": "+1123456789", "has_hard_bounced": false, "id": "667d60ac8a68186f43bafdbc", - "ios_app_name": "Intercom", - "ios_app_version": "5.0.0", - "ios_device": "iPhone 11", - "ios_last_seen_at": 1571672154, - "ios_os_version": "13.3.1", - "ios_sdk_version": "13.3.1", - "language_override": "en", - "last_contacted_at": 1571672154, - "last_email_clicked_at": 1571672154, - "last_email_opened_at": 1571672154, - "last_replied_at": 1571672154, - "last_seen_at": 1571672154, "location": { - "city": "Dublin", - "country": "Ireland", - "region": "Dublin", "type": "location", }, "marked_email_as_spam": false, @@ -21905,9 +21802,6 @@ types: "total_count": 0, "url": "/contacts/667d60ac8a68186f43bafdbc/notes", }, - "os": "Mac OS X", - "owner_id": 123, - "phone": "+1123456789", "role": "user", "signed_up_at": 1719492780, "social_profiles": { @@ -22208,19 +22102,6 @@ The table below shows the operators you can use to define how you want to search }, "response": { "body": { - "android_app_name": "Intercom", - "android_app_version": "5.0.0", - "android_device": "Pixel 3", - "android_last_seen_at": 1571672154, - "android_os_version": "10", - "android_sdk_version": "28", - "avatar": { - "image_url": "https://example.org/128Wash.jpg", - "type": "avatar", - }, - "browser": "Chrome", - "browser_language": "en-US", - "browser_version": "80.0.3987.132", "companies": { "has_more": false, "total_count": 0, @@ -22236,22 +22117,7 @@ The table below shows the operators you can use to define how you want to search "formatted_phone": "+1123456789", "has_hard_bounced": false, "id": "667d60a98a68186f43bafdb9", - "ios_app_name": "Intercom", - "ios_app_version": "5.0.0", - "ios_device": "iPhone 11", - "ios_last_seen_at": 1571672154, - "ios_os_version": "13.3.1", - "ios_sdk_version": "13.3.1", - "language_override": "en", - "last_contacted_at": 1571672154, - "last_email_clicked_at": 1571672154, - "last_email_opened_at": 1571672154, - "last_replied_at": 1571672154, - "last_seen_at": 1571672154, "location": { - "city": "Dublin", - "country": "Ireland", - "region": "Dublin", "type": "location", }, "marked_email_as_spam": false, @@ -22268,9 +22134,6 @@ The table below shows the operators you can use to define how you want to search "total_count": 0, "url": "/contacts/667d60a98a68186f43bafdb9/notes", }, - "os": "Mac OS X", - "owner_id": 123, - "phone": "+1123456789", "role": "user", "signed_up_at": 1719492777, "social_profiles": { @@ -22375,19 +22238,6 @@ The table below shows the operators you can use to define how you want to search }, "response": { "body": { - "android_app_name": "Intercom", - "android_app_version": "5.0.0", - "android_device": "Pixel 3", - "android_last_seen_at": 1571672154, - "android_os_version": "10", - "android_sdk_version": "28", - "avatar": { - "image_url": "https://example.org/128Wash.jpg", - "type": "avatar", - }, - "browser": "Chrome", - "browser_language": "en-US", - "browser_version": "80.0.3987.132", "companies": { "has_more": false, "total_count": 0, @@ -22403,22 +22253,7 @@ The table below shows the operators you can use to define how you want to search "formatted_phone": "+1123456789", "has_hard_bounced": false, "id": "667d60a88a68186f43bafdb8", - "ios_app_name": "Intercom", - "ios_app_version": "5.0.0", - "ios_device": "iPhone 11", - "ios_last_seen_at": 1571672154, - "ios_os_version": "13.3.1", - "ios_sdk_version": "13.3.1", - "language_override": "en", - "last_contacted_at": 1571672154, - "last_email_clicked_at": 1571672154, - "last_email_opened_at": 1571672154, - "last_replied_at": 1571672154, - "last_seen_at": 1571672154, "location": { - "city": "Dublin", - "country": "Ireland", - "region": "Dublin", "type": "location", }, "marked_email_as_spam": false, @@ -22435,9 +22270,6 @@ The table below shows the operators you can use to define how you want to search "total_count": 0, "url": "/contacts/667d60a88a68186f43bafdb8/notes", }, - "os": "Mac OS X", - "owner_id": 123, - "phone": "+1123456789", "role": "user", "signed_up_at": 1719492776, "social_profiles": { @@ -22587,7 +22419,6 @@ The table below shows the operators you can use to define how you want to search }, ], "pages": { - "next": "next", "page": 1, "per_page": 50, "total_pages": 1, @@ -23080,7 +22911,6 @@ service: pages: type: pages page: 1 - next: next per_page: 50 total_pages: 1 listSegmentsForAContact: @@ -23246,43 +23076,16 @@ service: role: user email: joe@bloggs.com email_domain: example.com - phone: '+1123456789' formatted_phone: '+1123456789' name: Joe Bloggs - owner_id: 123 has_hard_bounced: false marked_email_as_spam: false unsubscribed_from_emails: false created_at: 1719492777 updated_at: 1719492777 signed_up_at: 1719492777 - last_seen_at: 1571672154 - last_replied_at: 1571672154 - last_contacted_at: 1571672154 - last_email_opened_at: 1571672154 - last_email_clicked_at: 1571672154 - language_override: en - browser: Chrome - browser_version: 80.0.3987.132 - browser_language: en-US - os: Mac OS X - android_app_name: Intercom - android_app_version: 5.0.0 - android_device: Pixel 3 - android_os_version: '10' - android_sdk_version: '28' - android_last_seen_at: 1571672154 - ios_app_name: Intercom - ios_app_version: 5.0.0 - ios_device: iPhone 11 - ios_os_version: 13.3.1 - ios_sdk_version: 13.3.1 - ios_last_seen_at: 1571672154 custom_attributes: key: value - avatar: - type: avatar - image_url: https://example.org/128Wash.jpg tags: data: - type: note @@ -23305,9 +23108,6 @@ service: has_more: false location: type: location - country: Ireland - region: Dublin - city: Dublin social_profiles: data: - type: social_profile @@ -23388,43 +23188,16 @@ service: role: user email: joebloggs@intercom.io email_domain: example.com - phone: '+1123456789' formatted_phone: '+1123456789' name: joe bloggs - owner_id: 123 has_hard_bounced: false marked_email_as_spam: false unsubscribed_from_emails: false created_at: 1719492776 updated_at: 1719492776 signed_up_at: 1719492776 - last_seen_at: 1571672154 - last_replied_at: 1571672154 - last_contacted_at: 1571672154 - last_email_opened_at: 1571672154 - last_email_clicked_at: 1571672154 - language_override: en - browser: Chrome - browser_version: 80.0.3987.132 - browser_language: en-US - os: Mac OS X - android_app_name: Intercom - android_app_version: 5.0.0 - android_device: Pixel 3 - android_os_version: '10' - android_sdk_version: '28' - android_last_seen_at: 1571672154 - ios_app_name: Intercom - ios_app_version: 5.0.0 - ios_device: iPhone 11 - ios_os_version: 13.3.1 - ios_sdk_version: 13.3.1 - ios_last_seen_at: 1571672154 custom_attributes: key: value - avatar: - type: avatar - image_url: https://example.org/128Wash.jpg tags: data: - type: note @@ -23447,9 +23220,6 @@ service: has_more: false location: type: location - country: Ireland - region: Dublin - city: Dublin social_profiles: data: - type: social_profile @@ -23526,43 +23296,16 @@ service: role: user email: joe@bloggs.com email_domain: example.com - phone: '+1123456789' formatted_phone: '+1123456789' name: Joe Bloggs - owner_id: 123 has_hard_bounced: false marked_email_as_spam: false unsubscribed_from_emails: false created_at: 1719492780 updated_at: 1719492780 signed_up_at: 1719492780 - last_seen_at: 1571672154 - last_replied_at: 1571672154 - last_contacted_at: 1571672154 - last_email_opened_at: 1571672154 - last_email_clicked_at: 1571672154 - language_override: en - browser: Chrome - browser_version: 80.0.3987.132 - browser_language: en-US - os: Mac OS X - android_app_name: Intercom - android_app_version: 5.0.0 - android_device: Pixel 3 - android_os_version: '10' - android_sdk_version: '28' - android_last_seen_at: 1571672154 - ios_app_name: Intercom - ios_app_version: 5.0.0 - ios_device: iPhone 11 - ios_os_version: 13.3.1 - ios_sdk_version: 13.3.1 - ios_last_seen_at: 1571672154 custom_attributes: key: value - avatar: - type: avatar - image_url: https://example.org/128Wash.jpg tags: data: - type: note @@ -23585,9 +23328,6 @@ service: has_more: false location: type: location - country: Ireland - region: Dublin - city: Dublin social_profiles: data: - type: social_profile @@ -24018,48 +23758,18 @@ service: body: type: contact id: 667d60b08a68186f43bafdbf - external_id: f3b87a2e09d514c6c2e79b9a workspace_id: this_is_an_id272_that_should_be_at_least_ role: user email: joebloggs@intercom.io email_domain: example.com - phone: '+1123456789' formatted_phone: '+1123456789' - name: John Doe - owner_id: 123 has_hard_bounced: false marked_email_as_spam: false unsubscribed_from_emails: false created_at: 1719492784 updated_at: 1719492784 - signed_up_at: 1571672154 - last_seen_at: 1571672154 - last_replied_at: 1571672154 - last_contacted_at: 1571672154 - last_email_opened_at: 1571672154 - last_email_clicked_at: 1571672154 - language_override: en - browser: Chrome - browser_version: 80.0.3987.132 - browser_language: en-US - os: Mac OS X - android_app_name: Intercom - android_app_version: 5.0.0 - android_device: Pixel 3 - android_os_version: '10' - android_sdk_version: '28' - android_last_seen_at: 1571672154 - ios_app_name: Intercom - ios_app_version: 5.0.0 - ios_device: iPhone 11 - ios_os_version: 13.3.1 - ios_sdk_version: 13.3.1 - ios_last_seen_at: 1571672154 custom_attributes: key: value - avatar: - type: avatar - image_url: https://example.org/128Wash.jpg tags: data: - type: note @@ -24082,9 +23792,6 @@ service: has_more: false location: type: location - country: Ireland - region: Dublin - city: Dublin social_profiles: data: - type: social_profile @@ -24745,26 +24452,6 @@ It is not possible to use this endpoint with Workflows. }, "response": { "body": { - "admin_assignee_id": 0, - "ai_agent": { - "content_sources": { - "content_sources": [ - { - "locale": "en", - "title": "My internal content snippet", - "url": "/fin-ai-agent/content?content=content_snippet&id=3234924", - }, - ], - "total_count": 1, - "type": "content_source.list", - }, - "last_answer_type": "ai_answer", - "rating": 4, - "rating_remark": "Very helpful!", - "resolution_state": "assumed_resolution", - "source_title": "My AI Workflow", - "source_type": "essentials_plan_setup", - }, "ai_agent_participated": false, "contacts": { "contacts": [ @@ -24811,29 +24498,10 @@ It is not possible to use this endpoint with Workflows. "total_count": 1, "type": "conversation_part.list", }, - "conversation_rating": { - "contact": { - "external_id": "f3b87a2e09d514c6c2e79b9a", - "id": "5ba682d23d7cf92bef87bfd4", - "type": "contact", - }, - "created_at": 1671028894, - "rating": 5, - "remark": "", - "teammate": { - "id": "1a2b3c", - "type": "contact", - }, - }, "created_at": 1719492880, "custom_attributes": { "key": "value", }, - "first_contact_reply": { - "created_at": 1663597223, - "type": "conversation", - "url": "https://developers.intercom.com/", - }, "id": "409", "linked_objects": { "data": [ @@ -24848,12 +24516,6 @@ It is not possible to use this endpoint with Workflows. "open": false, "priority": "not_priority", "read": false, - "sla_applied": { - "sla_name": "", - "sla_status": "hit", - "type": "conversation_sla_summary", - }, - "snoozed_until": 1663597260, "source": { "attachments": [ { @@ -24878,30 +24540,8 @@ It is not possible to use this endpoint with Workflows. "redacted": false, "subject": "", "type": "conversation", - "url": "url", }, "state": "closed", - "statistics": { - "count_assignments": 1, - "count_conversation_parts": 1, - "count_reopens": 1, - "first_admin_reply_at": 1663597233, - "first_assignment_at": 1663597233, - "first_close_at": 1663597233, - "first_contact_reply_at": 1663597233, - "last_admin_reply_at": 1663597233, - "last_assignment_admin_reply_at": 1663597233, - "last_assignment_at": 1663597233, - "last_close_at": 1663597233, - "last_closed_by_id": "c3po", - "last_contact_reply_at": 1663597233, - "median_time_to_reply": 2310, - "time_to_admin_reply": 2310, - "time_to_assignment": 2310, - "time_to_first_close": 2310, - "time_to_last_close": 2310, - "type": "conversation_statistics", - }, "tags": { "tags": [ { @@ -24913,19 +24553,8 @@ It is not possible to use this endpoint with Workflows. ], "type": "tag.list", }, - "team_assignee_id": "5017691", - "teammates": { - "teammates": [ - { - "type": "contact", - }, - ], - "type": "admin.list", - }, - "title": "Conversation Title", "type": "conversation", "updated_at": 1719492881, - "waiting_since": 1663597260, }, }, }, @@ -26180,26 +25809,6 @@ You can optionally request the result page size and the cursor to start after to }, "response": { "body": { - "admin_assignee_id": 0, - "ai_agent": { - "content_sources": { - "content_sources": [ - { - "locale": "en", - "title": "My internal content snippet", - "url": "/fin-ai-agent/content?content=content_snippet&id=3234924", - }, - ], - "total_count": 1, - "type": "content_source.list", - }, - "last_answer_type": "ai_answer", - "rating": 4, - "rating_remark": "Very helpful!", - "resolution_state": "assumed_resolution", - "source_title": "My AI Workflow", - "source_type": "essentials_plan_setup", - }, "ai_agent_participated": false, "contacts": { "contacts": [ @@ -26244,29 +25853,10 @@ You can optionally request the result page size and the cursor to start after to "total_count": 1, "type": "conversation_part.list", }, - "conversation_rating": { - "contact": { - "external_id": "f3b87a2e09d514c6c2e79b9a", - "id": "5ba682d23d7cf92bef87bfd4", - "type": "contact", - }, - "created_at": 1671028894, - "rating": 5, - "remark": "", - "teammate": { - "id": "1a2b3c", - "type": "contact", - }, - }, "created_at": 1719492862, "custom_attributes": { "key": "value", }, - "first_contact_reply": { - "created_at": 1663597223, - "type": "conversation", - "url": "https://developers.intercom.com/", - }, "id": "394", "linked_objects": { "data": [ @@ -26281,12 +25871,6 @@ You can optionally request the result page size and the cursor to start after to "open": false, "priority": "not_priority", "read": false, - "sla_applied": { - "sla_name": "", - "sla_status": "hit", - "type": "conversation_sla_summary", - }, - "snoozed_until": 1663597260, "source": { "attachments": [ { @@ -26311,30 +25895,8 @@ You can optionally request the result page size and the cursor to start after to "redacted": false, "subject": "", "type": "conversation", - "url": "url", }, "state": "closed", - "statistics": { - "count_assignments": 1, - "count_conversation_parts": 1, - "count_reopens": 1, - "first_admin_reply_at": 1663597233, - "first_assignment_at": 1663597233, - "first_close_at": 1663597233, - "first_contact_reply_at": 1663597233, - "last_admin_reply_at": 1663597233, - "last_assignment_admin_reply_at": 1663597233, - "last_assignment_at": 1663597233, - "last_close_at": 1663597233, - "last_closed_by_id": "c3po", - "last_contact_reply_at": 1663597233, - "median_time_to_reply": 2310, - "time_to_admin_reply": 2310, - "time_to_assignment": 2310, - "time_to_first_close": 2310, - "time_to_last_close": 2310, - "type": "conversation_statistics", - }, "tags": { "tags": [ { @@ -26346,19 +25908,8 @@ You can optionally request the result page size and the cursor to start after to ], "type": "tag.list", }, - "team_assignee_id": "5017691", - "teammates": { - "teammates": [ - { - "type": "contact", - }, - ], - "type": "admin.list", - }, - "title": "Conversation Title", "type": "conversation", "updated_at": 1719492862, - "waiting_since": 1663597260, }, }, }, @@ -26376,26 +25927,6 @@ You can optionally request the result page size and the cursor to start after to }, "response": { "body": { - "admin_assignee_id": 0, - "ai_agent": { - "content_sources": { - "content_sources": [ - { - "locale": "en", - "title": "My internal content snippet", - "url": "/fin-ai-agent/content?content=content_snippet&id=3234924", - }, - ], - "total_count": 1, - "type": "content_source.list", - }, - "last_answer_type": "ai_answer", - "rating": 4, - "rating_remark": "Very helpful!", - "resolution_state": "assumed_resolution", - "source_title": "My AI Workflow", - "source_type": "essentials_plan_setup", - }, "ai_agent_participated": false, "contacts": { "contacts": [ @@ -26439,29 +25970,10 @@ You can optionally request the result page size and the cursor to start after to "total_count": 1, "type": "conversation_part.list", }, - "conversation_rating": { - "contact": { - "external_id": "f3b87a2e09d514c6c2e79b9a", - "id": "5ba682d23d7cf92bef87bfd4", - "type": "contact", - }, - "created_at": 1671028894, - "rating": 5, - "remark": "", - "teammate": { - "id": "1a2b3c", - "type": "contact", - }, - }, "created_at": 1719492864, "custom_attributes": { "key": "value", }, - "first_contact_reply": { - "created_at": 1663597223, - "type": "conversation", - "url": "https://developers.intercom.com/", - }, "id": "395", "linked_objects": { "data": [ @@ -26476,11 +25988,6 @@ You can optionally request the result page size and the cursor to start after to "open": true, "priority": "not_priority", "read": false, - "sla_applied": { - "sla_name": "", - "sla_status": "hit", - "type": "conversation_sla_summary", - }, "snoozed_until": 1719496464, "source": { "attachments": [ @@ -26506,30 +26013,8 @@ You can optionally request the result page size and the cursor to start after to "redacted": false, "subject": "", "type": "conversation", - "url": "url", }, "state": "snoozed", - "statistics": { - "count_assignments": 1, - "count_conversation_parts": 1, - "count_reopens": 1, - "first_admin_reply_at": 1663597233, - "first_assignment_at": 1663597233, - "first_close_at": 1663597233, - "first_contact_reply_at": 1663597233, - "last_admin_reply_at": 1663597233, - "last_assignment_admin_reply_at": 1663597233, - "last_assignment_at": 1663597233, - "last_close_at": 1663597233, - "last_closed_by_id": "c3po", - "last_contact_reply_at": 1663597233, - "median_time_to_reply": 2310, - "time_to_admin_reply": 2310, - "time_to_assignment": 2310, - "time_to_first_close": 2310, - "time_to_last_close": 2310, - "type": "conversation_statistics", - }, "tags": { "tags": [ { @@ -26541,19 +26026,8 @@ You can optionally request the result page size and the cursor to start after to ], "type": "tag.list", }, - "team_assignee_id": "5017691", - "teammates": { - "teammates": [ - { - "type": "contact", - }, - ], - "type": "admin.list", - }, - "title": "Conversation Title", "type": "conversation", "updated_at": 1719492864, - "waiting_since": 1663597260, }, }, }, @@ -26571,26 +26045,6 @@ You can optionally request the result page size and the cursor to start after to }, "response": { "body": { - "admin_assignee_id": 0, - "ai_agent": { - "content_sources": { - "content_sources": [ - { - "locale": "en", - "title": "My internal content snippet", - "url": "/fin-ai-agent/content?content=content_snippet&id=3234924", - }, - ], - "total_count": 1, - "type": "content_source.list", - }, - "last_answer_type": "ai_answer", - "rating": 4, - "rating_remark": "Very helpful!", - "resolution_state": "assumed_resolution", - "source_title": "My AI Workflow", - "source_type": "essentials_plan_setup", - }, "ai_agent_participated": false, "contacts": { "contacts": [ @@ -26634,29 +26088,10 @@ You can optionally request the result page size and the cursor to start after to "total_count": 1, "type": "conversation_part.list", }, - "conversation_rating": { - "contact": { - "external_id": "f3b87a2e09d514c6c2e79b9a", - "id": "5ba682d23d7cf92bef87bfd4", - "type": "contact", - }, - "created_at": 1671028894, - "rating": 5, - "remark": "", - "teammate": { - "id": "1a2b3c", - "type": "contact", - }, - }, "created_at": 1719492863, "custom_attributes": { "key": "value", }, - "first_contact_reply": { - "created_at": 1663597223, - "type": "conversation", - "url": "https://developers.intercom.com/", - }, "id": "400", "linked_objects": { "data": [ @@ -26671,12 +26106,6 @@ You can optionally request the result page size and the cursor to start after to "open": true, "priority": "not_priority", "read": true, - "sla_applied": { - "sla_name": "", - "sla_status": "hit", - "type": "conversation_sla_summary", - }, - "snoozed_until": 1663597260, "source": { "attachments": [ { @@ -26701,30 +26130,8 @@ You can optionally request the result page size and the cursor to start after to "redacted": false, "subject": "", "type": "conversation", - "url": "url", }, "state": "open", - "statistics": { - "count_assignments": 1, - "count_conversation_parts": 1, - "count_reopens": 1, - "first_admin_reply_at": 1663597233, - "first_assignment_at": 1663597233, - "first_close_at": 1663597233, - "first_contact_reply_at": 1663597233, - "last_admin_reply_at": 1663597233, - "last_assignment_admin_reply_at": 1663597233, - "last_assignment_at": 1663597233, - "last_close_at": 1663597233, - "last_closed_by_id": "c3po", - "last_contact_reply_at": 1663597233, - "median_time_to_reply": 2310, - "time_to_admin_reply": 2310, - "time_to_assignment": 2310, - "time_to_first_close": 2310, - "time_to_last_close": 2310, - "type": "conversation_statistics", - }, "tags": { "tags": [ { @@ -26736,19 +26143,9 @@ You can optionally request the result page size and the cursor to start after to ], "type": "tag.list", }, - "team_assignee_id": "5017691", - "teammates": { - "teammates": [ - { - "type": "contact", - }, - ], - "type": "admin.list", - }, "title": "", "type": "conversation", "updated_at": 1719492873, - "waiting_since": 1663597260, }, }, }, @@ -26767,25 +26164,6 @@ You can optionally request the result page size and the cursor to start after to "response": { "body": { "admin_assignee_id": 991267615, - "ai_agent": { - "content_sources": { - "content_sources": [ - { - "locale": "en", - "title": "My internal content snippet", - "url": "/fin-ai-agent/content?content=content_snippet&id=3234924", - }, - ], - "total_count": 1, - "type": "content_source.list", - }, - "last_answer_type": "ai_answer", - "rating": 4, - "rating_remark": "Very helpful!", - "resolution_state": "assumed_resolution", - "source_title": "My AI Workflow", - "source_type": "essentials_plan_setup", - }, "ai_agent_participated": false, "contacts": { "contacts": [ @@ -26833,29 +26211,10 @@ You can optionally request the result page size and the cursor to start after to "total_count": 1, "type": "conversation_part.list", }, - "conversation_rating": { - "contact": { - "external_id": "f3b87a2e09d514c6c2e79b9a", - "id": "5ba682d23d7cf92bef87bfd4", - "type": "contact", - }, - "created_at": 1671028894, - "rating": 5, - "remark": "", - "teammate": { - "id": "1a2b3c", - "type": "contact", - }, - }, "created_at": 1719492874, "custom_attributes": { "key": "value", }, - "first_contact_reply": { - "created_at": 1663597223, - "type": "conversation", - "url": "https://developers.intercom.com/", - }, "id": "405", "linked_objects": { "data": [ @@ -26870,12 +26229,6 @@ You can optionally request the result page size and the cursor to start after to "open": true, "priority": "not_priority", "read": false, - "sla_applied": { - "sla_name": "", - "sla_status": "hit", - "type": "conversation_sla_summary", - }, - "snoozed_until": 1663597260, "source": { "attachments": [ { @@ -26900,30 +26253,8 @@ You can optionally request the result page size and the cursor to start after to "redacted": false, "subject": "", "type": "conversation", - "url": "url", }, "state": "open", - "statistics": { - "count_assignments": 1, - "count_conversation_parts": 1, - "count_reopens": 1, - "first_admin_reply_at": 1663597233, - "first_assignment_at": 1663597233, - "first_close_at": 1663597233, - "first_contact_reply_at": 1663597233, - "last_admin_reply_at": 1663597233, - "last_assignment_admin_reply_at": 1663597233, - "last_assignment_at": 1663597233, - "last_close_at": 1663597233, - "last_closed_by_id": "c3po", - "last_contact_reply_at": 1663597233, - "median_time_to_reply": 2310, - "time_to_admin_reply": 2310, - "time_to_assignment": 2310, - "time_to_first_close": 2310, - "time_to_last_close": 2310, - "type": "conversation_statistics", - }, "tags": { "tags": [ { @@ -26935,19 +26266,8 @@ You can optionally request the result page size and the cursor to start after to ], "type": "tag.list", }, - "team_assignee_id": "5017691", - "teammates": { - "teammates": [ - { - "type": "contact", - }, - ], - "type": "admin.list", - }, - "title": "Conversation Title", "type": "conversation", "updated_at": 1719492875, - "waiting_since": 1663597260, }, }, }, @@ -26965,26 +26285,6 @@ You can optionally request the result page size and the cursor to start after to }, "response": { "body": { - "admin_assignee_id": 0, - "ai_agent": { - "content_sources": { - "content_sources": [ - { - "locale": "en", - "title": "My internal content snippet", - "url": "/fin-ai-agent/content?content=content_snippet&id=3234924", - }, - ], - "total_count": 1, - "type": "content_source.list", - }, - "last_answer_type": "ai_answer", - "rating": 4, - "rating_remark": "Very helpful!", - "resolution_state": "assumed_resolution", - "source_title": "My AI Workflow", - "source_type": "essentials_plan_setup", - }, "ai_agent_participated": false, "contacts": { "contacts": [ @@ -27029,29 +26329,10 @@ You can optionally request the result page size and the cursor to start after to "total_count": 1, "type": "conversation_part.list", }, - "conversation_rating": { - "contact": { - "external_id": "f3b87a2e09d514c6c2e79b9a", - "id": "5ba682d23d7cf92bef87bfd4", - "type": "contact", - }, - "created_at": 1671028894, - "rating": 5, - "remark": "", - "teammate": { - "id": "1a2b3c", - "type": "contact", - }, - }, "created_at": 1719492862, "custom_attributes": { "key": "value", }, - "first_contact_reply": { - "created_at": 1663597223, - "type": "conversation", - "url": "https://developers.intercom.com/", - }, "id": "394", "linked_objects": { "data": [ @@ -27066,12 +26347,6 @@ You can optionally request the result page size and the cursor to start after to "open": false, "priority": "not_priority", "read": false, - "sla_applied": { - "sla_name": "", - "sla_status": "hit", - "type": "conversation_sla_summary", - }, - "snoozed_until": 1663597260, "source": { "attachments": [ { @@ -27096,30 +26371,8 @@ You can optionally request the result page size and the cursor to start after to "redacted": false, "subject": "", "type": "conversation", - "url": "url", }, "state": "closed", - "statistics": { - "count_assignments": 1, - "count_conversation_parts": 1, - "count_reopens": 1, - "first_admin_reply_at": 1663597233, - "first_assignment_at": 1663597233, - "first_close_at": 1663597233, - "first_contact_reply_at": 1663597233, - "last_admin_reply_at": 1663597233, - "last_assignment_admin_reply_at": 1663597233, - "last_assignment_at": 1663597233, - "last_close_at": 1663597233, - "last_closed_by_id": "c3po", - "last_contact_reply_at": 1663597233, - "median_time_to_reply": 2310, - "time_to_admin_reply": 2310, - "time_to_assignment": 2310, - "time_to_first_close": 2310, - "time_to_last_close": 2310, - "type": "conversation_statistics", - }, "tags": { "tags": [ { @@ -27131,19 +26384,8 @@ You can optionally request the result page size and the cursor to start after to ], "type": "tag.list", }, - "team_assignee_id": "5017691", - "teammates": { - "teammates": [ - { - "type": "contact", - }, - ], - "type": "admin.list", - }, - "title": "Conversation Title", "type": "conversation", "updated_at": 1719492862, - "waiting_since": 1663597260, }, }, }, @@ -27193,26 +26435,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda }, "response": { "body": { - "admin_assignee_id": 0, - "ai_agent": { - "content_sources": { - "content_sources": [ - { - "locale": "en", - "title": "My internal content snippet", - "url": "/fin-ai-agent/content?content=content_snippet&id=3234924", - }, - ], - "total_count": 1, - "type": "content_source.list", - }, - "last_answer_type": "ai_answer", - "rating": 4, - "rating_remark": "Very helpful!", - "resolution_state": "assumed_resolution", - "source_title": "My AI Workflow", - "source_type": "essentials_plan_setup", - }, "ai_agent_participated": false, "contacts": { "contacts": [ @@ -27257,20 +26479,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda "total_count": 1, "type": "conversation_part.list", }, - "conversation_rating": { - "contact": { - "external_id": "f3b87a2e09d514c6c2e79b9a", - "id": "5ba682d23d7cf92bef87bfd4", - "type": "contact", - }, - "created_at": 1671028894, - "rating": 5, - "remark": "", - "teammate": { - "id": "1a2b3c", - "type": "contact", - }, - }, "created_at": 1719492938, "custom_attributes": { "key": "value", @@ -27278,7 +26486,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda "first_contact_reply": { "created_at": 1719492939, "type": "conversation", - "url": "https://developers.intercom.com/", }, "id": "471", "linked_objects": { @@ -27294,12 +26501,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda "open": true, "priority": "not_priority", "read": true, - "sla_applied": { - "sla_name": "", - "sla_status": "hit", - "type": "conversation_sla_summary", - }, - "snoozed_until": 1663597260, "source": { "attachments": [ { @@ -27324,30 +26525,8 @@ If you are redacting a conversation part, it must have a `body`. If you are reda "redacted": false, "subject": "", "type": "conversation", - "url": "url", }, "state": "open", - "statistics": { - "count_assignments": 1, - "count_conversation_parts": 1, - "count_reopens": 1, - "first_admin_reply_at": 1663597233, - "first_assignment_at": 1663597233, - "first_close_at": 1663597233, - "first_contact_reply_at": 1663597233, - "last_admin_reply_at": 1663597233, - "last_assignment_admin_reply_at": 1663597233, - "last_assignment_at": 1663597233, - "last_close_at": 1663597233, - "last_closed_by_id": "c3po", - "last_contact_reply_at": 1663597233, - "median_time_to_reply": 2310, - "time_to_admin_reply": 2310, - "time_to_assignment": 2310, - "time_to_first_close": 2310, - "time_to_last_close": 2310, - "type": "conversation_statistics", - }, "tags": { "tags": [ { @@ -27359,16 +26538,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda ], "type": "tag.list", }, - "team_assignee_id": "5017691", - "teammates": { - "teammates": [ - { - "type": "contact", - }, - ], - "type": "admin.list", - }, - "title": "Conversation Title", "type": "conversation", "updated_at": 1719492940, "waiting_since": 1719492939, @@ -27384,26 +26553,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda }, "response": { "body": { - "admin_assignee_id": 0, - "ai_agent": { - "content_sources": { - "content_sources": [ - { - "locale": "en", - "title": "My internal content snippet", - "url": "/fin-ai-agent/content?content=content_snippet&id=3234924", - }, - ], - "total_count": 1, - "type": "content_source.list", - }, - "last_answer_type": "ai_answer", - "rating": 4, - "rating_remark": "Very helpful!", - "resolution_state": "assumed_resolution", - "source_title": "My AI Workflow", - "source_type": "essentials_plan_setup", - }, "ai_agent_participated": false, "contacts": { "contacts": [ @@ -27448,20 +26597,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda "total_count": 1, "type": "conversation_part.list", }, - "conversation_rating": { - "contact": { - "external_id": "f3b87a2e09d514c6c2e79b9a", - "id": "5ba682d23d7cf92bef87bfd4", - "type": "contact", - }, - "created_at": 1671028894, - "rating": 5, - "remark": "", - "teammate": { - "id": "1a2b3c", - "type": "contact", - }, - }, "created_at": 1719492938, "custom_attributes": { "key": "value", @@ -27469,7 +26604,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda "first_contact_reply": { "created_at": 1719492939, "type": "conversation", - "url": "https://developers.intercom.com/", }, "id": "471", "linked_objects": { @@ -27485,12 +26619,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda "open": true, "priority": "not_priority", "read": true, - "sla_applied": { - "sla_name": "", - "sla_status": "hit", - "type": "conversation_sla_summary", - }, - "snoozed_until": 1663597260, "source": { "attachments": [ { @@ -27515,30 +26643,8 @@ If you are redacting a conversation part, it must have a `body`. If you are reda "redacted": false, "subject": "", "type": "conversation", - "url": "url", }, "state": "open", - "statistics": { - "count_assignments": 1, - "count_conversation_parts": 1, - "count_reopens": 1, - "first_admin_reply_at": 1663597233, - "first_assignment_at": 1663597233, - "first_close_at": 1663597233, - "first_contact_reply_at": 1663597233, - "last_admin_reply_at": 1663597233, - "last_assignment_admin_reply_at": 1663597233, - "last_assignment_at": 1663597233, - "last_close_at": 1663597233, - "last_closed_by_id": "c3po", - "last_contact_reply_at": 1663597233, - "median_time_to_reply": 2310, - "time_to_admin_reply": 2310, - "time_to_assignment": 2310, - "time_to_first_close": 2310, - "time_to_last_close": 2310, - "type": "conversation_statistics", - }, "tags": { "tags": [ { @@ -27550,16 +26656,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda ], "type": "tag.list", }, - "team_assignee_id": "5017691", - "teammates": { - "teammates": [ - { - "type": "contact", - }, - ], - "type": "admin.list", - }, - "title": "Conversation Title", "type": "conversation", "updated_at": 1719492940, "waiting_since": 1719492939, @@ -27605,26 +26701,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda }, "response": { "body": { - "admin_assignee_id": 0, - "ai_agent": { - "content_sources": { - "content_sources": [ - { - "locale": "en", - "title": "My internal content snippet", - "url": "/fin-ai-agent/content?content=content_snippet&id=3234924", - }, - ], - "total_count": 1, - "type": "content_source.list", - }, - "last_answer_type": "ai_answer", - "rating": 4, - "rating_remark": "Very helpful!", - "resolution_state": "assumed_resolution", - "source_title": "My AI Workflow", - "source_type": "essentials_plan_setup", - }, "ai_agent_participated": false, "contacts": { "contacts": [ @@ -27669,20 +26745,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda "total_count": 1, "type": "conversation_part.list", }, - "conversation_rating": { - "contact": { - "external_id": "f3b87a2e09d514c6c2e79b9a", - "id": "5ba682d23d7cf92bef87bfd4", - "type": "contact", - }, - "created_at": 1671028894, - "rating": 5, - "remark": "", - "teammate": { - "id": "1a2b3c", - "type": "contact", - }, - }, "created_at": 1719492849, "custom_attributes": { "key": "value", @@ -27690,7 +26752,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda "first_contact_reply": { "created_at": 1719492850, "type": "conversation", - "url": "https://developers.intercom.com/", }, "id": "387", "linked_objects": { @@ -27706,12 +26767,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda "open": true, "priority": "not_priority", "read": false, - "sla_applied": { - "sla_name": "", - "sla_status": "hit", - "type": "conversation_sla_summary", - }, - "snoozed_until": 1663597260, "source": { "attachments": [ { @@ -27736,30 +26791,8 @@ If you are redacting a conversation part, it must have a `body`. If you are reda "redacted": false, "subject": "", "type": "conversation", - "url": "url", }, "state": "open", - "statistics": { - "count_assignments": 1, - "count_conversation_parts": 1, - "count_reopens": 1, - "first_admin_reply_at": 1663597233, - "first_assignment_at": 1663597233, - "first_close_at": 1663597233, - "first_contact_reply_at": 1663597233, - "last_admin_reply_at": 1663597233, - "last_assignment_admin_reply_at": 1663597233, - "last_assignment_at": 1663597233, - "last_close_at": 1663597233, - "last_closed_by_id": "c3po", - "last_contact_reply_at": 1663597233, - "median_time_to_reply": 2310, - "time_to_admin_reply": 2310, - "time_to_assignment": 2310, - "time_to_first_close": 2310, - "time_to_last_close": 2310, - "type": "conversation_statistics", - }, "tags": { "tags": [ { @@ -27771,16 +26804,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda ], "type": "tag.list", }, - "team_assignee_id": "5017691", - "teammates": { - "teammates": [ - { - "type": "contact", - }, - ], - "type": "admin.list", - }, - "title": "Conversation Title", "type": "conversation", "updated_at": 1719492850, "waiting_since": 1719492850, @@ -27800,26 +26823,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda }, "response": { "body": { - "admin_assignee_id": 0, - "ai_agent": { - "content_sources": { - "content_sources": [ - { - "locale": "en", - "title": "My internal content snippet", - "url": "/fin-ai-agent/content?content=content_snippet&id=3234924", - }, - ], - "total_count": 1, - "type": "content_source.list", - }, - "last_answer_type": "ai_answer", - "rating": 4, - "rating_remark": "Very helpful!", - "resolution_state": "assumed_resolution", - "source_title": "My AI Workflow", - "source_type": "essentials_plan_setup", - }, "ai_agent_participated": false, "contacts": { "contacts": [ @@ -27875,29 +26878,10 @@ If you are redacting a conversation part, it must have a `body`. If you are reda "total_count": 1, "type": "conversation_part.list", }, - "conversation_rating": { - "contact": { - "external_id": "f3b87a2e09d514c6c2e79b9a", - "id": "5ba682d23d7cf92bef87bfd4", - "type": "contact", - }, - "created_at": 1671028894, - "rating": 5, - "remark": "", - "teammate": { - "id": "1a2b3c", - "type": "contact", - }, - }, "created_at": 1719492852, "custom_attributes": { "key": "value", }, - "first_contact_reply": { - "created_at": 1663597223, - "type": "conversation", - "url": "https://developers.intercom.com/", - }, "id": "388", "linked_objects": { "data": [ @@ -27912,12 +26896,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda "open": false, "priority": "not_priority", "read": false, - "sla_applied": { - "sla_name": "", - "sla_status": "hit", - "type": "conversation_sla_summary", - }, - "snoozed_until": 1663597260, "source": { "attachments": [ { @@ -27942,30 +26920,8 @@ If you are redacting a conversation part, it must have a `body`. If you are reda "redacted": false, "subject": "", "type": "conversation", - "url": "url", }, "state": "closed", - "statistics": { - "count_assignments": 1, - "count_conversation_parts": 1, - "count_reopens": 1, - "first_admin_reply_at": 1663597233, - "first_assignment_at": 1663597233, - "first_close_at": 1663597233, - "first_contact_reply_at": 1663597233, - "last_admin_reply_at": 1663597233, - "last_assignment_admin_reply_at": 1663597233, - "last_assignment_at": 1663597233, - "last_close_at": 1663597233, - "last_closed_by_id": "c3po", - "last_contact_reply_at": 1663597233, - "median_time_to_reply": 2310, - "time_to_admin_reply": 2310, - "time_to_assignment": 2310, - "time_to_first_close": 2310, - "time_to_last_close": 2310, - "type": "conversation_statistics", - }, "tags": { "tags": [ { @@ -27977,19 +26933,8 @@ If you are redacting a conversation part, it must have a `body`. If you are reda ], "type": "tag.list", }, - "team_assignee_id": "5017691", - "teammates": { - "teammates": [ - { - "type": "contact", - }, - ], - "type": "admin.list", - }, - "title": "Conversation Title", "type": "conversation", "updated_at": 1719492853, - "waiting_since": 1663597260, }, }, }, @@ -28006,26 +26951,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda }, "response": { "body": { - "admin_assignee_id": 0, - "ai_agent": { - "content_sources": { - "content_sources": [ - { - "locale": "en", - "title": "My internal content snippet", - "url": "/fin-ai-agent/content?content=content_snippet&id=3234924", - }, - ], - "total_count": 1, - "type": "content_source.list", - }, - "last_answer_type": "ai_answer", - "rating": 4, - "rating_remark": "Very helpful!", - "resolution_state": "assumed_resolution", - "source_title": "My AI Workflow", - "source_type": "essentials_plan_setup", - }, "ai_agent_participated": false, "contacts": { "contacts": [ @@ -28070,20 +26995,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda "total_count": 1, "type": "conversation_part.list", }, - "conversation_rating": { - "contact": { - "external_id": "f3b87a2e09d514c6c2e79b9a", - "id": "5ba682d23d7cf92bef87bfd4", - "type": "contact", - }, - "created_at": 1671028894, - "rating": 5, - "remark": "", - "teammate": { - "id": "1a2b3c", - "type": "contact", - }, - }, "created_at": 1719492855, "custom_attributes": { "key": "value", @@ -28091,7 +27002,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda "first_contact_reply": { "created_at": 1719492856, "type": "conversation", - "url": "https://developers.intercom.com/", }, "id": "390", "linked_objects": { @@ -28107,12 +27017,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda "open": true, "priority": "not_priority", "read": false, - "sla_applied": { - "sla_name": "", - "sla_status": "hit", - "type": "conversation_sla_summary", - }, - "snoozed_until": 1663597260, "source": { "attachments": [ { @@ -28137,30 +27041,8 @@ If you are redacting a conversation part, it must have a `body`. If you are reda "redacted": false, "subject": "", "type": "conversation", - "url": "url", }, "state": "open", - "statistics": { - "count_assignments": 1, - "count_conversation_parts": 1, - "count_reopens": 1, - "first_admin_reply_at": 1663597233, - "first_assignment_at": 1663597233, - "first_close_at": 1663597233, - "first_contact_reply_at": 1663597233, - "last_admin_reply_at": 1663597233, - "last_assignment_admin_reply_at": 1663597233, - "last_assignment_at": 1663597233, - "last_close_at": 1663597233, - "last_closed_by_id": "c3po", - "last_contact_reply_at": 1663597233, - "median_time_to_reply": 2310, - "time_to_admin_reply": 2310, - "time_to_assignment": 2310, - "time_to_first_close": 2310, - "time_to_last_close": 2310, - "type": "conversation_statistics", - }, "tags": { "tags": [ { @@ -28172,16 +27054,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda ], "type": "tag.list", }, - "team_assignee_id": "5017691", - "teammates": { - "teammates": [ - { - "type": "contact", - }, - ], - "type": "admin.list", - }, - "title": "Conversation Title", "type": "conversation", "updated_at": 1719492856, "waiting_since": 1719492856, @@ -28201,26 +27073,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda }, "response": { "body": { - "admin_assignee_id": 0, - "ai_agent": { - "content_sources": { - "content_sources": [ - { - "locale": "en", - "title": "My internal content snippet", - "url": "/fin-ai-agent/content?content=content_snippet&id=3234924", - }, - ], - "total_count": 1, - "type": "content_source.list", - }, - "last_answer_type": "ai_answer", - "rating": 4, - "rating_remark": "Very helpful!", - "resolution_state": "assumed_resolution", - "source_title": "My AI Workflow", - "source_type": "essentials_plan_setup", - }, "ai_agent_participated": false, "contacts": { "contacts": [ @@ -28265,20 +27117,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda "total_count": 1, "type": "conversation_part.list", }, - "conversation_rating": { - "contact": { - "external_id": "f3b87a2e09d514c6c2e79b9a", - "id": "5ba682d23d7cf92bef87bfd4", - "type": "contact", - }, - "created_at": 1671028894, - "rating": 5, - "remark": "", - "teammate": { - "id": "1a2b3c", - "type": "contact", - }, - }, "created_at": 1719492849, "custom_attributes": { "key": "value", @@ -28286,7 +27124,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda "first_contact_reply": { "created_at": 1719492850, "type": "conversation", - "url": "https://developers.intercom.com/", }, "id": "387", "linked_objects": { @@ -28302,12 +27139,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda "open": true, "priority": "not_priority", "read": false, - "sla_applied": { - "sla_name": "", - "sla_status": "hit", - "type": "conversation_sla_summary", - }, - "snoozed_until": 1663597260, "source": { "attachments": [ { @@ -28332,30 +27163,8 @@ If you are redacting a conversation part, it must have a `body`. If you are reda "redacted": false, "subject": "", "type": "conversation", - "url": "url", }, "state": "open", - "statistics": { - "count_assignments": 1, - "count_conversation_parts": 1, - "count_reopens": 1, - "first_admin_reply_at": 1663597233, - "first_assignment_at": 1663597233, - "first_close_at": 1663597233, - "first_contact_reply_at": 1663597233, - "last_admin_reply_at": 1663597233, - "last_assignment_admin_reply_at": 1663597233, - "last_assignment_at": 1663597233, - "last_close_at": 1663597233, - "last_closed_by_id": "c3po", - "last_contact_reply_at": 1663597233, - "median_time_to_reply": 2310, - "time_to_admin_reply": 2310, - "time_to_assignment": 2310, - "time_to_first_close": 2310, - "time_to_last_close": 2310, - "type": "conversation_statistics", - }, "tags": { "tags": [ { @@ -28367,16 +27176,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda ], "type": "tag.list", }, - "team_assignee_id": "5017691", - "teammates": { - "teammates": [ - { - "type": "contact", - }, - ], - "type": "admin.list", - }, - "title": "Conversation Title", "type": "conversation", "updated_at": 1719492850, "waiting_since": 1719492850, @@ -28435,26 +27234,6 @@ For AI agent conversation metadata, please note that you need to have the agent }, "response": { "body": { - "admin_assignee_id": 0, - "ai_agent": { - "content_sources": { - "content_sources": [ - { - "locale": "en", - "title": "My internal content snippet", - "url": "/fin-ai-agent/content?content=content_snippet&id=3234924", - }, - ], - "total_count": 1, - "type": "content_source.list", - }, - "last_answer_type": "ai_answer", - "rating": 4, - "rating_remark": "Very helpful!", - "resolution_state": "assumed_resolution", - "source_title": "My AI Workflow", - "source_type": "essentials_plan_setup", - }, "ai_agent_participated": false, "contacts": { "contacts": [ @@ -28481,29 +27260,10 @@ For AI agent conversation metadata, please note that you need to have the agent "total_count": 0, "type": "conversation_part.list", }, - "conversation_rating": { - "contact": { - "external_id": "f3b87a2e09d514c6c2e79b9a", - "id": "5ba682d23d7cf92bef87bfd4", - "type": "contact", - }, - "created_at": 1671028894, - "rating": 5, - "remark": "", - "teammate": { - "id": "1a2b3c", - "type": "contact", - }, - }, "created_at": 1719492825, "custom_attributes": { "key": "value", }, - "first_contact_reply": { - "created_at": 1663597223, - "type": "conversation", - "url": "https://developers.intercom.com/", - }, "id": "367", "linked_objects": { "data": [ @@ -28518,12 +27278,6 @@ For AI agent conversation metadata, please note that you need to have the agent "open": false, "priority": "not_priority", "read": false, - "sla_applied": { - "sla_name": "", - "sla_status": "hit", - "type": "conversation_sla_summary", - }, - "snoozed_until": 1663597260, "source": { "attachments": [ { @@ -28548,30 +27302,8 @@ For AI agent conversation metadata, please note that you need to have the agent "redacted": false, "subject": "", "type": "conversation", - "url": "url", }, "state": "closed", - "statistics": { - "count_assignments": 1, - "count_conversation_parts": 1, - "count_reopens": 1, - "first_admin_reply_at": 1663597233, - "first_assignment_at": 1663597233, - "first_close_at": 1663597233, - "first_contact_reply_at": 1663597233, - "last_admin_reply_at": 1663597233, - "last_assignment_admin_reply_at": 1663597233, - "last_assignment_at": 1663597233, - "last_close_at": 1663597233, - "last_closed_by_id": "c3po", - "last_contact_reply_at": 1663597233, - "median_time_to_reply": 2310, - "time_to_admin_reply": 2310, - "time_to_assignment": 2310, - "time_to_first_close": 2310, - "time_to_last_close": 2310, - "type": "conversation_statistics", - }, "tags": { "tags": [ { @@ -28583,19 +27315,8 @@ For AI agent conversation metadata, please note that you need to have the agent ], "type": "tag.list", }, - "team_assignee_id": "5017691", - "teammates": { - "teammates": [ - { - "type": "contact", - }, - ], - "type": "admin.list", - }, - "title": "Conversation Title", "type": "conversation", "updated_at": 1719492825, - "waiting_since": 1663597260, }, }, }, @@ -28750,7 +27471,6 @@ The table below shows the operators you can use to define how you want to search "body": { "conversations": [ { - "admin_assignee_id": 0, "ai_agent_participated": false, "contacts": { "contacts": [ @@ -28765,19 +27485,10 @@ The table below shows the operators you can use to define how you want to search "conversation_parts": { "total_count": 2, }, - "conversation_rating": { - "created_at": 1671028894, - "rating": 5, - "remark": "", - }, "created_at": 1719492843, "custom_attributes": { "key": "value", }, - "first_contact_reply": { - "created_at": 1663597223, - "type": "conversation", - }, "id": "378", "linked_objects": { "data": [ @@ -28792,11 +27503,6 @@ The table below shows the operators you can use to define how you want to search "open": false, "priority": "not_priority", "read": false, - "sla_applied": { - "sla_name": "", - "type": "conversation_sla_summary", - }, - "snoozed_until": 1663597260, "source": { "attachments": [ { @@ -28823,27 +27529,6 @@ The table below shows the operators you can use to define how you want to search "type": "conversation", }, "state": "closed", - "statistics": { - "count_assignments": 1, - "count_conversation_parts": 1, - "count_reopens": 1, - "first_admin_reply_at": 1663597233, - "first_assignment_at": 1663597233, - "first_close_at": 1663597233, - "first_contact_reply_at": 1663597233, - "last_admin_reply_at": 1663597233, - "last_assignment_admin_reply_at": 1663597233, - "last_assignment_at": 1663597233, - "last_close_at": 1663597233, - "last_closed_by_id": "c3po", - "last_contact_reply_at": 1663597233, - "median_time_to_reply": 2310, - "time_to_admin_reply": 2310, - "time_to_assignment": 2310, - "time_to_first_close": 2310, - "time_to_last_close": 2310, - "type": "conversation_statistics", - }, "tags": { "tags": [ { @@ -28855,14 +27540,8 @@ The table below shows the operators you can use to define how you want to search ], "type": "tag.list", }, - "team_assignee_id": "5017691", - "teammates": { - "type": "admin.list", - }, - "title": "Conversation Title", "type": "conversation", "updated_at": 1719492843, - "waiting_since": 1663597260, }, ], "pages": { @@ -28932,26 +27611,6 @@ If you want to reply to a coveration or take an action such as assign, unassign, }, "response": { "body": { - "admin_assignee_id": 0, - "ai_agent": { - "content_sources": { - "content_sources": [ - { - "locale": "en", - "title": "My internal content snippet", - "url": "/fin-ai-agent/content?content=content_snippet&id=3234924", - }, - ], - "total_count": 1, - "type": "content_source.list", - }, - "last_answer_type": "ai_answer", - "rating": 4, - "rating_remark": "Very helpful!", - "resolution_state": "assumed_resolution", - "source_title": "My AI Workflow", - "source_type": "essentials_plan_setup", - }, "ai_agent_participated": false, "contacts": { "contacts": [ @@ -29021,30 +27680,11 @@ If you want to reply to a coveration or take an action such as assign, unassign, "total_count": 2, "type": "conversation_part.list", }, - "conversation_rating": { - "contact": { - "external_id": "f3b87a2e09d514c6c2e79b9a", - "id": "5ba682d23d7cf92bef87bfd4", - "type": "contact", - }, - "created_at": 1671028894, - "rating": 5, - "remark": "", - "teammate": { - "id": "1a2b3c", - "type": "contact", - }, - }, "created_at": 1719492832, "custom_attributes": { "issue_type": "Billing", "priority": "High", }, - "first_contact_reply": { - "created_at": 1663597223, - "type": "conversation", - "url": "https://developers.intercom.com/", - }, "id": "371", "linked_objects": { "data": [ @@ -29059,12 +27699,6 @@ If you want to reply to a coveration or take an action such as assign, unassign, "open": false, "priority": "not_priority", "read": true, - "sla_applied": { - "sla_name": "", - "sla_status": "hit", - "type": "conversation_sla_summary", - }, - "snoozed_until": 1663597260, "source": { "attachments": [ { @@ -29089,30 +27723,8 @@ If you want to reply to a coveration or take an action such as assign, unassign, "redacted": false, "subject": "", "type": "conversation", - "url": "url", }, "state": "closed", - "statistics": { - "count_assignments": 1, - "count_conversation_parts": 1, - "count_reopens": 1, - "first_admin_reply_at": 1663597233, - "first_assignment_at": 1663597233, - "first_close_at": 1663597233, - "first_contact_reply_at": 1663597233, - "last_admin_reply_at": 1663597233, - "last_assignment_admin_reply_at": 1663597233, - "last_assignment_at": 1663597233, - "last_close_at": 1663597233, - "last_closed_by_id": "c3po", - "last_contact_reply_at": 1663597233, - "median_time_to_reply": 2310, - "time_to_admin_reply": 2310, - "time_to_assignment": 2310, - "time_to_first_close": 2310, - "time_to_last_close": 2310, - "type": "conversation_statistics", - }, "tags": { "tags": [ { @@ -29124,19 +27736,8 @@ If you want to reply to a coveration or take an action such as assign, unassign, ], "type": "tag.list", }, - "team_assignee_id": "5017691", - "teammates": { - "teammates": [ - { - "type": "contact", - }, - ], - "type": "admin.list", - }, - "title": "Conversation Title", "type": "conversation", "updated_at": 1719492834, - "waiting_since": 1663597260, }, }, }, @@ -29157,26 +27758,6 @@ If you want to reply to a coveration or take an action such as assign, unassign, }, "response": { "body": { - "admin_assignee_id": 0, - "ai_agent": { - "content_sources": { - "content_sources": [ - { - "locale": "en", - "title": "My internal content snippet", - "url": "/fin-ai-agent/content?content=content_snippet&id=3234924", - }, - ], - "total_count": 1, - "type": "content_source.list", - }, - "last_answer_type": "ai_answer", - "rating": 4, - "rating_remark": "Very helpful!", - "resolution_state": "assumed_resolution", - "source_title": "My AI Workflow", - "source_type": "essentials_plan_setup", - }, "ai_agent_participated": false, "contacts": { "contacts": [ @@ -29246,30 +27827,11 @@ If you want to reply to a coveration or take an action such as assign, unassign, "total_count": 2, "type": "conversation_part.list", }, - "conversation_rating": { - "contact": { - "external_id": "f3b87a2e09d514c6c2e79b9a", - "id": "5ba682d23d7cf92bef87bfd4", - "type": "contact", - }, - "created_at": 1671028894, - "rating": 5, - "remark": "", - "teammate": { - "id": "1a2b3c", - "type": "contact", - }, - }, "created_at": 1719492832, "custom_attributes": { "issue_type": "Billing", "priority": "High", }, - "first_contact_reply": { - "created_at": 1663597223, - "type": "conversation", - "url": "https://developers.intercom.com/", - }, "id": "371", "linked_objects": { "data": [ @@ -29284,12 +27846,6 @@ If you want to reply to a coveration or take an action such as assign, unassign, "open": false, "priority": "not_priority", "read": true, - "sla_applied": { - "sla_name": "", - "sla_status": "hit", - "type": "conversation_sla_summary", - }, - "snoozed_until": 1663597260, "source": { "attachments": [ { @@ -29314,30 +27870,8 @@ If you want to reply to a coveration or take an action such as assign, unassign, "redacted": false, "subject": "", "type": "conversation", - "url": "url", }, "state": "closed", - "statistics": { - "count_assignments": 1, - "count_conversation_parts": 1, - "count_reopens": 1, - "first_admin_reply_at": 1663597233, - "first_assignment_at": 1663597233, - "first_close_at": 1663597233, - "first_contact_reply_at": 1663597233, - "last_admin_reply_at": 1663597233, - "last_assignment_admin_reply_at": 1663597233, - "last_assignment_at": 1663597233, - "last_close_at": 1663597233, - "last_closed_by_id": "c3po", - "last_contact_reply_at": 1663597233, - "median_time_to_reply": 2310, - "time_to_admin_reply": 2310, - "time_to_assignment": 2310, - "time_to_first_close": 2310, - "time_to_last_close": 2310, - "type": "conversation_statistics", - }, "tags": { "tags": [ { @@ -29349,19 +27883,8 @@ If you want to reply to a coveration or take an action such as assign, unassign, ], "type": "tag.list", }, - "team_assignee_id": "5017691", - "teammates": { - "teammates": [ - { - "type": "contact", - }, - ], - "type": "admin.list", - }, - "title": "Conversation Title", "type": "conversation", "updated_at": 1719492834, - "waiting_since": 1663597260, }, }, }, @@ -29856,17 +28379,12 @@ service: body: type: conversation id: '367' - title: Conversation Title created_at: 1719492825 updated_at: 1719492825 - waiting_since: 1663597260 - snoozed_until: 1663597260 open: false state: closed read: false priority: not_priority - admin_assignee_id: 0 - team_assignee_id: '5017691' tags: type: tag.list tags: @@ -29874,17 +28392,6 @@ service: id: '123456' name: Test tag applied_at: 1663597223 - conversation_rating: - rating: 5 - remark: '' - created_at: 1671028894 - contact: - type: contact - id: 5ba682d23d7cf92bef87bfd4 - external_id: f3b87a2e09d514c6c2e79b9a - teammate: - type: contact - id: 1a2b3c source: type: conversation id: '403918255' @@ -29904,7 +28411,6 @@ service: filesize: 100 width: 100 height: 100 - url: url redacted: false contacts: type: contact.list @@ -29912,40 +28418,8 @@ service: - type: contact id: 667d60d88a68186f43bafde1 external_id: '70' - teammates: - type: admin.list - teammates: - - type: contact custom_attributes: key: value - first_contact_reply: - created_at: 1663597223 - type: conversation - url: https://developers.intercom.com/ - sla_applied: - type: conversation_sla_summary - sla_name: '' - sla_status: hit - statistics: - type: conversation_statistics - time_to_assignment: 2310 - time_to_admin_reply: 2310 - time_to_first_close: 2310 - time_to_last_close: 2310 - median_time_to_reply: 2310 - first_contact_reply_at: 1663597233 - first_assignment_at: 1663597233 - first_admin_reply_at: 1663597233 - first_close_at: 1663597233 - last_assignment_at: 1663597233 - last_assignment_admin_reply_at: 1663597233 - last_contact_reply_at: 1663597233 - last_admin_reply_at: 1663597233 - last_close_at: 1663597233 - last_closed_by_id: c3po - count_reopens: 1 - count_assignments: 1 - count_conversation_parts: 1 conversation_parts: type: conversation_part.list conversation_parts: @@ -29964,20 +28438,6 @@ service: data: - id: '7583' ai_agent_participated: false - ai_agent: - source_type: essentials_plan_setup - source_title: My AI Workflow - last_answer_type: ai_answer - resolution_state: assumed_resolution - rating: 4 - rating_remark: Very helpful! - content_sources: - type: content_source.list - total_count: 1 - content_sources: - - url: /fin-ai-agent/content?content=content_snippet&id=3234924 - title: My internal content snippet - locale: en updateConversation: path: /conversations/{id} method: PUT @@ -30038,17 +28498,12 @@ service: body: type: conversation id: '371' - title: Conversation Title created_at: 1719492832 updated_at: 1719492834 - waiting_since: 1663597260 - snoozed_until: 1663597260 open: false state: closed read: true priority: not_priority - admin_assignee_id: 0 - team_assignee_id: '5017691' tags: type: tag.list tags: @@ -30056,17 +28511,6 @@ service: id: '123456' name: Test tag applied_at: 1663597223 - conversation_rating: - rating: 5 - remark: '' - created_at: 1671028894 - contact: - type: contact - id: 5ba682d23d7cf92bef87bfd4 - external_id: f3b87a2e09d514c6c2e79b9a - teammate: - type: contact - id: 1a2b3c source: type: conversation id: '403918259' @@ -30086,7 +28530,6 @@ service: filesize: 100 width: 100 height: 100 - url: url redacted: false contacts: type: contact.list @@ -30094,41 +28537,9 @@ service: - type: contact id: 667d60e08a68186f43bafde5 external_id: '70' - teammates: - type: admin.list - teammates: - - type: contact custom_attributes: issue_type: Billing priority: High - first_contact_reply: - created_at: 1663597223 - type: conversation - url: https://developers.intercom.com/ - sla_applied: - type: conversation_sla_summary - sla_name: '' - sla_status: hit - statistics: - type: conversation_statistics - time_to_assignment: 2310 - time_to_admin_reply: 2310 - time_to_first_close: 2310 - time_to_last_close: 2310 - median_time_to_reply: 2310 - first_contact_reply_at: 1663597233 - first_assignment_at: 1663597233 - first_admin_reply_at: 1663597233 - first_close_at: 1663597233 - last_assignment_at: 1663597233 - last_assignment_admin_reply_at: 1663597233 - last_contact_reply_at: 1663597233 - last_admin_reply_at: 1663597233 - last_close_at: 1663597233 - last_closed_by_id: c3po - count_reopens: 1 - count_assignments: 1 - count_conversation_parts: 1 conversation_parts: type: conversation_part.list conversation_parts: @@ -30182,20 +28593,6 @@ service: data: - id: '7583' ai_agent_participated: false - ai_agent: - source_type: essentials_plan_setup - source_title: My AI Workflow - last_answer_type: ai_answer - resolution_state: assumed_resolution - rating: 4 - rating_remark: Very helpful! - content_sources: - type: content_source.list - total_count: 1 - content_sources: - - url: /fin-ai-agent/content?content=content_snippet&id=3234924 - title: My internal content snippet - locale: en - name: Not found path-parameters: id: 1 @@ -30210,17 +28607,12 @@ service: body: type: conversation id: '371' - title: Conversation Title created_at: 1719492832 updated_at: 1719492834 - waiting_since: 1663597260 - snoozed_until: 1663597260 open: false state: closed read: true priority: not_priority - admin_assignee_id: 0 - team_assignee_id: '5017691' tags: type: tag.list tags: @@ -30228,17 +28620,6 @@ service: id: '123456' name: Test tag applied_at: 1663597223 - conversation_rating: - rating: 5 - remark: '' - created_at: 1671028894 - contact: - type: contact - id: 5ba682d23d7cf92bef87bfd4 - external_id: f3b87a2e09d514c6c2e79b9a - teammate: - type: contact - id: 1a2b3c source: type: conversation id: '403918259' @@ -30258,7 +28639,6 @@ service: filesize: 100 width: 100 height: 100 - url: url redacted: false contacts: type: contact.list @@ -30266,41 +28646,9 @@ service: - type: contact id: 667d60e08a68186f43bafde5 external_id: '70' - teammates: - type: admin.list - teammates: - - type: contact custom_attributes: issue_type: Billing priority: High - first_contact_reply: - created_at: 1663597223 - type: conversation - url: https://developers.intercom.com/ - sla_applied: - type: conversation_sla_summary - sla_name: '' - sla_status: hit - statistics: - type: conversation_statistics - time_to_assignment: 2310 - time_to_admin_reply: 2310 - time_to_first_close: 2310 - time_to_last_close: 2310 - median_time_to_reply: 2310 - first_contact_reply_at: 1663597233 - first_assignment_at: 1663597233 - first_admin_reply_at: 1663597233 - first_close_at: 1663597233 - last_assignment_at: 1663597233 - last_assignment_admin_reply_at: 1663597233 - last_contact_reply_at: 1663597233 - last_admin_reply_at: 1663597233 - last_close_at: 1663597233 - last_closed_by_id: c3po - count_reopens: 1 - count_assignments: 1 - count_conversation_parts: 1 conversation_parts: type: conversation_part.list conversation_parts: @@ -30354,20 +28702,6 @@ service: data: - id: '7583' ai_agent_participated: false - ai_agent: - source_type: essentials_plan_setup - source_title: My AI Workflow - last_answer_type: ai_answer - resolution_state: assumed_resolution - rating: 4 - rating_remark: Very helpful! - content_sources: - type: content_source.list - total_count: 1 - content_sources: - - url: /fin-ai-agent/content?content=content_snippet&id=3234924 - title: My internal content snippet - locale: en searchConversations: path: /conversations/search method: POST @@ -30719,17 +29053,12 @@ service: conversations: - type: conversation id: '378' - title: Conversation Title created_at: 1719492843 updated_at: 1719492843 - waiting_since: 1663597260 - snoozed_until: 1663597260 open: false state: closed read: false priority: not_priority - admin_assignee_id: 0 - team_assignee_id: '5017691' tags: type: tag.list tags: @@ -30737,10 +29066,6 @@ service: id: '123456' name: Test tag applied_at: 1663597223 - conversation_rating: - rating: 5 - remark: '' - created_at: 1671028894 source: type: conversation id: '403918266' @@ -30767,36 +29092,8 @@ service: - type: contact id: 667d60ea8a68186f43bafdec external_id: '70' - teammates: - type: admin.list custom_attributes: key: value - first_contact_reply: - created_at: 1663597223 - type: conversation - sla_applied: - type: conversation_sla_summary - sla_name: '' - statistics: - type: conversation_statistics - time_to_assignment: 2310 - time_to_admin_reply: 2310 - time_to_first_close: 2310 - time_to_last_close: 2310 - median_time_to_reply: 2310 - first_contact_reply_at: 1663597233 - first_assignment_at: 1663597233 - first_admin_reply_at: 1663597233 - first_close_at: 1663597233 - last_assignment_at: 1663597233 - last_assignment_admin_reply_at: 1663597233 - last_contact_reply_at: 1663597233 - last_admin_reply_at: 1663597233 - last_close_at: 1663597233 - last_closed_by_id: c3po - count_reopens: 1 - count_assignments: 1 - count_conversation_parts: 1 conversation_parts: total_count: 2 linked_objects: @@ -30854,17 +29151,13 @@ service: body: type: conversation id: '387' - title: Conversation Title created_at: 1719492849 updated_at: 1719492850 waiting_since: 1719492850 - snoozed_until: 1663597260 open: true state: open read: false priority: not_priority - admin_assignee_id: 0 - team_assignee_id: '5017691' tags: type: tag.list tags: @@ -30872,17 +29165,6 @@ service: id: '123456' name: Test tag applied_at: 1663597223 - conversation_rating: - rating: 5 - remark: '' - created_at: 1671028894 - contact: - type: contact - id: 5ba682d23d7cf92bef87bfd4 - external_id: f3b87a2e09d514c6c2e79b9a - teammate: - type: contact - id: 1a2b3c source: type: conversation id: '403918269' @@ -30902,7 +29184,6 @@ service: filesize: 100 width: 100 height: 100 - url: url redacted: false contacts: type: contact.list @@ -30910,40 +29191,11 @@ service: - type: contact id: 667d60f18a68186f43bafdf4 external_id: '70' - teammates: - type: admin.list - teammates: - - type: contact custom_attributes: key: value first_contact_reply: created_at: 1719492850 type: conversation - url: https://developers.intercom.com/ - sla_applied: - type: conversation_sla_summary - sla_name: '' - sla_status: hit - statistics: - type: conversation_statistics - time_to_assignment: 2310 - time_to_admin_reply: 2310 - time_to_first_close: 2310 - time_to_last_close: 2310 - median_time_to_reply: 2310 - first_contact_reply_at: 1663597233 - first_assignment_at: 1663597233 - first_admin_reply_at: 1663597233 - first_close_at: 1663597233 - last_assignment_at: 1663597233 - last_assignment_admin_reply_at: 1663597233 - last_contact_reply_at: 1663597233 - last_admin_reply_at: 1663597233 - last_close_at: 1663597233 - last_closed_by_id: c3po - count_reopens: 1 - count_assignments: 1 - count_conversation_parts: 1 conversation_parts: type: conversation_part.list conversation_parts: @@ -30976,20 +29228,6 @@ service: data: - id: '7583' ai_agent_participated: false - ai_agent: - source_type: essentials_plan_setup - source_title: My AI Workflow - last_answer_type: ai_answer - resolution_state: assumed_resolution - rating: 4 - rating_remark: Very helpful! - content_sources: - type: content_source.list - total_count: 1 - content_sources: - - url: /fin-ai-agent/content?content=content_snippet&id=3234924 - title: My internal content snippet - locale: en - name: Admin note reply path-parameters: id: 123 or "last" @@ -31006,17 +29244,12 @@ service: body: type: conversation id: '388' - title: Conversation Title created_at: 1719492852 updated_at: 1719492853 - waiting_since: 1663597260 - snoozed_until: 1663597260 open: false state: closed read: false priority: not_priority - admin_assignee_id: 0 - team_assignee_id: '5017691' tags: type: tag.list tags: @@ -31024,17 +29257,6 @@ service: id: '123456' name: Test tag applied_at: 1663597223 - conversation_rating: - rating: 5 - remark: '' - created_at: 1671028894 - contact: - type: contact - id: 5ba682d23d7cf92bef87bfd4 - external_id: f3b87a2e09d514c6c2e79b9a - teammate: - type: contact - id: 1a2b3c source: type: conversation id: '403918270' @@ -31054,7 +29276,6 @@ service: filesize: 100 width: 100 height: 100 - url: url redacted: false contacts: type: contact.list @@ -31062,40 +29283,8 @@ service: - type: contact id: 667d60f38a68186f43bafdf5 external_id: '70' - teammates: - type: admin.list - teammates: - - type: contact custom_attributes: key: value - first_contact_reply: - created_at: 1663597223 - type: conversation - url: https://developers.intercom.com/ - sla_applied: - type: conversation_sla_summary - sla_name: '' - sla_status: hit - statistics: - type: conversation_statistics - time_to_assignment: 2310 - time_to_admin_reply: 2310 - time_to_first_close: 2310 - time_to_last_close: 2310 - median_time_to_reply: 2310 - first_contact_reply_at: 1663597233 - first_assignment_at: 1663597233 - first_admin_reply_at: 1663597233 - first_close_at: 1663597233 - last_assignment_at: 1663597233 - last_assignment_admin_reply_at: 1663597233 - last_contact_reply_at: 1663597233 - last_admin_reply_at: 1663597233 - last_close_at: 1663597233 - last_closed_by_id: c3po - count_reopens: 1 - count_assignments: 1 - count_conversation_parts: 1 conversation_parts: type: conversation_part.list conversation_parts: @@ -31140,20 +29329,6 @@ service: data: - id: '7583' ai_agent_participated: false - ai_agent: - source_type: essentials_plan_setup - source_title: My AI Workflow - last_answer_type: ai_answer - resolution_state: assumed_resolution - rating: 4 - rating_remark: Very helpful! - content_sources: - type: content_source.list - total_count: 1 - content_sources: - - url: /fin-ai-agent/content?content=content_snippet&id=3234924 - title: My internal content snippet - locale: en - name: User last conversation reply path-parameters: id: 123 or "last" @@ -31166,17 +29341,13 @@ service: body: type: conversation id: '390' - title: Conversation Title created_at: 1719492855 updated_at: 1719492856 waiting_since: 1719492856 - snoozed_until: 1663597260 open: true state: open read: false priority: not_priority - admin_assignee_id: 0 - team_assignee_id: '5017691' tags: type: tag.list tags: @@ -31184,17 +29355,6 @@ service: id: '123456' name: Test tag applied_at: 1663597223 - conversation_rating: - rating: 5 - remark: '' - created_at: 1671028894 - contact: - type: contact - id: 5ba682d23d7cf92bef87bfd4 - external_id: f3b87a2e09d514c6c2e79b9a - teammate: - type: contact - id: 1a2b3c source: type: conversation id: '403918272' @@ -31214,7 +29374,6 @@ service: filesize: 100 width: 100 height: 100 - url: url redacted: false contacts: type: contact.list @@ -31222,40 +29381,11 @@ service: - type: contact id: 667d60f78a68186f43bafdf7 external_id: '70' - teammates: - type: admin.list - teammates: - - type: contact custom_attributes: key: value first_contact_reply: created_at: 1719492856 type: conversation - url: https://developers.intercom.com/ - sla_applied: - type: conversation_sla_summary - sla_name: '' - sla_status: hit - statistics: - type: conversation_statistics - time_to_assignment: 2310 - time_to_admin_reply: 2310 - time_to_first_close: 2310 - time_to_last_close: 2310 - median_time_to_reply: 2310 - first_contact_reply_at: 1663597233 - first_assignment_at: 1663597233 - first_admin_reply_at: 1663597233 - first_close_at: 1663597233 - last_assignment_at: 1663597233 - last_assignment_admin_reply_at: 1663597233 - last_contact_reply_at: 1663597233 - last_admin_reply_at: 1663597233 - last_close_at: 1663597233 - last_closed_by_id: c3po - count_reopens: 1 - count_assignments: 1 - count_conversation_parts: 1 conversation_parts: type: conversation_part.list conversation_parts: @@ -31288,20 +29418,6 @@ service: data: - id: '7583' ai_agent_participated: false - ai_agent: - source_type: essentials_plan_setup - source_title: My AI Workflow - last_answer_type: ai_answer - resolution_state: assumed_resolution - rating: 4 - rating_remark: Very helpful! - content_sources: - type: content_source.list - total_count: 1 - content_sources: - - url: /fin-ai-agent/content?content=content_snippet&id=3234924 - title: My internal content snippet - locale: en - name: Not found path-parameters: id: 123 or "last" @@ -31314,17 +29430,13 @@ service: body: type: conversation id: '387' - title: Conversation Title created_at: 1719492849 updated_at: 1719492850 waiting_since: 1719492850 - snoozed_until: 1663597260 open: true state: open read: false priority: not_priority - admin_assignee_id: 0 - team_assignee_id: '5017691' tags: type: tag.list tags: @@ -31332,17 +29444,6 @@ service: id: '123456' name: Test tag applied_at: 1663597223 - conversation_rating: - rating: 5 - remark: '' - created_at: 1671028894 - contact: - type: contact - id: 5ba682d23d7cf92bef87bfd4 - external_id: f3b87a2e09d514c6c2e79b9a - teammate: - type: contact - id: 1a2b3c source: type: conversation id: '403918269' @@ -31362,7 +29463,6 @@ service: filesize: 100 width: 100 height: 100 - url: url redacted: false contacts: type: contact.list @@ -31370,40 +29470,11 @@ service: - type: contact id: 667d60f18a68186f43bafdf4 external_id: '70' - teammates: - type: admin.list - teammates: - - type: contact custom_attributes: key: value first_contact_reply: created_at: 1719492850 type: conversation - url: https://developers.intercom.com/ - sla_applied: - type: conversation_sla_summary - sla_name: '' - sla_status: hit - statistics: - type: conversation_statistics - time_to_assignment: 2310 - time_to_admin_reply: 2310 - time_to_first_close: 2310 - time_to_last_close: 2310 - median_time_to_reply: 2310 - first_contact_reply_at: 1663597233 - first_assignment_at: 1663597233 - first_admin_reply_at: 1663597233 - first_close_at: 1663597233 - last_assignment_at: 1663597233 - last_assignment_admin_reply_at: 1663597233 - last_contact_reply_at: 1663597233 - last_admin_reply_at: 1663597233 - last_close_at: 1663597233 - last_closed_by_id: c3po - count_reopens: 1 - count_assignments: 1 - count_conversation_parts: 1 conversation_parts: type: conversation_part.list conversation_parts: @@ -31436,20 +29507,6 @@ service: data: - id: '7583' ai_agent_participated: false - ai_agent: - source_type: essentials_plan_setup - source_title: My AI Workflow - last_answer_type: ai_answer - resolution_state: assumed_resolution - rating: 4 - rating_remark: Very helpful! - content_sources: - type: content_source.list - total_count: 1 - content_sources: - - url: /fin-ai-agent/content?content=content_snippet&id=3234924 - title: My internal content snippet - locale: en manageConversation: path: /conversations/{id}/parts method: POST @@ -31491,17 +29548,12 @@ service: body: type: conversation id: '394' - title: Conversation Title created_at: 1719492862 updated_at: 1719492862 - waiting_since: 1663597260 - snoozed_until: 1663597260 open: false state: closed read: false priority: not_priority - admin_assignee_id: 0 - team_assignee_id: '5017691' tags: type: tag.list tags: @@ -31509,17 +29561,6 @@ service: id: '123456' name: Test tag applied_at: 1663597223 - conversation_rating: - rating: 5 - remark: '' - created_at: 1671028894 - contact: - type: contact - id: 5ba682d23d7cf92bef87bfd4 - external_id: f3b87a2e09d514c6c2e79b9a - teammate: - type: contact - id: 1a2b3c source: type: conversation id: '403918276' @@ -31539,7 +29580,6 @@ service: filesize: 100 width: 100 height: 100 - url: url redacted: false contacts: type: contact.list @@ -31547,40 +29587,8 @@ service: - type: contact id: 667d60fd8a68186f43bafdfb external_id: '70' - teammates: - type: admin.list - teammates: - - type: contact custom_attributes: key: value - first_contact_reply: - created_at: 1663597223 - type: conversation - url: https://developers.intercom.com/ - sla_applied: - type: conversation_sla_summary - sla_name: '' - sla_status: hit - statistics: - type: conversation_statistics - time_to_assignment: 2310 - time_to_admin_reply: 2310 - time_to_first_close: 2310 - time_to_last_close: 2310 - median_time_to_reply: 2310 - first_contact_reply_at: 1663597233 - first_assignment_at: 1663597233 - first_admin_reply_at: 1663597233 - first_close_at: 1663597233 - last_assignment_at: 1663597233 - last_assignment_admin_reply_at: 1663597233 - last_contact_reply_at: 1663597233 - last_admin_reply_at: 1663597233 - last_close_at: 1663597233 - last_closed_by_id: c3po - count_reopens: 1 - count_assignments: 1 - count_conversation_parts: 1 conversation_parts: type: conversation_part.list conversation_parts: @@ -31613,20 +29621,6 @@ service: data: - id: '7583' ai_agent_participated: false - ai_agent: - source_type: essentials_plan_setup - source_title: My AI Workflow - last_answer_type: ai_answer - resolution_state: assumed_resolution - rating: 4 - rating_remark: Very helpful! - content_sources: - type: content_source.list - total_count: 1 - content_sources: - - url: /fin-ai-agent/content?content=content_snippet&id=3234924 - title: My internal content snippet - locale: en - name: Snooze a conversation path-parameters: id: '123' @@ -31640,17 +29634,13 @@ service: body: type: conversation id: '395' - title: Conversation Title created_at: 1719492864 updated_at: 1719492864 - waiting_since: 1663597260 snoozed_until: 1719496464 open: true state: snoozed read: false priority: not_priority - admin_assignee_id: 0 - team_assignee_id: '5017691' tags: type: tag.list tags: @@ -31658,17 +29648,6 @@ service: id: '123456' name: Test tag applied_at: 1663597223 - conversation_rating: - rating: 5 - remark: '' - created_at: 1671028894 - contact: - type: contact - id: 5ba682d23d7cf92bef87bfd4 - external_id: f3b87a2e09d514c6c2e79b9a - teammate: - type: contact - id: 1a2b3c source: type: conversation id: '403918277' @@ -31688,7 +29667,6 @@ service: filesize: 100 width: 100 height: 100 - url: url redacted: false contacts: type: contact.list @@ -31696,40 +29674,8 @@ service: - type: contact id: 667d60ff8a68186f43bafdfc external_id: '70' - teammates: - type: admin.list - teammates: - - type: contact custom_attributes: key: value - first_contact_reply: - created_at: 1663597223 - type: conversation - url: https://developers.intercom.com/ - sla_applied: - type: conversation_sla_summary - sla_name: '' - sla_status: hit - statistics: - type: conversation_statistics - time_to_assignment: 2310 - time_to_admin_reply: 2310 - time_to_first_close: 2310 - time_to_last_close: 2310 - median_time_to_reply: 2310 - first_contact_reply_at: 1663597233 - first_assignment_at: 1663597233 - first_admin_reply_at: 1663597233 - first_close_at: 1663597233 - last_assignment_at: 1663597233 - last_assignment_admin_reply_at: 1663597233 - last_contact_reply_at: 1663597233 - last_admin_reply_at: 1663597233 - last_close_at: 1663597233 - last_closed_by_id: c3po - count_reopens: 1 - count_assignments: 1 - count_conversation_parts: 1 conversation_parts: type: conversation_part.list conversation_parts: @@ -31761,20 +29707,6 @@ service: data: - id: '7583' ai_agent_participated: false - ai_agent: - source_type: essentials_plan_setup - source_title: My AI Workflow - last_answer_type: ai_answer - resolution_state: assumed_resolution - rating: 4 - rating_remark: Very helpful! - content_sources: - type: content_source.list - total_count: 1 - content_sources: - - url: /fin-ai-agent/content?content=content_snippet&id=3234924 - title: My internal content snippet - locale: en - name: Open a conversation path-parameters: id: '123' @@ -31791,14 +29723,10 @@ service: title: '' created_at: 1719492863 updated_at: 1719492873 - waiting_since: 1663597260 - snoozed_until: 1663597260 open: true state: open read: true priority: not_priority - admin_assignee_id: 0 - team_assignee_id: '5017691' tags: type: tag.list tags: @@ -31806,17 +29734,6 @@ service: id: '123456' name: Test tag applied_at: 1663597223 - conversation_rating: - rating: 5 - remark: '' - created_at: 1671028894 - contact: - type: contact - id: 5ba682d23d7cf92bef87bfd4 - external_id: f3b87a2e09d514c6c2e79b9a - teammate: - type: contact - id: 1a2b3c source: type: conversation id: '403918278' @@ -31836,7 +29753,6 @@ service: filesize: 100 width: 100 height: 100 - url: url redacted: false contacts: type: contact.list @@ -31844,40 +29760,8 @@ service: - type: contact id: 667d61038a68186f43bafe01 external_id: '74' - teammates: - type: admin.list - teammates: - - type: contact custom_attributes: key: value - first_contact_reply: - created_at: 1663597223 - type: conversation - url: https://developers.intercom.com/ - sla_applied: - type: conversation_sla_summary - sla_name: '' - sla_status: hit - statistics: - type: conversation_statistics - time_to_assignment: 2310 - time_to_admin_reply: 2310 - time_to_first_close: 2310 - time_to_last_close: 2310 - median_time_to_reply: 2310 - first_contact_reply_at: 1663597233 - first_assignment_at: 1663597233 - first_admin_reply_at: 1663597233 - first_close_at: 1663597233 - last_assignment_at: 1663597233 - last_assignment_admin_reply_at: 1663597233 - last_contact_reply_at: 1663597233 - last_admin_reply_at: 1663597233 - last_close_at: 1663597233 - last_closed_by_id: c3po - count_reopens: 1 - count_assignments: 1 - count_conversation_parts: 1 conversation_parts: type: conversation_part.list conversation_parts: @@ -31909,20 +29793,6 @@ service: data: - id: '7583' ai_agent_participated: false - ai_agent: - source_type: essentials_plan_setup - source_title: My AI Workflow - last_answer_type: ai_answer - resolution_state: assumed_resolution - rating: 4 - rating_remark: Very helpful! - content_sources: - type: content_source.list - total_count: 1 - content_sources: - - url: /fin-ai-agent/content?content=content_snippet&id=3234924 - title: My internal content snippet - locale: en - name: Assign a conversation path-parameters: id: '123' @@ -31936,17 +29806,13 @@ service: body: type: conversation id: '405' - title: Conversation Title created_at: 1719492874 updated_at: 1719492875 - waiting_since: 1663597260 - snoozed_until: 1663597260 open: true state: open read: false priority: not_priority admin_assignee_id: 991267615 - team_assignee_id: '5017691' tags: type: tag.list tags: @@ -31954,17 +29820,6 @@ service: id: '123456' name: Test tag applied_at: 1663597223 - conversation_rating: - rating: 5 - remark: '' - created_at: 1671028894 - contact: - type: contact - id: 5ba682d23d7cf92bef87bfd4 - external_id: f3b87a2e09d514c6c2e79b9a - teammate: - type: contact - id: 1a2b3c source: type: conversation id: '403918281' @@ -31984,7 +29839,6 @@ service: filesize: 100 width: 100 height: 100 - url: url redacted: false contacts: type: contact.list @@ -31992,40 +29846,8 @@ service: - type: contact id: 667d610a8a68186f43bafe05 external_id: '70' - teammates: - type: admin.list - teammates: - - type: contact custom_attributes: key: value - first_contact_reply: - created_at: 1663597223 - type: conversation - url: https://developers.intercom.com/ - sla_applied: - type: conversation_sla_summary - sla_name: '' - sla_status: hit - statistics: - type: conversation_statistics - time_to_assignment: 2310 - time_to_admin_reply: 2310 - time_to_first_close: 2310 - time_to_last_close: 2310 - median_time_to_reply: 2310 - first_contact_reply_at: 1663597233 - first_assignment_at: 1663597233 - first_admin_reply_at: 1663597233 - first_close_at: 1663597233 - last_assignment_at: 1663597233 - last_assignment_admin_reply_at: 1663597233 - last_contact_reply_at: 1663597233 - last_admin_reply_at: 1663597233 - last_close_at: 1663597233 - last_closed_by_id: c3po - count_reopens: 1 - count_assignments: 1 - count_conversation_parts: 1 conversation_parts: type: conversation_part.list conversation_parts: @@ -32060,20 +29882,6 @@ service: data: - id: '7583' ai_agent_participated: false - ai_agent: - source_type: essentials_plan_setup - source_title: My AI Workflow - last_answer_type: ai_answer - resolution_state: assumed_resolution - rating: 4 - rating_remark: Very helpful! - content_sources: - type: content_source.list - total_count: 1 - content_sources: - - url: /fin-ai-agent/content?content=content_snippet&id=3234924 - title: My internal content snippet - locale: en - name: Not found path-parameters: id: '123' @@ -32087,17 +29895,12 @@ service: body: type: conversation id: '394' - title: Conversation Title created_at: 1719492862 updated_at: 1719492862 - waiting_since: 1663597260 - snoozed_until: 1663597260 open: false state: closed read: false priority: not_priority - admin_assignee_id: 0 - team_assignee_id: '5017691' tags: type: tag.list tags: @@ -32105,17 +29908,6 @@ service: id: '123456' name: Test tag applied_at: 1663597223 - conversation_rating: - rating: 5 - remark: '' - created_at: 1671028894 - contact: - type: contact - id: 5ba682d23d7cf92bef87bfd4 - external_id: f3b87a2e09d514c6c2e79b9a - teammate: - type: contact - id: 1a2b3c source: type: conversation id: '403918276' @@ -32135,7 +29927,6 @@ service: filesize: 100 width: 100 height: 100 - url: url redacted: false contacts: type: contact.list @@ -32143,40 +29934,8 @@ service: - type: contact id: 667d60fd8a68186f43bafdfb external_id: '70' - teammates: - type: admin.list - teammates: - - type: contact custom_attributes: key: value - first_contact_reply: - created_at: 1663597223 - type: conversation - url: https://developers.intercom.com/ - sla_applied: - type: conversation_sla_summary - sla_name: '' - sla_status: hit - statistics: - type: conversation_statistics - time_to_assignment: 2310 - time_to_admin_reply: 2310 - time_to_first_close: 2310 - time_to_last_close: 2310 - median_time_to_reply: 2310 - first_contact_reply_at: 1663597233 - first_assignment_at: 1663597233 - first_admin_reply_at: 1663597233 - first_close_at: 1663597233 - last_assignment_at: 1663597233 - last_assignment_admin_reply_at: 1663597233 - last_contact_reply_at: 1663597233 - last_admin_reply_at: 1663597233 - last_close_at: 1663597233 - last_closed_by_id: c3po - count_reopens: 1 - count_assignments: 1 - count_conversation_parts: 1 conversation_parts: type: conversation_part.list conversation_parts: @@ -32209,20 +29968,6 @@ service: data: - id: '7583' ai_agent_participated: false - ai_agent: - source_type: essentials_plan_setup - source_title: My AI Workflow - last_answer_type: ai_answer - resolution_state: assumed_resolution - rating: 4 - rating_remark: Very helpful! - content_sources: - type: content_source.list - total_count: 1 - content_sources: - - url: /fin-ai-agent/content?content=content_snippet&id=3234924 - title: My internal content snippet - locale: en autoAssignConversation: path: /conversations/{id}/run_assignment_rules method: POST @@ -32258,17 +30003,12 @@ service: body: type: conversation id: '409' - title: Conversation Title created_at: 1719492880 updated_at: 1719492881 - waiting_since: 1663597260 - snoozed_until: 1663597260 open: false state: closed read: false priority: not_priority - admin_assignee_id: 0 - team_assignee_id: '5017691' tags: type: tag.list tags: @@ -32276,17 +30016,6 @@ service: id: '123456' name: Test tag applied_at: 1663597223 - conversation_rating: - rating: 5 - remark: '' - created_at: 1671028894 - contact: - type: contact - id: 5ba682d23d7cf92bef87bfd4 - external_id: f3b87a2e09d514c6c2e79b9a - teammate: - type: contact - id: 1a2b3c source: type: conversation id: '403918285' @@ -32306,7 +30035,6 @@ service: filesize: 100 width: 100 height: 100 - url: url redacted: false contacts: type: contact.list @@ -32314,40 +30042,8 @@ service: - type: contact id: 667d61108a68186f43bafe09 external_id: '70' - teammates: - type: admin.list - teammates: - - type: contact custom_attributes: key: value - first_contact_reply: - created_at: 1663597223 - type: conversation - url: https://developers.intercom.com/ - sla_applied: - type: conversation_sla_summary - sla_name: '' - sla_status: hit - statistics: - type: conversation_statistics - time_to_assignment: 2310 - time_to_admin_reply: 2310 - time_to_first_close: 2310 - time_to_last_close: 2310 - median_time_to_reply: 2310 - first_contact_reply_at: 1663597233 - first_assignment_at: 1663597233 - first_admin_reply_at: 1663597233 - first_close_at: 1663597233 - last_assignment_at: 1663597233 - last_assignment_admin_reply_at: 1663597233 - last_contact_reply_at: 1663597233 - last_admin_reply_at: 1663597233 - last_close_at: 1663597233 - last_closed_by_id: c3po - count_reopens: 1 - count_assignments: 1 - count_conversation_parts: 1 conversation_parts: type: conversation_part.list conversation_parts: @@ -32382,20 +30078,6 @@ service: data: - id: '7583' ai_agent_participated: false - ai_agent: - source_type: essentials_plan_setup - source_title: My AI Workflow - last_answer_type: ai_answer - resolution_state: assumed_resolution - rating: 4 - rating_remark: Very helpful! - content_sources: - type: content_source.list - total_count: 1 - content_sources: - - url: /fin-ai-agent/content?content=content_snippet&id=3234924 - title: My internal content snippet - locale: en attachContactToConversation: path: /conversations/{id}/customers method: POST @@ -33304,17 +30986,13 @@ service: body: type: conversation id: '471' - title: Conversation Title created_at: 1719492938 updated_at: 1719492940 waiting_since: 1719492939 - snoozed_until: 1663597260 open: true state: open read: true priority: not_priority - admin_assignee_id: 0 - team_assignee_id: '5017691' tags: type: tag.list tags: @@ -33322,17 +31000,6 @@ service: id: '123456' name: Test tag applied_at: 1663597223 - conversation_rating: - rating: 5 - remark: '' - created_at: 1671028894 - contact: - type: contact - id: 5ba682d23d7cf92bef87bfd4 - external_id: f3b87a2e09d514c6c2e79b9a - teammate: - type: contact - id: 1a2b3c source: type: conversation id: '403918311' @@ -33352,7 +31019,6 @@ service: filesize: 100 width: 100 height: 100 - url: url redacted: false contacts: type: contact.list @@ -33360,40 +31026,11 @@ service: - type: contact id: 667d614a8a68186f43bafe42 external_id: '70' - teammates: - type: admin.list - teammates: - - type: contact custom_attributes: key: value first_contact_reply: created_at: 1719492939 type: conversation - url: https://developers.intercom.com/ - sla_applied: - type: conversation_sla_summary - sla_name: '' - sla_status: hit - statistics: - type: conversation_statistics - time_to_assignment: 2310 - time_to_admin_reply: 2310 - time_to_first_close: 2310 - time_to_last_close: 2310 - median_time_to_reply: 2310 - first_contact_reply_at: 1663597233 - first_assignment_at: 1663597233 - first_admin_reply_at: 1663597233 - first_close_at: 1663597233 - last_assignment_at: 1663597233 - last_assignment_admin_reply_at: 1663597233 - last_contact_reply_at: 1663597233 - last_admin_reply_at: 1663597233 - last_close_at: 1663597233 - last_closed_by_id: c3po - count_reopens: 1 - count_assignments: 1 - count_conversation_parts: 1 conversation_parts: type: conversation_part.list conversation_parts: @@ -33426,20 +31063,6 @@ service: data: - id: '7583' ai_agent_participated: false - ai_agent: - source_type: essentials_plan_setup - source_title: My AI Workflow - last_answer_type: ai_answer - resolution_state: assumed_resolution - rating: 4 - rating_remark: Very helpful! - content_sources: - type: content_source.list - total_count: 1 - content_sources: - - url: /fin-ai-agent/content?content=content_snippet&id=3234924 - title: My internal content snippet - locale: en - name: Not found request: type: conversation_part @@ -33449,17 +31072,13 @@ service: body: type: conversation id: '471' - title: Conversation Title created_at: 1719492938 updated_at: 1719492940 waiting_since: 1719492939 - snoozed_until: 1663597260 open: true state: open read: true priority: not_priority - admin_assignee_id: 0 - team_assignee_id: '5017691' tags: type: tag.list tags: @@ -33467,17 +31086,6 @@ service: id: '123456' name: Test tag applied_at: 1663597223 - conversation_rating: - rating: 5 - remark: '' - created_at: 1671028894 - contact: - type: contact - id: 5ba682d23d7cf92bef87bfd4 - external_id: f3b87a2e09d514c6c2e79b9a - teammate: - type: contact - id: 1a2b3c source: type: conversation id: '403918311' @@ -33497,7 +31105,6 @@ service: filesize: 100 width: 100 height: 100 - url: url redacted: false contacts: type: contact.list @@ -33505,40 +31112,11 @@ service: - type: contact id: 667d614a8a68186f43bafe42 external_id: '70' - teammates: - type: admin.list - teammates: - - type: contact custom_attributes: key: value first_contact_reply: created_at: 1719492939 type: conversation - url: https://developers.intercom.com/ - sla_applied: - type: conversation_sla_summary - sla_name: '' - sla_status: hit - statistics: - type: conversation_statistics - time_to_assignment: 2310 - time_to_admin_reply: 2310 - time_to_first_close: 2310 - time_to_last_close: 2310 - median_time_to_reply: 2310 - first_contact_reply_at: 1663597233 - first_assignment_at: 1663597233 - first_admin_reply_at: 1663597233 - first_close_at: 1663597233 - last_assignment_at: 1663597233 - last_assignment_admin_reply_at: 1663597233 - last_contact_reply_at: 1663597233 - last_admin_reply_at: 1663597233 - last_close_at: 1663597233 - last_closed_by_id: c3po - count_reopens: 1 - count_assignments: 1 - count_conversation_parts: 1 conversation_parts: type: conversation_part.list conversation_parts: @@ -33571,20 +31149,6 @@ service: data: - id: '7583' ai_agent_participated: false - ai_agent: - source_type: essentials_plan_setup - source_title: My AI Workflow - last_answer_type: ai_answer - resolution_state: assumed_resolution - rating: 4 - rating_remark: Very helpful! - content_sources: - type: content_source.list - total_count: 1 - content_sources: - - url: /fin-ai-agent/content?content=content_snippet&id=3234924 - title: My internal content snippet - locale: en convertConversationToTicket: path: /conversations/{id}/convert method: POST @@ -36952,7 +34516,6 @@ types: "id": "165", "name": "Thanks for everything", "order": 1, - "parent_id": "6871118", "translated_content": { "ar": { "description": " Collection description", @@ -37163,7 +34726,6 @@ types: "id": "165", "name": "Thanks for everything", "order": 1, - "parent_id": "6871118", "translated_content": { "ar": { "description": " Collection description", @@ -37465,7 +35027,6 @@ Collections will be returned in descending order on the `updated_at` attribute. "id": "159", "name": "English collection title", "order": 17, - "parent_id": "6871118", "updated_at": 1719492720, "url": "http://help-center.test/myapp-65/collection-17", "workspace_id": "this_is_an_id65_that_should_be_at_least_4", @@ -37473,8 +35034,6 @@ Collections will be returned in descending order on the `updated_at` attribute. { "created_at": 1719492720, "default_locale": "en", - "description": "Default language description", - "help_center_id": 1, "icon": "bookmark", "id": "160", "name": "English section title", @@ -37575,7 +35134,6 @@ Collections will be returned in descending order on the `updated_at` attribute. "id": "170", "name": "English collection title", "order": 22, - "parent_id": "6871118", "translated_content": { "ar": { "description": " Collection description", @@ -37859,7 +35417,6 @@ Collections will be returned in descending order on the `updated_at` attribute. "id": "176", "name": "Update collection name", "order": 25, - "parent_id": "6871118", "translated_content": { "ar": { "description": " Collection description", @@ -38072,7 +35629,6 @@ Collections will be returned in descending order on the `updated_at` attribute. "id": "176", "name": "Update collection name", "order": 25, - "parent_id": "6871118", "translated_content": { "ar": { "description": " Collection description", @@ -38484,12 +36040,10 @@ service: icon: bookmark order: 17 default_locale: en - parent_id: '6871118' help_center_id: 79 - id: '160' workspace_id: this_is_an_id65_that_should_be_at_least_4 name: English section title - description: Default language description created_at: 1719492720 updated_at: 1719492720 url: http://help-center.test/myapp-65/section-1 @@ -38497,7 +36051,6 @@ service: order: 1 default_locale: en parent_id: '159' - help_center_id: 1 createCollection: path: /help_center/collections method: POST @@ -38707,7 +36260,6 @@ service: type: group_content name: Collection name description: ' Collection description' - parent_id: '6871118' help_center_id: 81 - name: Bad Request request: @@ -38875,7 +36427,6 @@ service: type: group_content name: Collection name description: ' Collection description' - parent_id: '6871118' help_center_id: 81 retrieveCollection: path: /help_center/collections/{id} @@ -39063,7 +36614,6 @@ service: type: group_content name: Collection name description: ' Collection description' - parent_id: '6871118' help_center_id: 84 updateCollection: path: /help_center/collections/{id} @@ -39275,7 +36825,6 @@ service: type: group_content name: Collection name description: ' Collection description' - parent_id: '6871118' help_center_id: 87 - name: Collection Not Found path-parameters: @@ -39444,7 +36993,6 @@ service: type: group_content name: Collection name description: ' Collection description' - parent_id: '6871118' help_center_id: 87 deleteCollection: path: /help_center/collections/{id} @@ -40153,7 +37701,6 @@ types: "response": { "body": { "body": "

New costumes in store for this spooky season

", - "cover_image_url": "https://example.com/cover.jpg", "created_at": 1719492978, "deliver_silently": true, "id": "33", @@ -40422,7 +37969,6 @@ types: "response": { "body": { "body": "

Hello there,

", - "cover_image_url": "https://example.com/cover.jpg", "created_at": 1719492979, "deliver_silently": false, "id": "34", @@ -40533,7 +38079,6 @@ types: "response": { "body": { "body": "

New gifts in store for the jolly season

", - "cover_image_url": "https://example.com/cover.jpg", "created_at": 1719492982, "deliver_silently": false, "id": "37", @@ -40575,7 +38120,6 @@ types: "response": { "body": { "body": "

New gifts in store for the jolly season

", - "cover_image_url": "https://example.com/cover.jpg", "created_at": 1719492982, "deliver_silently": false, "id": "37", @@ -40848,7 +38392,6 @@ service: - New - Product - Update - cover_image_url: https://example.com/cover.jpg reactions: - 😆 - 😅 @@ -40890,7 +38433,6 @@ service: published_at: 1719492980 labels: - Product Update - cover_image_url: https://example.com/cover.jpg reactions: - 👍 - 👍 @@ -40944,7 +38486,6 @@ service: published_at: 1674917488 labels: - Product Update - cover_image_url: https://example.com/cover.jpg reactions: - 😝 - 😂 @@ -40974,7 +38515,6 @@ service: published_at: 1674917488 labels: - Product Update - cover_image_url: https://example.com/cover.jpg reactions: - 😝 - 😂 @@ -41507,10 +39047,6 @@ types: }, ], "pages": { - "next": { - "per_page": 2, - "starting_after": "your-cursor-from-response", - }, "page": 1, "per_page": 50, "total_pages": 1, @@ -41748,9 +39284,6 @@ service: pages: type: pages page: 1 - next: - per_page: 2 - starting_after: your-cursor-from-response per_page: 50 total_pages: 1 createNote: @@ -49255,19 +46788,6 @@ docs: Everything about your tickets }, "response": { "body": { - "android_app_name": "Intercom", - "android_app_version": "5.0.0", - "android_device": "Pixel 3", - "android_last_seen_at": 1571672154, - "android_os_version": "10", - "android_sdk_version": "28", - "avatar": { - "image_url": "https://example.org/128Wash.jpg", - "type": "avatar", - }, - "browser": "Chrome", - "browser_language": "en-US", - "browser_version": "80.0.3987.132", "companies": { "has_more": false, "total_count": 0, @@ -49279,30 +46799,13 @@ docs: Everything about your tickets }, "email": "foo@bar.com", "email_domain": "example.com", - "external_id": "f3b87a2e09d514c6c2e79b9a", "formatted_phone": "+1123456789", "has_hard_bounced": false, "id": "667d61d08a68186f43bafea2", - "ios_app_name": "Intercom", - "ios_app_version": "5.0.0", - "ios_device": "iPhone 11", - "ios_last_seen_at": 1571672154, - "ios_os_version": "13.3.1", - "ios_sdk_version": "13.3.1", - "language_override": "en", - "last_contacted_at": 1571672154, - "last_email_clicked_at": 1571672154, - "last_email_opened_at": 1571672154, - "last_replied_at": 1571672154, - "last_seen_at": 1571672154, "location": { - "city": "Dublin", - "country": "Ireland", - "region": "Dublin", "type": "location", }, "marked_email_as_spam": false, - "name": "John Doe", "notes": { "data": [ { @@ -49315,9 +46818,6 @@ docs: Everything about your tickets "total_count": 0, "url": "/contacts/667d61d08a68186f43bafea2/notes", }, - "os": "Mac OS X", - "owner_id": 123, - "phone": "+1123456789", "role": "user", "signed_up_at": 1719493072, "social_profiles": { @@ -49396,7 +46896,6 @@ docs: Everything about your tickets "anonymous": true, "app_id": "this_is_an_id677_that_should_be_at_least_", "avatar": { - "image_url": "https://example.com/avatar.png", "type": "avatar", }, "companies": { @@ -49429,7 +46928,6 @@ docs: Everything about your tickets "custom_attributes": { "key": "value", }, - "do_not_track": false, "email": "", "has_hard_bounced": false, "id": "667d61ce8a68186f43bafe9b", @@ -49445,11 +46943,6 @@ docs: Everything about your tickets "type": "location_data", }, "marked_email_as_spam": false, - "name": "Jane Doe", - "owner_id": "5169261", - "phone": "555-555-5555", - "pseudonym": "Red Duck from Dublin", - "referrer": "https://www.google.com/", "remote_created_at": 1719493070, "segments": { "segments": [ @@ -49478,11 +46971,6 @@ docs: Everything about your tickets "unsubscribed_from_emails": false, "updated_at": 1719493070, "user_id": "3ecf64d0-9ed1-4e9f-88e1-da7d6e6782f3", - "utm_campaign": "intercom-link", - "utm_content": "banner", - "utm_medium": "email", - "utm_source": "Intercom", - "utm_term": "messenger", }, }, }, @@ -49565,7 +47053,6 @@ docs: Everything about your tickets "custom_attributes": { "key": "value", }, - "do_not_track": false, "email": "", "has_hard_bounced": false, "id": "667d61cc8a68186f43bafe95", @@ -49582,10 +47069,7 @@ docs: Everything about your tickets }, "marked_email_as_spam": false, "name": "Gareth Bale", - "owner_id": "5169261", - "phone": "555-555-5555", "pseudonym": "Indigo Ghost", - "referrer": "https://www.google.com/", "remote_created_at": 1719493068, "segments": { "segments": [ @@ -49614,11 +47098,6 @@ docs: Everything about your tickets "unsubscribed_from_emails": false, "updated_at": 1719493068, "user_id": "3ecf64d0-9ed1-4e9f-88e1-da7d6e6782f3", - "utm_campaign": "intercom-link", - "utm_content": "banner", - "utm_medium": "email", - "utm_source": "Intercom", - "utm_term": "messenger", }, }, }, @@ -49666,7 +47145,6 @@ docs: Everything about your tickets "custom_attributes": { "key": "value", }, - "do_not_track": false, "email": "", "has_hard_bounced": false, "id": "667d61cc8a68186f43bafe95", @@ -49683,10 +47161,7 @@ docs: Everything about your tickets }, "marked_email_as_spam": false, "name": "Gareth Bale", - "owner_id": "5169261", - "phone": "555-555-5555", "pseudonym": "Indigo Ghost", - "referrer": "https://www.google.com/", "remote_created_at": 1719493068, "segments": { "segments": [ @@ -49715,11 +47190,6 @@ docs: Everything about your tickets "unsubscribed_from_emails": false, "updated_at": 1719493068, "user_id": "3ecf64d0-9ed1-4e9f-88e1-da7d6e6782f3", - "utm_campaign": "intercom-link", - "utm_content": "banner", - "utm_medium": "email", - "utm_source": "Intercom", - "utm_term": "messenger", }, }, }, @@ -49783,12 +47253,8 @@ service: user_id: 3ecf64d0-9ed1-4e9f-88e1-da7d6e6782f3 anonymous: true email: '' - phone: 555-555-5555 - name: Jane Doe - pseudonym: Red Duck from Dublin avatar: type: avatar - image_url: https://example.com/avatar.png app_id: this_is_an_id677_that_should_be_at_least_ companies: type: company.list @@ -49830,7 +47296,6 @@ service: type: social_profile.list social_profiles: - social_profiles - owner_id: '5169261' unsubscribed_from_emails: false marked_email_as_spam: false has_hard_bounced: false @@ -49845,13 +47310,6 @@ service: - segments custom_attributes: key: value - referrer: https://www.google.com/ - utm_campaign: intercom-link - utm_content: banner - utm_medium: email - utm_source: Intercom - utm_term: messenger - do_not_track: false updateVisitor: path: /visitors method: PUT @@ -49891,7 +47349,6 @@ service: user_id: 3ecf64d0-9ed1-4e9f-88e1-da7d6e6782f3 anonymous: true email: '' - phone: 555-555-5555 name: Gareth Bale pseudonym: Indigo Ghost avatar: @@ -49939,7 +47396,6 @@ service: type: social_profile.list social_profiles: - social_profiles - owner_id: '5169261' unsubscribed_from_emails: false marked_email_as_spam: false has_hard_bounced: false @@ -49954,13 +47410,6 @@ service: - segments custom_attributes: key: value - referrer: https://www.google.com/ - utm_campaign: intercom-link - utm_content: banner - utm_medium: email - utm_source: Intercom - utm_term: messenger - do_not_track: false - name: visitor Not Found request: user_id: fail @@ -49972,7 +47421,6 @@ service: user_id: 3ecf64d0-9ed1-4e9f-88e1-da7d6e6782f3 anonymous: true email: '' - phone: 555-555-5555 name: Gareth Bale pseudonym: Indigo Ghost avatar: @@ -50020,7 +47468,6 @@ service: type: social_profile.list social_profiles: - social_profiles - owner_id: '5169261' unsubscribed_from_emails: false marked_email_as_spam: false has_hard_bounced: false @@ -50035,13 +47482,6 @@ service: - segments custom_attributes: key: value - referrer: https://www.google.com/ - utm_campaign: intercom-link - utm_content: banner - utm_medium: email - utm_source: Intercom - utm_term: messenger - do_not_track: false convertVisitor: path: /visitors/convert method: POST @@ -50090,48 +47530,19 @@ service: body: type: contact id: 667d61d08a68186f43bafea2 - external_id: f3b87a2e09d514c6c2e79b9a workspace_id: this_is_an_id683_that_should_be_at_least_ role: user email: foo@bar.com email_domain: example.com - phone: '+1123456789' formatted_phone: '+1123456789' - name: John Doe - owner_id: 123 has_hard_bounced: false marked_email_as_spam: false unsubscribed_from_emails: false created_at: 1719493072 updated_at: 1719493072 signed_up_at: 1719493072 - last_seen_at: 1571672154 - last_replied_at: 1571672154 - last_contacted_at: 1571672154 - last_email_opened_at: 1571672154 - last_email_clicked_at: 1571672154 - language_override: en - browser: Chrome - browser_version: 80.0.3987.132 - browser_language: en-US - os: Mac OS X - android_app_name: Intercom - android_app_version: 5.0.0 - android_device: Pixel 3 - android_os_version: '10' - android_sdk_version: '28' - android_last_seen_at: 1571672154 - ios_app_name: Intercom - ios_app_version: 5.0.0 - ios_device: iPhone 11 - ios_os_version: 13.3.1 - ios_sdk_version: 13.3.1 - ios_last_seen_at: 1571672154 custom_attributes: key: value - avatar: - type: avatar - image_url: https://example.org/128Wash.jpg tags: data: - type: note @@ -50154,9 +47565,6 @@ service: has_more: false location: type: location - country: Ireland - region: Dublin - city: Dublin social_profiles: data: - type: social_profile diff --git a/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi-docs/uploadcare.json b/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi-docs/uploadcare.json index 5773676cd25..d7619a2c760 100644 --- a/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi-docs/uploadcare.json +++ b/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi-docs/uploadcare.json @@ -3440,7 +3440,6 @@ Log.d("TAG", group.toString()) "body": { "cdn_url": "https://ucarecdn.com/0d712319-b970-4602-850c-bae1ced521a6~1/", "datetime_created": "2018-09-12T10:03:38Z", - "datetime_stored": "2024-01-15T09:30:00Z", "files": [ { "content_info": { @@ -3642,7 +3641,6 @@ Log.d("TAG", group.toString()) "body": { "cdn_url": "https://ucarecdn.com/0d712319-b970-4602-850c-bae1ced521a6~1/", "datetime_created": "2018-09-12T10:03:38Z", - "datetime_stored": "2024-01-15T09:30:00Z", "files": [ { "content_info": { @@ -3800,7 +3798,6 @@ service: body: id: 0d712319-b970-4602-850c-bae1ced521a6~1 datetime_created: '2018-09-12T10:03:38Z' - datetime_stored: '2024-01-15T09:30:00Z' files_count: 1 cdn_url: https://ucarecdn.com/0d712319-b970-4602-850c-bae1ced521a6~1/ url: >- @@ -3982,7 +3979,6 @@ service: body: id: 0d712319-b970-4602-850c-bae1ced521a6~1 datetime_created: '2018-09-12T10:03:38Z' - datetime_stored: '2024-01-15T09:30:00Z' files_count: 1 cdn_url: https://ucarecdn.com/0d712319-b970-4602-850c-bae1ced521a6~1/ url: >- diff --git a/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi-docs/valtown.json b/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi-docs/valtown.json index 89e122cf6a8..9fe9e1bf06a 100644 --- a/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi-docs/valtown.json +++ b/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi-docs/valtown.json @@ -3323,7 +3323,6 @@ docs: Search "columns": [ "id", ], - "lastInsertRowid": "lastInsertRowid", "rows": [ [ 1, @@ -3694,7 +3693,6 @@ service: rows: - - 1 rowsAffected: 0 - lastInsertRowid: lastInsertRowid source: openapi: ../openapi.yml display-name: sqlite diff --git a/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi-docs/webflow.json b/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi-docs/webflow.json index 70c050afdda..40b3411d3d4 100644 --- a/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi-docs/webflow.json +++ b/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi-docs/webflow.json @@ -9458,7 +9458,6 @@ service: { "displayName": "660d83ce30f3a599ddb0bdb3_Screenshot%202024-03-20%20at%209.03.24%E2%80%AFPM-p-500.png", "format": "png", - "height": 900, "hostedUrl": "https://s3.amazonaws.com/webflow-prod-assets/6258612d1ee792848f805dcf/660d83ce30f3a599ddb0bdb3_Screenshot%202024-03-20%20at%209.03.24%E2%80%AFPM-p-500.png", "originalFileName": "Screenshot%202024-03-20%20at%209.03.24%E2%80%AFPM-p-500.png", "quality": 100, @@ -9516,7 +9515,6 @@ service: "displayName": "emoji icons", "id": "6390c49774a71f0e3c1a08ee", "lastUpdated": "2022-12-07T16:51:37Z", - "parentFolder": "6390c49774a71f99f21a08eb", "siteId": "6390c49674a71f84b51a08d8", }, ], @@ -10604,7 +10602,6 @@ service: 660d83ce30f3a599ddb0bdb3_Screenshot%202024-03-20%20at%209.03.24%E2%80%AFPM-p-500.png format: png width: 500 - height: 900 quality: 100 altText: A red chair create: @@ -10834,7 +10831,6 @@ service: assetFolders: - id: 6390c49774a71f0e3c1a08ee displayName: emoji icons - parentFolder: 6390c49774a71f99f21a08eb assets: - 63e5889e7fe4eafa7384cea4 - 659595234426a9fcbad57043 @@ -10978,7 +10974,6 @@ service: "fields": [ { "displayName": "Name", - "helpText": "helpText", "id": "23cc2d952d4e4631ffd4345d2743db4e", "isEditable": true, "isRequired": true, @@ -11124,7 +11119,6 @@ service: "fields": [ { "displayName": "Name", - "helpText": "helpText", "id": "23cc2d952d4e4631ffd4345d2743db4e", "isEditable": true, "isRequired": true, @@ -11760,7 +11754,6 @@ service: type: PlainText slug: name displayName: Name - helpText: helpText get: path: /collections/{collection_id} method: GET @@ -11802,7 +11795,6 @@ service: type: PlainText slug: name displayName: Name - helpText: helpText delete-collection: path: /collections/{collection_id} method: DELETE @@ -15654,7 +15646,6 @@ service: }, "660d5bcc9c0772150459dfb1": { "displayName": "Name", - "placeholder": "Enter your email", "type": "Plain", "userVisible": true, }, @@ -15665,7 +15656,6 @@ service: "pageId": "6419db964a9c43f6a3af6348", "pageName": "Home", "responseSettings": { - "redirectAction": "POST https://example.com", "redirectMethod": "GET", "redirectUrl": "https://example.com", "sendEmailConfirmation": true, @@ -16993,7 +16983,6 @@ service: 660d5bcc9c0772150459dfb1: displayName: Name type: Plain - placeholder: Enter your email userVisible: true 589a331aa51e760df7ccb89d: displayName: Email @@ -17003,7 +16992,6 @@ service: responseSettings: redirectUrl: https://example.com redirectMethod: GET - redirectAction: POST https://example.com sendEmailConfirmation: true id: 589a331aa51e760df7ccb89e siteId: 580e63e98c9a982ac9b8b741 @@ -18323,14 +18311,6 @@ Required scope | `ecommerce:read` "orderComment": "Please gift wrap with a personal note saying "Happy Birthday, Ford! 🎉", "orderId": "fc7-128", "paymentProcessor": "stripe", - "paypalDetails": { - "captureId": "qwe123rty456uio789p", - "disputeId": "zxcvbnm987poiuytrewq", - "orderId": "1a2b3c4d5e6f7g8h9i0j", - "payerId": "9k8j7i6h5g4f3e2d1c0b", - "refundId": "abcde12345fghij67890", - "refundReason": "Customer requested refund", - }, "purchasedItems": [ { "count": 1, @@ -18416,12 +18396,10 @@ Required scope | `ecommerce:read` "stripeDetails": { "chargeId": "ch_3OzmzDJYFi4lcbXW1ndkkrH2", "customerId": "cus_PpRsNHwWdUoRKR", - "disputeId": "disputeId", "paymentIntentId": "pi_3OzmzDJYFi4lcbXW1hTBW6ft", "paymentMethod": "pm_1OzmzBJYFi4lcbXWHKNdXU7j", "refundId": "re_3OzmzDJYFi4lcbXW1kFAmlBk", "refundReason": "fraudulent", - "subscriptionId": "sub_1J6xwG2eZvKYlo2CXu9Zt0Tn", }, "totals": { "extras": [ @@ -18570,9 +18548,6 @@ Required scope | `ecommerce:read` "unit": "USD", "value": "5892", }, - "disputeLastStatus": "warning_needs_response", - "disputeUpdatedOn": "2018-12-03T22:06:15Z", - "disputedOn": "2018-12-03T22:06:15Z", "downloadFiles": [ { "id": "5e9a5eba75e0ac242e1b6f64", @@ -18580,7 +18555,6 @@ Required scope | `ecommerce:read` "url": "https://webflow.com/dashboard/download-digital-product?payload=5d93ba5e38c6b0160ab711d3;e7634a;5eb1aac72912ec06f561278c;5e9a5eba75e0ac242e1b6f63:ka2nehxy:4a1ee0a632feaab94294350087215ed89533f2f530903e3b933b638940e921aa", }, ], - "fulfilledOn": "2018-12-03T22:06:15Z", "hasDownloads": false, "isCustomerDeleted": false, "isShippingRequired": false, @@ -18595,14 +18569,6 @@ Required scope | `ecommerce:read` "orderComment": "Please gift wrap with a personal note saying "Happy Birthday, Ford! 🎉", "orderId": "7c1-9fd", "paymentProcessor": "stripe", - "paypalDetails": { - "captureId": "qwe123rty456uio789p", - "disputeId": "zxcvbnm987poiuytrewq", - "orderId": "1a2b3c4d5e6f7g8h9i0j", - "payerId": "9k8j7i6h5g4f3e2d1c0b", - "refundId": "abcde12345fghij67890", - "refundReason": "Customer requested refund", - }, "purchasedItems": [ { "count": 2, @@ -18659,7 +18625,6 @@ Required scope | `ecommerce:read` }, ], "purchasedItemsCount": 3, - "refundedOn": "2018-12-03T22:06:15Z", "shippingAddress": { "addressee": "Arthur Dent", "city": "New York", @@ -18759,9 +18724,6 @@ Required scope | `ecommerce:read` "unit": "USD", "value": "5892", }, - "disputeLastStatus": "warning_needs_response", - "disputeUpdatedOn": "2018-12-03T22:06:15Z", - "disputedOn": "2018-12-03T22:06:15Z", "downloadFiles": [ { "id": "5e9a5eba75e0ac242e1b6f64", @@ -18769,7 +18731,6 @@ Required scope | `ecommerce:read` "url": "https://webflow.com/dashboard/download-digital-product?payload=5d93ba5e38c6b0160ab711d3;e7634a;5eb1aac72912ec06f561278c;5e9a5eba75e0ac242e1b6f63:ka2nehxy:4a1ee0a632feaab94294350087215ed89533f2f530903e3b933b638940e921aa", }, ], - "fulfilledOn": "2018-12-03T22:06:15Z", "hasDownloads": false, "isCustomerDeleted": false, "isShippingRequired": true, @@ -18784,14 +18745,6 @@ Required scope | `ecommerce:read` "orderComment": "", "orderId": "fc7-128", "paymentProcessor": "stripe", - "paypalDetails": { - "captureId": "qwe123rty456uio789p", - "disputeId": "zxcvbnm987poiuytrewq", - "orderId": "1a2b3c4d5e6f7g8h9i0j", - "payerId": "9k8j7i6h5g4f3e2d1c0b", - "refundId": "abcde12345fghij67890", - "refundReason": "Customer requested refund", - }, "purchasedItems": [ { "count": 1, @@ -19078,14 +19031,6 @@ Required scope | `ecommerce:write` "orderComment": "Please gift wrap with a personal note saying "Happy Birthday, Ford! 🎉", "orderId": "fc7-128", "paymentProcessor": "stripe", - "paypalDetails": { - "captureId": "qwe123rty456uio789p", - "disputeId": "zxcvbnm987poiuytrewq", - "orderId": "1a2b3c4d5e6f7g8h9i0j", - "payerId": "9k8j7i6h5g4f3e2d1c0b", - "refundId": "abcde12345fghij67890", - "refundReason": "Customer requested refund", - }, "purchasedItems": [ { "count": 1, @@ -19171,12 +19116,10 @@ Required scope | `ecommerce:write` "stripeDetails": { "chargeId": "ch_3OzmzDJYFi4lcbXW1ndkkrH2", "customerId": "cus_PpRsNHwWdUoRKR", - "disputeId": "disputeId", "paymentIntentId": "pi_3OzmzDJYFi4lcbXW1hTBW6ft", "paymentMethod": "pm_1OzmzBJYFi4lcbXWHKNdXU7j", "refundId": "re_3OzmzDJYFi4lcbXW1kFAmlBk", "refundReason": "fraudulent", - "subscriptionId": "sub_1J6xwG2eZvKYlo2CXu9Zt0Tn", }, "totals": { "extras": [ @@ -19368,14 +19311,6 @@ Required scope | `ecommerce:write` "orderComment": "Please gift wrap with a personal note saying "Happy Birthday, Ford! 🎉", "orderId": "fc7-128", "paymentProcessor": "stripe", - "paypalDetails": { - "captureId": "qwe123rty456uio789p", - "disputeId": "zxcvbnm987poiuytrewq", - "orderId": "1a2b3c4d5e6f7g8h9i0j", - "payerId": "9k8j7i6h5g4f3e2d1c0b", - "refundId": "abcde12345fghij67890", - "refundReason": "Customer requested refund", - }, "purchasedItems": [ { "count": 1, @@ -19461,12 +19396,10 @@ Required scope | `ecommerce:write` "stripeDetails": { "chargeId": "ch_3OzmzDJYFi4lcbXW1ndkkrH2", "customerId": "cus_PpRsNHwWdUoRKR", - "disputeId": "disputeId", "paymentIntentId": "pi_3OzmzDJYFi4lcbXW1hTBW6ft", "paymentMethod": "pm_1OzmzBJYFi4lcbXWHKNdXU7j", "refundId": "re_3OzmzDJYFi4lcbXW1kFAmlBk", "refundReason": "fraudulent", - "subscriptionId": "sub_1J6xwG2eZvKYlo2CXu9Zt0Tn", }, "totals": { "extras": [ @@ -19670,14 +19603,6 @@ Required scope | `ecommerce:write` "orderComment": "Please gift wrap with a personal note saying "Happy Birthday, Ford! 🎉", "orderId": "fc7-128", "paymentProcessor": "stripe", - "paypalDetails": { - "captureId": "qwe123rty456uio789p", - "disputeId": "zxcvbnm987poiuytrewq", - "orderId": "1a2b3c4d5e6f7g8h9i0j", - "payerId": "9k8j7i6h5g4f3e2d1c0b", - "refundId": "abcde12345fghij67890", - "refundReason": "Customer requested refund", - }, "purchasedItems": [ { "count": 1, @@ -19763,12 +19688,10 @@ Required scope | `ecommerce:write` "stripeDetails": { "chargeId": "ch_3OzmzDJYFi4lcbXW1ndkkrH2", "customerId": "cus_PpRsNHwWdUoRKR", - "disputeId": "disputeId", "paymentIntentId": "pi_3OzmzDJYFi4lcbXW1hTBW6ft", "paymentMethod": "pm_1OzmzBJYFi4lcbXWHKNdXU7j", "refundId": "re_3OzmzDJYFi4lcbXW1kFAmlBk", "refundReason": "fraudulent", - "subscriptionId": "sub_1J6xwG2eZvKYlo2CXu9Zt0Tn", }, "totals": { "extras": [ @@ -19960,14 +19883,6 @@ Required scope | `ecommerce:write` "orderComment": "Please gift wrap with a personal note saying "Happy Birthday, Ford! 🎉", "orderId": "fc7-128", "paymentProcessor": "stripe", - "paypalDetails": { - "captureId": "qwe123rty456uio789p", - "disputeId": "zxcvbnm987poiuytrewq", - "orderId": "1a2b3c4d5e6f7g8h9i0j", - "payerId": "9k8j7i6h5g4f3e2d1c0b", - "refundId": "abcde12345fghij67890", - "refundReason": "Customer requested refund", - }, "purchasedItems": [ { "count": 1, @@ -20053,12 +19968,10 @@ Required scope | `ecommerce:write` "stripeDetails": { "chargeId": "ch_3OzmzDJYFi4lcbXW1ndkkrH2", "customerId": "cus_PpRsNHwWdUoRKR", - "disputeId": "disputeId", "paymentIntentId": "pi_3OzmzDJYFi4lcbXW1hTBW6ft", "paymentMethod": "pm_1OzmzBJYFi4lcbXWHKNdXU7j", "refundId": "re_3OzmzDJYFi4lcbXW1kFAmlBk", "refundReason": "fraudulent", - "subscriptionId": "sub_1J6xwG2eZvKYlo2CXu9Zt0Tn", }, "totals": { "extras": [ @@ -34286,11 +34199,6 @@ service: Please gift wrap with a personal note saying "Happy Birthday, Ford! 🎉 acceptedOn: '2024-04-10T13:16:21Z' - fulfilledOn: '2018-12-03T22:06:15Z' - refundedOn: '2018-12-03T22:06:15Z' - disputedOn: '2018-12-03T22:06:15Z' - disputeUpdatedOn: '2018-12-03T22:06:15Z' - disputeLastStatus: warning_needs_response customerPaid: unit: USD value: '5892' @@ -34406,13 +34314,6 @@ service: expires: year: 2025 month: 4 - paypalDetails: - orderId: 1a2b3c4d5e6f7g8h9i0j - payerId: 9k8j7i6h5g4f3e2d1c0b - captureId: qwe123rty456uio789p - refundId: abcde12345fghij67890 - refundReason: Customer requested refund - disputeId: zxcvbnm987poiuytrewq customData: - key: value metadata: @@ -34440,11 +34341,7 @@ service: comment: Example comment to myself orderComment: '' acceptedOn: '2024-03-29T21:29:21Z' - fulfilledOn: '2018-12-03T22:06:15Z' refundedOn: '2024-04-08T18:25:04Z' - disputedOn: '2018-12-03T22:06:15Z' - disputeUpdatedOn: '2018-12-03T22:06:15Z' - disputeLastStatus: warning_needs_response customerPaid: unit: USD value: '5892' @@ -34564,13 +34461,6 @@ service: expires: year: 2024 month: 4 - paypalDetails: - orderId: 1a2b3c4d5e6f7g8h9i0j - payerId: 9k8j7i6h5g4f3e2d1c0b - captureId: qwe123rty456uio789p - refundId: abcde12345fghij67890 - refundReason: Customer requested refund - disputeId: zxcvbnm987poiuytrewq customData: - key: value metadata: @@ -34777,12 +34667,10 @@ service: length: 40 purchasedItemsCount: 2 stripeDetails: - subscriptionId: sub_1J6xwG2eZvKYlo2CXu9Zt0Tn paymentMethod: pm_1OzmzBJYFi4lcbXWHKNdXU7j paymentIntentId: pi_3OzmzDJYFi4lcbXW1hTBW6ft customerId: cus_PpRsNHwWdUoRKR chargeId: ch_3OzmzDJYFi4lcbXW1ndkkrH2 - disputeId: disputeId refundId: re_3OzmzDJYFi4lcbXW1kFAmlBk refundReason: fraudulent stripeCard: @@ -34792,13 +34680,6 @@ service: expires: year: 2024 month: 4 - paypalDetails: - orderId: 1a2b3c4d5e6f7g8h9i0j - payerId: 9k8j7i6h5g4f3e2d1c0b - captureId: qwe123rty456uio789p - refundId: abcde12345fghij67890 - refundReason: Customer requested refund - disputeId: zxcvbnm987poiuytrewq customData: - key: value metadata: @@ -35020,12 +34901,10 @@ service: length: 40 purchasedItemsCount: 2 stripeDetails: - subscriptionId: sub_1J6xwG2eZvKYlo2CXu9Zt0Tn paymentMethod: pm_1OzmzBJYFi4lcbXWHKNdXU7j paymentIntentId: pi_3OzmzDJYFi4lcbXW1hTBW6ft customerId: cus_PpRsNHwWdUoRKR chargeId: ch_3OzmzDJYFi4lcbXW1ndkkrH2 - disputeId: disputeId refundId: re_3OzmzDJYFi4lcbXW1kFAmlBk refundReason: fraudulent stripeCard: @@ -35035,13 +34914,6 @@ service: expires: year: 2024 month: 4 - paypalDetails: - orderId: 1a2b3c4d5e6f7g8h9i0j - payerId: 9k8j7i6h5g4f3e2d1c0b - captureId: qwe123rty456uio789p - refundId: abcde12345fghij67890 - refundReason: Customer requested refund - disputeId: zxcvbnm987poiuytrewq customData: - key: value metadata: @@ -35252,12 +35124,10 @@ service: length: 40 purchasedItemsCount: 2 stripeDetails: - subscriptionId: sub_1J6xwG2eZvKYlo2CXu9Zt0Tn paymentMethod: pm_1OzmzBJYFi4lcbXWHKNdXU7j paymentIntentId: pi_3OzmzDJYFi4lcbXW1hTBW6ft customerId: cus_PpRsNHwWdUoRKR chargeId: ch_3OzmzDJYFi4lcbXW1ndkkrH2 - disputeId: disputeId refundId: re_3OzmzDJYFi4lcbXW1kFAmlBk refundReason: fraudulent stripeCard: @@ -35267,13 +35137,6 @@ service: expires: year: 2024 month: 4 - paypalDetails: - orderId: 1a2b3c4d5e6f7g8h9i0j - payerId: 9k8j7i6h5g4f3e2d1c0b - captureId: qwe123rty456uio789p - refundId: abcde12345fghij67890 - refundReason: Customer requested refund - disputeId: zxcvbnm987poiuytrewq customData: - key: value metadata: @@ -35474,12 +35337,10 @@ service: length: 40 purchasedItemsCount: 2 stripeDetails: - subscriptionId: sub_1J6xwG2eZvKYlo2CXu9Zt0Tn paymentMethod: pm_1OzmzBJYFi4lcbXWHKNdXU7j paymentIntentId: pi_3OzmzDJYFi4lcbXW1hTBW6ft customerId: cus_PpRsNHwWdUoRKR chargeId: ch_3OzmzDJYFi4lcbXW1ndkkrH2 - disputeId: disputeId refundId: re_3OzmzDJYFi4lcbXW1kFAmlBk refundReason: fraudulent stripeCard: @@ -35489,13 +35350,6 @@ service: expires: year: 2024 month: 4 - paypalDetails: - orderId: 1a2b3c4d5e6f7g8h9i0j - payerId: 9k8j7i6h5g4f3e2d1c0b - captureId: qwe123rty456uio789p - refundId: abcde12345fghij67890 - refundReason: Customer requested refund - disputeId: zxcvbnm987poiuytrewq customData: - key: value metadata: @@ -35707,12 +35561,10 @@ service: length: 40 purchasedItemsCount: 2 stripeDetails: - subscriptionId: sub_1J6xwG2eZvKYlo2CXu9Zt0Tn paymentMethod: pm_1OzmzBJYFi4lcbXWHKNdXU7j paymentIntentId: pi_3OzmzDJYFi4lcbXW1hTBW6ft customerId: cus_PpRsNHwWdUoRKR chargeId: ch_3OzmzDJYFi4lcbXW1ndkkrH2 - disputeId: disputeId refundId: re_3OzmzDJYFi4lcbXW1kFAmlBk refundReason: fraudulent stripeCard: @@ -35722,13 +35574,6 @@ service: expires: year: 2024 month: 4 - paypalDetails: - orderId: 1a2b3c4d5e6f7g8h9i0j - payerId: 9k8j7i6h5g4f3e2d1c0b - captureId: qwe123rty456uio789p - refundId: abcde12345fghij67890 - refundReason: Customer requested refund - disputeId: zxcvbnm987poiuytrewq customData: - key: value metadata: @@ -36277,7 +36122,6 @@ webhooks: "body": { "archived": false, "canBranch": true, - "collectionId": "6390c49774a71f12831a08e3", "createdOn": "2024-03-11T10:42:00Z", "draft": false, "id": "6596da6045e56dee495bcbba", @@ -36290,7 +36134,6 @@ webhooks: "title": "Explore the Cosmos with The Ultimate Guide", "titleCopied": false, }, - "parentId": "6419db964a9c435aa3af6251", "publishedPath": "/en-us/guide-to-the-galaxy", "seo": { "description": "Everything you need to know about the galaxy, from avoiding Vogon poetry to the importance of towels.", @@ -36354,7 +36197,6 @@ webhooks: { "archived": false, "canBranch": true, - "collectionId": "6390c49774a71f12831a08e3", "createdOn": "2024-03-11T10:42:00Z", "draft": false, "id": "6596da6045e56dee495bcbba", @@ -36367,7 +36209,6 @@ webhooks: "title": "Explore the Cosmos with The Ultimate Guide", "titleCopied": false, }, - "parentId": "6419db964a9c435aa3af6251", "publishedPath": "/en-us/guide-to-the-galaxy", "seo": { "description": "Everything you need to know about the galaxy, from avoiding Vogon poetry to the importance of towels.", @@ -36380,7 +36221,6 @@ webhooks: { "archived": false, "canBranch": true, - "collectionId": "6390c49774a71f12831a08e3", "createdOn": "2024-05-25T09:00:00Z", "draft": false, "id": "6596da6045e56dee495bcbad", @@ -36393,7 +36233,6 @@ webhooks: "title": "Towel Day - Don't Panic", "titleCopied": false, }, - "parentId": "6419db964a9c435aa3af6251", "publishedPath": "/en-us/towel-day", "seo": { "description": "A guide to celebrating Towel Day, in honor of the most massively useful thing an interstellar hitchhiker can have.", @@ -36484,7 +36323,6 @@ webhooks: "body": { "archived": false, "canBranch": true, - "collectionId": "6390c49774a71f12831a08e3", "createdOn": "2024-03-11T10:42:00Z", "draft": false, "id": "6596da6045e56dee495bcbba", @@ -36497,7 +36335,6 @@ webhooks: "title": "Explore the Cosmos with The Ultimate Guide", "titleCopied": false, }, - "parentId": "6419db964a9c435aa3af6251", "publishedPath": "/en-us/guide-to-the-galaxy", "seo": { "description": "Everything you need to know about the galaxy, from avoiding Vogon poetry to the importance of towels.", @@ -37971,8 +37808,6 @@ service: siteId: 6258612d1ee792848f805dcf title: Guide to the Galaxy slug: guide-to-the-galaxy - parentId: 6419db964a9c435aa3af6251 - collectionId: 6390c49774a71f12831a08e3 createdOn: '2024-03-11T10:42:00Z' lastUpdated: '2024-03-11T10:42:42Z' archived: false @@ -37997,8 +37832,6 @@ service: siteId: 6258612d1ee792848f805dcf title: Towel Day Celebrations slug: towel-day - parentId: 6419db964a9c435aa3af6251 - collectionId: 6390c49774a71f12831a08e3 createdOn: '2024-05-25T09:00:00Z' lastUpdated: '2024-05-25T09:42:00Z' archived: false @@ -38067,8 +37900,6 @@ service: siteId: 6258612d1ee792848f805dcf title: Guide to the Galaxy slug: guide-to-the-galaxy - parentId: 6419db964a9c435aa3af6251 - collectionId: 6390c49774a71f12831a08e3 createdOn: '2024-03-11T10:42:00Z' lastUpdated: '2024-03-11T10:42:42Z' archived: false @@ -38161,8 +37992,6 @@ service: siteId: 6258612d1ee792848f805dcf title: Guide to the Galaxy slug: guide-to-the-galaxy - parentId: 6419db964a9c435aa3af6251 - collectionId: 6390c49774a71f12831a08e3 createdOn: '2024-03-11T10:42:00Z' lastUpdated: '2024-03-11T10:42:42Z' archived: false @@ -46220,7 +46049,6 @@ service: "displayName": "Alert", "hostedLocation": "https://cdn.webflow.io/.../alert-0.0.1.js", "id": "alert", - "integrityHash": "integrityHash", "lastUpdated": "lastUpdated", "version": "0.0.1", }, @@ -46230,7 +46058,6 @@ service: "displayName": "Alert", "hostedLocation": "https://cdn.webflow.io/.../alert-0.0.2.js", "id": "alert", - "integrityHash": "integrityHash", "lastUpdated": "lastUpdated", "version": "0.0.2", }, @@ -46382,7 +46209,6 @@ service: "displayName": "Alert", "hostedLocation": "https://uploads-ssl.webflow.com/6258612d1ee792848f805dcf%2F64b6c769ff52ba6c3d904a91%2F660d6e15b3d1696f2d2b1447%2Falert-0.0.1.js", "id": "alert", - "integrityHash": "integrityHash", "lastUpdated": "lastUpdated", "version": "0.0.1", }, @@ -46744,7 +46570,6 @@ service: canCopy: false displayName: Alert hostedLocation: https://cdn.webflow.io/.../alert-0.0.1.js - integrityHash: integrityHash createdOn: '2022-10-26T00:28:54.191Z' lastUpdated: lastUpdated version: 0.0.1 @@ -46752,7 +46577,6 @@ service: canCopy: false displayName: Alert hostedLocation: https://cdn.webflow.io/.../alert-0.0.2.js - integrityHash: integrityHash createdOn: '2022-10-26T00:28:54.191Z' lastUpdated: lastUpdated version: 0.0.2 @@ -46917,7 +46741,6 @@ service: displayName: Alert hostedLocation: >- https://uploads-ssl.webflow.com/6258612d1ee792848f805dcf%2F64b6c769ff52ba6c3d904a91%2F660d6e15b3d1696f2d2b1447%2Falert-0.0.1.js - integrityHash: integrityHash createdOn: '2022-10-26T00:28:54.191Z' lastUpdated: lastUpdated version: 0.0.1 @@ -47164,7 +46987,6 @@ service: }, ], }, - "parentFolderId": "1as2d3f4g5h6j7k8l9z0x1c2v3b4n5m6", "previewUrl": "https://d1otoma47x30pg.cloudfront.net/42e63e98c9a982ac9b8b742/198110121200.png", "shortName": "paranoid-android", "timeZone": "DeepSpace/Depression", @@ -47204,7 +47026,6 @@ service: }, ], }, - "parentFolderId": "1as2d3f4g5h6j7k8l9z0x1c2v3b4n5m6", "previewUrl": "https://d1otoma47x30pg.cloudfront.net/42e63e98c9a982ac9b8b743/198210121200.png", "shortName": "vogon-poetry", "timeZone": "Vogsphere/PoetryHall", @@ -48186,7 +48007,6 @@ service: previewUrl: >- https://d1otoma47x30pg.cloudfront.net/42e63e98c9a982ac9b8b742/198110121200.png timeZone: DeepSpace/Depression - parentFolderId: 1as2d3f4g5h6j7k8l9z0x1c2v3b4n5m6 customDomains: - id: 589a331aa51e760df7ccb89f url: marvin.blog @@ -48217,7 +48037,6 @@ service: previewUrl: >- https://d1otoma47x30pg.cloudfront.net/42e63e98c9a982ac9b8b743/198210121200.png timeZone: Vogsphere/PoetryHall - parentFolderId: 1as2d3f4g5h6j7k8l9z0x1c2v3b4n5m6 customDomains: - id: 589a331aa51e760df7ccb8a0 url: vogonpoetry.galaxy @@ -48436,11 +48255,6 @@ webhooks: "event": "cms_collection", "id": "654c16c7b229e56bcf26872d", "lastUpdated": "2023-11-08T23:16:23Z", - "newValue": "newValue", - "payload": { - "key": "value", - }, - "previousValue": "previousValue", "resourceId": "654c16c7b229e56bcf26870c", "resourceName": "foo-bar", "resourceOperation": "CREATED", @@ -48686,10 +48500,6 @@ service: displayName: John Doe resourceId: 654c16c7b229e56bcf26870c resourceName: foo-bar - newValue: newValue - previousValue: previousValue - payload: - key: value pagination: limit: 25 offset: 0 @@ -48823,7 +48633,6 @@ service: { "createdOn": "2024-04-03T16:49:15Z", "lastUpdated": "2024-04-03T16:49:15Z", - "pageId": "pageId", "scripts": [ { "attributes": { @@ -49668,7 +49477,6 @@ service: body: blocks: - siteId: 6258612d1ee792848f805dcf - pageId: pageId type: site scripts: - id: chartjs @@ -52979,9 +52787,6 @@ webhooks: "response": { "body": { "createdOn": "2022-11-08T23:59:28Z", - "filter": { - "name": "My Form", - }, "id": "582266e0cd48de0f0e3c6d8b", "lastTriggered": "2023-02-08T23:59:28Z", "siteId": "562ac0395358780a1f5e6fbd", @@ -53097,9 +52902,6 @@ webhooks: "response": { "body": { "createdOn": "2022-11-08T23:59:28Z", - "filter": { - "name": "My Form", - }, "id": "582266e0cd48de0f0e3c6d8b", "lastTriggered": "2023-02-08T23:59:28Z", "siteId": "562ac0395358780a1f5e6fbd", @@ -54311,8 +54113,6 @@ service: url: https://webhook.site/7f7f7f7f-7f7f-7f7f-7f7f-7f7f7f7f7f7f workspaceId: 4f4e46fd476ea8c507000001 siteId: 562ac0395358780a1f5e6fbd - filter: - name: My Form lastTriggered: '2023-02-08T23:59:28Z' createdOn: '2022-11-08T23:59:28Z' get: @@ -54346,8 +54146,6 @@ service: url: https://webhook.site/7f7f7f7f-7f7f-7f7f-7f7f-7f7f7f7f7f7f workspaceId: 4f4e46fd476ea8c507000001 siteId: 562ac0395358780a1f5e6fbd - filter: - name: My Form lastTriggered: '2023-02-08T23:59:28Z' createdOn: '2022-11-08T23:59:28Z' delete: diff --git a/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi-ir/aries.json b/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi-ir/aries.json index 9827abc0503..c8e236c0355 100644 --- a/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi-ir/aries.json +++ b/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi-ir/aries.json @@ -302,86 +302,7 @@ "headers": [], "response": { "value": { - "properties": { - "result": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "description": { - "value": { - "value": "This menu presents options", - "type": "string" - }, - "type": "primitive" - }, - "errormsg": { - "value": { - "value": "Error: item not found", - "type": "string" - }, - "type": "primitive" - }, - "options": { - "value": [ - { - "properties": { - "description": { - "value": { - "value": "Window display preferences", - "type": "string" - }, - "type": "primitive" - }, - "disabled": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "window_prefs", - "type": "string" - }, - "type": "primitive" - }, - "title": { - "value": { - "value": "Window Preferences", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "title": { - "value": { - "value": "My Menu", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - }, + "properties": {}, "type": "object" }, "type": "withoutStreaming" @@ -4177,180 +4098,6 @@ } }, "type": "object" - }, - "txn": { - "properties": { - "_type": { - "value": { - "value": "101", - "type": "string" - }, - "type": "primitive" - }, - "connection_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "created_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "endorser_write_txn": { - "value": { - "value": true, - "type": "boolean" - }, - "type": "primitive" - }, - "formats": { - "value": [ - { - "value": [ - { - "key": { - "value": "attach_id", - "type": "string" - }, - "value": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - } - }, - { - "key": { - "value": "format", - "type": "string" - }, - "value": { - "value": { - "value": "dif/endorse-transaction/request@v1.0", - "type": "string" - }, - "type": "primitive" - } - } - ], - "type": "map" - }, - { - "value": [ - { - "key": { - "value": "attach_id", - "type": "string" - }, - "value": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - } - }, - { - "key": { - "value": "format", - "type": "string" - }, - "value": { - "value": { - "value": "dif/endorse-transaction/request@v1.0", - "type": "string" - }, - "type": "primitive" - } - } - ], - "type": "map" - } - ], - "type": "array" - }, - "messages_attach": { - "value": [ - { - "properties": {}, - "type": "object" - }, - { - "properties": {}, - "type": "object" - } - ], - "type": "array" - }, - "signature_request": { - "value": [ - { - "properties": {}, - "type": "object" - }, - { - "properties": {}, - "type": "object" - } - ], - "type": "array" - }, - "signature_response": { - "value": [ - { - "properties": {}, - "type": "object" - }, - { - "properties": {}, - "type": "object" - } - ], - "type": "array" - }, - "state": { - "value": { - "value": "active", - "type": "string" - }, - "type": "primitive" - }, - "thread_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "trace": { - "value": { - "value": true, - "type": "boolean" - }, - "type": "primitive" - }, - "transaction_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "updated_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" } }, "type": "object" @@ -4688,126 +4435,6 @@ ], "type": "map" }, - "value": { - "properties": { - "primary": { - "properties": { - "n": { - "value": { - "value": "0", - "type": "string" - }, - "type": "primitive" - }, - "rctxt": { - "value": { - "value": "0", - "type": "string" - }, - "type": "primitive" - }, - "s": { - "value": { - "value": "0", - "type": "string" - }, - "type": "primitive" - }, - "z": { - "value": { - "value": "0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "revocation": { - "properties": { - "g": { - "value": { - "value": "1 1F14F&ECB578F 2 095E45DDF417D", - "type": "string" - }, - "type": "primitive" - }, - "g_dash": { - "value": { - "value": "1 1D64716fCDC00C 1 0C781960FA66E3D3 2 095E45DDF417D", - "type": "string" - }, - "type": "primitive" - }, - "h": { - "value": { - "value": "1 16675DAE54BFAE8 2 095E45DD417D", - "type": "string" - }, - "type": "primitive" - }, - "h0": { - "value": { - "value": "1 21E5EF9476EAF18 2 095E45DDF417D", - "type": "string" - }, - "type": "primitive" - }, - "h1": { - "value": { - "value": "1 236D1D99236090 2 095E45DDF417D", - "type": "string" - }, - "type": "primitive" - }, - "h2": { - "value": { - "value": "1 1C3AE8D1F1E277 2 095E45DDF417D", - "type": "string" - }, - "type": "primitive" - }, - "h_cap": { - "value": { - "value": "1 1B2A32CF3167 1 2490FEBF6EE55 1 0000000000000000", - "type": "string" - }, - "type": "primitive" - }, - "htilde": { - "value": { - "value": "1 1D8549E8C0F8 2 095E45DDF417D", - "type": "string" - }, - "type": "primitive" - }, - "pk": { - "value": { - "value": "1 142CD5E5A7DC 1 153885BD903312 2 095E45DDF417D", - "type": "string" - }, - "type": "primitive" - }, - "u": { - "value": { - "value": "1 0C430AAB2B4710 1 1CB3A0932EE7E 1 0000000000000000", - "type": "string" - }, - "type": "primitive" - }, - "y": { - "value": { - "value": "1 153558BD903312 2 095E45DDF417D 1 0000000000000000", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - }, - "type": "object" - }, "ver": { "value": { "value": "1.0", @@ -4947,126 +4574,6 @@ ], "type": "map" }, - "value": { - "properties": { - "primary": { - "properties": { - "n": { - "value": { - "value": "0", - "type": "string" - }, - "type": "primitive" - }, - "rctxt": { - "value": { - "value": "0", - "type": "string" - }, - "type": "primitive" - }, - "s": { - "value": { - "value": "0", - "type": "string" - }, - "type": "primitive" - }, - "z": { - "value": { - "value": "0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "revocation": { - "properties": { - "g": { - "value": { - "value": "1 1F14F&ECB578F 2 095E45DDF417D", - "type": "string" - }, - "type": "primitive" - }, - "g_dash": { - "value": { - "value": "1 1D64716fCDC00C 1 0C781960FA66E3D3 2 095E45DDF417D", - "type": "string" - }, - "type": "primitive" - }, - "h": { - "value": { - "value": "1 16675DAE54BFAE8 2 095E45DD417D", - "type": "string" - }, - "type": "primitive" - }, - "h0": { - "value": { - "value": "1 21E5EF9476EAF18 2 095E45DDF417D", - "type": "string" - }, - "type": "primitive" - }, - "h1": { - "value": { - "value": "1 236D1D99236090 2 095E45DDF417D", - "type": "string" - }, - "type": "primitive" - }, - "h2": { - "value": { - "value": "1 1C3AE8D1F1E277 2 095E45DDF417D", - "type": "string" - }, - "type": "primitive" - }, - "h_cap": { - "value": { - "value": "1 1B2A32CF3167 1 2490FEBF6EE55 1 0000000000000000", - "type": "string" - }, - "type": "primitive" - }, - "htilde": { - "value": { - "value": "1 1D8549E8C0F8 2 095E45DDF417D", - "type": "string" - }, - "type": "primitive" - }, - "pk": { - "value": { - "value": "1 142CD5E5A7DC 1 153885BD903312 2 095E45DDF417D", - "type": "string" - }, - "type": "primitive" - }, - "u": { - "value": { - "value": "1 0C430AAB2B4710 1 1CB3A0932EE7E 1 0000000000000000", - "type": "string" - }, - "type": "primitive" - }, - "y": { - "value": { - "value": "1 153558BD903312 2 095E45DDF417D 1 0000000000000000", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - }, - "type": "object" - }, "ver": { "value": { "value": "1.0", @@ -7177,112 +6684,6 @@ }, "type": "primitive" }, - "did_doc~attach": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, "label": { "value": { "value": "Request to connect with Bob", @@ -8047,147 +7448,7 @@ "headers": [], "response": { "value": { - "properties": { - "results": { - "properties": { - "connection_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "created_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "disclosures": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "disclosures": { - "value": [ - { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "discovery_exchange_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "queries_msg": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "queries": { - "value": [ - { - "properties": { - "feature-type": { - "value": "protocol", - "type": "enum" - }, - "match": { - "value": { - "value": "match", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "state": { - "value": { - "value": "active", - "type": "string" - }, - "type": "primitive" - }, - "thread_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "trace": { - "value": { - "value": true, - "type": "boolean" - }, - "type": "primitive" - }, - "updated_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - }, + "properties": {}, "type": "object" }, "type": "withoutStreaming" @@ -8640,42 +7901,6 @@ }, "type": "primitive" }, - "disclose": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "protocols": { - "value": [ - { - "properties": { - "pid": { - "value": { - "value": "pid", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, "discovery_exchange_id": { "value": { "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", @@ -8683,39 +7908,6 @@ }, "type": "primitive" }, - "query_msg": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" - }, - "query": { - "value": { - "value": "query", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, "state": { "value": { "value": "active", @@ -8840,42 +8032,6 @@ }, "type": "primitive" }, - "disclose": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "protocols": { - "value": [ - { - "properties": { - "pid": { - "value": { - "value": "pid", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, "discovery_exchange_id": { "value": { "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", @@ -8883,32 +8039,6 @@ }, "type": "primitive" }, - "query_msg": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "query": { - "value": { - "value": "query", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, "state": { "value": { "value": "active", @@ -8956,42 +8086,6 @@ }, "type": "primitive" }, - "disclose": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "protocols": { - "value": [ - { - "properties": { - "pid": { - "value": { - "value": "pid", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, "discovery_exchange_id": { "value": { "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", @@ -8999,32 +8093,6 @@ }, "type": "primitive" }, - "query_msg": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "query": { - "value": { - "value": "query", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, "state": { "value": { "value": "active", @@ -9275,467 +8343,642 @@ }, "type": "primitive" }, - "cred_issue": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" + "error_msg": { + "value": { + "value": "The front fell off", + "type": "string" + }, + "type": "primitive" + }, + "initiator": { + "value": "self", + "type": "enum" + }, + "parent_thread_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "role": { + "value": "issuer", + "type": "enum" + }, + "state": { + "value": "done", + "type": "enum" + }, + "thread_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "trace": { + "value": { + "value": true, + "type": "boolean" + }, + "type": "primitive" + }, + "updated_at": { + "value": { + "value": "2021-12-31 23:59:59+00:00", + "type": "string" + }, + "type": "primitive" + } + }, + "type": "object" + }, + "type": "withoutStreaming" + }, + "codeSamples": [], + "type": "full" + } + ], + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + }, + { + "summary": "Create a credential offer, independent of any proposal or connection", + "audiences": [], + "operationId": "create_free_credential_offer", + "tags": [ + "issue-credential v2.0" + ], + "pathParameters": [], + "queryParameters": [], + "headers": [], + "generatedRequestName": "CreateFreeCredentialOfferRequest", + "request": { + "schema": { + "generatedName": "CreateFreeCredentialOfferRequest", + "schema": "V20CredOfferConnFreeRequest", + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "reference" + }, + "contentType": "application/json", + "fullExamples": [], + "additionalProperties": false, + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "json" + }, + "response": { + "description": "", + "schema": { + "generatedName": "CreateFreeCredentialOfferResponse", + "schema": "V20CredExRecord", + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "reference" + }, + "fullExamples": [], + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "json" + }, + "errors": {}, + "server": [], + "authed": true, + "method": "POST", + "path": "/issue-credential-2.0/create-offer", + "examples": [ + { + "pathParameters": [], + "queryParameters": [], + "headers": [], + "request": { + "properties": { + "auto_issue": { + "value": { + "value": true, + "type": "boolean" + }, + "type": "primitive" + }, + "auto_remove": { + "value": { + "value": true, + "type": "boolean" + }, + "type": "primitive" + }, + "comment": { + "value": { + "value": "comment", + "type": "string" + }, + "type": "primitive" + }, + "credential_preview": { + "properties": { + "@type": { + "value": { + "value": "issue-credential/2.0/credential-preview", + "type": "string" }, - "credentials~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" + "type": "primitive" + }, + "attributes": { + "value": [ + { + "properties": { + "mime-type": { + "value": { + "value": "image/jpeg", + "type": "string" }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" + "type": "primitive" + }, + "name": { + "value": { + "value": "favourite_drink", + "type": "string" }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" + "type": "primitive" + }, + "value": { + "value": { + "value": "martini", + "type": "string" }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" + "type": "primitive" + } + }, + "type": "object" + }, + { + "properties": { + "mime-type": { + "value": { + "value": "image/jpeg", + "type": "string" }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } + "type": "primitive" }, - "type": "object" - } - ], - "type": "array" - }, - "formats": { - "value": [ - { - "properties": { - "attach_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" + "name": { + "value": { + "value": "favourite_drink", + "type": "string" }, - "format": { - "value": { - "value": "aries/ld-proof-vc-detail@v1.0", - "type": "string" - }, - "type": "primitive" - } + "type": "primitive" }, - "type": "object" - } - ], - "type": "array" - }, - "replacement_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "cred_offer": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" - }, - "credential_preview": { - "properties": { - "@type": { "value": { - "value": "issue-credential/2.0/credential-preview", - "type": "string" - }, - "type": "primitive" - }, - "attributes": { - "value": [ - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" + "value": { + "value": "martini", + "type": "string" }, - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "formats": { - "value": [ - { + "type": "primitive" + } + }, + "type": "object" + } + ], + "type": "array" + } + }, + "type": "object" + }, + "filter": { + "properties": {}, + "type": "object" + }, + "trace": { + "value": { + "value": true, + "type": "boolean" + }, + "type": "primitive" + } + }, + "type": "object" + }, + "response": { + "value": { + "properties": { + "auto_issue": { + "value": { + "value": false, + "type": "boolean" + }, + "type": "primitive" + }, + "auto_offer": { + "value": { + "value": false, + "type": "boolean" + }, + "type": "primitive" + }, + "auto_remove": { + "value": { + "value": false, + "type": "boolean" + }, + "type": "primitive" + }, + "connection_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "created_at": { + "value": { + "value": "2021-12-31 23:59:59+00:00", + "type": "string" + }, + "type": "primitive" + }, + "cred_ex_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "error_msg": { + "value": { + "value": "The front fell off", + "type": "string" + }, + "type": "primitive" + }, + "initiator": { + "value": "self", + "type": "enum" + }, + "parent_thread_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "role": { + "value": "issuer", + "type": "enum" + }, + "state": { + "value": "done", + "type": "enum" + }, + "thread_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "trace": { + "value": { + "value": true, + "type": "boolean" + }, + "type": "primitive" + }, + "updated_at": { + "value": { + "value": "2021-12-31 23:59:59+00:00", + "type": "string" + }, + "type": "primitive" + } + }, + "type": "object" + }, + "type": "withoutStreaming" + }, + "codeSamples": [], + "type": "full" + } + ], + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + }, + { + "summary": "Fetch all credential exchange records", + "audiences": [], + "operationId": "get_matching_cred_ex_records-v2", + "tags": [ + "issue-credential v2.0" + ], + "pathParameters": [], + "queryParameters": [ + { + "description": "Connection identifier", + "name": "connection_id", + "schema": { + "generatedName": "GetMatchingCredExRecordsV2RequestConnectionId", + "value": { + "schema": { + "format": "uuid", + "type": "string" + }, + "generatedName": "GetMatchingCredExRecordsV2RequestConnectionId", + "groupName": [], + "type": "primitive" + }, + "groupName": [], + "type": "nullable" + }, + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + }, + { + "description": "Role assigned in credential exchange", + "name": "role", + "schema": { + "generatedName": "GetMatchingCredExRecordsV2RequestRole", + "value": { + "generatedName": "GetMatchingCredExRecordsV2RequestRole", + "values": [ + { + "generatedName": "issuer", + "value": "issuer", + "casing": {} + }, + { + "generatedName": "holder", + "value": "holder", + "casing": {} + } + ], + "groupName": [], + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "enum" + }, + "groupName": [], + "type": "nullable" + }, + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + }, + { + "description": "Credential exchange state", + "name": "state", + "schema": { + "generatedName": "GetMatchingCredExRecordsV2RequestState", + "value": { + "generatedName": "GetMatchingCredExRecordsV2RequestState", + "values": [ + { + "generatedName": "ProposalSent", + "value": "proposal-sent", + "casing": {} + }, + { + "generatedName": "ProposalReceived", + "value": "proposal-received", + "casing": {} + }, + { + "generatedName": "OfferSent", + "value": "offer-sent", + "casing": {} + }, + { + "generatedName": "OfferReceived", + "value": "offer-received", + "casing": {} + }, + { + "generatedName": "RequestSent", + "value": "request-sent", + "casing": {} + }, + { + "generatedName": "RequestReceived", + "value": "request-received", + "casing": {} + }, + { + "generatedName": "CredentialIssued", + "value": "credential-issued", + "casing": {} + }, + { + "generatedName": "CredentialReceived", + "value": "credential-received", + "casing": {} + }, + { + "generatedName": "done", + "value": "done", + "casing": {} + }, + { + "generatedName": "CredentialRevoked", + "value": "credential-revoked", + "casing": {} + }, + { + "generatedName": "abandoned", + "value": "abandoned", + "casing": {} + } + ], + "groupName": [], + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "enum" + }, + "groupName": [], + "type": "nullable" + }, + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + }, + { + "description": "Thread identifier", + "name": "thread_id", + "schema": { + "generatedName": "GetMatchingCredExRecordsV2RequestThreadId", + "value": { + "schema": { + "format": "uuid", + "type": "string" + }, + "generatedName": "GetMatchingCredExRecordsV2RequestThreadId", + "groupName": [], + "type": "primitive" + }, + "groupName": [], + "type": "nullable" + }, + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + } + ], + "headers": [], + "generatedRequestName": "GetMatchingCredExRecordsV2Request", + "response": { + "description": "", + "schema": { + "generatedName": "GetMatchingCredExRecordsV2Response", + "schema": "V20CredExRecordListResult", + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "reference" + }, + "fullExamples": [], + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "json" + }, + "errors": {}, + "server": [], + "authed": true, + "method": "GET", + "path": "/issue-credential-2.0/records", + "examples": [ + { + "pathParameters": [], + "queryParameters": [], + "headers": [], + "response": { + "value": { + "properties": { + "results": { + "value": [ + { + "properties": { + "indy": { "properties": { - "attach_id": { + "created_at": { "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "value": "2021-12-31 23:59:59+00:00", "type": "string" }, "type": "primitive" }, - "format": { + "cred_ex_id": { "value": { - "value": "aries/ld-proof-vc-detail@v1.0", + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "type": "string" }, "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "offers~attach": { - "value": [ - { - "properties": { - "@id": { + }, + "cred_ex_indy_id": { "value": { "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "type": "string" }, "type": "primitive" }, - "byte_count": { + "cred_id_stored": { "value": { - "value": 1234, - "type": "int" + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" }, "type": "primitive" }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { + "cred_rev_id": { "value": { - "value": "view from doorway, facing east, with lights off", + "value": "12345", "type": "string" }, "type": "primitive" }, - "filename": { + "rev_reg_id": { "value": { - "value": "IMG1092348.png", + "value": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", "type": "string" }, "type": "primitive" }, - "lastmod_time": { + "state": { "value": { - "value": "2021-12-31 23:59:59+00:00", + "value": "active", "type": "string" }, "type": "primitive" }, - "mime-type": { + "updated_at": { "value": { - "value": "image/png", + "value": "2021-12-31 23:59:59+00:00", "type": "string" }, "type": "primitive" } }, "type": "object" - } - ], - "type": "array" - }, - "replacement_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "cred_preview": { - "properties": { - "@type": { - "value": { - "value": "issue-credential/2.0/credential-preview", - "type": "string" - }, - "type": "primitive" - }, - "attributes": { - "value": [ - { + }, + "ld_proof": { "properties": { - "mime-type": { + "created_at": { "value": { - "value": "image/jpeg", + "value": "2021-12-31 23:59:59+00:00", "type": "string" }, "type": "primitive" }, - "name": { + "cred_ex_id": { "value": { - "value": "favourite_drink", + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "type": "string" }, "type": "primitive" }, - "value": { + "cred_ex_ld_proof_id": { "value": { - "value": "martini", + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "type": "string" }, "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "mime-type": { + }, + "cred_id_stored": { "value": { - "value": "image/jpeg", + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "type": "string" }, "type": "primitive" }, - "name": { + "state": { "value": { - "value": "favourite_drink", + "value": "active", "type": "string" }, "type": "primitive" }, - "value": { + "updated_at": { "value": { - "value": "martini", + "value": "2021-12-31 23:59:59+00:00", "type": "string" }, "type": "primitive" @@ -9743,390 +8986,112 @@ }, "type": "object" } - ], - "type": "array" - } - }, - "type": "object" - }, - "cred_proposal": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" - }, - "credential_preview": { - "properties": { - "@type": { - "value": { - "value": "issue-credential/2.0/credential-preview", - "type": "string" - }, - "type": "primitive" - }, - "attributes": { - "value": [ - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } }, "type": "object" }, - "filters~attach": { - "value": [ - { + { + "properties": { + "indy": { "properties": { - "@id": { + "created_at": { "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "value": "2021-12-31 23:59:59+00:00", "type": "string" }, "type": "primitive" }, - "byte_count": { + "cred_ex_id": { "value": { - "value": 1234, - "type": "int" + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" }, "type": "primitive" }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { + "cred_ex_indy_id": { "value": { - "value": "view from doorway, facing east, with lights off", + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "type": "string" }, "type": "primitive" }, - "filename": { + "cred_id_stored": { "value": { - "value": "IMG1092348.png", + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "type": "string" }, "type": "primitive" }, - "lastmod_time": { + "cred_rev_id": { "value": { - "value": "2021-12-31 23:59:59+00:00", + "value": "12345", "type": "string" }, "type": "primitive" }, - "mime-type": { + "rev_reg_id": { "value": { - "value": "image/png", + "value": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", "type": "string" }, "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "formats": { - "value": [ - { - "properties": { - "attach_id": { + }, + "state": { "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "value": "active", "type": "string" }, "type": "primitive" }, - "format": { + "updated_at": { "value": { - "value": "aries/ld-proof-vc-detail@v1.0", + "value": "2021-12-31 23:59:59+00:00", "type": "string" }, "type": "primitive" } }, "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "cred_request": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" - }, - "formats": { - "value": [ - { + }, + "ld_proof": { "properties": { - "attach_id": { + "created_at": { "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "value": "2021-12-31 23:59:59+00:00", "type": "string" }, "type": "primitive" }, - "format": { - "value": { - "value": "aries/ld-proof-vc-detail@v1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "requests~attach": { - "value": [ - { - "properties": { - "@id": { + "cred_ex_id": { "value": { "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "type": "string" }, "type": "primitive" }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { + "cred_ex_ld_proof_id": { "value": { - "value": "view from doorway, facing east, with lights off", + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "type": "string" }, "type": "primitive" }, - "filename": { + "cred_id_stored": { "value": { - "value": "IMG1092348.png", + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "type": "string" }, "type": "primitive" }, - "lastmod_time": { + "state": { "value": { - "value": "2021-12-31 23:59:59+00:00", + "value": "active", "type": "string" }, "type": "primitive" }, - "mime-type": { + "updated_at": { "value": { - "value": "image/png", + "value": "2021-12-31 23:59:59+00:00", "type": "string" }, "type": "primitive" @@ -10134,58 +9099,11 @@ }, "type": "object" } - ], - "type": "array" + }, + "type": "object" } - }, - "type": "object" - }, - "error_msg": { - "value": { - "value": "The front fell off", - "type": "string" - }, - "type": "primitive" - }, - "initiator": { - "value": "self", - "type": "enum" - }, - "parent_thread_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "role": { - "value": "issuer", - "type": "enum" - }, - "state": { - "value": "done", - "type": "enum" - }, - "thread_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "trace": { - "value": { - "value": true, - "type": "boolean" - }, - "type": "primitive" - }, - "updated_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" + ], + "type": "array" } }, "type": "object" @@ -10202,40 +9120,39 @@ } }, { - "summary": "Create a credential offer, independent of any proposal or connection", + "summary": "Fetch a single credential exchange record", "audiences": [], - "operationId": "create_free_credential_offer", + "operationId": "get_cred_ex_record", "tags": [ "issue-credential v2.0" ], - "pathParameters": [], - "queryParameters": [], - "headers": [], - "generatedRequestName": "CreateFreeCredentialOfferRequest", - "request": { - "schema": { - "generatedName": "CreateFreeCredentialOfferRequest", - "schema": "V20CredOfferConnFreeRequest", + "pathParameters": [ + { + "description": "Credential exchange identifier", + "name": "cred_ex_id", + "schema": { + "schema": { + "pattern": "[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-4[a-fA-F0-9]{3}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}", + "type": "string" + }, + "generatedName": "GetCredExRecordRequestCredExId", + "groupName": [], + "type": "primitive" + }, "source": { "file": "../openapi.yml", "type": "openapi" - }, - "type": "reference" - }, - "contentType": "application/json", - "fullExamples": [], - "additionalProperties": false, - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "json" - }, + } + } + ], + "queryParameters": [], + "headers": [], + "generatedRequestName": "GetCredExRecordRequest", "response": { "description": "", "schema": { - "generatedName": "CreateFreeCredentialOfferResponse", - "schema": "V20CredExRecord", + "generatedName": "GetCredExRecordResponse", + "schema": "V20CredExRecordDetail", "source": { "file": "../openapi.yml", "type": "openapi" @@ -10252,325 +9169,81 @@ "errors": {}, "server": [], "authed": true, - "method": "POST", - "path": "/issue-credential-2.0/create-offer", + "method": "GET", + "path": "/issue-credential-2.0/records/{cred_ex_id}", "examples": [ { - "pathParameters": [], - "queryParameters": [], - "headers": [], - "request": { - "properties": { - "auto_issue": { - "value": { - "value": true, - "type": "boolean" - }, - "type": "primitive" - }, - "auto_remove": { - "value": { - "value": true, - "type": "boolean" - }, - "type": "primitive" - }, - "comment": { + "pathParameters": [ + { + "name": "cred_ex_id", + "value": { "value": { - "value": "comment", + "value": "cred_ex_id", "type": "string" }, "type": "primitive" - }, - "credential_preview": { - "properties": { - "@type": { - "value": { - "value": "issue-credential/2.0/credential-preview", - "type": "string" - }, - "type": "primitive" - }, - "attributes": { - "value": [ - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "filter": { - "properties": {}, - "type": "object" - }, - "trace": { - "value": { - "value": true, - "type": "boolean" - }, - "type": "primitive" } - }, - "type": "object" - }, + } + ], + "queryParameters": [], + "headers": [], "response": { "value": { "properties": { - "auto_issue": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - }, - "auto_offer": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - }, - "auto_remove": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - }, - "connection_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "created_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "cred_ex_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "cred_issue": { + "indy": { "properties": { - "@id": { + "created_at": { + "value": { + "value": "2021-12-31 23:59:59+00:00", + "type": "string" + }, + "type": "primitive" + }, + "cred_ex_id": { "value": { "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "type": "string" }, "type": "primitive" }, - "@type": { + "cred_ex_indy_id": { "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "type": "string" }, "type": "primitive" }, - "comment": { + "cred_id_stored": { "value": { - "value": "comment", + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "type": "string" }, "type": "primitive" }, - "credentials~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" + "cred_rev_id": { + "value": { + "value": "12345", + "type": "string" + }, + "type": "primitive" }, - "formats": { - "value": [ - { - "properties": { - "attach_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "format": { - "value": { - "value": "aries/ld-proof-vc-detail@v1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" + "rev_reg_id": { + "value": { + "value": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", + "type": "string" + }, + "type": "primitive" }, - "replacement_id": { + "state": { "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "value": "active", + "type": "string" + }, + "type": "primitive" + }, + "updated_at": { + "value": { + "value": "2021-12-31 23:59:59+00:00", "type": "string" }, "type": "primitive" @@ -10578,702 +9251,659 @@ }, "type": "object" }, - "cred_offer": { + "ld_proof": { "properties": { - "@id": { + "created_at": { "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "value": "2021-12-31 23:59:59+00:00", "type": "string" }, "type": "primitive" }, - "@type": { + "cred_ex_id": { "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "type": "string" }, "type": "primitive" }, - "comment": { + "cred_ex_ld_proof_id": { "value": { - "value": "comment", + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "type": "string" }, "type": "primitive" }, - "credential_preview": { - "properties": { - "@type": { - "value": { - "value": "issue-credential/2.0/credential-preview", - "type": "string" - }, - "type": "primitive" - }, - "attributes": { - "value": [ - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "formats": { - "value": [ - { - "properties": { - "attach_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "format": { - "value": { - "value": "aries/ld-proof-vc-detail@v1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "offers~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "replacement_id": { + "cred_id_stored": { "value": { "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "type": "string" }, "type": "primitive" - } - }, - "type": "object" - }, - "cred_preview": { - "properties": { - "@type": { + }, + "state": { "value": { - "value": "issue-credential/2.0/credential-preview", + "value": "active", "type": "string" }, "type": "primitive" }, - "attributes": { - "value": [ - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" + "updated_at": { + "value": { + "value": "2021-12-31 23:59:59+00:00", + "type": "string" + }, + "type": "primitive" } }, "type": "object" + } + }, + "type": "object" + }, + "type": "withoutStreaming" + }, + "codeSamples": [], + "type": "full" + } + ], + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + }, + { + "summary": "Remove an existing credential exchange record", + "audiences": [], + "operationId": "delete_cred_ex_record", + "tags": [ + "issue-credential v2.0" + ], + "pathParameters": [ + { + "description": "Credential exchange identifier", + "name": "cred_ex_id", + "schema": { + "schema": { + "pattern": "[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-4[a-fA-F0-9]{3}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}", + "type": "string" + }, + "generatedName": "DeleteCredExRecordRequestCredExId", + "groupName": [], + "type": "primitive" + }, + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + } + ], + "queryParameters": [], + "headers": [], + "generatedRequestName": "DeleteCredExRecordRequest", + "response": { + "description": "", + "schema": { + "generatedName": "DeleteCredExRecordResponse", + "schema": "V20IssueCredentialModuleResponse", + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "reference" + }, + "fullExamples": [], + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "json" + }, + "errors": {}, + "server": [], + "authed": true, + "method": "DELETE", + "path": "/issue-credential-2.0/records/{cred_ex_id}", + "examples": [ + { + "pathParameters": [ + { + "name": "cred_ex_id", + "value": { + "value": { + "value": "cred_ex_id", + "type": "string" + }, + "type": "primitive" + } + } + ], + "queryParameters": [], + "headers": [], + "response": { + "value": { + "value": [ + { + "key": { + "value": "key", + "type": "string" + }, + "value": { + "value": { + "value": { + "value": "value", + "type": "string" + }, + "type": "primitive" + }, + "type": "unknown" + } + } + ], + "type": "map" + }, + "type": "withoutStreaming" + }, + "codeSamples": [], + "type": "full" + } + ], + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + }, + { + "summary": "Send holder a credential", + "audiences": [], + "operationId": "issue_credential_to_holder", + "tags": [ + "issue-credential v2.0" + ], + "pathParameters": [ + { + "description": "Credential exchange identifier", + "name": "cred_ex_id", + "schema": { + "schema": { + "pattern": "[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-4[a-fA-F0-9]{3}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}", + "type": "string" + }, + "generatedName": "IssueCredentialToHolderRequestCredExId", + "groupName": [], + "type": "primitive" + }, + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + } + ], + "queryParameters": [], + "headers": [], + "generatedRequestName": "IssueCredentialToHolderRequest", + "request": { + "schema": { + "generatedName": "IssueCredentialToHolderRequest", + "schema": "V20CredIssueRequest", + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "reference" + }, + "contentType": "application/json", + "fullExamples": [], + "additionalProperties": false, + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "json" + }, + "response": { + "description": "", + "schema": { + "generatedName": "IssueCredentialToHolderResponse", + "schema": "V20CredExRecordDetail", + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "reference" + }, + "fullExamples": [], + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "json" + }, + "errors": {}, + "server": [], + "authed": true, + "method": "POST", + "path": "/issue-credential-2.0/records/{cred_ex_id}/issue", + "examples": [ + { + "pathParameters": [ + { + "name": "cred_ex_id", + "value": { + "value": { + "value": "cred_ex_id", + "type": "string" + }, + "type": "primitive" + } + } + ], + "queryParameters": [], + "headers": [], + "request": { + "properties": { + "comment": { + "value": { + "value": "comment", + "type": "string" }, - "cred_proposal": { + "type": "primitive" + } + }, + "type": "object" + }, + "response": { + "value": { + "properties": { + "indy": { "properties": { - "@id": { + "created_at": { + "value": { + "value": "2021-12-31 23:59:59+00:00", + "type": "string" + }, + "type": "primitive" + }, + "cred_ex_id": { "value": { "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "type": "string" }, "type": "primitive" }, - "@type": { + "cred_ex_indy_id": { "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "cred_id_stored": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "type": "string" }, "type": "primitive" }, - "comment": { + "cred_rev_id": { "value": { - "value": "comment", + "value": "12345", "type": "string" }, "type": "primitive" }, - "credential_preview": { - "properties": { - "@type": { - "value": { - "value": "issue-credential/2.0/credential-preview", - "type": "string" - }, - "type": "primitive" - }, - "attributes": { - "value": [ - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } + "rev_reg_id": { + "value": { + "value": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", + "type": "string" }, - "type": "object" + "type": "primitive" }, - "filters~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" + "state": { + "value": { + "value": "active", + "type": "string" + }, + "type": "primitive" }, - "formats": { - "value": [ - { - "properties": { - "attach_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "format": { - "value": { - "value": "aries/ld-proof-vc-detail@v1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" + "updated_at": { + "value": { + "value": "2021-12-31 23:59:59+00:00", + "type": "string" + }, + "type": "primitive" } }, "type": "object" }, - "cred_request": { + "ld_proof": { "properties": { - "@id": { + "created_at": { + "value": { + "value": "2021-12-31 23:59:59+00:00", + "type": "string" + }, + "type": "primitive" + }, + "cred_ex_id": { "value": { "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "type": "string" }, "type": "primitive" }, - "@type": { + "cred_ex_ld_proof_id": { "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "type": "string" }, "type": "primitive" }, - "comment": { + "cred_id_stored": { "value": { - "value": "comment", + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "type": "string" }, "type": "primitive" }, - "formats": { - "value": [ - { - "properties": { - "attach_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "format": { - "value": { - "value": "aries/ld-proof-vc-detail@v1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" + "state": { + "value": { + "value": "active", + "type": "string" + }, + "type": "primitive" }, - "requests~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" + "updated_at": { + "value": { + "value": "2021-12-31 23:59:59+00:00", + "type": "string" + }, + "type": "primitive" } }, "type": "object" + } + }, + "type": "object" + }, + "type": "withoutStreaming" + }, + "codeSamples": [], + "type": "full" + } + ], + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + }, + { + "summary": "Send a problem report for credential exchange", + "audiences": [], + "operationId": "report_cred_ex_problem", + "tags": [ + "issue-credential v2.0" + ], + "pathParameters": [ + { + "description": "Credential exchange identifier", + "name": "cred_ex_id", + "schema": { + "schema": { + "pattern": "[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-4[a-fA-F0-9]{3}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}", + "type": "string" + }, + "generatedName": "ReportCredExProblemRequestCredExId", + "groupName": [], + "type": "primitive" + }, + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + } + ], + "queryParameters": [], + "headers": [], + "generatedRequestName": "ReportCredExProblemRequest", + "request": { + "schema": { + "generatedName": "ReportCredExProblemRequest", + "schema": "V20CredIssueProblemReportRequest", + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "reference" + }, + "contentType": "application/json", + "fullExamples": [], + "additionalProperties": false, + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "json" + }, + "response": { + "description": "", + "schema": { + "generatedName": "ReportCredExProblemResponse", + "schema": "V20IssueCredentialModuleResponse", + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "reference" + }, + "fullExamples": [], + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "json" + }, + "errors": {}, + "server": [], + "authed": true, + "method": "POST", + "path": "/issue-credential-2.0/records/{cred_ex_id}/problem-report", + "examples": [ + { + "pathParameters": [ + { + "name": "cred_ex_id", + "value": { + "value": { + "value": "cred_ex_id", + "type": "string" + }, + "type": "primitive" + } + } + ], + "queryParameters": [], + "headers": [], + "request": { + "properties": { + "description": { + "value": { + "value": "description", + "type": "string" + }, + "type": "primitive" + } + }, + "type": "object" + }, + "response": { + "value": { + "value": [ + { + "key": { + "value": "key", + "type": "string" + }, + "value": { + "value": { + "value": { + "value": "value", + "type": "string" + }, + "type": "primitive" + }, + "type": "unknown" + } + } + ], + "type": "map" + }, + "type": "withoutStreaming" + }, + "codeSamples": [], + "type": "full" + } + ], + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + }, + { + "summary": "Send holder a credential offer in reference to a proposal with preview", + "audiences": [], + "operationId": "send_credential_offer", + "tags": [ + "issue-credential v2.0" + ], + "pathParameters": [ + { + "description": "Credential exchange identifier", + "name": "cred_ex_id", + "schema": { + "schema": { + "pattern": "[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-4[a-fA-F0-9]{3}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}", + "type": "string" + }, + "generatedName": "SendCredentialOfferRequestCredExId", + "groupName": [], + "type": "primitive" + }, + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + } + ], + "queryParameters": [], + "headers": [], + "generatedRequestName": "SendCredentialOfferRequest", + "request": { + "schema": { + "generatedName": "SendCredentialOfferRequest", + "schema": "V20CredBoundOfferRequest", + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "reference" + }, + "contentType": "application/json", + "fullExamples": [], + "additionalProperties": false, + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "json" + }, + "response": { + "description": "", + "schema": { + "generatedName": "SendCredentialOfferResponse", + "schema": "V20CredExRecord", + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "reference" + }, + "fullExamples": [], + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "json" + }, + "errors": {}, + "server": [], + "authed": true, + "method": "POST", + "path": "/issue-credential-2.0/records/{cred_ex_id}/send-offer", + "examples": [ + { + "pathParameters": [ + { + "name": "cred_ex_id", + "value": { + "value": { + "value": "cred_ex_id", + "type": "string" + }, + "type": "primitive" + } + } + ], + "queryParameters": [], + "headers": [], + "request": { + "properties": {}, + "type": "object" + }, + "response": { + "value": { + "properties": { + "auto_issue": { + "value": { + "value": false, + "type": "boolean" + }, + "type": "primitive" + }, + "auto_offer": { + "value": { + "value": false, + "type": "boolean" + }, + "type": "primitive" + }, + "auto_remove": { + "value": { + "value": false, + "type": "boolean" + }, + "type": "primitive" + }, + "connection_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "created_at": { + "value": { + "value": "2021-12-31 23:59:59+00:00", + "type": "string" + }, + "type": "primitive" + }, + "cred_ex_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" }, "error_msg": { "value": { @@ -11337,165 +9967,229 @@ } }, { - "summary": "Fetch all credential exchange records", + "summary": "Send issuer a credential request", "audiences": [], - "operationId": "get_matching_cred_ex_records-v2", + "operationId": "send_credential_request", "tags": [ "issue-credential v2.0" ], - "pathParameters": [], - "queryParameters": [ + "pathParameters": [ { - "description": "Connection identifier", - "name": "connection_id", + "description": "Credential exchange identifier", + "name": "cred_ex_id", "schema": { - "generatedName": "GetMatchingCredExRecordsV2RequestConnectionId", - "value": { - "schema": { - "format": "uuid", - "type": "string" - }, - "generatedName": "GetMatchingCredExRecordsV2RequestConnectionId", - "groupName": [], - "type": "primitive" + "schema": { + "pattern": "[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-4[a-fA-F0-9]{3}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}", + "type": "string" }, + "generatedName": "SendCredentialRequestRequestCredExId", "groupName": [], - "type": "nullable" + "type": "primitive" }, "source": { "file": "../openapi.yml", "type": "openapi" } - }, - { - "description": "Role assigned in credential exchange", - "name": "role", - "schema": { - "generatedName": "GetMatchingCredExRecordsV2RequestRole", - "value": { - "generatedName": "GetMatchingCredExRecordsV2RequestRole", - "values": [ - { - "generatedName": "issuer", - "value": "issuer", - "casing": {} - }, - { - "generatedName": "holder", - "value": "holder", - "casing": {} - } - ], - "groupName": [], - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "enum" - }, - "groupName": [], - "type": "nullable" + } + ], + "queryParameters": [], + "headers": [], + "generatedRequestName": "SendCredentialRequestRequest", + "request": { + "schema": { + "generatedName": "SendCredentialRequestRequest", + "schema": "V20CredRequestRequest", + "source": { + "file": "../openapi.yml", + "type": "openapi" }, + "type": "reference" + }, + "contentType": "application/json", + "fullExamples": [], + "additionalProperties": false, + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "json" + }, + "response": { + "description": "", + "schema": { + "generatedName": "SendCredentialRequestResponse", + "schema": "V20CredExRecord", "source": { "file": "../openapi.yml", "type": "openapi" - } + }, + "type": "reference" + }, + "fullExamples": [], + "source": { + "file": "../openapi.yml", + "type": "openapi" }, + "type": "json" + }, + "errors": {}, + "server": [], + "authed": true, + "method": "POST", + "path": "/issue-credential-2.0/records/{cred_ex_id}/send-request", + "examples": [ { - "description": "Credential exchange state", - "name": "state", - "schema": { - "generatedName": "GetMatchingCredExRecordsV2RequestState", - "value": { - "generatedName": "GetMatchingCredExRecordsV2RequestState", - "values": [ - { - "generatedName": "ProposalSent", - "value": "proposal-sent", - "casing": {} - }, - { - "generatedName": "ProposalReceived", - "value": "proposal-received", - "casing": {} + "pathParameters": [ + { + "name": "cred_ex_id", + "value": { + "value": { + "value": "cred_ex_id", + "type": "string" }, - { - "generatedName": "OfferSent", - "value": "offer-sent", - "casing": {} + "type": "primitive" + } + } + ], + "queryParameters": [], + "headers": [], + "request": { + "properties": { + "holder_did": { + "value": { + "value": "did:key:ahsdkjahsdkjhaskjdhakjshdkajhsdkjahs", + "type": "string" }, - { - "generatedName": "OfferReceived", - "value": "offer-received", - "casing": {} + "type": "primitive" + } + }, + "type": "object" + }, + "response": { + "value": { + "properties": { + "auto_issue": { + "value": { + "value": false, + "type": "boolean" + }, + "type": "primitive" }, - { - "generatedName": "RequestSent", - "value": "request-sent", - "casing": {} + "auto_offer": { + "value": { + "value": false, + "type": "boolean" + }, + "type": "primitive" }, - { - "generatedName": "RequestReceived", - "value": "request-received", - "casing": {} + "auto_remove": { + "value": { + "value": false, + "type": "boolean" + }, + "type": "primitive" }, - { - "generatedName": "CredentialIssued", - "value": "credential-issued", - "casing": {} + "connection_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" }, - { - "generatedName": "CredentialReceived", - "value": "credential-received", - "casing": {} + "created_at": { + "value": { + "value": "2021-12-31 23:59:59+00:00", + "type": "string" + }, + "type": "primitive" }, - { - "generatedName": "done", + "cred_ex_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "error_msg": { + "value": { + "value": "The front fell off", + "type": "string" + }, + "type": "primitive" + }, + "initiator": { + "value": "self", + "type": "enum" + }, + "parent_thread_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "role": { + "value": "issuer", + "type": "enum" + }, + "state": { "value": "done", - "casing": {} + "type": "enum" }, - { - "generatedName": "CredentialRevoked", - "value": "credential-revoked", - "casing": {} + "thread_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" }, - { - "generatedName": "abandoned", - "value": "abandoned", - "casing": {} + "trace": { + "value": { + "value": true, + "type": "boolean" + }, + "type": "primitive" + }, + "updated_at": { + "value": { + "value": "2021-12-31 23:59:59+00:00", + "type": "string" + }, + "type": "primitive" } - ], - "groupName": [], - "source": { - "file": "../openapi.yml", - "type": "openapi" }, - "type": "enum" + "type": "object" }, - "groupName": [], - "type": "nullable" + "type": "withoutStreaming" }, - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - }, + "codeSamples": [], + "type": "full" + } + ], + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + }, + { + "summary": "Store a received credential", + "audiences": [], + "operationId": "store_received_credential", + "tags": [ + "issue-credential v2.0" + ], + "pathParameters": [ { - "description": "Thread identifier", - "name": "thread_id", + "description": "Credential exchange identifier", + "name": "cred_ex_id", "schema": { - "generatedName": "GetMatchingCredExRecordsV2RequestThreadId", - "value": { - "schema": { - "format": "uuid", - "type": "string" - }, - "generatedName": "GetMatchingCredExRecordsV2RequestThreadId", - "groupName": [], - "type": "primitive" + "schema": { + "pattern": "[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-4[a-fA-F0-9]{3}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}", + "type": "string" }, + "generatedName": "StoreReceivedCredentialRequestCredExId", "groupName": [], - "type": "nullable" + "type": "primitive" }, "source": { "file": "../openapi.yml", @@ -11503,13 +10197,33 @@ } } ], + "queryParameters": [], "headers": [], - "generatedRequestName": "GetMatchingCredExRecordsV2Request", + "generatedRequestName": "StoreReceivedCredentialRequest", + "request": { + "schema": { + "generatedName": "StoreReceivedCredentialRequest", + "schema": "V20CredStoreRequest", + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "reference" + }, + "contentType": "application/json", + "fullExamples": [], + "additionalProperties": false, + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "json" + }, "response": { "description": "", "schema": { - "generatedName": "GetMatchingCredExRecordsV2Response", - "schema": "V20CredExRecordListResult", + "generatedName": "StoreReceivedCredentialResponse", + "schema": "V20CredExRecordDetail", "source": { "file": "../openapi.yml", "type": "openapi" @@ -11526,26711 +10240,423 @@ "errors": {}, "server": [], "authed": true, - "method": "GET", - "path": "/issue-credential-2.0/records", + "method": "POST", + "path": "/issue-credential-2.0/records/{cred_ex_id}/store", "examples": [ { - "pathParameters": [], + "pathParameters": [ + { + "name": "cred_ex_id", + "value": { + "value": { + "value": "cred_ex_id", + "type": "string" + }, + "type": "primitive" + } + } + ], "queryParameters": [], "headers": [], + "request": { + "properties": { + "credential_id": { + "value": { + "value": "credential_id", + "type": "string" + }, + "type": "primitive" + } + }, + "type": "object" + }, "response": { "value": { "properties": { - "results": { - "value": [ - { - "properties": { - "cred_ex_record": { - "properties": { - "auto_issue": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - }, - "auto_offer": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" + "indy": { + "properties": { + "created_at": { + "value": { + "value": "2021-12-31 23:59:59+00:00", + "type": "string" + }, + "type": "primitive" + }, + "cred_ex_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "cred_ex_indy_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "cred_id_stored": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "cred_rev_id": { + "value": { + "value": "12345", + "type": "string" + }, + "type": "primitive" + }, + "rev_reg_id": { + "value": { + "value": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", + "type": "string" + }, + "type": "primitive" + }, + "state": { + "value": { + "value": "active", + "type": "string" + }, + "type": "primitive" + }, + "updated_at": { + "value": { + "value": "2021-12-31 23:59:59+00:00", + "type": "string" + }, + "type": "primitive" + } + }, + "type": "object" + }, + "ld_proof": { + "properties": { + "created_at": { + "value": { + "value": "2021-12-31 23:59:59+00:00", + "type": "string" + }, + "type": "primitive" + }, + "cred_ex_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "cred_ex_ld_proof_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "cred_id_stored": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "state": { + "value": { + "value": "active", + "type": "string" + }, + "type": "primitive" + }, + "updated_at": { + "value": { + "value": "2021-12-31 23:59:59+00:00", + "type": "string" + }, + "type": "primitive" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "type": "withoutStreaming" + }, + "codeSamples": [], + "type": "full" + } + ], + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + }, + { + "summary": "Send holder a credential, automating entire flow", + "audiences": [], + "operationId": "send_free_credential", + "tags": [ + "issue-credential v2.0" + ], + "pathParameters": [], + "queryParameters": [], + "headers": [], + "generatedRequestName": "SendFreeCredentialRequest", + "request": { + "schema": { + "generatedName": "SendFreeCredentialRequest", + "schema": "V20CredExFree", + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "reference" + }, + "contentType": "application/json", + "fullExamples": [], + "additionalProperties": false, + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "json" + }, + "response": { + "description": "", + "schema": { + "generatedName": "SendFreeCredentialResponse", + "schema": "V20CredExRecord", + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "reference" + }, + "fullExamples": [], + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "json" + }, + "errors": {}, + "server": [], + "authed": true, + "method": "POST", + "path": "/issue-credential-2.0/send", + "examples": [ + { + "pathParameters": [], + "queryParameters": [], + "headers": [], + "request": { + "properties": { + "auto_remove": { + "value": { + "value": true, + "type": "boolean" + }, + "type": "primitive" + }, + "comment": { + "value": { + "value": "comment", + "type": "string" + }, + "type": "primitive" + }, + "connection_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "credential_preview": { + "properties": { + "@type": { + "value": { + "value": "issue-credential/2.0/credential-preview", + "type": "string" + }, + "type": "primitive" + }, + "attributes": { + "value": [ + { + "properties": { + "mime-type": { + "value": { + "value": "image/jpeg", + "type": "string" }, - "auto_remove": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" + "type": "primitive" + }, + "name": { + "value": { + "value": "favourite_drink", + "type": "string" }, - "connection_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" + "type": "primitive" + }, + "value": { + "value": { + "value": "martini", + "type": "string" }, - "created_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" + "type": "primitive" + } + }, + "type": "object" + }, + { + "properties": { + "mime-type": { + "value": { + "value": "image/jpeg", + "type": "string" }, - "cred_ex_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "cred_issue": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "credentials~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "formats": { - "value": [ - { - "properties": { - "attach_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "format": { - "value": { - "value": "aries/ld-proof-vc-detail@v1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "replacement_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "cred_offer": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "credential_preview": { - "properties": { - "@type": { - "value": { - "value": "issue-credential/2.0/credential-preview", - "type": "string" - }, - "type": "primitive" - }, - "attributes": { - "value": [ - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "formats": { - "value": [ - { - "properties": { - "attach_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "format": { - "value": { - "value": "aries/ld-proof-vc-detail@v1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "offers~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "replacement_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "cred_preview": { - "properties": { - "@type": { - "value": { - "value": "issue-credential/2.0/credential-preview", - "type": "string" - }, - "type": "primitive" - }, - "attributes": { - "value": [ - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "cred_proposal": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "credential_preview": { - "properties": { - "@type": { - "value": { - "value": "issue-credential/2.0/credential-preview", - "type": "string" - }, - "type": "primitive" - }, - "attributes": { - "value": [ - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "filters~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "formats": { - "value": [ - { - "properties": { - "attach_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "format": { - "value": { - "value": "aries/ld-proof-vc-detail@v1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "cred_request": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "formats": { - "value": [ - { - "properties": { - "attach_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "format": { - "value": { - "value": "aries/ld-proof-vc-detail@v1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "requests~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "error_msg": { - "value": { - "value": "The front fell off", - "type": "string" - }, - "type": "primitive" - }, - "initiator": { - "value": "self", - "type": "enum" - }, - "parent_thread_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "role": { - "value": "issuer", - "type": "enum" - }, - "state": { - "value": "done", - "type": "enum" - }, - "thread_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "trace": { - "value": { - "value": true, - "type": "boolean" - }, - "type": "primitive" - }, - "updated_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "indy": { - "properties": { - "created_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "cred_ex_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "cred_ex_indy_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "cred_id_stored": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "cred_rev_id": { - "value": { - "value": "12345", - "type": "string" - }, - "type": "primitive" - }, - "rev_reg_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "type": "string" - }, - "type": "primitive" - }, - "state": { - "value": { - "value": "active", - "type": "string" - }, - "type": "primitive" - }, - "updated_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "ld_proof": { - "properties": { - "created_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "cred_ex_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "cred_ex_ld_proof_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "cred_id_stored": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "state": { - "value": { - "value": "active", - "type": "string" - }, - "type": "primitive" - }, - "updated_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - }, - "type": "object" - }, - { - "properties": { - "cred_ex_record": { - "properties": { - "auto_issue": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - }, - "auto_offer": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - }, - "auto_remove": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - }, - "connection_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "created_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "cred_ex_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "cred_issue": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "credentials~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "formats": { - "value": [ - { - "properties": { - "attach_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "format": { - "value": { - "value": "aries/ld-proof-vc-detail@v1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "replacement_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "cred_offer": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "credential_preview": { - "properties": { - "@type": { - "value": { - "value": "issue-credential/2.0/credential-preview", - "type": "string" - }, - "type": "primitive" - }, - "attributes": { - "value": [ - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "formats": { - "value": [ - { - "properties": { - "attach_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "format": { - "value": { - "value": "aries/ld-proof-vc-detail@v1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "offers~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "replacement_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "cred_preview": { - "properties": { - "@type": { - "value": { - "value": "issue-credential/2.0/credential-preview", - "type": "string" - }, - "type": "primitive" - }, - "attributes": { - "value": [ - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "cred_proposal": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "credential_preview": { - "properties": { - "@type": { - "value": { - "value": "issue-credential/2.0/credential-preview", - "type": "string" - }, - "type": "primitive" - }, - "attributes": { - "value": [ - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "filters~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "formats": { - "value": [ - { - "properties": { - "attach_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "format": { - "value": { - "value": "aries/ld-proof-vc-detail@v1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "cred_request": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "formats": { - "value": [ - { - "properties": { - "attach_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "format": { - "value": { - "value": "aries/ld-proof-vc-detail@v1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "requests~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "error_msg": { - "value": { - "value": "The front fell off", - "type": "string" - }, - "type": "primitive" - }, - "initiator": { - "value": "self", - "type": "enum" - }, - "parent_thread_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "role": { - "value": "issuer", - "type": "enum" - }, - "state": { - "value": "done", - "type": "enum" - }, - "thread_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "trace": { - "value": { - "value": true, - "type": "boolean" - }, - "type": "primitive" - }, - "updated_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "indy": { - "properties": { - "created_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "cred_ex_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "cred_ex_indy_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "cred_id_stored": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "cred_rev_id": { - "value": { - "value": "12345", - "type": "string" - }, - "type": "primitive" - }, - "rev_reg_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "type": "string" - }, - "type": "primitive" - }, - "state": { - "value": { - "value": "active", - "type": "string" - }, - "type": "primitive" - }, - "updated_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "ld_proof": { - "properties": { - "created_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "cred_ex_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "cred_ex_ld_proof_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "cred_id_stored": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "state": { - "value": { - "value": "active", - "type": "string" - }, - "type": "primitive" - }, - "updated_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "type": "withoutStreaming" - }, - "codeSamples": [], - "type": "full" - } - ], - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - }, - { - "summary": "Fetch a single credential exchange record", - "audiences": [], - "operationId": "get_cred_ex_record", - "tags": [ - "issue-credential v2.0" - ], - "pathParameters": [ - { - "description": "Credential exchange identifier", - "name": "cred_ex_id", - "schema": { - "schema": { - "pattern": "[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-4[a-fA-F0-9]{3}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}", - "type": "string" - }, - "generatedName": "GetCredExRecordRequestCredExId", - "groupName": [], - "type": "primitive" - }, - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - } - ], - "queryParameters": [], - "headers": [], - "generatedRequestName": "GetCredExRecordRequest", - "response": { - "description": "", - "schema": { - "generatedName": "GetCredExRecordResponse", - "schema": "V20CredExRecordDetail", - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "reference" - }, - "fullExamples": [], - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "json" - }, - "errors": {}, - "server": [], - "authed": true, - "method": "GET", - "path": "/issue-credential-2.0/records/{cred_ex_id}", - "examples": [ - { - "pathParameters": [ - { - "name": "cred_ex_id", - "value": { - "value": { - "value": "cred_ex_id", - "type": "string" - }, - "type": "primitive" - } - } - ], - "queryParameters": [], - "headers": [], - "response": { - "value": { - "properties": { - "cred_ex_record": { - "properties": { - "auto_issue": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - }, - "auto_offer": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - }, - "auto_remove": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - }, - "connection_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "created_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "cred_ex_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "cred_issue": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" - }, - "credentials~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "formats": { - "value": [ - { - "properties": { - "attach_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "format": { - "value": { - "value": "aries/ld-proof-vc-detail@v1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "replacement_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "cred_offer": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" - }, - "credential_preview": { - "properties": { - "@type": { - "value": { - "value": "issue-credential/2.0/credential-preview", - "type": "string" - }, - "type": "primitive" - }, - "attributes": { - "value": [ - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "formats": { - "value": [ - { - "properties": { - "attach_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "format": { - "value": { - "value": "aries/ld-proof-vc-detail@v1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "offers~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "replacement_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "cred_preview": { - "properties": { - "@type": { - "value": { - "value": "issue-credential/2.0/credential-preview", - "type": "string" - }, - "type": "primitive" - }, - "attributes": { - "value": [ - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "cred_proposal": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" - }, - "credential_preview": { - "properties": { - "@type": { - "value": { - "value": "issue-credential/2.0/credential-preview", - "type": "string" - }, - "type": "primitive" - }, - "attributes": { - "value": [ - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "filters~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "formats": { - "value": [ - { - "properties": { - "attach_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "format": { - "value": { - "value": "aries/ld-proof-vc-detail@v1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "cred_request": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" - }, - "formats": { - "value": [ - { - "properties": { - "attach_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "format": { - "value": { - "value": "aries/ld-proof-vc-detail@v1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "requests~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "error_msg": { - "value": { - "value": "The front fell off", - "type": "string" - }, - "type": "primitive" - }, - "initiator": { - "value": "self", - "type": "enum" - }, - "parent_thread_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "role": { - "value": "issuer", - "type": "enum" - }, - "state": { - "value": "done", - "type": "enum" - }, - "thread_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "trace": { - "value": { - "value": true, - "type": "boolean" - }, - "type": "primitive" - }, - "updated_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "indy": { - "properties": { - "created_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "cred_ex_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "cred_ex_indy_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "cred_id_stored": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "cred_rev_id": { - "value": { - "value": "12345", - "type": "string" - }, - "type": "primitive" - }, - "rev_reg_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "type": "string" - }, - "type": "primitive" - }, - "state": { - "value": { - "value": "active", - "type": "string" - }, - "type": "primitive" - }, - "updated_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "ld_proof": { - "properties": { - "created_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "cred_ex_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "cred_ex_ld_proof_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "cred_id_stored": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "state": { - "value": { - "value": "active", - "type": "string" - }, - "type": "primitive" - }, - "updated_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - }, - "type": "object" - }, - "type": "withoutStreaming" - }, - "codeSamples": [], - "type": "full" - } - ], - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - }, - { - "summary": "Remove an existing credential exchange record", - "audiences": [], - "operationId": "delete_cred_ex_record", - "tags": [ - "issue-credential v2.0" - ], - "pathParameters": [ - { - "description": "Credential exchange identifier", - "name": "cred_ex_id", - "schema": { - "schema": { - "pattern": "[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-4[a-fA-F0-9]{3}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}", - "type": "string" - }, - "generatedName": "DeleteCredExRecordRequestCredExId", - "groupName": [], - "type": "primitive" - }, - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - } - ], - "queryParameters": [], - "headers": [], - "generatedRequestName": "DeleteCredExRecordRequest", - "response": { - "description": "", - "schema": { - "generatedName": "DeleteCredExRecordResponse", - "schema": "V20IssueCredentialModuleResponse", - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "reference" - }, - "fullExamples": [], - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "json" - }, - "errors": {}, - "server": [], - "authed": true, - "method": "DELETE", - "path": "/issue-credential-2.0/records/{cred_ex_id}", - "examples": [ - { - "pathParameters": [ - { - "name": "cred_ex_id", - "value": { - "value": { - "value": "cred_ex_id", - "type": "string" - }, - "type": "primitive" - } - } - ], - "queryParameters": [], - "headers": [], - "response": { - "value": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "type": "withoutStreaming" - }, - "codeSamples": [], - "type": "full" - } - ], - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - }, - { - "summary": "Send holder a credential", - "audiences": [], - "operationId": "issue_credential_to_holder", - "tags": [ - "issue-credential v2.0" - ], - "pathParameters": [ - { - "description": "Credential exchange identifier", - "name": "cred_ex_id", - "schema": { - "schema": { - "pattern": "[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-4[a-fA-F0-9]{3}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}", - "type": "string" - }, - "generatedName": "IssueCredentialToHolderRequestCredExId", - "groupName": [], - "type": "primitive" - }, - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - } - ], - "queryParameters": [], - "headers": [], - "generatedRequestName": "IssueCredentialToHolderRequest", - "request": { - "schema": { - "generatedName": "IssueCredentialToHolderRequest", - "schema": "V20CredIssueRequest", - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "reference" - }, - "contentType": "application/json", - "fullExamples": [], - "additionalProperties": false, - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "json" - }, - "response": { - "description": "", - "schema": { - "generatedName": "IssueCredentialToHolderResponse", - "schema": "V20CredExRecordDetail", - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "reference" - }, - "fullExamples": [], - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "json" - }, - "errors": {}, - "server": [], - "authed": true, - "method": "POST", - "path": "/issue-credential-2.0/records/{cred_ex_id}/issue", - "examples": [ - { - "pathParameters": [ - { - "name": "cred_ex_id", - "value": { - "value": { - "value": "cred_ex_id", - "type": "string" - }, - "type": "primitive" - } - } - ], - "queryParameters": [], - "headers": [], - "request": { - "properties": { - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "response": { - "value": { - "properties": { - "cred_ex_record": { - "properties": { - "auto_issue": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - }, - "auto_offer": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - }, - "auto_remove": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - }, - "connection_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "created_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "cred_ex_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "cred_issue": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" - }, - "credentials~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "formats": { - "value": [ - { - "properties": { - "attach_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "format": { - "value": { - "value": "aries/ld-proof-vc-detail@v1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "replacement_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "cred_offer": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" - }, - "credential_preview": { - "properties": { - "@type": { - "value": { - "value": "issue-credential/2.0/credential-preview", - "type": "string" - }, - "type": "primitive" - }, - "attributes": { - "value": [ - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "formats": { - "value": [ - { - "properties": { - "attach_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "format": { - "value": { - "value": "aries/ld-proof-vc-detail@v1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "offers~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "replacement_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "cred_preview": { - "properties": { - "@type": { - "value": { - "value": "issue-credential/2.0/credential-preview", - "type": "string" - }, - "type": "primitive" - }, - "attributes": { - "value": [ - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "cred_proposal": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" - }, - "credential_preview": { - "properties": { - "@type": { - "value": { - "value": "issue-credential/2.0/credential-preview", - "type": "string" - }, - "type": "primitive" - }, - "attributes": { - "value": [ - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "filters~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "formats": { - "value": [ - { - "properties": { - "attach_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "format": { - "value": { - "value": "aries/ld-proof-vc-detail@v1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "cred_request": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" - }, - "formats": { - "value": [ - { - "properties": { - "attach_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "format": { - "value": { - "value": "aries/ld-proof-vc-detail@v1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "requests~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "error_msg": { - "value": { - "value": "The front fell off", - "type": "string" - }, - "type": "primitive" - }, - "initiator": { - "value": "self", - "type": "enum" - }, - "parent_thread_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "role": { - "value": "issuer", - "type": "enum" - }, - "state": { - "value": "done", - "type": "enum" - }, - "thread_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "trace": { - "value": { - "value": true, - "type": "boolean" - }, - "type": "primitive" - }, - "updated_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "indy": { - "properties": { - "created_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "cred_ex_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "cred_ex_indy_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "cred_id_stored": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "cred_rev_id": { - "value": { - "value": "12345", - "type": "string" - }, - "type": "primitive" - }, - "rev_reg_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "type": "string" - }, - "type": "primitive" - }, - "state": { - "value": { - "value": "active", - "type": "string" - }, - "type": "primitive" - }, - "updated_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "ld_proof": { - "properties": { - "created_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "cred_ex_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "cred_ex_ld_proof_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "cred_id_stored": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "state": { - "value": { - "value": "active", - "type": "string" - }, - "type": "primitive" - }, - "updated_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - }, - "type": "object" - }, - "type": "withoutStreaming" - }, - "codeSamples": [], - "type": "full" - } - ], - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - }, - { - "summary": "Send a problem report for credential exchange", - "audiences": [], - "operationId": "report_cred_ex_problem", - "tags": [ - "issue-credential v2.0" - ], - "pathParameters": [ - { - "description": "Credential exchange identifier", - "name": "cred_ex_id", - "schema": { - "schema": { - "pattern": "[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-4[a-fA-F0-9]{3}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}", - "type": "string" - }, - "generatedName": "ReportCredExProblemRequestCredExId", - "groupName": [], - "type": "primitive" - }, - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - } - ], - "queryParameters": [], - "headers": [], - "generatedRequestName": "ReportCredExProblemRequest", - "request": { - "schema": { - "generatedName": "ReportCredExProblemRequest", - "schema": "V20CredIssueProblemReportRequest", - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "reference" - }, - "contentType": "application/json", - "fullExamples": [], - "additionalProperties": false, - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "json" - }, - "response": { - "description": "", - "schema": { - "generatedName": "ReportCredExProblemResponse", - "schema": "V20IssueCredentialModuleResponse", - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "reference" - }, - "fullExamples": [], - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "json" - }, - "errors": {}, - "server": [], - "authed": true, - "method": "POST", - "path": "/issue-credential-2.0/records/{cred_ex_id}/problem-report", - "examples": [ - { - "pathParameters": [ - { - "name": "cred_ex_id", - "value": { - "value": { - "value": "cred_ex_id", - "type": "string" - }, - "type": "primitive" - } - } - ], - "queryParameters": [], - "headers": [], - "request": { - "properties": { - "description": { - "value": { - "value": "description", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "response": { - "value": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "type": "withoutStreaming" - }, - "codeSamples": [], - "type": "full" - } - ], - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - }, - { - "summary": "Send holder a credential offer in reference to a proposal with preview", - "audiences": [], - "operationId": "send_credential_offer", - "tags": [ - "issue-credential v2.0" - ], - "pathParameters": [ - { - "description": "Credential exchange identifier", - "name": "cred_ex_id", - "schema": { - "schema": { - "pattern": "[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-4[a-fA-F0-9]{3}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}", - "type": "string" - }, - "generatedName": "SendCredentialOfferRequestCredExId", - "groupName": [], - "type": "primitive" - }, - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - } - ], - "queryParameters": [], - "headers": [], - "generatedRequestName": "SendCredentialOfferRequest", - "request": { - "schema": { - "generatedName": "SendCredentialOfferRequest", - "schema": "V20CredBoundOfferRequest", - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "reference" - }, - "contentType": "application/json", - "fullExamples": [], - "additionalProperties": false, - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "json" - }, - "response": { - "description": "", - "schema": { - "generatedName": "SendCredentialOfferResponse", - "schema": "V20CredExRecord", - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "reference" - }, - "fullExamples": [], - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "json" - }, - "errors": {}, - "server": [], - "authed": true, - "method": "POST", - "path": "/issue-credential-2.0/records/{cred_ex_id}/send-offer", - "examples": [ - { - "pathParameters": [ - { - "name": "cred_ex_id", - "value": { - "value": { - "value": "cred_ex_id", - "type": "string" - }, - "type": "primitive" - } - } - ], - "queryParameters": [], - "headers": [], - "request": { - "properties": { - "counter_preview": { - "properties": { - "@type": { - "value": { - "value": "issue-credential/2.0/credential-preview", - "type": "string" - }, - "type": "primitive" - }, - "attributes": { - "value": [ - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - } - }, - "type": "object" - }, - "response": { - "value": { - "properties": { - "auto_issue": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - }, - "auto_offer": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - }, - "auto_remove": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - }, - "connection_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "created_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "cred_ex_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "cred_issue": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" - }, - "credentials~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "formats": { - "value": [ - { - "properties": { - "attach_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "format": { - "value": { - "value": "aries/ld-proof-vc-detail@v1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "replacement_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "cred_offer": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" - }, - "credential_preview": { - "properties": { - "@type": { - "value": { - "value": "issue-credential/2.0/credential-preview", - "type": "string" - }, - "type": "primitive" - }, - "attributes": { - "value": [ - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "formats": { - "value": [ - { - "properties": { - "attach_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "format": { - "value": { - "value": "aries/ld-proof-vc-detail@v1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "offers~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "replacement_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "cred_preview": { - "properties": { - "@type": { - "value": { - "value": "issue-credential/2.0/credential-preview", - "type": "string" - }, - "type": "primitive" - }, - "attributes": { - "value": [ - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "cred_proposal": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" - }, - "credential_preview": { - "properties": { - "@type": { - "value": { - "value": "issue-credential/2.0/credential-preview", - "type": "string" - }, - "type": "primitive" - }, - "attributes": { - "value": [ - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "filters~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "formats": { - "value": [ - { - "properties": { - "attach_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "format": { - "value": { - "value": "aries/ld-proof-vc-detail@v1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "cred_request": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" - }, - "formats": { - "value": [ - { - "properties": { - "attach_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "format": { - "value": { - "value": "aries/ld-proof-vc-detail@v1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "requests~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "error_msg": { - "value": { - "value": "The front fell off", - "type": "string" - }, - "type": "primitive" - }, - "initiator": { - "value": "self", - "type": "enum" - }, - "parent_thread_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "role": { - "value": "issuer", - "type": "enum" - }, - "state": { - "value": "done", - "type": "enum" - }, - "thread_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "trace": { - "value": { - "value": true, - "type": "boolean" - }, - "type": "primitive" - }, - "updated_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "type": "withoutStreaming" - }, - "codeSamples": [], - "type": "full" - } - ], - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - }, - { - "summary": "Send issuer a credential request", - "audiences": [], - "operationId": "send_credential_request", - "tags": [ - "issue-credential v2.0" - ], - "pathParameters": [ - { - "description": "Credential exchange identifier", - "name": "cred_ex_id", - "schema": { - "schema": { - "pattern": "[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-4[a-fA-F0-9]{3}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}", - "type": "string" - }, - "generatedName": "SendCredentialRequestRequestCredExId", - "groupName": [], - "type": "primitive" - }, - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - } - ], - "queryParameters": [], - "headers": [], - "generatedRequestName": "SendCredentialRequestRequest", - "request": { - "schema": { - "generatedName": "SendCredentialRequestRequest", - "schema": "V20CredRequestRequest", - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "reference" - }, - "contentType": "application/json", - "fullExamples": [], - "additionalProperties": false, - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "json" - }, - "response": { - "description": "", - "schema": { - "generatedName": "SendCredentialRequestResponse", - "schema": "V20CredExRecord", - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "reference" - }, - "fullExamples": [], - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "json" - }, - "errors": {}, - "server": [], - "authed": true, - "method": "POST", - "path": "/issue-credential-2.0/records/{cred_ex_id}/send-request", - "examples": [ - { - "pathParameters": [ - { - "name": "cred_ex_id", - "value": { - "value": { - "value": "cred_ex_id", - "type": "string" - }, - "type": "primitive" - } - } - ], - "queryParameters": [], - "headers": [], - "request": { - "properties": { - "holder_did": { - "value": { - "value": "did:key:ahsdkjahsdkjhaskjdhakjshdkajhsdkjahs", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "response": { - "value": { - "properties": { - "auto_issue": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - }, - "auto_offer": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - }, - "auto_remove": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - }, - "connection_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "created_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "cred_ex_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "cred_issue": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" - }, - "credentials~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "formats": { - "value": [ - { - "properties": { - "attach_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "format": { - "value": { - "value": "aries/ld-proof-vc-detail@v1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "replacement_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "cred_offer": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" - }, - "credential_preview": { - "properties": { - "@type": { - "value": { - "value": "issue-credential/2.0/credential-preview", - "type": "string" - }, - "type": "primitive" - }, - "attributes": { - "value": [ - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "formats": { - "value": [ - { - "properties": { - "attach_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "format": { - "value": { - "value": "aries/ld-proof-vc-detail@v1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "offers~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "replacement_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "cred_preview": { - "properties": { - "@type": { - "value": { - "value": "issue-credential/2.0/credential-preview", - "type": "string" - }, - "type": "primitive" - }, - "attributes": { - "value": [ - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "cred_proposal": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" - }, - "credential_preview": { - "properties": { - "@type": { - "value": { - "value": "issue-credential/2.0/credential-preview", - "type": "string" - }, - "type": "primitive" - }, - "attributes": { - "value": [ - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "filters~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "formats": { - "value": [ - { - "properties": { - "attach_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "format": { - "value": { - "value": "aries/ld-proof-vc-detail@v1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "cred_request": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" - }, - "formats": { - "value": [ - { - "properties": { - "attach_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "format": { - "value": { - "value": "aries/ld-proof-vc-detail@v1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "requests~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "error_msg": { - "value": { - "value": "The front fell off", - "type": "string" - }, - "type": "primitive" - }, - "initiator": { - "value": "self", - "type": "enum" - }, - "parent_thread_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "role": { - "value": "issuer", - "type": "enum" - }, - "state": { - "value": "done", - "type": "enum" - }, - "thread_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "trace": { - "value": { - "value": true, - "type": "boolean" - }, - "type": "primitive" - }, - "updated_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "type": "withoutStreaming" - }, - "codeSamples": [], - "type": "full" - } - ], - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - }, - { - "summary": "Store a received credential", - "audiences": [], - "operationId": "store_received_credential", - "tags": [ - "issue-credential v2.0" - ], - "pathParameters": [ - { - "description": "Credential exchange identifier", - "name": "cred_ex_id", - "schema": { - "schema": { - "pattern": "[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-4[a-fA-F0-9]{3}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}", - "type": "string" - }, - "generatedName": "StoreReceivedCredentialRequestCredExId", - "groupName": [], - "type": "primitive" - }, - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - } - ], - "queryParameters": [], - "headers": [], - "generatedRequestName": "StoreReceivedCredentialRequest", - "request": { - "schema": { - "generatedName": "StoreReceivedCredentialRequest", - "schema": "V20CredStoreRequest", - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "reference" - }, - "contentType": "application/json", - "fullExamples": [], - "additionalProperties": false, - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "json" - }, - "response": { - "description": "", - "schema": { - "generatedName": "StoreReceivedCredentialResponse", - "schema": "V20CredExRecordDetail", - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "reference" - }, - "fullExamples": [], - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "json" - }, - "errors": {}, - "server": [], - "authed": true, - "method": "POST", - "path": "/issue-credential-2.0/records/{cred_ex_id}/store", - "examples": [ - { - "pathParameters": [ - { - "name": "cred_ex_id", - "value": { - "value": { - "value": "cred_ex_id", - "type": "string" - }, - "type": "primitive" - } - } - ], - "queryParameters": [], - "headers": [], - "request": { - "properties": { - "credential_id": { - "value": { - "value": "credential_id", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "response": { - "value": { - "properties": { - "cred_ex_record": { - "properties": { - "auto_issue": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - }, - "auto_offer": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - }, - "auto_remove": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - }, - "connection_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "created_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "cred_ex_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "cred_issue": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" - }, - "credentials~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "formats": { - "value": [ - { - "properties": { - "attach_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "format": { - "value": { - "value": "aries/ld-proof-vc-detail@v1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "replacement_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "cred_offer": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" - }, - "credential_preview": { - "properties": { - "@type": { - "value": { - "value": "issue-credential/2.0/credential-preview", - "type": "string" - }, - "type": "primitive" - }, - "attributes": { - "value": [ - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "formats": { - "value": [ - { - "properties": { - "attach_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "format": { - "value": { - "value": "aries/ld-proof-vc-detail@v1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "offers~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "replacement_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "cred_preview": { - "properties": { - "@type": { - "value": { - "value": "issue-credential/2.0/credential-preview", - "type": "string" - }, - "type": "primitive" - }, - "attributes": { - "value": [ - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "cred_proposal": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" - }, - "credential_preview": { - "properties": { - "@type": { - "value": { - "value": "issue-credential/2.0/credential-preview", - "type": "string" - }, - "type": "primitive" - }, - "attributes": { - "value": [ - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "filters~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "formats": { - "value": [ - { - "properties": { - "attach_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "format": { - "value": { - "value": "aries/ld-proof-vc-detail@v1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "cred_request": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" - }, - "formats": { - "value": [ - { - "properties": { - "attach_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "format": { - "value": { - "value": "aries/ld-proof-vc-detail@v1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "requests~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "error_msg": { - "value": { - "value": "The front fell off", - "type": "string" - }, - "type": "primitive" - }, - "initiator": { - "value": "self", - "type": "enum" - }, - "parent_thread_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "role": { - "value": "issuer", - "type": "enum" - }, - "state": { - "value": "done", - "type": "enum" - }, - "thread_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "trace": { - "value": { - "value": true, - "type": "boolean" - }, - "type": "primitive" - }, - "updated_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "indy": { - "properties": { - "created_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "cred_ex_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "cred_ex_indy_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "cred_id_stored": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "cred_rev_id": { - "value": { - "value": "12345", - "type": "string" - }, - "type": "primitive" - }, - "rev_reg_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "type": "string" - }, - "type": "primitive" - }, - "state": { - "value": { - "value": "active", - "type": "string" - }, - "type": "primitive" - }, - "updated_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "ld_proof": { - "properties": { - "created_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "cred_ex_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "cred_ex_ld_proof_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "cred_id_stored": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "state": { - "value": { - "value": "active", - "type": "string" - }, - "type": "primitive" - }, - "updated_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - }, - "type": "object" - }, - "type": "withoutStreaming" - }, - "codeSamples": [], - "type": "full" - } - ], - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - }, - { - "summary": "Send holder a credential, automating entire flow", - "audiences": [], - "operationId": "send_free_credential", - "tags": [ - "issue-credential v2.0" - ], - "pathParameters": [], - "queryParameters": [], - "headers": [], - "generatedRequestName": "SendFreeCredentialRequest", - "request": { - "schema": { - "generatedName": "SendFreeCredentialRequest", - "schema": "V20CredExFree", - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "reference" - }, - "contentType": "application/json", - "fullExamples": [], - "additionalProperties": false, - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "json" - }, - "response": { - "description": "", - "schema": { - "generatedName": "SendFreeCredentialResponse", - "schema": "V20CredExRecord", - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "reference" - }, - "fullExamples": [], - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "json" - }, - "errors": {}, - "server": [], - "authed": true, - "method": "POST", - "path": "/issue-credential-2.0/send", - "examples": [ - { - "pathParameters": [], - "queryParameters": [], - "headers": [], - "request": { - "properties": { - "auto_remove": { - "value": { - "value": true, - "type": "boolean" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" - }, - "connection_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "credential_preview": { - "properties": { - "@type": { - "value": { - "value": "issue-credential/2.0/credential-preview", - "type": "string" - }, - "type": "primitive" - }, - "attributes": { - "value": [ - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "filter": { - "properties": {}, - "type": "object" - }, - "trace": { - "value": { - "value": true, - "type": "boolean" - }, - "type": "primitive" - }, - "verification_method": { - "value": { - "value": "verification_method", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "response": { - "value": { - "properties": { - "auto_issue": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - }, - "auto_offer": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - }, - "auto_remove": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - }, - "connection_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "created_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "cred_ex_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "cred_issue": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" - }, - "credentials~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "formats": { - "value": [ - { - "properties": { - "attach_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "format": { - "value": { - "value": "aries/ld-proof-vc-detail@v1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "replacement_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "cred_offer": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" - }, - "credential_preview": { - "properties": { - "@type": { - "value": { - "value": "issue-credential/2.0/credential-preview", - "type": "string" - }, - "type": "primitive" - }, - "attributes": { - "value": [ - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "formats": { - "value": [ - { - "properties": { - "attach_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "format": { - "value": { - "value": "aries/ld-proof-vc-detail@v1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "offers~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "replacement_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "cred_preview": { - "properties": { - "@type": { - "value": { - "value": "issue-credential/2.0/credential-preview", - "type": "string" - }, - "type": "primitive" - }, - "attributes": { - "value": [ - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "cred_proposal": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" - }, - "credential_preview": { - "properties": { - "@type": { - "value": { - "value": "issue-credential/2.0/credential-preview", - "type": "string" - }, - "type": "primitive" - }, - "attributes": { - "value": [ - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "filters~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "formats": { - "value": [ - { - "properties": { - "attach_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "format": { - "value": { - "value": "aries/ld-proof-vc-detail@v1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "cred_request": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" - }, - "formats": { - "value": [ - { - "properties": { - "attach_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "format": { - "value": { - "value": "aries/ld-proof-vc-detail@v1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "requests~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "error_msg": { - "value": { - "value": "The front fell off", - "type": "string" - }, - "type": "primitive" - }, - "initiator": { - "value": "self", - "type": "enum" - }, - "parent_thread_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "role": { - "value": "issuer", - "type": "enum" - }, - "state": { - "value": "done", - "type": "enum" - }, - "thread_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "trace": { - "value": { - "value": true, - "type": "boolean" - }, - "type": "primitive" - }, - "updated_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "type": "withoutStreaming" - }, - "codeSamples": [], - "type": "full" - } - ], - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - }, - { - "summary": "Send holder a credential offer, independent of any proposal", - "audiences": [], - "operationId": "send_free_credential_offer", - "tags": [ - "issue-credential v2.0" - ], - "pathParameters": [], - "queryParameters": [], - "headers": [], - "generatedRequestName": "SendFreeCredentialOfferRequest", - "request": { - "schema": { - "generatedName": "SendFreeCredentialOfferRequest", - "schema": "V20CredOfferRequest", - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "reference" - }, - "contentType": "application/json", - "fullExamples": [], - "additionalProperties": false, - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "json" - }, - "response": { - "description": "", - "schema": { - "generatedName": "SendFreeCredentialOfferResponse", - "schema": "V20CredExRecord", - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "reference" - }, - "fullExamples": [], - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "json" - }, - "errors": {}, - "server": [], - "authed": true, - "method": "POST", - "path": "/issue-credential-2.0/send-offer", - "examples": [ - { - "pathParameters": [], - "queryParameters": [], - "headers": [], - "request": { - "properties": { - "auto_issue": { - "value": { - "value": true, - "type": "boolean" - }, - "type": "primitive" - }, - "auto_remove": { - "value": { - "value": true, - "type": "boolean" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" - }, - "connection_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "credential_preview": { - "properties": { - "@type": { - "value": { - "value": "issue-credential/2.0/credential-preview", - "type": "string" - }, - "type": "primitive" - }, - "attributes": { - "value": [ - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "filter": { - "properties": {}, - "type": "object" - }, - "trace": { - "value": { - "value": true, - "type": "boolean" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "response": { - "value": { - "properties": { - "auto_issue": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - }, - "auto_offer": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - }, - "auto_remove": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - }, - "connection_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "created_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "cred_ex_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "cred_issue": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" - }, - "credentials~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "formats": { - "value": [ - { - "properties": { - "attach_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "format": { - "value": { - "value": "aries/ld-proof-vc-detail@v1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "replacement_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "cred_offer": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" - }, - "credential_preview": { - "properties": { - "@type": { - "value": { - "value": "issue-credential/2.0/credential-preview", - "type": "string" - }, - "type": "primitive" - }, - "attributes": { - "value": [ - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "formats": { - "value": [ - { - "properties": { - "attach_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "format": { - "value": { - "value": "aries/ld-proof-vc-detail@v1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "offers~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "replacement_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "cred_preview": { - "properties": { - "@type": { - "value": { - "value": "issue-credential/2.0/credential-preview", - "type": "string" - }, - "type": "primitive" - }, - "attributes": { - "value": [ - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "cred_proposal": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" - }, - "credential_preview": { - "properties": { - "@type": { - "value": { - "value": "issue-credential/2.0/credential-preview", - "type": "string" - }, - "type": "primitive" - }, - "attributes": { - "value": [ - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "filters~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "formats": { - "value": [ - { - "properties": { - "attach_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "format": { - "value": { - "value": "aries/ld-proof-vc-detail@v1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "cred_request": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" - }, - "formats": { - "value": [ - { - "properties": { - "attach_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "format": { - "value": { - "value": "aries/ld-proof-vc-detail@v1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "requests~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "error_msg": { - "value": { - "value": "The front fell off", - "type": "string" - }, - "type": "primitive" - }, - "initiator": { - "value": "self", - "type": "enum" - }, - "parent_thread_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "role": { - "value": "issuer", - "type": "enum" - }, - "state": { - "value": "done", - "type": "enum" - }, - "thread_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "trace": { - "value": { - "value": true, - "type": "boolean" - }, - "type": "primitive" - }, - "updated_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "type": "withoutStreaming" - }, - "codeSamples": [], - "type": "full" - } - ], - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - }, - { - "summary": "Send issuer a credential proposal", - "audiences": [], - "operationId": "send_free_credential_proposal", - "tags": [ - "issue-credential v2.0" - ], - "pathParameters": [], - "queryParameters": [], - "headers": [], - "generatedRequestName": "SendFreeCredentialProposalRequest", - "request": { - "schema": { - "generatedName": "SendFreeCredentialProposalRequest", - "schema": "V20CredExFree", - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "reference" - }, - "contentType": "application/json", - "fullExamples": [], - "additionalProperties": false, - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "json" - }, - "response": { - "description": "", - "schema": { - "generatedName": "SendFreeCredentialProposalResponse", - "schema": "V20CredExRecord", - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "reference" - }, - "fullExamples": [], - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "json" - }, - "errors": {}, - "server": [], - "authed": true, - "method": "POST", - "path": "/issue-credential-2.0/send-proposal", - "examples": [ - { - "pathParameters": [], - "queryParameters": [], - "headers": [], - "request": { - "properties": { - "auto_remove": { - "value": { - "value": true, - "type": "boolean" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" - }, - "connection_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "credential_preview": { - "properties": { - "@type": { - "value": { - "value": "issue-credential/2.0/credential-preview", - "type": "string" - }, - "type": "primitive" - }, - "attributes": { - "value": [ - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "filter": { - "properties": {}, - "type": "object" - }, - "trace": { - "value": { - "value": true, - "type": "boolean" - }, - "type": "primitive" - }, - "verification_method": { - "value": { - "value": "verification_method", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "response": { - "value": { - "properties": { - "auto_issue": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - }, - "auto_offer": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - }, - "auto_remove": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - }, - "connection_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "created_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "cred_ex_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "cred_issue": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" - }, - "credentials~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "formats": { - "value": [ - { - "properties": { - "attach_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "format": { - "value": { - "value": "aries/ld-proof-vc-detail@v1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "replacement_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "cred_offer": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" - }, - "credential_preview": { - "properties": { - "@type": { - "value": { - "value": "issue-credential/2.0/credential-preview", - "type": "string" - }, - "type": "primitive" - }, - "attributes": { - "value": [ - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "formats": { - "value": [ - { - "properties": { - "attach_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "format": { - "value": { - "value": "aries/ld-proof-vc-detail@v1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "offers~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "replacement_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "cred_preview": { - "properties": { - "@type": { - "value": { - "value": "issue-credential/2.0/credential-preview", - "type": "string" - }, - "type": "primitive" - }, - "attributes": { - "value": [ - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "cred_proposal": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" - }, - "credential_preview": { - "properties": { - "@type": { - "value": { - "value": "issue-credential/2.0/credential-preview", - "type": "string" - }, - "type": "primitive" - }, - "attributes": { - "value": [ - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "filters~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "formats": { - "value": [ - { - "properties": { - "attach_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "format": { - "value": { - "value": "aries/ld-proof-vc-detail@v1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "cred_request": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" - }, - "formats": { - "value": [ - { - "properties": { - "attach_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "format": { - "value": { - "value": "aries/ld-proof-vc-detail@v1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "requests~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "error_msg": { - "value": { - "value": "The front fell off", - "type": "string" - }, - "type": "primitive" - }, - "initiator": { - "value": "self", - "type": "enum" - }, - "parent_thread_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "role": { - "value": "issuer", - "type": "enum" - }, - "state": { - "value": "done", - "type": "enum" - }, - "thread_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "trace": { - "value": { - "value": true, - "type": "boolean" - }, - "type": "primitive" - }, - "updated_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "type": "withoutStreaming" - }, - "codeSamples": [], - "type": "full" - } - ], - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - }, - { - "summary": "Send issuer a credential request not bound to an existing thread. Indy credentials cannot start at a request", - "audiences": [], - "operationId": "send_free_credential_request", - "tags": [ - "issue-credential v2.0" - ], - "pathParameters": [], - "queryParameters": [], - "headers": [], - "generatedRequestName": "SendFreeCredentialRequestRequest", - "request": { - "schema": { - "generatedName": "SendFreeCredentialRequestRequest", - "schema": "V20CredRequestFree", - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "reference" - }, - "contentType": "application/json", - "fullExamples": [], - "additionalProperties": false, - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "json" - }, - "response": { - "description": "", - "schema": { - "generatedName": "SendFreeCredentialRequestResponse", - "schema": "V20CredExRecord", - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "reference" - }, - "fullExamples": [], - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "json" - }, - "errors": {}, - "server": [], - "authed": true, - "method": "POST", - "path": "/issue-credential-2.0/send-request", - "examples": [ - { - "pathParameters": [], - "queryParameters": [], - "headers": [], - "request": { - "properties": { - "auto_remove": { - "value": { - "value": true, - "type": "boolean" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" - }, - "connection_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "filter": { - "properties": { - "ld_proof": { - "properties": { - "credential": { - "properties": { - "@context": { - "value": [ - { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - } - ], - "type": "array" - }, - "credentialSubject": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "issuanceDate": { - "value": { - "value": "2010-01-01 19:23:24+00:00", - "type": "string" - }, - "type": "primitive" - }, - "issuer": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "type": { - "value": [ - { - "value": { - "value": "VerifiableCredential", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "AlumniCredential", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "options": { - "properties": { - "proofType": { - "value": { - "value": "Ed25519Signature2018", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - }, - "type": "object" - } - }, - "type": "object" - }, - "holder_did": { - "value": { - "value": "did:key:ahsdkjahsdkjhaskjdhakjshdkajhsdkjahs", - "type": "string" - }, - "type": "primitive" - }, - "trace": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "response": { - "value": { - "properties": { - "auto_issue": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - }, - "auto_offer": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - }, - "auto_remove": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - }, - "connection_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "created_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "cred_ex_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "cred_issue": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" - }, - "credentials~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "formats": { - "value": [ - { - "properties": { - "attach_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "format": { - "value": { - "value": "aries/ld-proof-vc-detail@v1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "replacement_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "cred_offer": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" - }, - "credential_preview": { - "properties": { - "@type": { - "value": { - "value": "issue-credential/2.0/credential-preview", - "type": "string" - }, - "type": "primitive" - }, - "attributes": { - "value": [ - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "formats": { - "value": [ - { - "properties": { - "attach_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "format": { - "value": { - "value": "aries/ld-proof-vc-detail@v1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "offers~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "replacement_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "cred_preview": { - "properties": { - "@type": { - "value": { - "value": "issue-credential/2.0/credential-preview", - "type": "string" - }, - "type": "primitive" - }, - "attributes": { - "value": [ - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "cred_proposal": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" - }, - "credential_preview": { - "properties": { - "@type": { - "value": { - "value": "issue-credential/2.0/credential-preview", - "type": "string" - }, - "type": "primitive" - }, - "attributes": { - "value": [ - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "filters~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "formats": { - "value": [ - { - "properties": { - "attach_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "format": { - "value": { - "value": "aries/ld-proof-vc-detail@v1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "cred_request": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" - }, - "formats": { - "value": [ - { - "properties": { - "attach_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "format": { - "value": { - "value": "aries/ld-proof-vc-detail@v1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "requests~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "error_msg": { - "value": { - "value": "The front fell off", - "type": "string" - }, - "type": "primitive" - }, - "initiator": { - "value": "self", - "type": "enum" - }, - "parent_thread_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "role": { - "value": "issuer", - "type": "enum" - }, - "state": { - "value": "done", - "type": "enum" - }, - "thread_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "trace": { - "value": { - "value": true, - "type": "boolean" - }, - "type": "primitive" - }, - "updated_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "type": "withoutStreaming" - }, - "codeSamples": [], - "type": "full" - } - ], - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - }, - { - "summary": "Create a credential record without sending (generally for use with Out-Of-Band)", - "audiences": [], - "operationId": "create_credential_record", - "tags": [ - "issue-credential v1.0" - ], - "pathParameters": [], - "queryParameters": [], - "headers": [], - "generatedRequestName": "CreateCredentialRecordRequest", - "request": { - "schema": { - "generatedName": "CreateCredentialRecordRequest", - "schema": "V10CredentialCreate", - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "reference" - }, - "contentType": "application/json", - "fullExamples": [], - "additionalProperties": false, - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "json" - }, - "response": { - "description": "", - "schema": { - "generatedName": "CreateCredentialRecordResponse", - "schema": "V10CredentialExchange", - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "reference" - }, - "fullExamples": [], - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "json" - }, - "errors": {}, - "server": [], - "authed": true, - "method": "POST", - "path": "/issue-credential/create", - "examples": [ - { - "pathParameters": [], - "queryParameters": [], - "headers": [], - "request": { - "properties": { - "auto_remove": { - "value": { - "value": true, - "type": "boolean" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" - }, - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "credential_proposal": { - "properties": { - "@type": { - "value": { - "value": "issue-credential/1.0/credential-preview", - "type": "string" - }, - "type": "primitive" - }, - "attributes": { - "value": [ - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "issuer_did": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv", - "type": "string" - }, - "type": "primitive" - }, - "schema_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "type": "string" - }, - "type": "primitive" - }, - "schema_issuer_did": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv", - "type": "string" - }, - "type": "primitive" - }, - "schema_name": { - "value": { - "value": "preferences", - "type": "string" - }, - "type": "primitive" - }, - "schema_version": { - "value": { - "value": "1.0", - "type": "string" - }, - "type": "primitive" - }, - "trace": { - "value": { - "value": true, - "type": "boolean" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "response": { - "value": { - "properties": { - "auto_issue": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - }, - "auto_offer": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - }, - "auto_remove": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - }, - "connection_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "created_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "credential": { - "properties": { - "attrs": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": "alice", - "type": "string" - }, - "type": "primitive" - } - } - ], - "type": "map" - }, - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "cred_rev_id": { - "value": { - "value": "12345", - "type": "string" - }, - "type": "primitive" - }, - "referent": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "rev_reg_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "type": "string" - }, - "type": "primitive" - }, - "schema_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "credential_definition_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "credential_exchange_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "credential_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "credential_offer": { - "properties": { - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "key_correctness_proof": { - "properties": { - "c": { - "value": { - "value": "0", - "type": "string" - }, - "type": "primitive" - }, - "xr_cap": { - "value": [ - { - "value": [ - { - "value": { - "value": "xr_cap", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - } - ], - "type": "array" - }, - "xz_cap": { - "value": { - "value": "0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "nonce": { - "value": { - "value": "0", - "type": "string" - }, - "type": "primitive" - }, - "schema_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "credential_offer_dict": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" - }, - "credential_preview": { - "properties": { - "@type": { - "value": { - "value": "issue-credential/1.0/credential-preview", - "type": "string" - }, - "type": "primitive" - }, - "attributes": { - "value": [ - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "offers~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "credential_proposal_dict": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" - }, - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "credential_proposal": { - "properties": { - "@type": { - "value": { - "value": "issue-credential/1.0/credential-preview", - "type": "string" - }, - "type": "primitive" - }, - "attributes": { - "value": [ - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "issuer_did": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv", - "type": "string" - }, - "type": "primitive" - }, - "schema_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "type": "string" - }, - "type": "primitive" - }, - "schema_issuer_did": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv", - "type": "string" - }, - "type": "primitive" - }, - "schema_name": { - "value": { - "value": "schema_name", - "type": "string" - }, - "type": "primitive" - }, - "schema_version": { - "value": { - "value": "1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "credential_request": { - "properties": { - "blinded_ms": { - "properties": {}, - "type": "object" - }, - "blinded_ms_correctness_proof": { - "properties": {}, - "type": "object" - }, - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "nonce": { - "value": { - "value": "0", - "type": "string" - }, - "type": "primitive" - }, - "prover_did": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "error_msg": { - "value": { - "value": "Credential definition identifier is not set in proposal", - "type": "string" - }, - "type": "primitive" - }, - "initiator": { - "value": "self", - "type": "enum" - }, - "parent_thread_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "raw_credential": { - "properties": { - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "rev_reg_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "type": "string" - }, - "type": "primitive" - }, - "schema_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "type": "string" - }, - "type": "primitive" - }, - "signature": { - "properties": {}, - "type": "object" - }, - "signature_correctness_proof": { - "properties": {}, - "type": "object" - }, - "values": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "properties": { - "encoded": { - "value": { - "value": "-1", - "type": "string" - }, - "type": "primitive" - }, - "raw": { - "value": { - "value": "raw", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - } - ], - "type": "map" - } - }, - "type": "object" - }, - "revoc_reg_id": { - "value": { - "value": "revoc_reg_id", - "type": "string" - }, - "type": "primitive" - }, - "revocation_id": { - "value": { - "value": "revocation_id", - "type": "string" - }, - "type": "primitive" - }, - "role": { - "value": "issuer", - "type": "enum" - }, - "schema_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "type": "string" - }, - "type": "primitive" - }, - "state": { - "value": { - "value": "credential_acked", - "type": "string" - }, - "type": "primitive" - }, - "thread_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "trace": { - "value": { - "value": true, - "type": "boolean" - }, - "type": "primitive" - }, - "updated_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "type": "withoutStreaming" - }, - "codeSamples": [], - "type": "full" - } - ], - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - }, - { - "summary": "Create a credential offer, independent of any proposal or connection", - "audiences": [], - "operationId": "create_free_credential_offer", - "tags": [ - "issue-credential v1.0" - ], - "pathParameters": [], - "queryParameters": [], - "headers": [], - "generatedRequestName": "CreateFreeCredentialOfferRequest", - "request": { - "schema": { - "generatedName": "CreateFreeCredentialOfferRequest", - "schema": "V10CredentialConnFreeOfferRequest", - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "reference" - }, - "contentType": "application/json", - "fullExamples": [], - "additionalProperties": false, - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "json" - }, - "response": { - "description": "", - "schema": { - "generatedName": "CreateFreeCredentialOfferResponse", - "schema": "V10CredentialExchange", - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "reference" - }, - "fullExamples": [], - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "json" - }, - "errors": {}, - "server": [], - "authed": true, - "method": "POST", - "path": "/issue-credential/create-offer", - "examples": [ - { - "pathParameters": [], - "queryParameters": [], - "headers": [], - "request": { - "properties": { - "auto_issue": { - "value": { - "value": true, - "type": "boolean" - }, - "type": "primitive" - }, - "auto_remove": { - "value": { - "value": true, - "type": "boolean" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" - }, - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "credential_preview": { - "properties": { - "@type": { - "value": { - "value": "issue-credential/1.0/credential-preview", - "type": "string" - }, - "type": "primitive" - }, - "attributes": { - "value": [ - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "trace": { - "value": { - "value": true, - "type": "boolean" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "response": { - "value": { - "properties": { - "auto_issue": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - }, - "auto_offer": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - }, - "auto_remove": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - }, - "connection_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "created_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "credential": { - "properties": { - "attrs": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": "alice", - "type": "string" - }, - "type": "primitive" - } - } - ], - "type": "map" - }, - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "cred_rev_id": { - "value": { - "value": "12345", - "type": "string" - }, - "type": "primitive" - }, - "referent": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "rev_reg_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "type": "string" - }, - "type": "primitive" - }, - "schema_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "credential_definition_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "credential_exchange_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "credential_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "credential_offer": { - "properties": { - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "key_correctness_proof": { - "properties": { - "c": { - "value": { - "value": "0", - "type": "string" - }, - "type": "primitive" - }, - "xr_cap": { - "value": [ - { - "value": [ - { - "value": { - "value": "xr_cap", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - } - ], - "type": "array" - }, - "xz_cap": { - "value": { - "value": "0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "nonce": { - "value": { - "value": "0", - "type": "string" - }, - "type": "primitive" - }, - "schema_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "credential_offer_dict": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" - }, - "credential_preview": { - "properties": { - "@type": { - "value": { - "value": "issue-credential/1.0/credential-preview", - "type": "string" - }, - "type": "primitive" - }, - "attributes": { - "value": [ - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "offers~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "credential_proposal_dict": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" - }, - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "credential_proposal": { - "properties": { - "@type": { - "value": { - "value": "issue-credential/1.0/credential-preview", - "type": "string" - }, - "type": "primitive" - }, - "attributes": { - "value": [ - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "issuer_did": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv", - "type": "string" - }, - "type": "primitive" - }, - "schema_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "type": "string" - }, - "type": "primitive" - }, - "schema_issuer_did": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv", - "type": "string" - }, - "type": "primitive" - }, - "schema_name": { - "value": { - "value": "schema_name", - "type": "string" - }, - "type": "primitive" - }, - "schema_version": { - "value": { - "value": "1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "credential_request": { - "properties": { - "blinded_ms": { - "properties": {}, - "type": "object" - }, - "blinded_ms_correctness_proof": { - "properties": {}, - "type": "object" - }, - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "nonce": { - "value": { - "value": "0", - "type": "string" - }, - "type": "primitive" - }, - "prover_did": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "error_msg": { - "value": { - "value": "Credential definition identifier is not set in proposal", - "type": "string" - }, - "type": "primitive" - }, - "initiator": { - "value": "self", - "type": "enum" - }, - "parent_thread_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "raw_credential": { - "properties": { - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "rev_reg_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "type": "string" - }, - "type": "primitive" - }, - "schema_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "type": "string" - }, - "type": "primitive" - }, - "signature": { - "properties": {}, - "type": "object" - }, - "signature_correctness_proof": { - "properties": {}, - "type": "object" - }, - "values": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "properties": { - "encoded": { - "value": { - "value": "-1", - "type": "string" - }, - "type": "primitive" - }, - "raw": { - "value": { - "value": "raw", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - } - ], - "type": "map" - } - }, - "type": "object" - }, - "revoc_reg_id": { - "value": { - "value": "revoc_reg_id", - "type": "string" - }, - "type": "primitive" - }, - "revocation_id": { - "value": { - "value": "revocation_id", - "type": "string" - }, - "type": "primitive" - }, - "role": { - "value": "issuer", - "type": "enum" - }, - "schema_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "type": "string" - }, - "type": "primitive" - }, - "state": { - "value": { - "value": "credential_acked", - "type": "string" - }, - "type": "primitive" - }, - "thread_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "trace": { - "value": { - "value": true, - "type": "boolean" - }, - "type": "primitive" - }, - "updated_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "type": "withoutStreaming" - }, - "codeSamples": [], - "type": "full" - } - ], - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - }, - { - "summary": "Fetch all credential exchange records", - "audiences": [], - "operationId": "get_matching_cred_ex_records", - "tags": [ - "issue-credential v1.0" - ], - "pathParameters": [], - "queryParameters": [ - { - "description": "Connection identifier", - "name": "connection_id", - "schema": { - "generatedName": "GetMatchingCredExRecordsRequestConnectionId", - "value": { - "schema": { - "format": "uuid", - "type": "string" - }, - "generatedName": "GetMatchingCredExRecordsRequestConnectionId", - "groupName": [], - "type": "primitive" - }, - "groupName": [], - "type": "nullable" - }, - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - }, - { - "description": "Role assigned in credential exchange", - "name": "role", - "schema": { - "generatedName": "GetMatchingCredExRecordsRequestRole", - "value": { - "generatedName": "GetMatchingCredExRecordsRequestRole", - "values": [ - { - "generatedName": "issuer", - "value": "issuer", - "casing": {} - }, - { - "generatedName": "holder", - "value": "holder", - "casing": {} - } - ], - "groupName": [], - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "enum" - }, - "groupName": [], - "type": "nullable" - }, - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - }, - { - "description": "Credential exchange state", - "name": "state", - "schema": { - "generatedName": "GetMatchingCredExRecordsRequestState", - "value": { - "generatedName": "GetMatchingCredExRecordsRequestState", - "values": [ - { - "generatedName": "proposal_sent", - "value": "proposal_sent", - "casing": {} - }, - { - "generatedName": "proposal_received", - "value": "proposal_received", - "casing": {} - }, - { - "generatedName": "offer_sent", - "value": "offer_sent", - "casing": {} - }, - { - "generatedName": "offer_received", - "value": "offer_received", - "casing": {} - }, - { - "generatedName": "request_sent", - "value": "request_sent", - "casing": {} - }, - { - "generatedName": "request_received", - "value": "request_received", - "casing": {} - }, - { - "generatedName": "credential_issued", - "value": "credential_issued", - "casing": {} - }, - { - "generatedName": "credential_received", - "value": "credential_received", - "casing": {} - }, - { - "generatedName": "credential_acked", - "value": "credential_acked", - "casing": {} - }, - { - "generatedName": "credential_revoked", - "value": "credential_revoked", - "casing": {} - }, - { - "generatedName": "abandoned", - "value": "abandoned", - "casing": {} - } - ], - "groupName": [], - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "enum" - }, - "groupName": [], - "type": "nullable" - }, - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - }, - { - "description": "Thread identifier", - "name": "thread_id", - "schema": { - "generatedName": "GetMatchingCredExRecordsRequestThreadId", - "value": { - "schema": { - "format": "uuid", - "type": "string" - }, - "generatedName": "GetMatchingCredExRecordsRequestThreadId", - "groupName": [], - "type": "primitive" - }, - "groupName": [], - "type": "nullable" - }, - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - } - ], - "headers": [], - "generatedRequestName": "GetMatchingCredExRecordsRequest", - "response": { - "description": "", - "schema": { - "generatedName": "GetMatchingCredExRecordsResponse", - "schema": "V10CredentialExchangeListResult", - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "reference" - }, - "fullExamples": [], - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "json" - }, - "errors": {}, - "server": [], - "authed": true, - "method": "GET", - "path": "/issue-credential/records", - "examples": [ - { - "pathParameters": [], - "queryParameters": [], - "headers": [], - "response": { - "value": { - "properties": { - "results": { - "value": [ - { - "properties": { - "auto_issue": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - }, - "auto_offer": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - }, - "auto_remove": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - }, - "connection_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "created_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "credential": { - "properties": { - "attrs": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": "alice", - "type": "string" - }, - "type": "primitive" - } - } - ], - "type": "map" - }, - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "cred_rev_id": { - "value": { - "value": "12345", - "type": "string" - }, - "type": "primitive" - }, - "referent": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "rev_reg_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "type": "string" - }, - "type": "primitive" - }, - "schema_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "credential_definition_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "credential_exchange_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "credential_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "credential_offer": { - "properties": { - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "key_correctness_proof": { - "properties": { - "c": { - "value": { - "value": "0", - "type": "string" - }, - "type": "primitive" - }, - "xr_cap": { - "value": [ - { - "value": [ - { - "value": { - "value": "xr_cap", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - } - ], - "type": "array" - }, - "xz_cap": { - "value": { - "value": "0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "nonce": { - "value": { - "value": "0", - "type": "string" - }, - "type": "primitive" - }, - "schema_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "credential_offer_dict": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "credential_preview": { - "properties": { - "@type": { - "value": { - "value": "issue-credential/1.0/credential-preview", - "type": "string" - }, - "type": "primitive" - }, - "attributes": { - "value": [ - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "offers~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "credential_proposal_dict": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "credential_proposal": { - "properties": { - "@type": { - "value": { - "value": "issue-credential/1.0/credential-preview", - "type": "string" - }, - "type": "primitive" - }, - "attributes": { - "value": [ - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "issuer_did": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv", - "type": "string" - }, - "type": "primitive" - }, - "schema_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "type": "string" - }, - "type": "primitive" - }, - "schema_issuer_did": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv", - "type": "string" - }, - "type": "primitive" - }, - "schema_version": { - "value": { - "value": "1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "credential_request": { - "properties": { - "blinded_ms": { - "properties": {}, - "type": "object" - }, - "blinded_ms_correctness_proof": { - "properties": {}, - "type": "object" - }, - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "nonce": { - "value": { - "value": "0", - "type": "string" - }, - "type": "primitive" - }, - "prover_did": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "error_msg": { - "value": { - "value": "Credential definition identifier is not set in proposal", - "type": "string" - }, - "type": "primitive" - }, - "initiator": { - "value": "self", - "type": "enum" - }, - "parent_thread_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "raw_credential": { - "properties": { - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "schema_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "type": "string" - }, - "type": "primitive" - }, - "signature": { - "properties": {}, - "type": "object" - }, - "signature_correctness_proof": { - "properties": {}, - "type": "object" - }, - "values": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "properties": { - "encoded": { - "value": { - "value": "-1", - "type": "string" - }, - "type": "primitive" - }, - "raw": { - "value": { - "value": "raw", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - } - ], - "type": "map" - } - }, - "type": "object" - }, - "revoc_reg_id": { - "value": { - "value": "revoc_reg_id", - "type": "string" - }, - "type": "primitive" - }, - "revocation_id": { - "value": { - "value": "revocation_id", - "type": "string" - }, - "type": "primitive" - }, - "role": { - "value": "issuer", - "type": "enum" - }, - "schema_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "type": "string" - }, - "type": "primitive" - }, - "state": { - "value": { - "value": "credential_acked", - "type": "string" - }, - "type": "primitive" - }, - "thread_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "trace": { - "value": { - "value": true, - "type": "boolean" - }, - "type": "primitive" - }, - "updated_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "auto_issue": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - }, - "auto_offer": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - }, - "auto_remove": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - }, - "connection_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "created_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "credential": { - "properties": { - "attrs": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": "alice", - "type": "string" - }, - "type": "primitive" - } - } - ], - "type": "map" - }, - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "cred_rev_id": { - "value": { - "value": "12345", - "type": "string" - }, - "type": "primitive" - }, - "referent": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "rev_reg_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "type": "string" - }, - "type": "primitive" - }, - "schema_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "credential_definition_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "credential_exchange_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "credential_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "credential_offer": { - "properties": { - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "key_correctness_proof": { - "properties": { - "c": { - "value": { - "value": "0", - "type": "string" - }, - "type": "primitive" - }, - "xr_cap": { - "value": [ - { - "value": [ - { - "value": { - "value": "xr_cap", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - } - ], - "type": "array" - }, - "xz_cap": { - "value": { - "value": "0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "nonce": { - "value": { - "value": "0", - "type": "string" - }, - "type": "primitive" - }, - "schema_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "credential_offer_dict": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "credential_preview": { - "properties": { - "@type": { - "value": { - "value": "issue-credential/1.0/credential-preview", - "type": "string" - }, - "type": "primitive" - }, - "attributes": { - "value": [ - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "offers~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "credential_proposal_dict": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "credential_proposal": { - "properties": { - "@type": { - "value": { - "value": "issue-credential/1.0/credential-preview", - "type": "string" - }, - "type": "primitive" - }, - "attributes": { - "value": [ - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "issuer_did": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv", - "type": "string" - }, - "type": "primitive" - }, - "schema_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "type": "string" - }, - "type": "primitive" - }, - "schema_issuer_did": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv", - "type": "string" - }, - "type": "primitive" - }, - "schema_version": { - "value": { - "value": "1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "credential_request": { - "properties": { - "blinded_ms": { - "properties": {}, - "type": "object" - }, - "blinded_ms_correctness_proof": { - "properties": {}, - "type": "object" - }, - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "nonce": { - "value": { - "value": "0", - "type": "string" - }, - "type": "primitive" - }, - "prover_did": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "error_msg": { - "value": { - "value": "Credential definition identifier is not set in proposal", - "type": "string" - }, - "type": "primitive" - }, - "initiator": { - "value": "self", - "type": "enum" - }, - "parent_thread_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "raw_credential": { - "properties": { - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "schema_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "type": "string" - }, - "type": "primitive" - }, - "signature": { - "properties": {}, - "type": "object" - }, - "signature_correctness_proof": { - "properties": {}, - "type": "object" - }, - "values": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "properties": { - "encoded": { - "value": { - "value": "-1", - "type": "string" - }, - "type": "primitive" - }, - "raw": { - "value": { - "value": "raw", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - } - ], - "type": "map" - } - }, - "type": "object" - }, - "revoc_reg_id": { - "value": { - "value": "revoc_reg_id", - "type": "string" - }, - "type": "primitive" - }, - "revocation_id": { - "value": { - "value": "revocation_id", - "type": "string" - }, - "type": "primitive" - }, - "role": { - "value": "issuer", - "type": "enum" - }, - "schema_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "type": "string" - }, - "type": "primitive" - }, - "state": { - "value": { - "value": "credential_acked", - "type": "string" - }, - "type": "primitive" - }, - "thread_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "trace": { - "value": { - "value": true, - "type": "boolean" - }, - "type": "primitive" - }, - "updated_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "type": "withoutStreaming" - }, - "codeSamples": [], - "type": "full" - } - ], - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - }, - { - "summary": "Fetch a single credential exchange record", - "audiences": [], - "operationId": "get_cred_ex_record", - "tags": [ - "issue-credential v1.0" - ], - "pathParameters": [ - { - "description": "Credential exchange identifier", - "name": "cred_ex_id", - "schema": { - "schema": { - "pattern": "[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-4[a-fA-F0-9]{3}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}", - "type": "string" - }, - "generatedName": "GetCredExRecordRequestCredExId", - "groupName": [], - "type": "primitive" - }, - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - } - ], - "queryParameters": [], - "headers": [], - "generatedRequestName": "GetCredExRecordRequest", - "response": { - "description": "", - "schema": { - "generatedName": "GetCredExRecordResponse", - "schema": "V10CredentialExchange", - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "reference" - }, - "fullExamples": [], - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "json" - }, - "errors": {}, - "server": [], - "authed": true, - "method": "GET", - "path": "/issue-credential/records/{cred_ex_id}", - "examples": [ - { - "pathParameters": [ - { - "name": "cred_ex_id", - "value": { - "value": { - "value": "cred_ex_id", - "type": "string" - }, - "type": "primitive" - } - } - ], - "queryParameters": [], - "headers": [], - "response": { - "value": { - "properties": { - "auto_issue": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - }, - "auto_offer": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - }, - "auto_remove": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - }, - "connection_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "created_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "credential": { - "properties": { - "attrs": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": "alice", - "type": "string" - }, - "type": "primitive" - } - } - ], - "type": "map" - }, - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "cred_rev_id": { - "value": { - "value": "12345", - "type": "string" - }, - "type": "primitive" - }, - "referent": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "rev_reg_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "type": "string" - }, - "type": "primitive" - }, - "schema_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "credential_definition_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "credential_exchange_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "credential_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "credential_offer": { - "properties": { - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "key_correctness_proof": { - "properties": { - "c": { - "value": { - "value": "0", - "type": "string" - }, - "type": "primitive" - }, - "xr_cap": { - "value": [ - { - "value": [ - { - "value": { - "value": "xr_cap", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - } - ], - "type": "array" - }, - "xz_cap": { - "value": { - "value": "0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "nonce": { - "value": { - "value": "0", - "type": "string" - }, - "type": "primitive" - }, - "schema_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "credential_offer_dict": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" - }, - "credential_preview": { - "properties": { - "@type": { - "value": { - "value": "issue-credential/1.0/credential-preview", - "type": "string" - }, - "type": "primitive" - }, - "attributes": { - "value": [ - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "offers~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "credential_proposal_dict": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" - }, - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "credential_proposal": { - "properties": { - "@type": { - "value": { - "value": "issue-credential/1.0/credential-preview", - "type": "string" - }, - "type": "primitive" - }, - "attributes": { - "value": [ - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "issuer_did": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv", - "type": "string" - }, - "type": "primitive" - }, - "schema_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "type": "string" - }, - "type": "primitive" - }, - "schema_issuer_did": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv", - "type": "string" - }, - "type": "primitive" - }, - "schema_name": { - "value": { - "value": "schema_name", - "type": "string" - }, - "type": "primitive" - }, - "schema_version": { - "value": { - "value": "1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "credential_request": { - "properties": { - "blinded_ms": { - "properties": {}, - "type": "object" - }, - "blinded_ms_correctness_proof": { - "properties": {}, - "type": "object" - }, - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "nonce": { - "value": { - "value": "0", - "type": "string" - }, - "type": "primitive" - }, - "prover_did": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "error_msg": { - "value": { - "value": "Credential definition identifier is not set in proposal", - "type": "string" - }, - "type": "primitive" - }, - "initiator": { - "value": "self", - "type": "enum" - }, - "parent_thread_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "raw_credential": { - "properties": { - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "rev_reg_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "type": "string" - }, - "type": "primitive" - }, - "schema_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "type": "string" - }, - "type": "primitive" - }, - "signature": { - "properties": {}, - "type": "object" - }, - "signature_correctness_proof": { - "properties": {}, - "type": "object" - }, - "values": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "properties": { - "encoded": { - "value": { - "value": "-1", - "type": "string" - }, - "type": "primitive" - }, - "raw": { - "value": { - "value": "raw", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - } - ], - "type": "map" - } - }, - "type": "object" - }, - "revoc_reg_id": { - "value": { - "value": "revoc_reg_id", - "type": "string" - }, - "type": "primitive" - }, - "revocation_id": { - "value": { - "value": "revocation_id", - "type": "string" - }, - "type": "primitive" - }, - "role": { - "value": "issuer", - "type": "enum" - }, - "schema_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "type": "string" - }, - "type": "primitive" - }, - "state": { - "value": { - "value": "credential_acked", - "type": "string" - }, - "type": "primitive" - }, - "thread_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "trace": { - "value": { - "value": true, - "type": "boolean" - }, - "type": "primitive" - }, - "updated_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "type": "withoutStreaming" - }, - "codeSamples": [], - "type": "full" - } - ], - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - }, - { - "summary": "Remove an existing credential exchange record", - "audiences": [], - "operationId": "delete_cred_ex_record", - "tags": [ - "issue-credential v1.0" - ], - "pathParameters": [ - { - "description": "Credential exchange identifier", - "name": "cred_ex_id", - "schema": { - "schema": { - "pattern": "[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-4[a-fA-F0-9]{3}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}", - "type": "string" - }, - "generatedName": "DeleteCredExRecordRequestCredExId", - "groupName": [], - "type": "primitive" - }, - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - } - ], - "queryParameters": [], - "headers": [], - "generatedRequestName": "DeleteCredExRecordRequest", - "response": { - "description": "", - "schema": { - "generatedName": "DeleteCredExRecordResponse", - "schema": "IssueCredentialModuleResponse", - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "reference" - }, - "fullExamples": [], - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "json" - }, - "errors": {}, - "server": [], - "authed": true, - "method": "DELETE", - "path": "/issue-credential/records/{cred_ex_id}", - "examples": [ - { - "pathParameters": [ - { - "name": "cred_ex_id", - "value": { - "value": { - "value": "cred_ex_id", - "type": "string" - }, - "type": "primitive" - } - } - ], - "queryParameters": [], - "headers": [], - "response": { - "value": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "type": "withoutStreaming" - }, - "codeSamples": [], - "type": "full" - } - ], - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - }, - { - "summary": "Send holder a credential", - "audiences": [], - "operationId": "issue_credential_to_holder", - "tags": [ - "issue-credential v1.0" - ], - "pathParameters": [ - { - "description": "Credential exchange identifier", - "name": "cred_ex_id", - "schema": { - "schema": { - "pattern": "[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-4[a-fA-F0-9]{3}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}", - "type": "string" - }, - "generatedName": "IssueCredentialToHolderRequestCredExId", - "groupName": [], - "type": "primitive" - }, - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - } - ], - "queryParameters": [], - "headers": [], - "generatedRequestName": "IssueCredentialToHolderRequest", - "request": { - "schema": { - "generatedName": "IssueCredentialToHolderRequest", - "schema": "V10CredentialIssueRequest", - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "reference" - }, - "contentType": "application/json", - "fullExamples": [], - "additionalProperties": false, - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "json" - }, - "response": { - "description": "", - "schema": { - "generatedName": "IssueCredentialToHolderResponse", - "schema": "V10CredentialExchange", - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "reference" - }, - "fullExamples": [], - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "json" - }, - "errors": {}, - "server": [], - "authed": true, - "method": "POST", - "path": "/issue-credential/records/{cred_ex_id}/issue", - "examples": [ - { - "pathParameters": [ - { - "name": "cred_ex_id", - "value": { - "value": { - "value": "cred_ex_id", - "type": "string" - }, - "type": "primitive" - } - } - ], - "queryParameters": [], - "headers": [], - "request": { - "properties": { - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "response": { - "value": { - "properties": { - "auto_issue": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - }, - "auto_offer": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - }, - "auto_remove": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - }, - "connection_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "created_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "credential": { - "properties": { - "attrs": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": "alice", - "type": "string" - }, - "type": "primitive" - } - } - ], - "type": "map" - }, - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "cred_rev_id": { - "value": { - "value": "12345", - "type": "string" - }, - "type": "primitive" - }, - "referent": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "rev_reg_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "type": "string" - }, - "type": "primitive" - }, - "schema_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "credential_definition_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "credential_exchange_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "credential_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "credential_offer": { - "properties": { - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "key_correctness_proof": { - "properties": { - "c": { - "value": { - "value": "0", - "type": "string" - }, - "type": "primitive" - }, - "xr_cap": { - "value": [ - { - "value": [ - { - "value": { - "value": "xr_cap", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - } - ], - "type": "array" - }, - "xz_cap": { - "value": { - "value": "0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "nonce": { - "value": { - "value": "0", - "type": "string" - }, - "type": "primitive" - }, - "schema_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "credential_offer_dict": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" - }, - "credential_preview": { - "properties": { - "@type": { - "value": { - "value": "issue-credential/1.0/credential-preview", - "type": "string" - }, - "type": "primitive" - }, - "attributes": { - "value": [ - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "offers~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "credential_proposal_dict": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" - }, - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "credential_proposal": { - "properties": { - "@type": { - "value": { - "value": "issue-credential/1.0/credential-preview", - "type": "string" - }, - "type": "primitive" - }, - "attributes": { - "value": [ - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "issuer_did": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv", - "type": "string" - }, - "type": "primitive" - }, - "schema_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "type": "string" - }, - "type": "primitive" - }, - "schema_issuer_did": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv", - "type": "string" - }, - "type": "primitive" - }, - "schema_name": { - "value": { - "value": "schema_name", - "type": "string" - }, - "type": "primitive" - }, - "schema_version": { - "value": { - "value": "1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "credential_request": { - "properties": { - "blinded_ms": { - "properties": {}, - "type": "object" - }, - "blinded_ms_correctness_proof": { - "properties": {}, - "type": "object" - }, - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "nonce": { - "value": { - "value": "0", - "type": "string" - }, - "type": "primitive" - }, - "prover_did": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "error_msg": { - "value": { - "value": "Credential definition identifier is not set in proposal", - "type": "string" - }, - "type": "primitive" - }, - "initiator": { - "value": "self", - "type": "enum" - }, - "parent_thread_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "raw_credential": { - "properties": { - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "rev_reg_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "type": "string" - }, - "type": "primitive" - }, - "schema_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "type": "string" - }, - "type": "primitive" - }, - "signature": { - "properties": {}, - "type": "object" - }, - "signature_correctness_proof": { - "properties": {}, - "type": "object" - }, - "values": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "properties": { - "encoded": { - "value": { - "value": "-1", - "type": "string" - }, - "type": "primitive" - }, - "raw": { - "value": { - "value": "raw", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - } - ], - "type": "map" - } - }, - "type": "object" - }, - "revoc_reg_id": { - "value": { - "value": "revoc_reg_id", - "type": "string" - }, - "type": "primitive" - }, - "revocation_id": { - "value": { - "value": "revocation_id", - "type": "string" - }, - "type": "primitive" - }, - "role": { - "value": "issuer", - "type": "enum" - }, - "schema_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "type": "string" - }, - "type": "primitive" - }, - "state": { - "value": { - "value": "credential_acked", - "type": "string" - }, - "type": "primitive" - }, - "thread_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "trace": { - "value": { - "value": true, - "type": "boolean" - }, - "type": "primitive" - }, - "updated_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "type": "withoutStreaming" - }, - "codeSamples": [], - "type": "full" - } - ], - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - }, - { - "summary": "Send a problem report for credential exchange", - "audiences": [], - "operationId": "report_cred_ex_problem", - "tags": [ - "issue-credential v1.0" - ], - "pathParameters": [ - { - "description": "Credential exchange identifier", - "name": "cred_ex_id", - "schema": { - "schema": { - "pattern": "[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-4[a-fA-F0-9]{3}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}", - "type": "string" - }, - "generatedName": "ReportCredExProblemRequestCredExId", - "groupName": [], - "type": "primitive" - }, - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - } - ], - "queryParameters": [], - "headers": [], - "generatedRequestName": "ReportCredExProblemRequest", - "request": { - "schema": { - "generatedName": "ReportCredExProblemRequest", - "schema": "V10CredentialProblemReportRequest", - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "reference" - }, - "contentType": "application/json", - "fullExamples": [], - "additionalProperties": false, - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "json" - }, - "response": { - "description": "", - "schema": { - "generatedName": "ReportCredExProblemResponse", - "schema": "IssueCredentialModuleResponse", - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "reference" - }, - "fullExamples": [], - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "json" - }, - "errors": {}, - "server": [], - "authed": true, - "method": "POST", - "path": "/issue-credential/records/{cred_ex_id}/problem-report", - "examples": [ - { - "pathParameters": [ - { - "name": "cred_ex_id", - "value": { - "value": { - "value": "cred_ex_id", - "type": "string" - }, - "type": "primitive" - } - } - ], - "queryParameters": [], - "headers": [], - "request": { - "properties": { - "description": { - "value": { - "value": "description", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "response": { - "value": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "type": "withoutStreaming" - }, - "codeSamples": [], - "type": "full" - } - ], - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - }, - { - "summary": "Send holder a credential offer in reference to a proposal with preview", - "audiences": [], - "operationId": "send_credential_offer", - "tags": [ - "issue-credential v1.0" - ], - "pathParameters": [ - { - "description": "Credential exchange identifier", - "name": "cred_ex_id", - "schema": { - "schema": { - "pattern": "[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-4[a-fA-F0-9]{3}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}", - "type": "string" - }, - "generatedName": "SendCredentialOfferRequestCredExId", - "groupName": [], - "type": "primitive" - }, - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - } - ], - "queryParameters": [], - "headers": [], - "generatedRequestName": "SendCredentialOfferRequest", - "request": { - "schema": { - "generatedName": "SendCredentialOfferRequest", - "schema": "V10CredentialBoundOfferRequest", - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "reference" - }, - "contentType": "application/json", - "fullExamples": [], - "additionalProperties": false, - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "json" - }, - "response": { - "description": "", - "schema": { - "generatedName": "SendCredentialOfferResponse", - "schema": "V10CredentialExchange", - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "reference" - }, - "fullExamples": [], - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "json" - }, - "errors": {}, - "server": [], - "authed": true, - "method": "POST", - "path": "/issue-credential/records/{cred_ex_id}/send-offer", - "examples": [ - { - "pathParameters": [ - { - "name": "cred_ex_id", - "value": { - "value": { - "value": "cred_ex_id", - "type": "string" - }, - "type": "primitive" - } - } - ], - "queryParameters": [], - "headers": [], - "request": { - "properties": {}, - "type": "object" - }, - "response": { - "value": { - "properties": { - "auto_issue": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - }, - "auto_offer": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - }, - "auto_remove": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - }, - "connection_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "created_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "credential": { - "properties": { - "attrs": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": "alice", - "type": "string" - }, - "type": "primitive" - } - } - ], - "type": "map" - }, - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "cred_rev_id": { - "value": { - "value": "12345", - "type": "string" - }, - "type": "primitive" - }, - "referent": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "rev_reg_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "type": "string" - }, - "type": "primitive" - }, - "schema_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "credential_definition_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "credential_exchange_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "credential_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "credential_offer": { - "properties": { - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "key_correctness_proof": { - "properties": { - "c": { - "value": { - "value": "0", - "type": "string" - }, - "type": "primitive" - }, - "xr_cap": { - "value": [ - { - "value": [ - { - "value": { - "value": "xr_cap", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - } - ], - "type": "array" - }, - "xz_cap": { - "value": { - "value": "0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "nonce": { - "value": { - "value": "0", - "type": "string" - }, - "type": "primitive" - }, - "schema_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "credential_offer_dict": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" - }, - "credential_preview": { - "properties": { - "@type": { - "value": { - "value": "issue-credential/1.0/credential-preview", - "type": "string" - }, - "type": "primitive" - }, - "attributes": { - "value": [ - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "offers~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "credential_proposal_dict": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" - }, - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "credential_proposal": { - "properties": { - "@type": { - "value": { - "value": "issue-credential/1.0/credential-preview", - "type": "string" - }, - "type": "primitive" - }, - "attributes": { - "value": [ - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "issuer_did": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv", - "type": "string" - }, - "type": "primitive" - }, - "schema_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "type": "string" - }, - "type": "primitive" - }, - "schema_issuer_did": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv", - "type": "string" - }, - "type": "primitive" - }, - "schema_name": { - "value": { - "value": "schema_name", - "type": "string" - }, - "type": "primitive" - }, - "schema_version": { - "value": { - "value": "1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "credential_request": { - "properties": { - "blinded_ms": { - "properties": {}, - "type": "object" - }, - "blinded_ms_correctness_proof": { - "properties": {}, - "type": "object" - }, - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "nonce": { - "value": { - "value": "0", - "type": "string" - }, - "type": "primitive" - }, - "prover_did": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "error_msg": { - "value": { - "value": "Credential definition identifier is not set in proposal", - "type": "string" - }, - "type": "primitive" - }, - "initiator": { - "value": "self", - "type": "enum" - }, - "parent_thread_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "raw_credential": { - "properties": { - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "rev_reg_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "type": "string" - }, - "type": "primitive" - }, - "schema_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "type": "string" - }, - "type": "primitive" - }, - "signature": { - "properties": {}, - "type": "object" - }, - "signature_correctness_proof": { - "properties": {}, - "type": "object" - }, - "values": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "properties": { - "encoded": { - "value": { - "value": "-1", - "type": "string" - }, - "type": "primitive" - }, - "raw": { - "value": { - "value": "raw", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - } - ], - "type": "map" - } - }, - "type": "object" - }, - "revoc_reg_id": { - "value": { - "value": "revoc_reg_id", - "type": "string" - }, - "type": "primitive" - }, - "revocation_id": { - "value": { - "value": "revocation_id", - "type": "string" - }, - "type": "primitive" - }, - "role": { - "value": "issuer", - "type": "enum" - }, - "schema_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "type": "string" - }, - "type": "primitive" - }, - "state": { - "value": { - "value": "credential_acked", - "type": "string" - }, - "type": "primitive" - }, - "thread_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "trace": { - "value": { - "value": true, - "type": "boolean" - }, - "type": "primitive" - }, - "updated_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "type": "withoutStreaming" - }, - "codeSamples": [], - "type": "full" - } - ], - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - }, - { - "summary": "Send issuer a credential request", - "audiences": [], - "operationId": "send_credential_request", - "tags": [ - "issue-credential v1.0" - ], - "pathParameters": [ - { - "description": "Credential exchange identifier", - "name": "cred_ex_id", - "schema": { - "schema": { - "pattern": "[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-4[a-fA-F0-9]{3}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}", - "type": "string" - }, - "generatedName": "SendCredentialRequestRequestCredExId", - "groupName": [], - "type": "primitive" - }, - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - } - ], - "queryParameters": [], - "headers": [], - "generatedRequestName": "SendCredentialRequestRequest", - "response": { - "description": "", - "schema": { - "generatedName": "SendCredentialRequestResponse", - "schema": "V10CredentialExchange", - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "reference" - }, - "fullExamples": [], - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "json" - }, - "errors": {}, - "server": [], - "authed": true, - "method": "POST", - "path": "/issue-credential/records/{cred_ex_id}/send-request", - "examples": [ - { - "pathParameters": [ - { - "name": "cred_ex_id", - "value": { - "value": { - "value": "cred_ex_id", - "type": "string" - }, - "type": "primitive" - } - } - ], - "queryParameters": [], - "headers": [], - "response": { - "value": { - "properties": { - "auto_issue": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - }, - "auto_offer": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - }, - "auto_remove": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - }, - "connection_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "created_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "credential": { - "properties": { - "attrs": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": "alice", - "type": "string" - }, - "type": "primitive" - } - } - ], - "type": "map" - }, - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "cred_rev_id": { - "value": { - "value": "12345", - "type": "string" - }, - "type": "primitive" - }, - "referent": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "rev_reg_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "type": "string" - }, - "type": "primitive" - }, - "schema_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "credential_definition_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "credential_exchange_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "credential_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "credential_offer": { - "properties": { - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "key_correctness_proof": { - "properties": { - "c": { - "value": { - "value": "0", - "type": "string" - }, - "type": "primitive" - }, - "xr_cap": { - "value": [ - { - "value": [ - { - "value": { - "value": "xr_cap", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - } - ], - "type": "array" - }, - "xz_cap": { - "value": { - "value": "0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "nonce": { - "value": { - "value": "0", - "type": "string" - }, - "type": "primitive" - }, - "schema_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "credential_offer_dict": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" - }, - "credential_preview": { - "properties": { - "@type": { - "value": { - "value": "issue-credential/1.0/credential-preview", - "type": "string" - }, - "type": "primitive" - }, - "attributes": { - "value": [ - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "offers~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "credential_proposal_dict": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" - }, - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "credential_proposal": { - "properties": { - "@type": { - "value": { - "value": "issue-credential/1.0/credential-preview", - "type": "string" - }, - "type": "primitive" - }, - "attributes": { - "value": [ - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "issuer_did": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv", - "type": "string" - }, - "type": "primitive" - }, - "schema_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "type": "string" - }, - "type": "primitive" - }, - "schema_issuer_did": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv", - "type": "string" - }, - "type": "primitive" - }, - "schema_name": { - "value": { - "value": "schema_name", - "type": "string" - }, - "type": "primitive" - }, - "schema_version": { - "value": { - "value": "1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "credential_request": { - "properties": { - "blinded_ms": { - "properties": {}, - "type": "object" - }, - "blinded_ms_correctness_proof": { - "properties": {}, - "type": "object" - }, - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "nonce": { - "value": { - "value": "0", - "type": "string" - }, - "type": "primitive" - }, - "prover_did": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "error_msg": { - "value": { - "value": "Credential definition identifier is not set in proposal", - "type": "string" - }, - "type": "primitive" - }, - "initiator": { - "value": "self", - "type": "enum" - }, - "parent_thread_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "raw_credential": { - "properties": { - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "rev_reg_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "type": "string" - }, - "type": "primitive" - }, - "schema_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "type": "string" - }, - "type": "primitive" - }, - "signature": { - "properties": {}, - "type": "object" - }, - "signature_correctness_proof": { - "properties": {}, - "type": "object" - }, - "values": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "properties": { - "encoded": { - "value": { - "value": "-1", - "type": "string" - }, - "type": "primitive" - }, - "raw": { - "value": { - "value": "raw", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - } - ], - "type": "map" - } - }, - "type": "object" - }, - "revoc_reg_id": { - "value": { - "value": "revoc_reg_id", - "type": "string" - }, - "type": "primitive" - }, - "revocation_id": { - "value": { - "value": "revocation_id", - "type": "string" - }, - "type": "primitive" - }, - "role": { - "value": "issuer", - "type": "enum" - }, - "schema_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "type": "string" - }, - "type": "primitive" - }, - "state": { - "value": { - "value": "credential_acked", - "type": "string" - }, - "type": "primitive" - }, - "thread_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "trace": { - "value": { - "value": true, - "type": "boolean" - }, - "type": "primitive" - }, - "updated_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "type": "withoutStreaming" - }, - "codeSamples": [], - "type": "full" - } - ], - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - }, - { - "summary": "Store a received credential", - "audiences": [], - "operationId": "store_received_credential", - "tags": [ - "issue-credential v1.0" - ], - "pathParameters": [ - { - "description": "Credential exchange identifier", - "name": "cred_ex_id", - "schema": { - "schema": { - "pattern": "[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-4[a-fA-F0-9]{3}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}", - "type": "string" - }, - "generatedName": "StoreReceivedCredentialRequestCredExId", - "groupName": [], - "type": "primitive" - }, - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - } - ], - "queryParameters": [], - "headers": [], - "generatedRequestName": "StoreReceivedCredentialRequest", - "request": { - "schema": { - "generatedName": "StoreReceivedCredentialRequest", - "schema": "V10CredentialStoreRequest", - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "reference" - }, - "contentType": "application/json", - "fullExamples": [], - "additionalProperties": false, - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "json" - }, - "response": { - "description": "", - "schema": { - "generatedName": "StoreReceivedCredentialResponse", - "schema": "V10CredentialExchange", - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "reference" - }, - "fullExamples": [], - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "json" - }, - "errors": {}, - "server": [], - "authed": true, - "method": "POST", - "path": "/issue-credential/records/{cred_ex_id}/store", - "examples": [ - { - "pathParameters": [ - { - "name": "cred_ex_id", - "value": { - "value": { - "value": "cred_ex_id", - "type": "string" - }, - "type": "primitive" - } - } - ], - "queryParameters": [], - "headers": [], - "request": { - "properties": { - "credential_id": { - "value": { - "value": "credential_id", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "response": { - "value": { - "properties": { - "auto_issue": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - }, - "auto_offer": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - }, - "auto_remove": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - }, - "connection_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "created_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "credential": { - "properties": { - "attrs": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": "alice", - "type": "string" - }, - "type": "primitive" - } - } - ], - "type": "map" - }, - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "cred_rev_id": { - "value": { - "value": "12345", - "type": "string" - }, - "type": "primitive" - }, - "referent": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "rev_reg_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "type": "string" - }, - "type": "primitive" - }, - "schema_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "credential_definition_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "credential_exchange_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "credential_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "credential_offer": { - "properties": { - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "key_correctness_proof": { - "properties": { - "c": { - "value": { - "value": "0", - "type": "string" - }, - "type": "primitive" - }, - "xr_cap": { - "value": [ - { - "value": [ - { - "value": { - "value": "xr_cap", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - } - ], - "type": "array" - }, - "xz_cap": { - "value": { - "value": "0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "nonce": { - "value": { - "value": "0", - "type": "string" - }, - "type": "primitive" - }, - "schema_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "credential_offer_dict": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" - }, - "credential_preview": { - "properties": { - "@type": { - "value": { - "value": "issue-credential/1.0/credential-preview", - "type": "string" - }, - "type": "primitive" - }, - "attributes": { - "value": [ - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "offers~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "credential_proposal_dict": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" - }, - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "credential_proposal": { - "properties": { - "@type": { - "value": { - "value": "issue-credential/1.0/credential-preview", - "type": "string" - }, - "type": "primitive" - }, - "attributes": { - "value": [ - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "issuer_did": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv", - "type": "string" - }, - "type": "primitive" - }, - "schema_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "type": "string" - }, - "type": "primitive" - }, - "schema_issuer_did": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv", - "type": "string" - }, - "type": "primitive" - }, - "schema_name": { - "value": { - "value": "schema_name", - "type": "string" - }, - "type": "primitive" - }, - "schema_version": { - "value": { - "value": "1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "credential_request": { - "properties": { - "blinded_ms": { - "properties": {}, - "type": "object" - }, - "blinded_ms_correctness_proof": { - "properties": {}, - "type": "object" - }, - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "nonce": { - "value": { - "value": "0", - "type": "string" - }, - "type": "primitive" - }, - "prover_did": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "error_msg": { - "value": { - "value": "Credential definition identifier is not set in proposal", - "type": "string" - }, - "type": "primitive" - }, - "initiator": { - "value": "self", - "type": "enum" - }, - "parent_thread_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "raw_credential": { - "properties": { - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "rev_reg_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "type": "string" - }, - "type": "primitive" - }, - "schema_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "type": "string" - }, - "type": "primitive" - }, - "signature": { - "properties": {}, - "type": "object" - }, - "signature_correctness_proof": { - "properties": {}, - "type": "object" - }, - "values": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "properties": { - "encoded": { - "value": { - "value": "-1", - "type": "string" - }, - "type": "primitive" - }, - "raw": { - "value": { - "value": "raw", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - } - ], - "type": "map" - } - }, - "type": "object" - }, - "revoc_reg_id": { - "value": { - "value": "revoc_reg_id", - "type": "string" - }, - "type": "primitive" - }, - "revocation_id": { - "value": { - "value": "revocation_id", - "type": "string" - }, - "type": "primitive" - }, - "role": { - "value": "issuer", - "type": "enum" - }, - "schema_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "type": "string" - }, - "type": "primitive" - }, - "state": { - "value": { - "value": "credential_acked", - "type": "string" - }, - "type": "primitive" - }, - "thread_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "trace": { - "value": { - "value": true, - "type": "boolean" - }, - "type": "primitive" - }, - "updated_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "type": "withoutStreaming" - }, - "codeSamples": [], - "type": "full" - } - ], - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - }, - { - "summary": "Send holder a credential, automating entire flow", - "audiences": [], - "operationId": "send_free_credential", - "tags": [ - "issue-credential v1.0" - ], - "pathParameters": [], - "queryParameters": [], - "headers": [], - "generatedRequestName": "SendFreeCredentialRequest", - "request": { - "schema": { - "generatedName": "SendFreeCredentialRequest", - "schema": "V10CredentialProposalRequestMand", - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "reference" - }, - "contentType": "application/json", - "fullExamples": [], - "additionalProperties": false, - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "json" - }, - "response": { - "description": "", - "schema": { - "generatedName": "SendFreeCredentialResponse", - "schema": "V10CredentialExchange", - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "reference" - }, - "fullExamples": [], - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "json" - }, - "errors": {}, - "server": [], - "authed": true, - "method": "POST", - "path": "/issue-credential/send", - "examples": [ - { - "pathParameters": [], - "queryParameters": [], - "headers": [], - "request": { - "properties": { - "auto_remove": { - "value": { - "value": true, - "type": "boolean" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" - }, - "connection_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "credential_proposal": { - "properties": { - "@type": { - "value": { - "value": "issue-credential/1.0/credential-preview", - "type": "string" - }, - "type": "primitive" - }, - "attributes": { - "value": [ - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "issuer_did": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv", - "type": "string" - }, - "type": "primitive" - }, - "schema_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "type": "string" - }, - "type": "primitive" - }, - "schema_issuer_did": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv", - "type": "string" - }, - "type": "primitive" - }, - "schema_name": { - "value": { - "value": "preferences", - "type": "string" - }, - "type": "primitive" - }, - "schema_version": { - "value": { - "value": "1.0", - "type": "string" - }, - "type": "primitive" - }, - "trace": { - "value": { - "value": true, - "type": "boolean" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "response": { - "value": { - "properties": { - "auto_issue": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - }, - "auto_offer": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - }, - "auto_remove": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - }, - "connection_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "created_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "credential": { - "properties": { - "attrs": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": "alice", - "type": "string" - }, - "type": "primitive" - } - } - ], - "type": "map" - }, - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "cred_rev_id": { - "value": { - "value": "12345", - "type": "string" - }, - "type": "primitive" - }, - "referent": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "rev_reg_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "type": "string" - }, - "type": "primitive" - }, - "schema_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "credential_definition_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "credential_exchange_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "credential_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "credential_offer": { - "properties": { - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "key_correctness_proof": { - "properties": { - "c": { - "value": { - "value": "0", - "type": "string" - }, - "type": "primitive" - }, - "xr_cap": { - "value": [ - { - "value": [ - { - "value": { - "value": "xr_cap", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - } - ], - "type": "array" - }, - "xz_cap": { - "value": { - "value": "0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "nonce": { - "value": { - "value": "0", - "type": "string" - }, - "type": "primitive" - }, - "schema_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "credential_offer_dict": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" - }, - "credential_preview": { - "properties": { - "@type": { - "value": { - "value": "issue-credential/1.0/credential-preview", - "type": "string" - }, - "type": "primitive" - }, - "attributes": { - "value": [ - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "offers~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "credential_proposal_dict": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" - }, - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "credential_proposal": { - "properties": { - "@type": { - "value": { - "value": "issue-credential/1.0/credential-preview", - "type": "string" - }, - "type": "primitive" - }, - "attributes": { - "value": [ - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "issuer_did": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv", - "type": "string" - }, - "type": "primitive" - }, - "schema_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "type": "string" - }, - "type": "primitive" - }, - "schema_issuer_did": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv", - "type": "string" - }, - "type": "primitive" - }, - "schema_name": { - "value": { - "value": "schema_name", - "type": "string" - }, - "type": "primitive" - }, - "schema_version": { - "value": { - "value": "1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "credential_request": { - "properties": { - "blinded_ms": { - "properties": {}, - "type": "object" - }, - "blinded_ms_correctness_proof": { - "properties": {}, - "type": "object" - }, - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "nonce": { - "value": { - "value": "0", - "type": "string" - }, - "type": "primitive" - }, - "prover_did": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "error_msg": { - "value": { - "value": "Credential definition identifier is not set in proposal", - "type": "string" - }, - "type": "primitive" - }, - "initiator": { - "value": "self", - "type": "enum" - }, - "parent_thread_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "raw_credential": { - "properties": { - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "rev_reg_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "type": "string" - }, - "type": "primitive" - }, - "schema_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "type": "string" - }, - "type": "primitive" - }, - "signature": { - "properties": {}, - "type": "object" - }, - "signature_correctness_proof": { - "properties": {}, - "type": "object" - }, - "values": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "properties": { - "encoded": { - "value": { - "value": "-1", - "type": "string" - }, - "type": "primitive" - }, - "raw": { - "value": { - "value": "raw", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - } - ], - "type": "map" - } - }, - "type": "object" - }, - "revoc_reg_id": { - "value": { - "value": "revoc_reg_id", - "type": "string" - }, - "type": "primitive" - }, - "revocation_id": { - "value": { - "value": "revocation_id", - "type": "string" - }, - "type": "primitive" - }, - "role": { - "value": "issuer", - "type": "enum" - }, - "schema_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "type": "string" - }, - "type": "primitive" - }, - "state": { - "value": { - "value": "credential_acked", - "type": "string" - }, - "type": "primitive" - }, - "thread_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "trace": { - "value": { - "value": true, - "type": "boolean" - }, - "type": "primitive" - }, - "updated_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "type": "withoutStreaming" - }, - "codeSamples": [], - "type": "full" - } - ], - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - }, - { - "summary": "Send holder a credential offer, independent of any proposal", - "audiences": [], - "operationId": "send_free_credential_offer", - "tags": [ - "issue-credential v1.0" - ], - "pathParameters": [], - "queryParameters": [], - "headers": [], - "generatedRequestName": "SendFreeCredentialOfferRequest", - "request": { - "schema": { - "generatedName": "SendFreeCredentialOfferRequest", - "schema": "V10CredentialFreeOfferRequest", - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "reference" - }, - "contentType": "application/json", - "fullExamples": [], - "additionalProperties": false, - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "json" - }, - "response": { - "description": "", - "schema": { - "generatedName": "SendFreeCredentialOfferResponse", - "schema": "V10CredentialExchange", - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "reference" - }, - "fullExamples": [], - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "json" - }, - "errors": {}, - "server": [], - "authed": true, - "method": "POST", - "path": "/issue-credential/send-offer", - "examples": [ - { - "pathParameters": [], - "queryParameters": [], - "headers": [], - "request": { - "properties": { - "auto_issue": { - "value": { - "value": true, - "type": "boolean" - }, - "type": "primitive" - }, - "auto_remove": { - "value": { - "value": true, - "type": "boolean" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" - }, - "connection_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "credential_preview": { - "properties": { - "@type": { - "value": { - "value": "issue-credential/1.0/credential-preview", - "type": "string" - }, - "type": "primitive" - }, - "attributes": { - "value": [ - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "trace": { - "value": { - "value": true, - "type": "boolean" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "response": { - "value": { - "properties": { - "auto_issue": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - }, - "auto_offer": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - }, - "auto_remove": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - }, - "connection_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "created_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "credential": { - "properties": { - "attrs": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": "alice", - "type": "string" - }, - "type": "primitive" - } - } - ], - "type": "map" - }, - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "cred_rev_id": { - "value": { - "value": "12345", - "type": "string" - }, - "type": "primitive" - }, - "referent": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "rev_reg_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "type": "string" - }, - "type": "primitive" - }, - "schema_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "credential_definition_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "credential_exchange_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "credential_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "credential_offer": { - "properties": { - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "key_correctness_proof": { - "properties": { - "c": { - "value": { - "value": "0", - "type": "string" - }, - "type": "primitive" - }, - "xr_cap": { - "value": [ - { - "value": [ - { - "value": { - "value": "xr_cap", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - } - ], - "type": "array" - }, - "xz_cap": { - "value": { - "value": "0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "nonce": { - "value": { - "value": "0", - "type": "string" - }, - "type": "primitive" - }, - "schema_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "credential_offer_dict": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" - }, - "credential_preview": { - "properties": { - "@type": { - "value": { - "value": "issue-credential/1.0/credential-preview", - "type": "string" - }, - "type": "primitive" - }, - "attributes": { - "value": [ - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "offers~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "credential_proposal_dict": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" - }, - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "credential_proposal": { - "properties": { - "@type": { - "value": { - "value": "issue-credential/1.0/credential-preview", - "type": "string" - }, - "type": "primitive" - }, - "attributes": { - "value": [ - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "issuer_did": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv", - "type": "string" - }, - "type": "primitive" - }, - "schema_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "type": "string" - }, - "type": "primitive" - }, - "schema_issuer_did": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv", - "type": "string" - }, - "type": "primitive" - }, - "schema_name": { - "value": { - "value": "schema_name", - "type": "string" - }, - "type": "primitive" - }, - "schema_version": { - "value": { - "value": "1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "credential_request": { - "properties": { - "blinded_ms": { - "properties": {}, - "type": "object" - }, - "blinded_ms_correctness_proof": { - "properties": {}, - "type": "object" - }, - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "nonce": { - "value": { - "value": "0", - "type": "string" - }, - "type": "primitive" - }, - "prover_did": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "error_msg": { - "value": { - "value": "Credential definition identifier is not set in proposal", - "type": "string" - }, - "type": "primitive" - }, - "initiator": { - "value": "self", - "type": "enum" - }, - "parent_thread_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "raw_credential": { - "properties": { - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "rev_reg_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "type": "string" - }, - "type": "primitive" - }, - "schema_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "type": "string" - }, - "type": "primitive" - }, - "signature": { - "properties": {}, - "type": "object" - }, - "signature_correctness_proof": { - "properties": {}, - "type": "object" - }, - "values": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "properties": { - "encoded": { - "value": { - "value": "-1", - "type": "string" - }, - "type": "primitive" - }, - "raw": { - "value": { - "value": "raw", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - } - ], - "type": "map" - } - }, - "type": "object" - }, - "revoc_reg_id": { - "value": { - "value": "revoc_reg_id", - "type": "string" - }, - "type": "primitive" - }, - "revocation_id": { - "value": { - "value": "revocation_id", - "type": "string" - }, - "type": "primitive" - }, - "role": { - "value": "issuer", - "type": "enum" - }, - "schema_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "type": "string" - }, - "type": "primitive" - }, - "state": { - "value": { - "value": "credential_acked", - "type": "string" - }, - "type": "primitive" - }, - "thread_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "trace": { - "value": { - "value": true, - "type": "boolean" - }, - "type": "primitive" - }, - "updated_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "type": "withoutStreaming" - }, - "codeSamples": [], - "type": "full" - } - ], - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - }, - { - "summary": "Send issuer a credential proposal", - "audiences": [], - "operationId": "send_free_credential_proposal", - "tags": [ - "issue-credential v1.0" - ], - "pathParameters": [], - "queryParameters": [], - "headers": [], - "generatedRequestName": "SendFreeCredentialProposalRequest", - "request": { - "schema": { - "generatedName": "SendFreeCredentialProposalRequest", - "schema": "V10CredentialProposalRequestOpt", - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "reference" - }, - "contentType": "application/json", - "fullExamples": [], - "additionalProperties": false, - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "json" - }, - "response": { - "description": "", - "schema": { - "generatedName": "SendFreeCredentialProposalResponse", - "schema": "V10CredentialExchange", - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "reference" - }, - "fullExamples": [], - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "json" - }, - "errors": {}, - "server": [], - "authed": true, - "method": "POST", - "path": "/issue-credential/send-proposal", - "examples": [ - { - "pathParameters": [], - "queryParameters": [], - "headers": [], - "request": { - "properties": { - "auto_remove": { - "value": { - "value": true, - "type": "boolean" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" - }, - "connection_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "credential_proposal": { - "properties": { - "@type": { - "value": { - "value": "issue-credential/1.0/credential-preview", - "type": "string" - }, - "type": "primitive" - }, - "attributes": { - "value": [ - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "issuer_did": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv", - "type": "string" - }, - "type": "primitive" - }, - "schema_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "type": "string" - }, - "type": "primitive" - }, - "schema_issuer_did": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv", - "type": "string" - }, - "type": "primitive" - }, - "schema_name": { - "value": { - "value": "preferences", - "type": "string" - }, - "type": "primitive" - }, - "schema_version": { - "value": { - "value": "1.0", - "type": "string" - }, - "type": "primitive" - }, - "trace": { - "value": { - "value": true, - "type": "boolean" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "response": { - "value": { - "properties": { - "auto_issue": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - }, - "auto_offer": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - }, - "auto_remove": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - }, - "connection_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "created_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "credential": { - "properties": { - "attrs": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": "alice", - "type": "string" - }, - "type": "primitive" - } - } - ], - "type": "map" - }, - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "cred_rev_id": { - "value": { - "value": "12345", - "type": "string" - }, - "type": "primitive" - }, - "referent": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "rev_reg_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "type": "string" - }, - "type": "primitive" - }, - "schema_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "credential_definition_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "credential_exchange_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "credential_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "credential_offer": { - "properties": { - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "key_correctness_proof": { - "properties": { - "c": { - "value": { - "value": "0", - "type": "string" - }, - "type": "primitive" - }, - "xr_cap": { - "value": [ - { - "value": [ - { - "value": { - "value": "xr_cap", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - } - ], - "type": "array" - }, - "xz_cap": { - "value": { - "value": "0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "nonce": { - "value": { - "value": "0", - "type": "string" - }, - "type": "primitive" - }, - "schema_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "credential_offer_dict": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" - }, - "credential_preview": { - "properties": { - "@type": { - "value": { - "value": "issue-credential/1.0/credential-preview", - "type": "string" - }, - "type": "primitive" - }, - "attributes": { - "value": [ - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "offers~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "credential_proposal_dict": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" - }, - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "credential_proposal": { - "properties": { - "@type": { - "value": { - "value": "issue-credential/1.0/credential-preview", - "type": "string" - }, - "type": "primitive" - }, - "attributes": { - "value": [ - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "issuer_did": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv", - "type": "string" - }, - "type": "primitive" - }, - "schema_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "type": "string" - }, - "type": "primitive" - }, - "schema_issuer_did": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv", - "type": "string" - }, - "type": "primitive" - }, - "schema_name": { - "value": { - "value": "schema_name", - "type": "string" - }, - "type": "primitive" - }, - "schema_version": { - "value": { - "value": "1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "credential_request": { - "properties": { - "blinded_ms": { - "properties": {}, - "type": "object" - }, - "blinded_ms_correctness_proof": { - "properties": {}, - "type": "object" - }, - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "nonce": { - "value": { - "value": "0", - "type": "string" - }, - "type": "primitive" - }, - "prover_did": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "error_msg": { - "value": { - "value": "Credential definition identifier is not set in proposal", - "type": "string" - }, - "type": "primitive" - }, - "initiator": { - "value": "self", - "type": "enum" - }, - "parent_thread_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "raw_credential": { - "properties": { - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "rev_reg_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "type": "string" - }, - "type": "primitive" - }, - "schema_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "type": "string" - }, - "type": "primitive" - }, - "signature": { - "properties": {}, - "type": "object" - }, - "signature_correctness_proof": { - "properties": {}, - "type": "object" - }, - "values": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "properties": { - "encoded": { - "value": { - "value": "-1", - "type": "string" - }, - "type": "primitive" - }, - "raw": { - "value": { - "value": "raw", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - } - ], - "type": "map" - } - }, - "type": "object" - }, - "revoc_reg_id": { - "value": { - "value": "revoc_reg_id", - "type": "string" - }, - "type": "primitive" - }, - "revocation_id": { - "value": { - "value": "revocation_id", - "type": "string" - }, - "type": "primitive" - }, - "role": { - "value": "issuer", - "type": "enum" - }, - "schema_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "type": "string" - }, - "type": "primitive" - }, - "state": { - "value": { - "value": "credential_acked", - "type": "string" - }, - "type": "primitive" - }, - "thread_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "trace": { - "value": { - "value": true, - "type": "boolean" - }, - "type": "primitive" - }, - "updated_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "type": "withoutStreaming" - }, - "codeSamples": [], - "type": "full" - } - ], - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - }, - { - "summary": "Sign a JSON-LD structure and return it", - "audiences": [], - "operationId": "sign", - "tags": [ - "jsonld" - ], - "pathParameters": [], - "queryParameters": [], - "headers": [], - "generatedRequestName": "SignRequest", - "request": { - "schema": { - "generatedName": "SignRequest", - "schema": "SignRequest", - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "reference" - }, - "contentType": "application/json", - "fullExamples": [], - "additionalProperties": false, - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "json" - }, - "response": { - "description": "", - "schema": { - "generatedName": "SignResponse", - "schema": "SignResponse", - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "reference" - }, - "fullExamples": [], - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "json" - }, - "errors": {}, - "server": [], - "authed": true, - "method": "POST", - "path": "/jsonld/sign", - "examples": [ - { - "pathParameters": [], - "queryParameters": [], - "headers": [], - "request": { - "properties": { - "doc": { - "properties": { - "credential": { - "properties": {}, - "type": "object" - }, - "options": { - "properties": { - "proofPurpose": { - "value": { - "value": "proofPurpose", - "type": "string" - }, - "type": "primitive" - }, - "verificationMethod": { - "value": { - "value": "verificationMethod", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - }, - "type": "object" - }, - "verkey": { - "value": { - "value": "verkey", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "response": { - "value": { - "properties": { - "error": { - "value": { - "value": "error", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "type": "withoutStreaming" - }, - "codeSamples": [], - "type": "full" - } - ], - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - }, - { - "summary": "Verify a JSON-LD structure.", - "audiences": [], - "operationId": "verify", - "tags": [ - "jsonld" - ], - "pathParameters": [], - "queryParameters": [], - "headers": [], - "generatedRequestName": "VerifyRequest", - "request": { - "schema": { - "generatedName": "VerifyRequest", - "schema": "VerifyRequest", - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "reference" - }, - "contentType": "application/json", - "fullExamples": [], - "additionalProperties": false, - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "json" - }, - "response": { - "description": "", - "schema": { - "generatedName": "VerifyResponse", - "schema": "VerifyResponse", - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "reference" - }, - "fullExamples": [], - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "json" - }, - "errors": {}, - "server": [], - "authed": true, - "method": "POST", - "path": "/jsonld/verify", - "examples": [ - { - "pathParameters": [], - "queryParameters": [], - "headers": [], - "request": { - "properties": { - "doc": { - "properties": { - "proof": { - "properties": { - "proofPurpose": { - "value": { - "value": "proofPurpose", - "type": "string" - }, - "type": "primitive" - }, - "verificationMethod": { - "value": { - "value": "verificationMethod", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - }, - "type": "object" - }, - "verkey": { - "value": { - "value": "verkey", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "response": { - "value": { - "properties": { - "error": { - "value": { - "value": "error", - "type": "string" - }, - "type": "primitive" - }, - "valid": { - "value": { - "value": true, - "type": "boolean" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "type": "withoutStreaming" - }, - "codeSamples": [], - "type": "full" - } - ], - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - }, - { - "summary": "Get the endpoint for a DID from the ledger.", - "audiences": [], - "operationId": "get_published_did_endpoint", - "tags": [ - "ledger" - ], - "pathParameters": [], - "queryParameters": [ - { - "description": "DID of interest", - "name": "did", - "schema": { - "schema": { - "pattern": "^(did:sov:)?[123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz]{21,22}$", - "type": "string" - }, - "generatedName": "GetPublishedDidEndpointRequestDid", - "groupName": [], - "type": "primitive" - }, - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - }, - { - "description": "Endpoint type of interest (default 'Endpoint')", - "name": "endpoint_type", - "schema": { - "generatedName": "GetPublishedDidEndpointRequestEndpointType", - "value": { - "generatedName": "GetPublishedDidEndpointRequestEndpointType", - "values": [ - { - "generatedName": "Endpoint", - "value": "Endpoint", - "casing": {} - }, - { - "generatedName": "Profile", - "value": "Profile", - "casing": {} - }, - { - "generatedName": "LinkedDomains", - "value": "LinkedDomains", - "casing": {} - } - ], - "groupName": [], - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "enum" - }, - "groupName": [], - "type": "nullable" - }, - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - } - ], - "headers": [], - "generatedRequestName": "GetPublishedDidEndpointRequest", - "response": { - "description": "", - "schema": { - "generatedName": "GetPublishedDidEndpointResponse", - "schema": "GetDIDEndpointResponse", - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "reference" - }, - "fullExamples": [], - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "json" - }, - "errors": {}, - "server": [], - "authed": true, - "method": "GET", - "path": "/ledger/did-endpoint", - "examples": [ - { - "pathParameters": [], - "queryParameters": [ - { - "name": "did", - "value": { - "value": { - "value": "did", - "type": "string" - }, - "type": "primitive" - } - } - ], - "headers": [], - "response": { - "value": { - "properties": { - "endpoint": { - "value": { - "value": "https://myhost:8021", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "type": "withoutStreaming" - }, - "codeSamples": [], - "type": "full" - } - ], - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - }, - { - "summary": "Get the verkey for a DID from the ledger.", - "audiences": [], - "operationId": "get_did_verkey", - "tags": [ - "ledger" - ], - "pathParameters": [], - "queryParameters": [ - { - "description": "DID of interest", - "name": "did", - "schema": { - "schema": { - "pattern": "^(did:sov:)?[123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz]{21,22}$", - "type": "string" - }, - "generatedName": "GetDidVerkeyRequestDid", - "groupName": [], - "type": "primitive" - }, - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - } - ], - "headers": [], - "generatedRequestName": "GetDidVerkeyRequest", - "response": { - "description": "", - "schema": { - "generatedName": "GetDidVerkeyResponse", - "schema": "GetDIDVerkeyResponse", - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "reference" - }, - "fullExamples": [], - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "json" - }, - "errors": {}, - "server": [], - "authed": true, - "method": "GET", - "path": "/ledger/did-verkey", - "examples": [ - { - "pathParameters": [], - "queryParameters": [ - { - "name": "did", - "value": { - "value": { - "value": "did", - "type": "string" - }, - "type": "primitive" - } - } - ], - "headers": [], - "response": { - "value": { - "properties": { - "verkey": { - "value": { - "value": "H3C2AVvLMv6gmMNam3uVAjZpfkcJCwDwnZn6z3wXmqPV", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "type": "withoutStreaming" - }, - "codeSamples": [], - "type": "full" - } - ], - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - }, - { - "summary": "Get the role from the NYM registration of a public DID.", - "audiences": [], - "operationId": "get_did_nym_role", - "tags": [ - "ledger" - ], - "pathParameters": [], - "queryParameters": [ - { - "description": "DID of interest", - "name": "did", - "schema": { - "schema": { - "pattern": "^(did:sov:)?[123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz]{21,22}$", - "type": "string" - }, - "generatedName": "GetDidNymRoleRequestDid", - "groupName": [], - "type": "primitive" - }, - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - } - ], - "headers": [], - "generatedRequestName": "GetDidNymRoleRequest", - "response": { - "description": "", - "schema": { - "generatedName": "GetDidNymRoleResponse", - "schema": "GetNymRoleResponse", - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "reference" - }, - "fullExamples": [], - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "json" - }, - "errors": {}, - "server": [], - "authed": true, - "method": "GET", - "path": "/ledger/get-nym-role", - "examples": [ - { - "pathParameters": [], - "queryParameters": [ - { - "name": "did", - "value": { - "value": { - "value": "did", - "type": "string" - }, - "type": "primitive" - } - } - ], - "headers": [], - "response": { - "value": { - "properties": { - "role": { - "value": "ENDORSER", - "type": "enum" - } - }, - "type": "object" - }, - "type": "withoutStreaming" - }, - "codeSamples": [], - "type": "full" - } - ], - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - }, - { - "summary": "Fetch the multiple ledger configuration currently in use", - "audiences": [], - "operationId": "get_multiple_ledger_config", - "tags": [ - "ledger" - ], - "pathParameters": [], - "queryParameters": [], - "headers": [], - "generatedRequestName": "GetMultipleLedgerConfigRequest", - "response": { - "description": "", - "schema": { - "generatedName": "GetMultipleLedgerConfigResponse", - "schema": "LedgerConfigList", - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "reference" - }, - "fullExamples": [], - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "json" - }, - "errors": {}, - "server": [], - "authed": true, - "method": "GET", - "path": "/ledger/multiple/config", - "examples": [ - { - "pathParameters": [], - "queryParameters": [], - "headers": [], - "response": { - "value": { - "properties": { - "ledger_config_list": { - "value": [ - { - "properties": { - "genesis_file": { - "value": { - "value": "genesis_file", - "type": "string" - }, - "type": "primitive" - }, - "genesis_transactions": { - "value": { - "value": "genesis_transactions", - "type": "string" - }, - "type": "primitive" - }, - "genesis_url": { - "value": { - "value": "genesis_url", - "type": "string" - }, - "type": "primitive" - }, - "id": { - "value": { - "value": "id", - "type": "string" - }, - "type": "primitive" - }, - "is_production": { - "value": { - "value": true, - "type": "boolean" - }, - "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "genesis_file": { - "value": { - "value": "genesis_file", - "type": "string" - }, - "type": "primitive" - }, - "genesis_transactions": { - "value": { - "value": "genesis_transactions", - "type": "string" - }, - "type": "primitive" - }, - "genesis_url": { - "value": { - "value": "genesis_url", - "type": "string" - }, - "type": "primitive" - }, - "id": { - "value": { - "value": "id", - "type": "string" - }, - "type": "primitive" - }, - "is_production": { - "value": { - "value": true, - "type": "boolean" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "type": "withoutStreaming" - }, - "codeSamples": [], - "type": "full" - } - ], - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - }, - { - "summary": "Fetch the current write ledger", - "audiences": [], - "operationId": "get_write_ledger", - "tags": [ - "ledger" - ], - "pathParameters": [], - "queryParameters": [], - "headers": [], - "generatedRequestName": "GetWriteLedgerRequest", - "response": { - "description": "", - "schema": { - "generatedName": "GetWriteLedgerResponse", - "schema": "WriteLedgerRequest", - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "reference" - }, - "fullExamples": [], - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "json" - }, - "errors": {}, - "server": [], - "authed": true, - "method": "GET", - "path": "/ledger/multiple/get-write-ledger", - "examples": [ - { - "pathParameters": [], - "queryParameters": [], - "headers": [], - "response": { - "value": { - "properties": { - "ledger_id": { - "value": { - "value": "ledger_id", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "type": "withoutStreaming" - }, - "codeSamples": [], - "type": "full" - } - ], - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - }, - { - "summary": "Send a NYM registration to the ledger.", - "audiences": [], - "operationId": "register_nym", - "tags": [ - "ledger" - ], - "pathParameters": [], - "queryParameters": [ - { - "description": "DID to register", - "name": "did", - "schema": { - "schema": { - "pattern": "^(did:sov:)?[123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz]{21,22}$", - "type": "string" - }, - "generatedName": "RegisterNymRequestDid", - "groupName": [], - "type": "primitive" - }, - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - }, - { - "description": "Verification key", - "name": "verkey", - "schema": { - "schema": { - "pattern": "^[123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz]{43,44}$", - "type": "string" - }, - "generatedName": "RegisterNymRequestVerkey", - "groupName": [], - "type": "primitive" - }, - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - }, - { - "description": "Alias", - "name": "alias", - "schema": { - "generatedName": "RegisterNymRequestAlias", - "value": { - "schema": { - "type": "string" - }, - "generatedName": "RegisterNymRequestAlias", - "groupName": [], - "type": "primitive" - }, - "groupName": [], - "type": "nullable" - }, - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - }, - { - "description": "Connection identifier", - "name": "conn_id", - "schema": { - "generatedName": "RegisterNymRequestConnId", - "value": { - "schema": { - "type": "string" - }, - "generatedName": "RegisterNymRequestConnId", - "groupName": [], - "type": "primitive" - }, - "groupName": [], - "type": "nullable" - }, - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - }, - { - "description": "Create Transaction For Endorser's signature", - "name": "create_transaction_for_endorser", - "schema": { - "generatedName": "RegisterNymRequestCreateTransactionForEndorser", - "value": { - "schema": { - "type": "boolean" - }, - "generatedName": "RegisterNymRequestCreateTransactionForEndorser", - "groupName": [], - "type": "primitive" - }, - "groupName": [], - "type": "nullable" - }, - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - }, - { - "description": "Role", - "name": "role", - "schema": { - "generatedName": "RegisterNymRequestRole", - "value": { - "generatedName": "RegisterNymRequestRole", - "values": [ - { - "generatedName": "STEWARD", - "value": "STEWARD", - "casing": {} - }, - { - "generatedName": "TRUSTEE", - "value": "TRUSTEE", - "casing": {} - }, - { - "generatedName": "ENDORSER", - "value": "ENDORSER", - "casing": {} - }, - { - "generatedName": "NETWORK_MONITOR", - "value": "NETWORK_MONITOR", - "casing": {} - }, - { - "generatedName": "reset", - "value": "reset", - "casing": {} - } - ], - "groupName": [], - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "enum" - }, - "groupName": [], - "type": "nullable" - }, - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - } - ], - "headers": [], - "generatedRequestName": "RegisterNymRequest", - "response": { - "description": "", - "schema": { - "generatedName": "RegisterNymResponse", - "schema": "TxnOrRegisterLedgerNymResponse", - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "reference" - }, - "fullExamples": [], - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "json" - }, - "errors": {}, - "server": [], - "authed": true, - "method": "POST", - "path": "/ledger/register-nym", - "examples": [ - { - "pathParameters": [], - "queryParameters": [ - { - "name": "did", - "value": { - "value": { - "value": "did", - "type": "string" - }, - "type": "primitive" - } - }, - { - "name": "verkey", - "value": { - "value": { - "value": "verkey", - "type": "string" - }, - "type": "primitive" - } - } - ], - "headers": [], - "response": { - "value": { - "properties": { - "success": { - "value": { - "value": true, - "type": "boolean" - }, - "type": "primitive" - }, - "txn": { - "properties": { - "_type": { - "value": { - "value": "101", - "type": "string" - }, - "type": "primitive" - }, - "connection_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "created_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "endorser_write_txn": { - "value": { - "value": true, - "type": "boolean" - }, - "type": "primitive" - }, - "formats": { - "value": [ - { - "value": [ - { - "key": { - "value": "attach_id", - "type": "string" - }, - "value": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - } - }, - { - "key": { - "value": "format", - "type": "string" - }, - "value": { - "value": { - "value": "dif/endorse-transaction/request@v1.0", - "type": "string" - }, - "type": "primitive" - } - } - ], - "type": "map" - }, - { - "value": [ - { - "key": { - "value": "attach_id", - "type": "string" - }, - "value": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - } - }, - { - "key": { - "value": "format", - "type": "string" - }, - "value": { - "value": { - "value": "dif/endorse-transaction/request@v1.0", - "type": "string" - }, - "type": "primitive" - } - } - ], - "type": "map" - } - ], - "type": "array" - }, - "messages_attach": { - "value": [ - { - "properties": {}, - "type": "object" - }, - { - "properties": {}, - "type": "object" - } - ], - "type": "array" - }, - "signature_request": { - "value": [ - { - "properties": {}, - "type": "object" - }, - { - "properties": {}, - "type": "object" - } - ], - "type": "array" - }, - "signature_response": { - "value": [ - { - "properties": {}, - "type": "object" - }, - { - "properties": {}, - "type": "object" - } - ], - "type": "array" - }, - "state": { - "value": { - "value": "active", - "type": "string" - }, - "type": "primitive" - }, - "thread_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "trace": { - "value": { - "value": true, - "type": "boolean" - }, - "type": "primitive" - }, - "transaction_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "updated_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - }, - "type": "object" - }, - "type": "withoutStreaming" - }, - "codeSamples": [], - "type": "full" - } - ], - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - }, - { - "summary": "Rotate key pair for public DID.", - "audiences": [], - "operationId": "rotate_public_did_keypair", - "tags": [ - "ledger" - ], - "pathParameters": [], - "queryParameters": [], - "headers": [], - "generatedRequestName": "RotatePublicDidKeypairRequest", - "response": { - "description": "", - "schema": { - "generatedName": "RotatePublicDidKeypairResponse", - "schema": "LedgerModulesResult", - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "reference" - }, - "fullExamples": [], - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "json" - }, - "errors": {}, - "server": [], - "authed": true, - "method": "PATCH", - "path": "/ledger/rotate-public-did-keypair", - "examples": [ - { - "pathParameters": [], - "queryParameters": [], - "headers": [], - "response": { - "value": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "type": "withoutStreaming" - }, - "codeSamples": [], - "type": "full" - } - ], - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - }, - { - "summary": "Fetch the current transaction author agreement, if any", - "audiences": [], - "operationId": "get_taa", - "tags": [ - "ledger" - ], - "pathParameters": [], - "queryParameters": [], - "headers": [], - "generatedRequestName": "GetTaaRequest", - "response": { - "description": "", - "schema": { - "generatedName": "GetTaaResponse", - "schema": "TAAResult", - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "reference" - }, - "fullExamples": [], - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "json" - }, - "errors": {}, - "server": [], - "authed": true, - "method": "GET", - "path": "/ledger/taa", - "examples": [ - { - "pathParameters": [], - "queryParameters": [], - "headers": [], - "response": { - "value": { - "properties": { - "result": { - "properties": { - "aml_record": { - "properties": { - "aml": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": "aml", - "type": "string" - }, - "type": "primitive" - } - } - ], - "type": "map" - }, - "amlContext": { - "value": { - "value": "amlContext", - "type": "string" - }, - "type": "primitive" - }, - "version": { - "value": { - "value": "version", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "taa_accepted": { - "properties": { - "mechanism": { - "value": { - "value": "mechanism", - "type": "string" - }, - "type": "primitive" - }, - "time": { - "value": { - "value": 1640995199, - "type": "int" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "taa_record": { - "properties": { - "digest": { - "value": { - "value": "digest", - "type": "string" - }, - "type": "primitive" - }, - "text": { - "value": { - "value": "text", - "type": "string" - }, - "type": "primitive" - }, - "version": { - "value": { - "value": "version", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "taa_required": { - "value": { - "value": true, - "type": "boolean" - }, - "type": "primitive" - } - }, - "type": "object" - } - }, - "type": "object" - }, - "type": "withoutStreaming" - }, - "codeSamples": [], - "type": "full" - } - ], - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - }, - { - "summary": "Accept the transaction author agreement", - "audiences": [], - "operationId": "accept_taa", - "tags": [ - "ledger" - ], - "pathParameters": [], - "queryParameters": [], - "headers": [], - "generatedRequestName": "AcceptTaaRequest", - "request": { - "schema": { - "generatedName": "AcceptTaaRequest", - "schema": "TAAAccept", - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "reference" - }, - "contentType": "application/json", - "fullExamples": [], - "additionalProperties": false, - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "json" - }, - "response": { - "description": "", - "schema": { - "generatedName": "AcceptTaaResponse", - "schema": "LedgerModulesResult", - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "reference" - }, - "fullExamples": [], - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "json" - }, - "errors": {}, - "server": [], - "authed": true, - "method": "POST", - "path": "/ledger/taa/accept", - "examples": [ - { - "pathParameters": [], - "queryParameters": [], - "headers": [], - "request": { - "properties": { - "mechanism": { - "value": { - "value": "mechanism", - "type": "string" - }, - "type": "primitive" - }, - "text": { - "value": { - "value": "text", - "type": "string" - }, - "type": "primitive" - }, - "version": { - "value": { - "value": "version", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "response": { - "value": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "type": "withoutStreaming" - }, - "codeSamples": [], - "type": "full" - } - ], - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - }, - { - "summary": "Get default mediator", - "audiences": [], - "operationId": "get_default_mediator", - "tags": [ - "mediation" - ], - "pathParameters": [], - "queryParameters": [], - "headers": [], - "generatedRequestName": "GetDefaultMediatorRequest", - "response": { - "description": "", - "schema": { - "generatedName": "GetDefaultMediatorResponse", - "schema": "MediationRecord", - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "reference" - }, - "fullExamples": [], - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "json" - }, - "errors": {}, - "server": [], - "authed": true, - "method": "GET", - "path": "/mediation/default-mediator", - "examples": [ - { - "pathParameters": [], - "queryParameters": [], - "headers": [], - "response": { - "value": { - "properties": { - "connection_id": { - "value": { - "value": "connection_id", - "type": "string" - }, - "type": "primitive" - }, - "created_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "endpoint": { - "value": { - "value": "endpoint", - "type": "string" - }, - "type": "primitive" - }, - "mediation_id": { - "value": { - "value": "mediation_id", - "type": "string" - }, - "type": "primitive" - }, - "mediator_terms": { - "value": [ - { - "value": { - "value": "mediator_terms", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "mediator_terms", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "recipient_terms": { - "value": [ - { - "value": { - "value": "recipient_terms", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "recipient_terms", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "role": { - "value": { - "value": "role", - "type": "string" - }, - "type": "primitive" - }, - "routing_keys": { - "value": [ - { - "value": { - "value": "did:key:z6MkpTHR8VNsBxYAAWHut2Geadd9jSwuBV8xRoAnwWsdvktH", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "did:key:z6MkpTHR8VNsBxYAAWHut2Geadd9jSwuBV8xRoAnwWsdvktH", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "state": { - "value": { - "value": "active", - "type": "string" - }, - "type": "primitive" - }, - "updated_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "type": "withoutStreaming" - }, - "codeSamples": [], - "type": "full" - } - ], - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - }, - { - "summary": "Clear default mediator", - "audiences": [], - "operationId": "clear_default_mediator", - "tags": [ - "mediation" - ], - "pathParameters": [], - "queryParameters": [], - "headers": [], - "generatedRequestName": "ClearDefaultMediatorRequest", - "response": { - "description": "", - "schema": { - "generatedName": "ClearDefaultMediatorResponse", - "schema": "MediationRecord", - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "reference" - }, - "fullExamples": [], - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "json" - }, - "errors": {}, - "server": [], - "authed": true, - "method": "DELETE", - "path": "/mediation/default-mediator", - "examples": [ - { - "pathParameters": [], - "queryParameters": [], - "headers": [], - "response": { - "value": { - "properties": { - "connection_id": { - "value": { - "value": "connection_id", - "type": "string" - }, - "type": "primitive" - }, - "created_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "endpoint": { - "value": { - "value": "endpoint", - "type": "string" - }, - "type": "primitive" - }, - "mediation_id": { - "value": { - "value": "mediation_id", - "type": "string" - }, - "type": "primitive" - }, - "mediator_terms": { - "value": [ - { - "value": { - "value": "mediator_terms", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "mediator_terms", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "recipient_terms": { - "value": [ - { - "value": { - "value": "recipient_terms", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "recipient_terms", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "role": { - "value": { - "value": "role", - "type": "string" - }, - "type": "primitive" - }, - "routing_keys": { - "value": [ - { - "value": { - "value": "did:key:z6MkpTHR8VNsBxYAAWHut2Geadd9jSwuBV8xRoAnwWsdvktH", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "did:key:z6MkpTHR8VNsBxYAAWHut2Geadd9jSwuBV8xRoAnwWsdvktH", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "state": { - "value": { - "value": "active", - "type": "string" - }, - "type": "primitive" - }, - "updated_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "type": "withoutStreaming" - }, - "codeSamples": [], - "type": "full" - } - ], - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - }, - { - "summary": "Retrieve keylists by connection or role", - "audiences": [], - "operationId": "get_keylists", - "tags": [ - "mediation" - ], - "pathParameters": [], - "queryParameters": [ - { - "description": "Connection identifier (optional)", - "name": "conn_id", - "schema": { - "generatedName": "GetKeylistsRequestConnId", - "value": { - "schema": { - "format": "uuid", - "type": "string" - }, - "generatedName": "GetKeylistsRequestConnId", - "groupName": [], - "type": "primitive" - }, - "groupName": [], - "type": "nullable" - }, - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - }, - { - "description": "Filer on role, 'client' for keys mediated by other agents, 'server' for keys mediated by this agent", - "name": "role", - "schema": { - "generatedName": "GetKeylistsRequestRole", - "value": { - "generatedName": "GetKeylistsRequestRole", - "values": [ - { - "generatedName": "client", - "value": "client", - "casing": {} - }, - { - "generatedName": "server", - "value": "server", - "casing": {} - } - ], - "default": { - "generatedName": "server", - "value": "server", - "casing": {} - }, - "groupName": [], - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "enum" - }, - "groupName": [], - "type": "nullable" - }, - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - } - ], - "headers": [], - "generatedRequestName": "GetKeylistsRequest", - "response": { - "description": "", - "schema": { - "generatedName": "GetKeylistsResponse", - "schema": "Keylist", - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "reference" - }, - "fullExamples": [], - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "json" - }, - "errors": {}, - "server": [], - "authed": true, - "method": "GET", - "path": "/mediation/keylists", - "examples": [ - { - "pathParameters": [], - "queryParameters": [], - "headers": [], - "response": { - "value": { - "properties": { - "results": { - "value": [ - { - "properties": { - "connection_id": { - "value": { - "value": "connection_id", - "type": "string" - }, - "type": "primitive" - }, - "created_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "recipient_key": { - "value": { - "value": "recipient_key", - "type": "string" - }, - "type": "primitive" - }, - "record_id": { - "value": { - "value": "record_id", - "type": "string" - }, - "type": "primitive" - }, - "role": { - "value": { - "value": "role", - "type": "string" - }, - "type": "primitive" - }, - "state": { - "value": { - "value": "active", - "type": "string" - }, - "type": "primitive" - }, - "updated_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "wallet_id": { - "value": { - "value": "wallet_id", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "connection_id": { - "value": { - "value": "connection_id", - "type": "string" - }, - "type": "primitive" - }, - "created_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "recipient_key": { - "value": { - "value": "recipient_key", - "type": "string" - }, - "type": "primitive" - }, - "record_id": { - "value": { - "value": "record_id", - "type": "string" - }, - "type": "primitive" - }, - "role": { - "value": { - "value": "role", - "type": "string" - }, - "type": "primitive" - }, - "state": { - "value": { - "value": "active", - "type": "string" - }, - "type": "primitive" - }, - "updated_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "wallet_id": { - "value": { - "value": "wallet_id", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "type": "withoutStreaming" - }, - "codeSamples": [], - "type": "full" - } - ], - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - }, - { - "summary": "Send keylist query to mediator", - "audiences": [], - "operationId": "send_keylist_query_to_mediator", - "tags": [ - "mediation" - ], - "pathParameters": [ - { - "description": "Mediation record identifier", - "name": "mediation_id", - "schema": { - "schema": { - "format": "uuid", - "type": "string" - }, - "generatedName": "SendKeylistQueryToMediatorRequestMediationId", - "groupName": [], - "type": "primitive" - }, - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - } - ], - "queryParameters": [ - { - "description": "limit number of results", - "name": "paginate_limit", - "schema": { - "generatedName": "SendKeylistQueryToMediatorRequestPaginateLimit", - "value": { - "schema": { - "default": -1, - "type": "int" - }, - "generatedName": "SendKeylistQueryToMediatorRequestPaginateLimit", - "groupName": [], - "type": "primitive" - }, - "groupName": [], - "type": "nullable" - }, - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - }, - { - "description": "offset to use in pagination", - "name": "paginate_offset", - "schema": { - "generatedName": "SendKeylistQueryToMediatorRequestPaginateOffset", - "value": { - "schema": { - "default": 0, - "type": "int" - }, - "generatedName": "SendKeylistQueryToMediatorRequestPaginateOffset", - "groupName": [], - "type": "primitive" - }, - "groupName": [], - "type": "nullable" - }, - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - } - ], - "headers": [], - "generatedRequestName": "SendKeylistQueryToMediatorRequest", - "request": { - "schema": { - "generatedName": "SendKeylistQueryToMediatorRequestBody", - "schema": "KeylistQueryFilterRequest", - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "reference" - }, - "contentType": "application/json", - "fullExamples": [], - "additionalProperties": false, - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "json" - }, - "response": { - "description": "", - "schema": { - "generatedName": "SendKeylistQueryToMediatorResponse", - "schema": "KeylistQuery", - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "reference" - }, - "fullExamples": [], - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "json" - }, - "errors": {}, - "server": [], - "authed": true, - "method": "POST", - "path": "/mediation/keylists/{mediation_id}/send-keylist-query", - "examples": [ - { - "pathParameters": [ - { - "name": "mediation_id", - "value": { - "value": { - "value": "mediation_id", - "type": "string" - }, - "type": "primitive" - } - } - ], - "queryParameters": [], - "headers": [], - "request": { - "properties": {}, - "type": "object" - }, - "response": { - "value": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "paginate": { - "properties": { - "limit": { - "value": { - "value": 30, - "type": "int" - }, - "type": "primitive" - }, - "offset": { - "value": { - "value": 0, - "type": "int" - }, - "type": "primitive" - } - }, - "type": "object" - } - }, - "type": "object" - }, - "type": "withoutStreaming" - }, - "codeSamples": [], - "type": "full" - } - ], - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - }, - { - "summary": "Send keylist update to mediator", - "audiences": [], - "operationId": "send_keylist_update_to_mediator", - "tags": [ - "mediation" - ], - "pathParameters": [ - { - "description": "Mediation record identifier", - "name": "mediation_id", - "schema": { - "schema": { - "format": "uuid", - "type": "string" - }, - "generatedName": "SendKeylistUpdateToMediatorRequestMediationId", - "groupName": [], - "type": "primitive" - }, - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - } - ], - "queryParameters": [], - "headers": [], - "generatedRequestName": "SendKeylistUpdateToMediatorRequest", - "request": { - "schema": { - "generatedName": "SendKeylistUpdateToMediatorRequest", - "schema": "KeylistUpdateRequest", - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "reference" - }, - "contentType": "application/json", - "fullExamples": [], - "additionalProperties": false, - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "json" - }, - "response": { - "description": "", - "schema": { - "generatedName": "SendKeylistUpdateToMediatorResponse", - "schema": "KeylistUpdate", - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "reference" - }, - "fullExamples": [], - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "json" - }, - "errors": {}, - "server": [], - "authed": true, - "method": "POST", - "path": "/mediation/keylists/{mediation_id}/send-keylist-update", - "examples": [ - { - "pathParameters": [ - { - "name": "mediation_id", - "value": { - "value": { - "value": "mediation_id", - "type": "string" - }, - "type": "primitive" - } - } - ], - "queryParameters": [], - "headers": [], - "request": { - "properties": { - "updates": { - "value": [ - { - "properties": { - "action": { - "value": "add", - "type": "enum" - }, - "recipient_key": { - "value": { - "value": "did:key:z6MkpTHR8VNsBxYAAWHut2Geadd9jSwuBV8xRoAnwWsdvktH", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "action": { - "value": "add", - "type": "enum" - }, - "recipient_key": { - "value": { - "value": "did:key:z6MkpTHR8VNsBxYAAWHut2Geadd9jSwuBV8xRoAnwWsdvktH", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "response": { - "value": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "updates": { - "value": [ - { - "properties": { - "action": { - "value": "add", - "type": "enum" - }, - "recipient_key": { - "value": { - "value": "did:key:z6MkpTHR8VNsBxYAAWHut2Geadd9jSwuBV8xRoAnwWsdvktH", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "action": { - "value": "add", - "type": "enum" - }, - "recipient_key": { - "value": { - "value": "did:key:z6MkpTHR8VNsBxYAAWHut2Geadd9jSwuBV8xRoAnwWsdvktH", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "type": "withoutStreaming" - }, - "codeSamples": [], - "type": "full" - } - ], - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - }, - { - "summary": "Request mediation from connection", - "audiences": [], - "operationId": "request_mediation_for_connection", - "tags": [ - "mediation" - ], - "pathParameters": [ - { - "description": "Connection identifier", - "name": "conn_id", - "schema": { - "schema": { - "type": "string" - }, - "generatedName": "RequestMediationForConnectionRequestConnId", - "groupName": [], - "type": "primitive" - }, - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - } - ], - "queryParameters": [], - "headers": [], - "generatedRequestName": "RequestMediationForConnectionRequest", - "request": { - "schema": { - "generatedName": "RequestMediationForConnectionRequest", - "schema": "MediationCreateRequest", - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "reference" - }, - "contentType": "application/json", - "fullExamples": [], - "additionalProperties": false, - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "json" - }, - "response": { - "description": "", - "schema": { - "generatedName": "RequestMediationForConnectionResponse", - "schema": "MediationRecord", - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "reference" - }, - "fullExamples": [], - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "json" - }, - "errors": {}, - "server": [], - "authed": true, - "method": "POST", - "path": "/mediation/request/{conn_id}", - "examples": [ - { - "pathParameters": [ - { - "name": "conn_id", - "value": { - "value": { - "value": "conn_id", - "type": "string" - }, - "type": "primitive" - } - } - ], - "queryParameters": [], - "headers": [], - "request": { - "properties": { - "mediator_terms": { - "value": [ - { - "value": { - "value": "mediator_terms", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "mediator_terms", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "recipient_terms": { - "value": [ - { - "value": { - "value": "recipient_terms", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "recipient_terms", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "response": { - "value": { - "properties": { - "connection_id": { - "value": { - "value": "connection_id", - "type": "string" - }, - "type": "primitive" - }, - "created_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "endpoint": { - "value": { - "value": "endpoint", - "type": "string" - }, - "type": "primitive" - }, - "mediation_id": { - "value": { - "value": "mediation_id", - "type": "string" - }, - "type": "primitive" - }, - "mediator_terms": { - "value": [ - { - "value": { - "value": "mediator_terms", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "mediator_terms", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "recipient_terms": { - "value": [ - { - "value": { - "value": "recipient_terms", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "recipient_terms", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "role": { - "value": { - "value": "role", - "type": "string" - }, - "type": "primitive" - }, - "routing_keys": { - "value": [ - { - "value": { - "value": "did:key:z6MkpTHR8VNsBxYAAWHut2Geadd9jSwuBV8xRoAnwWsdvktH", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "did:key:z6MkpTHR8VNsBxYAAWHut2Geadd9jSwuBV8xRoAnwWsdvktH", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "state": { - "value": { - "value": "active", - "type": "string" - }, - "type": "primitive" - }, - "updated_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "type": "withoutStreaming" - }, - "codeSamples": [], - "type": "full" - } - ], - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - }, - { - "summary": "Query mediation requests, returns list of all mediation records", - "audiences": [], - "operationId": "get_matching_mediation_records", - "tags": [ - "mediation" - ], - "pathParameters": [], - "queryParameters": [ - { - "description": "Connection identifier (optional)", - "name": "conn_id", - "schema": { - "generatedName": "GetMatchingMediationRecordsRequestConnId", - "value": { - "schema": { - "format": "uuid", - "type": "string" - }, - "generatedName": "GetMatchingMediationRecordsRequestConnId", - "groupName": [], - "type": "primitive" - }, - "groupName": [], - "type": "nullable" - }, - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - }, - { - "description": "List of mediator rules for recipient", - "name": "mediator_terms", - "schema": { - "generatedName": "GetMatchingMediationRecordsRequestMediatorTerms", - "value": { - "value": { - "description": "Indicate terms to which the mediator requires the recipient to agree", - "schema": { - "type": "string" - }, - "generatedName": "GetMatchingMediationRecordsRequestMediatorTermsItem", - "groupName": [], - "type": "primitive" - }, - "generatedName": "GetMatchingMediationRecordsRequestMediatorTerms", - "groupName": [], - "type": "array" - }, - "groupName": [], - "type": "nullable" - }, - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - }, - { - "description": "List of recipient rules for mediation", - "name": "recipient_terms", - "schema": { - "generatedName": "GetMatchingMediationRecordsRequestRecipientTerms", - "value": { - "value": { - "description": "Indicate terms to which the recipient requires the mediator to agree", - "schema": { - "type": "string" - }, - "generatedName": "GetMatchingMediationRecordsRequestRecipientTermsItem", - "groupName": [], - "type": "primitive" - }, - "generatedName": "GetMatchingMediationRecordsRequestRecipientTerms", - "groupName": [], - "type": "array" - }, - "groupName": [], - "type": "nullable" - }, - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - }, - { - "description": "Mediation state (optional)", - "name": "state", - "schema": { - "generatedName": "GetMatchingMediationRecordsRequestState", - "value": { - "generatedName": "GetMatchingMediationRecordsRequestState", - "values": [ - { - "generatedName": "request", - "value": "request", - "casing": {} - }, - { - "generatedName": "granted", - "value": "granted", - "casing": {} - }, - { - "generatedName": "denied", - "value": "denied", - "casing": {} - } - ], - "groupName": [], - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "enum" - }, - "groupName": [], - "type": "nullable" - }, - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - } - ], - "headers": [], - "generatedRequestName": "GetMatchingMediationRecordsRequest", - "response": { - "description": "", - "schema": { - "generatedName": "GetMatchingMediationRecordsResponse", - "schema": "MediationList", - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "reference" - }, - "fullExamples": [], - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "json" - }, - "errors": {}, - "server": [], - "authed": true, - "method": "GET", - "path": "/mediation/requests", - "examples": [ - { - "pathParameters": [], - "queryParameters": [], - "headers": [], - "response": { - "value": { - "properties": { - "results": { - "value": [ - { - "properties": { - "connection_id": { - "value": { - "value": "connection_id", - "type": "string" - }, - "type": "primitive" - }, - "created_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "endpoint": { - "value": { - "value": "endpoint", - "type": "string" - }, - "type": "primitive" - }, - "mediation_id": { - "value": { - "value": "mediation_id", - "type": "string" - }, - "type": "primitive" - }, - "mediator_terms": { - "value": [ - { - "value": { - "value": "mediator_terms", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "mediator_terms", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "recipient_terms": { - "value": [ - { - "value": { - "value": "recipient_terms", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "recipient_terms", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "role": { - "value": { - "value": "role", - "type": "string" - }, - "type": "primitive" - }, - "routing_keys": { - "value": [ - { - "value": { - "value": "did:key:z6MkpTHR8VNsBxYAAWHut2Geadd9jSwuBV8xRoAnwWsdvktH", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "did:key:z6MkpTHR8VNsBxYAAWHut2Geadd9jSwuBV8xRoAnwWsdvktH", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "state": { - "value": { - "value": "active", - "type": "string" - }, - "type": "primitive" - }, - "updated_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "connection_id": { - "value": { - "value": "connection_id", - "type": "string" - }, - "type": "primitive" - }, - "created_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "endpoint": { - "value": { - "value": "endpoint", - "type": "string" - }, - "type": "primitive" - }, - "mediation_id": { - "value": { - "value": "mediation_id", - "type": "string" - }, - "type": "primitive" - }, - "mediator_terms": { - "value": [ - { - "value": { - "value": "mediator_terms", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "mediator_terms", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "recipient_terms": { - "value": [ - { - "value": { - "value": "recipient_terms", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "recipient_terms", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "role": { - "value": { - "value": "role", - "type": "string" - }, - "type": "primitive" - }, - "routing_keys": { - "value": [ - { - "value": { - "value": "did:key:z6MkpTHR8VNsBxYAAWHut2Geadd9jSwuBV8xRoAnwWsdvktH", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "did:key:z6MkpTHR8VNsBxYAAWHut2Geadd9jSwuBV8xRoAnwWsdvktH", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "state": { - "value": { - "value": "active", - "type": "string" - }, - "type": "primitive" - }, - "updated_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "type": "withoutStreaming" - }, - "codeSamples": [], - "type": "full" - } - ], - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - }, - { - "summary": "Retrieve mediation request record", - "audiences": [], - "operationId": "get_mediation_record", - "tags": [ - "mediation" - ], - "pathParameters": [ - { - "description": "Mediation record identifier", - "name": "mediation_id", - "schema": { - "schema": { - "format": "uuid", - "type": "string" - }, - "generatedName": "GetMediationRecordRequestMediationId", - "groupName": [], - "type": "primitive" - }, - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - } - ], - "queryParameters": [], - "headers": [], - "generatedRequestName": "GetMediationRecordRequest", - "response": { - "description": "", - "schema": { - "generatedName": "GetMediationRecordResponse", - "schema": "MediationRecord", - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "reference" - }, - "fullExamples": [], - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "json" - }, - "errors": {}, - "server": [], - "authed": true, - "method": "GET", - "path": "/mediation/requests/{mediation_id}", - "examples": [ - { - "pathParameters": [ - { - "name": "mediation_id", - "value": { - "value": { - "value": "mediation_id", - "type": "string" - }, - "type": "primitive" - } - } - ], - "queryParameters": [], - "headers": [], - "response": { - "value": { - "properties": { - "connection_id": { - "value": { - "value": "connection_id", - "type": "string" - }, - "type": "primitive" - }, - "created_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "endpoint": { - "value": { - "value": "endpoint", - "type": "string" - }, - "type": "primitive" - }, - "mediation_id": { - "value": { - "value": "mediation_id", - "type": "string" - }, - "type": "primitive" - }, - "mediator_terms": { - "value": [ - { - "value": { - "value": "mediator_terms", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "mediator_terms", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "recipient_terms": { - "value": [ - { - "value": { - "value": "recipient_terms", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "recipient_terms", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "role": { - "value": { - "value": "role", - "type": "string" - }, - "type": "primitive" - }, - "routing_keys": { - "value": [ - { - "value": { - "value": "did:key:z6MkpTHR8VNsBxYAAWHut2Geadd9jSwuBV8xRoAnwWsdvktH", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "did:key:z6MkpTHR8VNsBxYAAWHut2Geadd9jSwuBV8xRoAnwWsdvktH", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "state": { - "value": { - "value": "active", - "type": "string" - }, - "type": "primitive" - }, - "updated_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "type": "withoutStreaming" - }, - "codeSamples": [], - "type": "full" - } - ], - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - }, - { - "summary": "Delete mediation request by ID", - "audiences": [], - "operationId": "delete_mediation_record", - "tags": [ - "mediation" - ], - "pathParameters": [ - { - "description": "Mediation record identifier", - "name": "mediation_id", - "schema": { - "schema": { - "format": "uuid", - "type": "string" - }, - "generatedName": "DeleteMediationRecordRequestMediationId", - "groupName": [], - "type": "primitive" - }, - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - } - ], - "queryParameters": [], - "headers": [], - "generatedRequestName": "DeleteMediationRecordRequest", - "response": { - "description": "", - "schema": { - "generatedName": "DeleteMediationRecordResponse", - "schema": "MediationRecord", - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "reference" - }, - "fullExamples": [], - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "json" - }, - "errors": {}, - "server": [], - "authed": true, - "method": "DELETE", - "path": "/mediation/requests/{mediation_id}", - "examples": [ - { - "pathParameters": [ - { - "name": "mediation_id", - "value": { - "value": { - "value": "mediation_id", - "type": "string" - }, - "type": "primitive" - } - } - ], - "queryParameters": [], - "headers": [], - "response": { - "value": { - "properties": { - "connection_id": { - "value": { - "value": "connection_id", - "type": "string" - }, - "type": "primitive" - }, - "created_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "endpoint": { - "value": { - "value": "endpoint", - "type": "string" - }, - "type": "primitive" - }, - "mediation_id": { - "value": { - "value": "mediation_id", - "type": "string" - }, - "type": "primitive" - }, - "mediator_terms": { - "value": [ - { - "value": { - "value": "mediator_terms", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "mediator_terms", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "recipient_terms": { - "value": [ - { - "value": { - "value": "recipient_terms", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "recipient_terms", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "role": { - "value": { - "value": "role", - "type": "string" - }, - "type": "primitive" - }, - "routing_keys": { - "value": [ - { - "value": { - "value": "did:key:z6MkpTHR8VNsBxYAAWHut2Geadd9jSwuBV8xRoAnwWsdvktH", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "did:key:z6MkpTHR8VNsBxYAAWHut2Geadd9jSwuBV8xRoAnwWsdvktH", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "state": { - "value": { - "value": "active", - "type": "string" - }, - "type": "primitive" - }, - "updated_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "type": "withoutStreaming" - }, - "codeSamples": [], - "type": "full" - } - ], - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - }, - { - "summary": "Deny a stored mediation request", - "audiences": [], - "operationId": "deny_mediation_request", - "tags": [ - "mediation" - ], - "pathParameters": [ - { - "description": "Mediation record identifier", - "name": "mediation_id", - "schema": { - "schema": { - "format": "uuid", - "type": "string" - }, - "generatedName": "DenyMediationRequestRequestMediationId", - "groupName": [], - "type": "primitive" - }, - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - } - ], - "queryParameters": [], - "headers": [], - "generatedRequestName": "DenyMediationRequestRequest", - "request": { - "schema": { - "generatedName": "DenyMediationRequestRequest", - "schema": "AdminMediationDeny", - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "reference" - }, - "contentType": "application/json", - "fullExamples": [], - "additionalProperties": false, - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "json" - }, - "response": { - "description": "", - "schema": { - "generatedName": "DenyMediationRequestResponse", - "schema": "MediationDeny", - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "reference" - }, - "fullExamples": [], - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "json" - }, - "errors": {}, - "server": [], - "authed": true, - "method": "POST", - "path": "/mediation/requests/{mediation_id}/deny", - "examples": [ - { - "pathParameters": [ - { - "name": "mediation_id", - "value": { - "value": { - "value": "mediation_id", - "type": "string" - }, - "type": "primitive" - } - } - ], - "queryParameters": [], - "headers": [], - "request": { - "properties": { - "mediator_terms": { - "value": [ - { - "value": { - "value": "mediator_terms", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "mediator_terms", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "recipient_terms": { - "value": [ - { - "value": { - "value": "recipient_terms", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "recipient_terms", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "response": { - "value": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "mediator_terms": { - "value": [ - { - "value": { - "value": "mediator_terms", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "mediator_terms", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "recipient_terms": { - "value": [ - { - "value": { - "value": "recipient_terms", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "recipient_terms", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "type": "withoutStreaming" - }, - "codeSamples": [], - "type": "full" - } - ], - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - }, - { - "summary": "Grant received mediation", - "audiences": [], - "operationId": "grant_mediation_request", - "tags": [ - "mediation" - ], - "pathParameters": [ - { - "description": "Mediation record identifier", - "name": "mediation_id", - "schema": { - "schema": { - "format": "uuid", - "type": "string" - }, - "generatedName": "GrantMediationRequestRequestMediationId", - "groupName": [], - "type": "primitive" - }, - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - } - ], - "queryParameters": [], - "headers": [], - "generatedRequestName": "GrantMediationRequestRequest", - "response": { - "description": "", - "schema": { - "generatedName": "GrantMediationRequestResponse", - "schema": "MediationGrant", - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "reference" - }, - "fullExamples": [], - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "json" - }, - "errors": {}, - "server": [], - "authed": true, - "method": "POST", - "path": "/mediation/requests/{mediation_id}/grant", - "examples": [ - { - "pathParameters": [ - { - "name": "mediation_id", - "value": { + "type": "primitive" + }, + "name": { + "value": { + "value": "favourite_drink", + "type": "string" + }, + "type": "primitive" + }, + "value": { + "value": { + "value": "martini", + "type": "string" + }, + "type": "primitive" + } + }, + "type": "object" + } + ], + "type": "array" + } + }, + "type": "object" + }, + "filter": { + "properties": {}, + "type": "object" + }, + "trace": { "value": { - "value": "mediation_id", + "value": true, + "type": "boolean" + }, + "type": "primitive" + }, + "verification_method": { + "value": { + "value": "verification_method", "type": "string" }, "type": "primitive" } - } - ], - "queryParameters": [], - "headers": [], + }, + "type": "object" + }, "response": { "value": { "properties": { - "@id": { + "auto_issue": { + "value": { + "value": false, + "type": "boolean" + }, + "type": "primitive" + }, + "auto_offer": { + "value": { + "value": false, + "type": "boolean" + }, + "type": "primitive" + }, + "auto_remove": { + "value": { + "value": false, + "type": "boolean" + }, + "type": "primitive" + }, + "connection_id": { "value": { "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "type": "string" }, "type": "primitive" }, - "@type": { + "created_at": { "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", + "value": "2021-12-31 23:59:59+00:00", "type": "string" }, "type": "primitive" }, - "endpoint": { + "cred_ex_id": { "value": { - "value": "http://192.168.56.102:8020/", + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "type": "string" }, "type": "primitive" }, - "routing_keys": { - "value": [ - { - "value": { - "value": "routing_keys", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "routing_keys", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" + "error_msg": { + "value": { + "value": "The front fell off", + "type": "string" + }, + "type": "primitive" + }, + "initiator": { + "value": "self", + "type": "enum" + }, + "parent_thread_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "role": { + "value": "issuer", + "type": "enum" + }, + "state": { + "value": "done", + "type": "enum" + }, + "thread_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "trace": { + "value": { + "value": true, + "type": "boolean" + }, + "type": "primitive" + }, + "updated_at": { + "value": { + "value": "2021-12-31 23:59:59+00:00", + "type": "string" + }, + "type": "primitive" } }, "type": "object" @@ -38247,37 +10673,20 @@ } }, { - "summary": "Update keylist for a connection", + "summary": "Send holder a credential offer, independent of any proposal", "audiences": [], - "operationId": "update_keylist_for_conn_id", + "operationId": "send_free_credential_offer", "tags": [ - "mediation" - ], - "pathParameters": [ - { - "description": "Connection identifier", - "name": "conn_id", - "schema": { - "schema": { - "type": "string" - }, - "generatedName": "UpdateKeylistForConnIdRequestConnId", - "groupName": [], - "type": "primitive" - }, - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - } + "issue-credential v2.0" ], + "pathParameters": [], "queryParameters": [], "headers": [], - "generatedRequestName": "UpdateKeylistForConnIdRequest", + "generatedRequestName": "SendFreeCredentialOfferRequest", "request": { "schema": { - "generatedName": "UpdateKeylistForConnIdRequest", - "schema": "MediationIdMatchInfo", + "generatedName": "SendFreeCredentialOfferRequest", + "schema": "V20CredOfferRequest", "source": { "file": "../openapi.yml", "type": "openapi" @@ -38296,8 +10705,8 @@ "response": { "description": "", "schema": { - "generatedName": "UpdateKeylistForConnIdResponse", - "schema": "KeylistUpdate", + "generatedName": "SendFreeCredentialOfferResponse", + "schema": "V20CredExRecord", "source": { "file": "../openapi.yml", "type": "openapi" @@ -38315,31 +10724,121 @@ "server": [], "authed": true, "method": "POST", - "path": "/mediation/update-keylist/{conn_id}", + "path": "/issue-credential-2.0/send-offer", "examples": [ { - "pathParameters": [ - { - "name": "conn_id", - "value": { - "value": { - "value": "conn_id", - "type": "string" - }, - "type": "primitive" - } - } - ], + "pathParameters": [], "queryParameters": [], "headers": [], "request": { "properties": { - "mediation_id": { + "auto_issue": { + "value": { + "value": true, + "type": "boolean" + }, + "type": "primitive" + }, + "auto_remove": { + "value": { + "value": true, + "type": "boolean" + }, + "type": "primitive" + }, + "comment": { + "value": { + "value": "comment", + "type": "string" + }, + "type": "primitive" + }, + "connection_id": { "value": { "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "type": "string" }, "type": "primitive" + }, + "credential_preview": { + "properties": { + "@type": { + "value": { + "value": "issue-credential/2.0/credential-preview", + "type": "string" + }, + "type": "primitive" + }, + "attributes": { + "value": [ + { + "properties": { + "mime-type": { + "value": { + "value": "image/jpeg", + "type": "string" + }, + "type": "primitive" + }, + "name": { + "value": { + "value": "favourite_drink", + "type": "string" + }, + "type": "primitive" + }, + "value": { + "value": { + "value": "martini", + "type": "string" + }, + "type": "primitive" + } + }, + "type": "object" + }, + { + "properties": { + "mime-type": { + "value": { + "value": "image/jpeg", + "type": "string" + }, + "type": "primitive" + }, + "name": { + "value": { + "value": "favourite_drink", + "type": "string" + }, + "type": "primitive" + }, + "value": { + "value": { + "value": "martini", + "type": "string" + }, + "type": "primitive" + } + }, + "type": "object" + } + ], + "type": "array" + } + }, + "type": "object" + }, + "filter": { + "properties": {}, + "type": "object" + }, + "trace": { + "value": { + "value": true, + "type": "boolean" + }, + "type": "primitive" } }, "type": "object" @@ -38347,145 +10846,30 @@ "response": { "value": { "properties": { - "@id": { + "auto_issue": { "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" + "value": false, + "type": "boolean" }, "type": "primitive" }, - "@type": { + "auto_offer": { "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" + "value": false, + "type": "boolean" }, "type": "primitive" }, - "updates": { - "value": [ - { - "properties": { - "action": { - "value": "add", - "type": "enum" - }, - "recipient_key": { - "value": { - "value": "did:key:z6MkpTHR8VNsBxYAAWHut2Geadd9jSwuBV8xRoAnwWsdvktH", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "action": { - "value": "add", - "type": "enum" - }, - "recipient_key": { - "value": { - "value": "did:key:z6MkpTHR8VNsBxYAAWHut2Geadd9jSwuBV8xRoAnwWsdvktH", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "type": "withoutStreaming" - }, - "codeSamples": [], - "type": "full" - } - ], - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - }, - { - "summary": "Set default mediator", - "audiences": [], - "operationId": "set_default_mediator", - "tags": [ - "mediation" - ], - "pathParameters": [ - { - "description": "Mediation record identifier", - "name": "mediation_id", - "schema": { - "schema": { - "format": "uuid", - "type": "string" - }, - "generatedName": "SetDefaultMediatorRequestMediationId", - "groupName": [], - "type": "primitive" - }, - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - } - ], - "queryParameters": [], - "headers": [], - "generatedRequestName": "SetDefaultMediatorRequest", - "response": { - "description": "", - "schema": { - "generatedName": "SetDefaultMediatorResponse", - "schema": "MediationRecord", - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "reference" - }, - "fullExamples": [], - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "json" - }, - "errors": {}, - "server": [], - "authed": true, - "method": "PUT", - "path": "/mediation/{mediation_id}/default-mediator", - "examples": [ - { - "pathParameters": [ - { - "name": "mediation_id", - "value": { - "value": { - "value": "mediation_id", - "type": "string" + "auto_remove": { + "value": { + "value": false, + "type": "boolean" + }, + "type": "primitive" }, - "type": "primitive" - } - } - ], - "queryParameters": [], - "headers": [], - "response": { - "value": { - "properties": { "connection_id": { "value": { - "value": "connection_id", + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "type": "string" }, "type": "primitive" @@ -38497,88 +10881,50 @@ }, "type": "primitive" }, - "endpoint": { + "cred_ex_id": { "value": { - "value": "endpoint", + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "type": "string" }, "type": "primitive" }, - "mediation_id": { + "error_msg": { "value": { - "value": "mediation_id", + "value": "The front fell off", "type": "string" }, "type": "primitive" }, - "mediator_terms": { - "value": [ - { - "value": { - "value": "mediator_terms", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "mediator_terms", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" + "initiator": { + "value": "self", + "type": "enum" }, - "recipient_terms": { - "value": [ - { - "value": { - "value": "recipient_terms", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "recipient_terms", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" + "parent_thread_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" }, "role": { + "value": "issuer", + "type": "enum" + }, + "state": { + "value": "done", + "type": "enum" + }, + "thread_id": { "value": { - "value": "role", + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "type": "string" }, "type": "primitive" }, - "routing_keys": { - "value": [ - { - "value": { - "value": "did:key:z6MkpTHR8VNsBxYAAWHut2Geadd9jSwuBV8xRoAnwWsdvktH", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "did:key:z6MkpTHR8VNsBxYAAWHut2Geadd9jSwuBV8xRoAnwWsdvktH", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "state": { + "trace": { "value": { - "value": "active", - "type": "string" + "value": true, + "type": "boolean" }, "type": "primitive" }, @@ -38604,20 +10950,20 @@ } }, { - "summary": "Create a subwallet", + "summary": "Send issuer a credential proposal", "audiences": [], - "operationId": "create_wallet", + "operationId": "send_free_credential_proposal", "tags": [ - "multitenancy" + "issue-credential v2.0" ], "pathParameters": [], "queryParameters": [], "headers": [], - "generatedRequestName": "CreateWalletRequest", + "generatedRequestName": "SendFreeCredentialProposalRequest", "request": { "schema": { - "generatedName": "CreateWalletRequest", - "schema": "CreateWalletRequest", + "generatedName": "SendFreeCredentialProposalRequest", + "schema": "V20CredExFree", "source": { "file": "../openapi.yml", "type": "openapi" @@ -38636,8 +10982,8 @@ "response": { "description": "", "schema": { - "generatedName": "CreateWalletResponse", - "schema": "CreateWalletResponse", + "generatedName": "SendFreeCredentialProposalResponse", + "schema": "V20CredExRecord", "source": { "file": "../openapi.yml", "type": "openapi" @@ -38655,7 +11001,7 @@ "server": [], "authed": true, "method": "POST", - "path": "/multitenancy/wallet", + "path": "/issue-credential-2.0/send-proposal", "examples": [ { "pathParameters": [], @@ -38663,71 +11009,113 @@ "headers": [], "request": { "properties": { - "image_url": { + "auto_remove": { "value": { - "value": "https://aries.ca/images/sample.png", - "type": "string" + "value": true, + "type": "boolean" }, "type": "primitive" }, - "key_management_mode": { + "comment": { "value": { - "value": "managed", + "value": "comment", "type": "string" }, - "type": "literal" + "type": "primitive" }, - "label": { + "connection_id": { "value": { - "value": "Alice", + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "type": "string" }, "type": "primitive" }, - "wallet_dispatch_type": { - "value": "default", - "type": "enum" + "credential_preview": { + "properties": { + "@type": { + "value": { + "value": "issue-credential/2.0/credential-preview", + "type": "string" + }, + "type": "primitive" + }, + "attributes": { + "value": [ + { + "properties": { + "mime-type": { + "value": { + "value": "image/jpeg", + "type": "string" + }, + "type": "primitive" + }, + "name": { + "value": { + "value": "favourite_drink", + "type": "string" + }, + "type": "primitive" + }, + "value": { + "value": { + "value": "martini", + "type": "string" + }, + "type": "primitive" + } + }, + "type": "object" + }, + { + "properties": { + "mime-type": { + "value": { + "value": "image/jpeg", + "type": "string" + }, + "type": "primitive" + }, + "name": { + "value": { + "value": "favourite_drink", + "type": "string" + }, + "type": "primitive" + }, + "value": { + "value": { + "value": "martini", + "type": "string" + }, + "type": "primitive" + } + }, + "type": "object" + } + ], + "type": "array" + } + }, + "type": "object" }, - "wallet_key": { + "filter": { + "properties": {}, + "type": "object" + }, + "trace": { "value": { - "value": "MySecretKey123", - "type": "string" + "value": true, + "type": "boolean" }, "type": "primitive" }, - "wallet_key_derivation": { - "value": "RAW", - "type": "enum" - }, - "wallet_name": { + "verification_method": { "value": { - "value": "MyNewWallet", + "value": "verification_method", "type": "string" }, "type": "primitive" - }, - "wallet_type": { - "value": "indy", - "type": "enum" - }, - "wallet_webhook_urls": { - "value": [ - { - "value": { - "value": "http://localhost:8022/webhooks", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "http://localhost:8022/webhooks", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" } }, "type": "object" @@ -38735,6 +11123,34 @@ "response": { "value": { "properties": { + "auto_issue": { + "value": { + "value": false, + "type": "boolean" + }, + "type": "primitive" + }, + "auto_offer": { + "value": { + "value": false, + "type": "boolean" + }, + "type": "primitive" + }, + "auto_remove": { + "value": { + "value": false, + "type": "boolean" + }, + "type": "primitive" + }, + "connection_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, "created_at": { "value": { "value": "2021-12-31 23:59:59+00:00", @@ -38742,37 +11158,59 @@ }, "type": "primitive" }, - "key_management_mode": { - "value": "managed", - "type": "enum" - }, - "state": { + "cred_ex_id": { "value": { - "value": "active", + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "type": "string" }, "type": "primitive" }, - "token": { + "error_msg": { "value": { - "value": "eyJhbGciOiJFZERTQSJ9.eyJhIjogIjAifQ.dBjftJeZ4CVP-mB92K27uhbUJU1p1r_wW1gFWFOEjXk", + "value": "The front fell off", "type": "string" }, "type": "primitive" }, - "updated_at": { + "initiator": { + "value": "self", + "type": "enum" + }, + "parent_thread_id": { "value": { - "value": "2021-12-31 23:59:59+00:00", + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "type": "string" }, "type": "primitive" }, - "wallet_id": { + "role": { + "value": "issuer", + "type": "enum" + }, + "state": { + "value": "done", + "type": "enum" + }, + "thread_id": { "value": { "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "type": "string" }, "type": "primitive" + }, + "trace": { + "value": { + "value": true, + "type": "boolean" + }, + "type": "primitive" + }, + "updated_at": { + "value": { + "value": "2021-12-31 23:59:59+00:00", + "type": "string" + }, + "type": "primitive" } }, "type": "object" @@ -38789,38 +11227,40 @@ } }, { - "summary": "Get a single subwallet", + "summary": "Send issuer a credential request not bound to an existing thread. Indy credentials cannot start at a request", "audiences": [], - "operationId": "get_wallet_record", + "operationId": "send_free_credential_request", "tags": [ - "multitenancy" + "issue-credential v2.0" ], - "pathParameters": [ - { - "description": "Subwallet identifier", - "name": "wallet_id", - "schema": { - "schema": { - "type": "string" - }, - "generatedName": "GetWalletRecordRequestWalletId", - "groupName": [], - "type": "primitive" - }, + "pathParameters": [], + "queryParameters": [], + "headers": [], + "generatedRequestName": "SendFreeCredentialRequestRequest", + "request": { + "schema": { + "generatedName": "SendFreeCredentialRequestRequest", + "schema": "V20CredRequestFree", "source": { "file": "../openapi.yml", "type": "openapi" - } - } - ], - "queryParameters": [], - "headers": [], - "generatedRequestName": "GetWalletRecordRequest", + }, + "type": "reference" + }, + "contentType": "application/json", + "fullExamples": [], + "additionalProperties": false, + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "json" + }, "response": { "description": "", "schema": { - "generatedName": "GetWalletRecordResponse", - "schema": "WalletRecord", + "generatedName": "SendFreeCredentialRequestResponse", + "schema": "V20CredExRecord", "source": { "file": "../openapi.yml", "type": "openapi" @@ -38837,27 +11277,226 @@ "errors": {}, "server": [], "authed": true, - "method": "GET", - "path": "/multitenancy/wallet/{wallet_id}", + "method": "POST", + "path": "/issue-credential-2.0/send-request", "examples": [ { - "pathParameters": [ - { - "name": "wallet_id", - "value": { + "pathParameters": [], + "queryParameters": [], + "headers": [], + "request": { + "properties": { + "auto_remove": { "value": { - "value": "wallet_id", + "value": true, + "type": "boolean" + }, + "type": "primitive" + }, + "comment": { + "value": { + "value": "comment", + "type": "string" + }, + "type": "primitive" + }, + "connection_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "filter": { + "properties": { + "ld_proof": { + "properties": { + "credential": { + "properties": { + "@context": { + "value": [ + { + "value": [ + { + "key": { + "value": "key", + "type": "string" + }, + "value": { + "value": { + "value": { + "value": "value", + "type": "string" + }, + "type": "primitive" + }, + "type": "unknown" + } + } + ], + "type": "map" + }, + { + "value": [ + { + "key": { + "value": "key", + "type": "string" + }, + "value": { + "value": { + "value": { + "value": "value", + "type": "string" + }, + "type": "primitive" + }, + "type": "unknown" + } + } + ], + "type": "map" + } + ], + "type": "array" + }, + "credentialSubject": { + "value": [ + { + "key": { + "value": "key", + "type": "string" + }, + "value": { + "value": { + "value": { + "value": "value", + "type": "string" + }, + "type": "primitive" + }, + "type": "unknown" + } + } + ], + "type": "map" + }, + "issuanceDate": { + "value": { + "value": "2010-01-01 19:23:24+00:00", + "type": "string" + }, + "type": "primitive" + }, + "issuer": { + "value": [ + { + "key": { + "value": "key", + "type": "string" + }, + "value": { + "value": { + "value": { + "value": "value", + "type": "string" + }, + "type": "primitive" + }, + "type": "unknown" + } + } + ], + "type": "map" + }, + "type": { + "value": [ + { + "value": { + "value": "VerifiableCredential", + "type": "string" + }, + "type": "primitive" + }, + { + "value": { + "value": "AlumniCredential", + "type": "string" + }, + "type": "primitive" + } + ], + "type": "array" + } + }, + "type": "object" + }, + "options": { + "properties": { + "proofType": { + "value": { + "value": "Ed25519Signature2018", + "type": "string" + }, + "type": "primitive" + } + }, + "type": "object" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "holder_did": { + "value": { + "value": "did:key:ahsdkjahsdkjhaskjdhakjshdkajhsdkjahs", "type": "string" }, - "type": "primitive" - } - } - ], - "queryParameters": [], - "headers": [], - "response": { - "value": { - "properties": { + "type": "primitive" + }, + "trace": { + "value": { + "value": false, + "type": "boolean" + }, + "type": "primitive" + } + }, + "type": "object" + }, + "response": { + "value": { + "properties": { + "auto_issue": { + "value": { + "value": false, + "type": "boolean" + }, + "type": "primitive" + }, + "auto_offer": { + "value": { + "value": false, + "type": "boolean" + }, + "type": "primitive" + }, + "auto_remove": { + "value": { + "value": false, + "type": "boolean" + }, + "type": "primitive" + }, + "connection_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, "created_at": { "value": { "value": "2021-12-31 23:59:59+00:00", @@ -38865,30 +11504,59 @@ }, "type": "primitive" }, - "key_management_mode": { - "value": "managed", - "type": "enum" + "cred_ex_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" }, - "state": { + "error_msg": { "value": { - "value": "active", + "value": "The front fell off", "type": "string" }, "type": "primitive" }, - "updated_at": { + "initiator": { + "value": "self", + "type": "enum" + }, + "parent_thread_id": { "value": { - "value": "2021-12-31 23:59:59+00:00", + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "type": "string" }, "type": "primitive" }, - "wallet_id": { + "role": { + "value": "issuer", + "type": "enum" + }, + "state": { + "value": "done", + "type": "enum" + }, + "thread_id": { "value": { "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "type": "string" }, "type": "primitive" + }, + "trace": { + "value": { + "value": true, + "type": "boolean" + }, + "type": "primitive" + }, + "updated_at": { + "value": { + "value": "2021-12-31 23:59:59+00:00", + "type": "string" + }, + "type": "primitive" } }, "type": "object" @@ -38905,37 +11573,20 @@ } }, { - "summary": "Update a subwallet", + "summary": "Create a credential record without sending (generally for use with Out-Of-Band)", "audiences": [], - "operationId": "update_wallet", + "operationId": "create_credential_record", "tags": [ - "multitenancy" - ], - "pathParameters": [ - { - "description": "Subwallet identifier", - "name": "wallet_id", - "schema": { - "schema": { - "type": "string" - }, - "generatedName": "UpdateWalletRequestWalletId", - "groupName": [], - "type": "primitive" - }, - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - } + "issue-credential v1.0" ], + "pathParameters": [], "queryParameters": [], "headers": [], - "generatedRequestName": "UpdateWalletRequest", + "generatedRequestName": "CreateCredentialRecordRequest", "request": { "schema": { - "generatedName": "UpdateWalletRequest", - "schema": "UpdateWalletRequest", + "generatedName": "CreateCredentialRecordRequest", + "schema": "V10CredentialCreate", "source": { "file": "../openapi.yml", "type": "openapi" @@ -38954,8 +11605,8 @@ "response": { "description": "", "schema": { - "generatedName": "UpdateWalletResponse", - "schema": "WalletRecord", + "generatedName": "CreateCredentialRecordResponse", + "schema": "V10CredentialExchange", "source": { "file": "../openapi.yml", "type": "openapi" @@ -38972,62 +11623,146 @@ "errors": {}, "server": [], "authed": true, - "method": "PUT", - "path": "/multitenancy/wallet/{wallet_id}", + "method": "POST", + "path": "/issue-credential/create", "examples": [ { - "pathParameters": [ - { - "name": "wallet_id", - "value": { - "value": { - "value": "wallet_id", - "type": "string" - }, - "type": "primitive" - } - } - ], + "pathParameters": [], "queryParameters": [], "headers": [], "request": { "properties": { - "image_url": { + "auto_remove": { "value": { - "value": "https://aries.ca/images/sample.png", - "type": "string" + "value": true, + "type": "boolean" }, "type": "primitive" }, - "label": { + "comment": { "value": { - "value": "Alice", + "value": "comment", "type": "string" }, "type": "primitive" }, - "wallet_dispatch_type": { - "value": "default", - "type": "enum" + "cred_def_id": { + "value": { + "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", + "type": "string" + }, + "type": "primitive" }, - "wallet_webhook_urls": { - "value": [ - { + "credential_proposal": { + "properties": { + "@type": { "value": { - "value": "http://localhost:8022/webhooks", + "value": "issue-credential/1.0/credential-preview", "type": "string" }, "type": "primitive" }, - { - "value": { - "value": "http://localhost:8022/webhooks", - "type": "string" - }, - "type": "primitive" + "attributes": { + "value": [ + { + "properties": { + "mime-type": { + "value": { + "value": "image/jpeg", + "type": "string" + }, + "type": "primitive" + }, + "name": { + "value": { + "value": "favourite_drink", + "type": "string" + }, + "type": "primitive" + }, + "value": { + "value": { + "value": "martini", + "type": "string" + }, + "type": "primitive" + } + }, + "type": "object" + }, + { + "properties": { + "mime-type": { + "value": { + "value": "image/jpeg", + "type": "string" + }, + "type": "primitive" + }, + "name": { + "value": { + "value": "favourite_drink", + "type": "string" + }, + "type": "primitive" + }, + "value": { + "value": { + "value": "martini", + "type": "string" + }, + "type": "primitive" + } + }, + "type": "object" + } + ], + "type": "array" } - ], - "type": "array" + }, + "type": "object" + }, + "issuer_did": { + "value": { + "value": "WgWxqztrNooG92RXvxSTWv", + "type": "string" + }, + "type": "primitive" + }, + "schema_id": { + "value": { + "value": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", + "type": "string" + }, + "type": "primitive" + }, + "schema_issuer_did": { + "value": { + "value": "WgWxqztrNooG92RXvxSTWv", + "type": "string" + }, + "type": "primitive" + }, + "schema_name": { + "value": { + "value": "preferences", + "type": "string" + }, + "type": "primitive" + }, + "schema_version": { + "value": { + "value": "1.0", + "type": "string" + }, + "type": "primitive" + }, + "trace": { + "value": { + "value": true, + "type": "boolean" + }, + "type": "primitive" } }, "type": "object" @@ -39035,6 +11770,34 @@ "response": { "value": { "properties": { + "auto_issue": { + "value": { + "value": false, + "type": "boolean" + }, + "type": "primitive" + }, + "auto_offer": { + "value": { + "value": false, + "type": "boolean" + }, + "type": "primitive" + }, + "auto_remove": { + "value": { + "value": false, + "type": "boolean" + }, + "type": "primitive" + }, + "connection_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, "created_at": { "value": { "value": "2021-12-31 23:59:59+00:00", @@ -39042,207 +11805,127 @@ }, "type": "primitive" }, - "key_management_mode": { - "value": "managed", - "type": "enum" + "credential_definition_id": { + "value": { + "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", + "type": "string" + }, + "type": "primitive" }, - "state": { + "credential_exchange_id": { "value": { - "value": "active", + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "type": "string" }, "type": "primitive" }, - "updated_at": { + "credential_id": { "value": { - "value": "2021-12-31 23:59:59+00:00", + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "type": "string" }, "type": "primitive" }, - "wallet_id": { + "error_msg": { + "value": { + "value": "Credential definition identifier is not set in proposal", + "type": "string" + }, + "type": "primitive" + }, + "initiator": { + "value": "self", + "type": "enum" + }, + "parent_thread_id": { "value": { "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "type": "string" }, "type": "primitive" - } - }, - "type": "object" - }, - "type": "withoutStreaming" - }, - "codeSamples": [], - "type": "full" - } - ], - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - }, - { - "summary": "Remove a subwallet", - "audiences": [], - "operationId": "delete_wallet", - "tags": [ - "multitenancy" - ], - "pathParameters": [ - { - "description": "Subwallet identifier", - "name": "wallet_id", - "schema": { - "schema": { - "type": "string" - }, - "generatedName": "DeleteWalletRequestWalletId", - "groupName": [], - "type": "primitive" - }, - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - } - ], - "queryParameters": [], - "headers": [], - "generatedRequestName": "DeleteWalletRequest", - "request": { - "schema": { - "generatedName": "DeleteWalletRequest", - "schema": "RemoveWalletRequest", - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "reference" - }, - "contentType": "application/json", - "fullExamples": [], - "additionalProperties": false, - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "json" - }, - "response": { - "description": "", - "schema": { - "generatedName": "DeleteWalletResponse", - "schema": "MultitenantModuleResponse", - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "reference" - }, - "fullExamples": [], - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "json" - }, - "errors": {}, - "server": [], - "authed": true, - "method": "POST", - "path": "/multitenancy/wallet/{wallet_id}/remove", - "examples": [ - { - "pathParameters": [ - { - "name": "wallet_id", - "value": { - "value": { - "value": "wallet_id", - "type": "string" }, - "type": "primitive" - } - } - ], - "queryParameters": [], - "headers": [], - "request": { - "properties": { - "wallet_key": { - "value": { - "value": "MySecretKey123", - "type": "string" + "revoc_reg_id": { + "value": { + "value": "revoc_reg_id", + "type": "string" + }, + "type": "primitive" }, - "type": "primitive" - } - }, - "type": "object" - }, - "response": { - "value": { - "value": [ - { - "key": { - "value": "key", + "revocation_id": { + "value": { + "value": "revocation_id", "type": "string" }, + "type": "primitive" + }, + "role": { + "value": "issuer", + "type": "enum" + }, + "schema_id": { "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } + "value": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", + "type": "string" + }, + "type": "primitive" + }, + "state": { + "value": { + "value": "credential_acked", + "type": "string" + }, + "type": "primitive" + }, + "thread_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "trace": { + "value": { + "value": true, + "type": "boolean" + }, + "type": "primitive" + }, + "updated_at": { + "value": { + "value": "2021-12-31 23:59:59+00:00", + "type": "string" + }, + "type": "primitive" } - ], - "type": "map" + }, + "type": "object" }, "type": "withoutStreaming" }, - "codeSamples": [], - "type": "full" - } - ], - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - }, - { - "summary": "Get auth token for a subwallet", - "audiences": [], - "operationId": "get_auth_token", - "tags": [ - "multitenancy" - ], - "pathParameters": [ - { - "name": "wallet_id", - "schema": { - "schema": { - "type": "string" - }, - "generatedName": "GetAuthTokenRequestWalletId", - "groupName": [], - "type": "primitive" - }, - "source": { - "file": "../openapi.yml", - "type": "openapi" - } + "codeSamples": [], + "type": "full" } ], + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + }, + { + "summary": "Create a credential offer, independent of any proposal or connection", + "audiences": [], + "operationId": "create_free_credential_offer", + "tags": [ + "issue-credential v1.0" + ], + "pathParameters": [], "queryParameters": [], "headers": [], - "generatedRequestName": "GetAuthTokenRequest", + "generatedRequestName": "CreateFreeCredentialOfferRequest", "request": { "schema": { - "generatedName": "GetAuthTokenRequest", - "schema": "CreateWalletTokenRequest", + "generatedName": "CreateFreeCredentialOfferRequest", + "schema": "V10CredentialConnFreeOfferRequest", "source": { "file": "../openapi.yml", "type": "openapi" @@ -39261,8 +11944,8 @@ "response": { "description": "", "schema": { - "generatedName": "GetAuthTokenResponse", - "schema": "CreateWalletTokenResponse", + "generatedName": "CreateFreeCredentialOfferResponse", + "schema": "V10CredentialExchange", "source": { "file": "../openapi.yml", "type": "openapi" @@ -39280,31 +11963,117 @@ "server": [], "authed": true, "method": "POST", - "path": "/multitenancy/wallet/{wallet_id}/token", + "path": "/issue-credential/create-offer", "examples": [ { - "pathParameters": [ - { - "name": "wallet_id", - "value": { - "value": { - "value": "wallet_id", - "type": "string" - }, - "type": "primitive" - } - } - ], + "pathParameters": [], "queryParameters": [], "headers": [], "request": { "properties": { - "wallet_key": { + "auto_issue": { "value": { - "value": "MySecretKey123", + "value": true, + "type": "boolean" + }, + "type": "primitive" + }, + "auto_remove": { + "value": { + "value": true, + "type": "boolean" + }, + "type": "primitive" + }, + "comment": { + "value": { + "value": "comment", + "type": "string" + }, + "type": "primitive" + }, + "cred_def_id": { + "value": { + "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", "type": "string" }, "type": "primitive" + }, + "credential_preview": { + "properties": { + "@type": { + "value": { + "value": "issue-credential/1.0/credential-preview", + "type": "string" + }, + "type": "primitive" + }, + "attributes": { + "value": [ + { + "properties": { + "mime-type": { + "value": { + "value": "image/jpeg", + "type": "string" + }, + "type": "primitive" + }, + "name": { + "value": { + "value": "favourite_drink", + "type": "string" + }, + "type": "primitive" + }, + "value": { + "value": { + "value": "martini", + "type": "string" + }, + "type": "primitive" + } + }, + "type": "object" + }, + { + "properties": { + "mime-type": { + "value": { + "value": "image/jpeg", + "type": "string" + }, + "type": "primitive" + }, + "name": { + "value": { + "value": "favourite_drink", + "type": "string" + }, + "type": "primitive" + }, + "value": { + "value": { + "value": "martini", + "type": "string" + }, + "type": "primitive" + } + }, + "type": "object" + } + ], + "type": "array" + } + }, + "type": "object" + }, + "trace": { + "value": { + "value": true, + "type": "boolean" + }, + "type": "primitive" } }, "type": "object" @@ -39312,9 +12081,129 @@ "response": { "value": { "properties": { - "token": { + "auto_issue": { "value": { - "value": "eyJhbGciOiJFZERTQSJ9.eyJhIjogIjAifQ.dBjftJeZ4CVP-mB92K27uhbUJU1p1r_wW1gFWFOEjXk", + "value": false, + "type": "boolean" + }, + "type": "primitive" + }, + "auto_offer": { + "value": { + "value": false, + "type": "boolean" + }, + "type": "primitive" + }, + "auto_remove": { + "value": { + "value": false, + "type": "boolean" + }, + "type": "primitive" + }, + "connection_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "created_at": { + "value": { + "value": "2021-12-31 23:59:59+00:00", + "type": "string" + }, + "type": "primitive" + }, + "credential_definition_id": { + "value": { + "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", + "type": "string" + }, + "type": "primitive" + }, + "credential_exchange_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "credential_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "error_msg": { + "value": { + "value": "Credential definition identifier is not set in proposal", + "type": "string" + }, + "type": "primitive" + }, + "initiator": { + "value": "self", + "type": "enum" + }, + "parent_thread_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "revoc_reg_id": { + "value": { + "value": "revoc_reg_id", + "type": "string" + }, + "type": "primitive" + }, + "revocation_id": { + "value": { + "value": "revocation_id", + "type": "string" + }, + "type": "primitive" + }, + "role": { + "value": "issuer", + "type": "enum" + }, + "schema_id": { + "value": { + "value": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", + "type": "string" + }, + "type": "primitive" + }, + "state": { + "value": { + "value": "credential_acked", + "type": "string" + }, + "type": "primitive" + }, + "thread_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "trace": { + "value": { + "value": true, + "type": "boolean" + }, + "type": "primitive" + }, + "updated_at": { + "value": { + "value": "2021-12-31 23:59:59+00:00", "type": "string" }, "type": "primitive" @@ -39334,24 +12223,160 @@ } }, { - "summary": "Query subwallets", + "summary": "Fetch all credential exchange records", "audiences": [], - "operationId": "get_matching_wallets", + "operationId": "get_matching_cred_ex_records", "tags": [ - "multitenancy" + "issue-credential v1.0" ], "pathParameters": [], "queryParameters": [ { - "description": "Wallet name", - "name": "wallet_name", + "description": "Connection identifier", + "name": "connection_id", "schema": { - "generatedName": "GetMatchingWalletsRequestWalletName", + "generatedName": "GetMatchingCredExRecordsRequestConnectionId", "value": { "schema": { + "format": "uuid", "type": "string" }, - "generatedName": "GetMatchingWalletsRequestWalletName", + "generatedName": "GetMatchingCredExRecordsRequestConnectionId", + "groupName": [], + "type": "primitive" + }, + "groupName": [], + "type": "nullable" + }, + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + }, + { + "description": "Role assigned in credential exchange", + "name": "role", + "schema": { + "generatedName": "GetMatchingCredExRecordsRequestRole", + "value": { + "generatedName": "GetMatchingCredExRecordsRequestRole", + "values": [ + { + "generatedName": "issuer", + "value": "issuer", + "casing": {} + }, + { + "generatedName": "holder", + "value": "holder", + "casing": {} + } + ], + "groupName": [], + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "enum" + }, + "groupName": [], + "type": "nullable" + }, + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + }, + { + "description": "Credential exchange state", + "name": "state", + "schema": { + "generatedName": "GetMatchingCredExRecordsRequestState", + "value": { + "generatedName": "GetMatchingCredExRecordsRequestState", + "values": [ + { + "generatedName": "proposal_sent", + "value": "proposal_sent", + "casing": {} + }, + { + "generatedName": "proposal_received", + "value": "proposal_received", + "casing": {} + }, + { + "generatedName": "offer_sent", + "value": "offer_sent", + "casing": {} + }, + { + "generatedName": "offer_received", + "value": "offer_received", + "casing": {} + }, + { + "generatedName": "request_sent", + "value": "request_sent", + "casing": {} + }, + { + "generatedName": "request_received", + "value": "request_received", + "casing": {} + }, + { + "generatedName": "credential_issued", + "value": "credential_issued", + "casing": {} + }, + { + "generatedName": "credential_received", + "value": "credential_received", + "casing": {} + }, + { + "generatedName": "credential_acked", + "value": "credential_acked", + "casing": {} + }, + { + "generatedName": "credential_revoked", + "value": "credential_revoked", + "casing": {} + }, + { + "generatedName": "abandoned", + "value": "abandoned", + "casing": {} + } + ], + "groupName": [], + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "enum" + }, + "groupName": [], + "type": "nullable" + }, + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + }, + { + "description": "Thread identifier", + "name": "thread_id", + "schema": { + "generatedName": "GetMatchingCredExRecordsRequestThreadId", + "value": { + "schema": { + "format": "uuid", + "type": "string" + }, + "generatedName": "GetMatchingCredExRecordsRequestThreadId", "groupName": [], "type": "primitive" }, @@ -39365,12 +12390,12 @@ } ], "headers": [], - "generatedRequestName": "GetMatchingWalletsRequest", + "generatedRequestName": "GetMatchingCredExRecordsRequest", "response": { "description": "", "schema": { - "generatedName": "GetMatchingWalletsResponse", - "schema": "WalletList", + "generatedName": "GetMatchingCredExRecordsResponse", + "schema": "V10CredentialExchangeListResult", "source": { "file": "../openapi.yml", "type": "openapi" @@ -39388,7 +12413,7 @@ "server": [], "authed": true, "method": "GET", - "path": "/multitenancy/wallets", + "path": "/issue-credential/records", "examples": [ { "pathParameters": [], @@ -39401,34 +12426,129 @@ "value": [ { "properties": { + "auto_issue": { + "value": { + "value": false, + "type": "boolean" + }, + "type": "primitive" + }, + "auto_offer": { + "value": { + "value": false, + "type": "boolean" + }, + "type": "primitive" + }, + "auto_remove": { + "value": { + "value": false, + "type": "boolean" + }, + "type": "primitive" + }, + "connection_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, "created_at": { "value": { - "value": "2021-12-31 23:59:59+00:00", + "value": "2021-12-31 23:59:59+00:00", + "type": "string" + }, + "type": "primitive" + }, + "credential_definition_id": { + "value": { + "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", + "type": "string" + }, + "type": "primitive" + }, + "credential_exchange_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "credential_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "error_msg": { + "value": { + "value": "Credential definition identifier is not set in proposal", + "type": "string" + }, + "type": "primitive" + }, + "initiator": { + "value": "self", + "type": "enum" + }, + "parent_thread_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "revoc_reg_id": { + "value": { + "value": "revoc_reg_id", + "type": "string" + }, + "type": "primitive" + }, + "revocation_id": { + "value": { + "value": "revocation_id", + "type": "string" + }, + "type": "primitive" + }, + "role": { + "value": "issuer", + "type": "enum" + }, + "schema_id": { + "value": { + "value": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", "type": "string" }, "type": "primitive" }, - "key_management_mode": { - "value": "managed", - "type": "enum" - }, "state": { "value": { - "value": "active", + "value": "credential_acked", "type": "string" }, "type": "primitive" }, - "updated_at": { + "thread_id": { "value": { - "value": "2021-12-31 23:59:59+00:00", + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "type": "string" }, "type": "primitive" }, - "wallet_id": { + "trace": { "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "value": true, + "type": "boolean" + }, + "type": "primitive" + }, + "updated_at": { + "value": { + "value": "2021-12-31 23:59:59+00:00", "type": "string" }, "type": "primitive" @@ -39438,6 +12558,34 @@ }, { "properties": { + "auto_issue": { + "value": { + "value": false, + "type": "boolean" + }, + "type": "primitive" + }, + "auto_offer": { + "value": { + "value": false, + "type": "boolean" + }, + "type": "primitive" + }, + "auto_remove": { + "value": { + "value": false, + "type": "boolean" + }, + "type": "primitive" + }, + "connection_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, "created_at": { "value": { "value": "2021-12-31 23:59:59+00:00", @@ -39445,30 +12593,97 @@ }, "type": "primitive" }, - "key_management_mode": { - "value": "managed", + "credential_definition_id": { + "value": { + "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", + "type": "string" + }, + "type": "primitive" + }, + "credential_exchange_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "credential_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "error_msg": { + "value": { + "value": "Credential definition identifier is not set in proposal", + "type": "string" + }, + "type": "primitive" + }, + "initiator": { + "value": "self", "type": "enum" }, - "state": { + "parent_thread_id": { "value": { - "value": "active", + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "type": "string" }, "type": "primitive" }, - "updated_at": { + "revoc_reg_id": { "value": { - "value": "2021-12-31 23:59:59+00:00", + "value": "revoc_reg_id", "type": "string" }, "type": "primitive" }, - "wallet_id": { + "revocation_id": { + "value": { + "value": "revocation_id", + "type": "string" + }, + "type": "primitive" + }, + "role": { + "value": "issuer", + "type": "enum" + }, + "schema_id": { + "value": { + "value": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", + "type": "string" + }, + "type": "primitive" + }, + "state": { + "value": { + "value": "credential_acked", + "type": "string" + }, + "type": "primitive" + }, + "thread_id": { "value": { "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "type": "string" }, "type": "primitive" + }, + "trace": { + "value": { + "value": true, + "type": "boolean" + }, + "type": "primitive" + }, + "updated_at": { + "value": { + "value": "2021-12-31 23:59:59+00:00", + "type": "string" + }, + "type": "primitive" } }, "type": "object" @@ -39491,50 +12706,24 @@ } }, { - "summary": "Create a new connection invitation", + "summary": "Fetch a single credential exchange record", "audiences": [], - "operationId": "create_oob_invitation", + "operationId": "get_cred_ex_record", "tags": [ - "out-of-band" + "issue-credential v1.0" ], - "pathParameters": [], - "queryParameters": [ - { - "description": "Auto-accept connection (defaults to configuration)", - "name": "auto_accept", - "schema": { - "generatedName": "CreateOobInvitationRequestAutoAccept", - "value": { - "schema": { - "type": "boolean" - }, - "generatedName": "CreateOobInvitationRequestAutoAccept", - "groupName": [], - "type": "primitive" - }, - "groupName": [], - "type": "nullable" - }, - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - }, + "pathParameters": [ { - "description": "Create invitation for multiple use (default false)", - "name": "multi_use", + "description": "Credential exchange identifier", + "name": "cred_ex_id", "schema": { - "generatedName": "CreateOobInvitationRequestMultiUse", - "value": { - "schema": { - "type": "boolean" - }, - "generatedName": "CreateOobInvitationRequestMultiUse", - "groupName": [], - "type": "primitive" + "schema": { + "pattern": "[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-4[a-fA-F0-9]{3}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}", + "type": "string" }, + "generatedName": "GetCredExRecordRequestCredExId", "groupName": [], - "type": "nullable" + "type": "primitive" }, "source": { "file": "../openapi.yml", @@ -39542,32 +12731,226 @@ } } ], + "queryParameters": [], "headers": [], - "generatedRequestName": "CreateOobInvitationRequest", - "request": { + "generatedRequestName": "GetCredExRecordRequest", + "response": { + "description": "", "schema": { - "generatedName": "CreateOobInvitationRequestBody", - "schema": "InvitationCreateRequest", + "generatedName": "GetCredExRecordResponse", + "schema": "V10CredentialExchange", "source": { "file": "../openapi.yml", "type": "openapi" }, "type": "reference" }, - "contentType": "application/json", "fullExamples": [], - "additionalProperties": false, "source": { "file": "../openapi.yml", "type": "openapi" }, "type": "json" }, + "errors": {}, + "server": [], + "authed": true, + "method": "GET", + "path": "/issue-credential/records/{cred_ex_id}", + "examples": [ + { + "pathParameters": [ + { + "name": "cred_ex_id", + "value": { + "value": { + "value": "cred_ex_id", + "type": "string" + }, + "type": "primitive" + } + } + ], + "queryParameters": [], + "headers": [], + "response": { + "value": { + "properties": { + "auto_issue": { + "value": { + "value": false, + "type": "boolean" + }, + "type": "primitive" + }, + "auto_offer": { + "value": { + "value": false, + "type": "boolean" + }, + "type": "primitive" + }, + "auto_remove": { + "value": { + "value": false, + "type": "boolean" + }, + "type": "primitive" + }, + "connection_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "created_at": { + "value": { + "value": "2021-12-31 23:59:59+00:00", + "type": "string" + }, + "type": "primitive" + }, + "credential_definition_id": { + "value": { + "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", + "type": "string" + }, + "type": "primitive" + }, + "credential_exchange_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "credential_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "error_msg": { + "value": { + "value": "Credential definition identifier is not set in proposal", + "type": "string" + }, + "type": "primitive" + }, + "initiator": { + "value": "self", + "type": "enum" + }, + "parent_thread_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "revoc_reg_id": { + "value": { + "value": "revoc_reg_id", + "type": "string" + }, + "type": "primitive" + }, + "revocation_id": { + "value": { + "value": "revocation_id", + "type": "string" + }, + "type": "primitive" + }, + "role": { + "value": "issuer", + "type": "enum" + }, + "schema_id": { + "value": { + "value": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", + "type": "string" + }, + "type": "primitive" + }, + "state": { + "value": { + "value": "credential_acked", + "type": "string" + }, + "type": "primitive" + }, + "thread_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "trace": { + "value": { + "value": true, + "type": "boolean" + }, + "type": "primitive" + }, + "updated_at": { + "value": { + "value": "2021-12-31 23:59:59+00:00", + "type": "string" + }, + "type": "primitive" + } + }, + "type": "object" + }, + "type": "withoutStreaming" + }, + "codeSamples": [], + "type": "full" + } + ], + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + }, + { + "summary": "Remove an existing credential exchange record", + "audiences": [], + "operationId": "delete_cred_ex_record", + "tags": [ + "issue-credential v1.0" + ], + "pathParameters": [ + { + "description": "Credential exchange identifier", + "name": "cred_ex_id", + "schema": { + "schema": { + "pattern": "[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-4[a-fA-F0-9]{3}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}", + "type": "string" + }, + "generatedName": "DeleteCredExRecordRequestCredExId", + "groupName": [], + "type": "primitive" + }, + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + } + ], + "queryParameters": [], + "headers": [], + "generatedRequestName": "DeleteCredExRecordRequest", "response": { "description": "", "schema": { - "generatedName": "CreateOobInvitationResponse", - "schema": "InvitationRecord", + "generatedName": "DeleteCredExRecordResponse", + "schema": "IssueCredentialModuleResponse", "source": { "file": "../openapi.yml", "type": "openapi" @@ -39584,594 +12967,268 @@ "errors": {}, "server": [], "authed": true, - "method": "POST", - "path": "/out-of-band/create-invitation", + "method": "DELETE", + "path": "/issue-credential/records/{cred_ex_id}", "examples": [ { - "pathParameters": [], - "queryParameters": [], - "headers": [], - "request": { - "properties": { - "accept": { - "value": [ - { - "value": { - "value": "didcomm/aip1", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "didcomm/aip2;env=rfc19", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "alias": { - "value": { - "value": "Barry", - "type": "string" - }, - "type": "primitive" - }, - "attachments": { - "value": [ - { - "properties": { - "id": { - "value": { - "value": "attachment-0", - "type": "string" - }, - "type": "primitive" - }, - "type": { - "value": "present-proof", - "type": "enum" - } - }, - "type": "object" - }, - { - "properties": { - "id": { - "value": { - "value": "attachment-0", - "type": "string" - }, - "type": "primitive" - }, - "type": { - "value": "present-proof", - "type": "enum" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "handshake_protocols": { - "value": [ - { - "value": { - "value": "did:sov:BzCbsNYhMrjHiqZDTUASHg;spec/didexchange/1.0", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "did:sov:BzCbsNYhMrjHiqZDTUASHg;spec/didexchange/1.0", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "mediation_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "my_label": { - "value": { - "value": "Invitation to Barry", - "type": "string" - }, - "type": "primitive" - }, - "protocol_version": { - "value": { - "value": "1.1", - "type": "string" - }, - "type": "primitive" - }, - "use_public_did": { + "pathParameters": [ + { + "name": "cred_ex_id", + "value": { "value": { - "value": false, - "type": "boolean" + "value": "cred_ex_id", + "type": "string" }, "type": "primitive" } - }, - "type": "object" - }, + } + ], + "queryParameters": [], + "headers": [], "response": { "value": { - "properties": { - "created_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", + "value": [ + { + "key": { + "value": "key", "type": "string" }, - "type": "primitive" - }, - "invi_msg_id": { "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "invitation": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "accept": { - "value": [ - { - "value": { - "value": "didcomm/aip1", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "didcomm/aip2;env=rfc19", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "handshake_protocols": { - "value": [ - { - "value": { - "value": "did:sov:BzCbsNYhMrjHiqZDTUASHg;spec/didexchange/1.0", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "did:sov:BzCbsNYhMrjHiqZDTUASHg;spec/didexchange/1.0", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "imageUrl": { - "value": { - "value": "http://192.168.56.101/img/logo.jpg", - "type": "string" - }, - "type": "primitive" - }, - "label": { + "value": { "value": { - "value": "Bob", + "value": "value", "type": "string" }, "type": "primitive" }, - "requests~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "services": { - "value": [ - { - "value": [ - { - "key": { - "value": "did", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - }, - { - "key": { - "value": "id", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "string", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - }, - { - "key": { - "value": "recipientKeys", - "type": "string" - }, - "value": { - "value": { - "value": [ - { - "value": { - "value": "did:key:z6MkpTHR8VNsBxYAAWHut2Geadd9jSwuBV8xRoAnwWsdvktH", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "type": "unknown" - } - }, - { - "key": { - "value": "routingKeys", - "type": "string" - }, - "value": { - "value": { - "value": [ - { - "value": { - "value": "did:key:z6MkpTHR8VNsBxYAAWHut2Geadd9jSwuBV8xRoAnwWsdvktH", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "type": "unknown" - } - }, - { - "key": { - "value": "serviceEndpoint", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "http://192.168.56.101:8020", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - }, - { - "key": { - "value": "type", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "string", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - } - ], - "type": "array" - } + "type": "unknown" + } + } + ], + "type": "map" + }, + "type": "withoutStreaming" + }, + "codeSamples": [], + "type": "full" + } + ], + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + }, + { + "summary": "Send holder a credential", + "audiences": [], + "operationId": "issue_credential_to_holder", + "tags": [ + "issue-credential v1.0" + ], + "pathParameters": [ + { + "description": "Credential exchange identifier", + "name": "cred_ex_id", + "schema": { + "schema": { + "pattern": "[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-4[a-fA-F0-9]{3}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}", + "type": "string" + }, + "generatedName": "IssueCredentialToHolderRequestCredExId", + "groupName": [], + "type": "primitive" + }, + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + } + ], + "queryParameters": [], + "headers": [], + "generatedRequestName": "IssueCredentialToHolderRequest", + "request": { + "schema": { + "generatedName": "IssueCredentialToHolderRequest", + "schema": "V10CredentialIssueRequest", + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "reference" + }, + "contentType": "application/json", + "fullExamples": [], + "additionalProperties": false, + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "json" + }, + "response": { + "description": "", + "schema": { + "generatedName": "IssueCredentialToHolderResponse", + "schema": "V10CredentialExchange", + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "reference" + }, + "fullExamples": [], + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "json" + }, + "errors": {}, + "server": [], + "authed": true, + "method": "POST", + "path": "/issue-credential/records/{cred_ex_id}/issue", + "examples": [ + { + "pathParameters": [ + { + "name": "cred_ex_id", + "value": { + "value": { + "value": "cred_ex_id", + "type": "string" + }, + "type": "primitive" + } + } + ], + "queryParameters": [], + "headers": [], + "request": { + "properties": { + "comment": { + "value": { + "value": "comment", + "type": "string" + }, + "type": "primitive" + } + }, + "type": "object" + }, + "response": { + "value": { + "properties": { + "auto_issue": { + "value": { + "value": false, + "type": "boolean" }, - "type": "object" + "type": "primitive" }, - "invitation_id": { + "auto_offer": { + "value": { + "value": false, + "type": "boolean" + }, + "type": "primitive" + }, + "auto_remove": { + "value": { + "value": false, + "type": "boolean" + }, + "type": "primitive" + }, + "connection_id": { "value": { "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "type": "string" }, "type": "primitive" }, - "invitation_url": { + "created_at": { "value": { - "value": "https://example.com/endpoint?c_i=eyJAdHlwZSI6ICIuLi4iLCAiLi4uIjogIi4uLiJ9XX0=", + "value": "2021-12-31 23:59:59+00:00", "type": "string" }, "type": "primitive" }, - "oob_id": { + "credential_definition_id": { + "value": { + "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", + "type": "string" + }, + "type": "primitive" + }, + "credential_exchange_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "credential_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "error_msg": { + "value": { + "value": "Credential definition identifier is not set in proposal", + "type": "string" + }, + "type": "primitive" + }, + "initiator": { + "value": "self", + "type": "enum" + }, + "parent_thread_id": { "value": { "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "type": "string" }, "type": "primitive" }, + "revoc_reg_id": { + "value": { + "value": "revoc_reg_id", + "type": "string" + }, + "type": "primitive" + }, + "revocation_id": { + "value": { + "value": "revocation_id", + "type": "string" + }, + "type": "primitive" + }, + "role": { + "value": "issuer", + "type": "enum" + }, + "schema_id": { + "value": { + "value": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", + "type": "string" + }, + "type": "primitive" + }, "state": { "value": { - "value": "await_response", + "value": "credential_acked", + "type": "string" + }, + "type": "primitive" + }, + "thread_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "type": "string" }, "type": "primitive" @@ -40205,93 +13262,391 @@ } }, { - "summary": "Receive a new connection invitation", + "summary": "Send a problem report for credential exchange", "audiences": [], - "operationId": "receive_oob_invitation", + "operationId": "report_cred_ex_problem", "tags": [ - "out-of-band" + "issue-credential v1.0" ], - "pathParameters": [], - "queryParameters": [ + "pathParameters": [ { - "description": "Alias for connection", - "name": "alias", + "description": "Credential exchange identifier", + "name": "cred_ex_id", "schema": { - "generatedName": "ReceiveOobInvitationRequestAlias", - "value": { - "schema": { - "type": "string" - }, - "generatedName": "ReceiveOobInvitationRequestAlias", - "groupName": [], - "type": "primitive" + "schema": { + "pattern": "[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-4[a-fA-F0-9]{3}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}", + "type": "string" }, + "generatedName": "ReportCredExProblemRequestCredExId", "groupName": [], - "type": "nullable" + "type": "primitive" }, "source": { "file": "../openapi.yml", "type": "openapi" } + } + ], + "queryParameters": [], + "headers": [], + "generatedRequestName": "ReportCredExProblemRequest", + "request": { + "schema": { + "generatedName": "ReportCredExProblemRequest", + "schema": "V10CredentialProblemReportRequest", + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "reference" + }, + "contentType": "application/json", + "fullExamples": [], + "additionalProperties": false, + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "json" + }, + "response": { + "description": "", + "schema": { + "generatedName": "ReportCredExProblemResponse", + "schema": "IssueCredentialModuleResponse", + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "reference" + }, + "fullExamples": [], + "source": { + "file": "../openapi.yml", + "type": "openapi" }, + "type": "json" + }, + "errors": {}, + "server": [], + "authed": true, + "method": "POST", + "path": "/issue-credential/records/{cred_ex_id}/problem-report", + "examples": [ { - "description": "Auto-accept connection (defaults to configuration)", - "name": "auto_accept", - "schema": { - "generatedName": "ReceiveOobInvitationRequestAutoAccept", + "pathParameters": [ + { + "name": "cred_ex_id", + "value": { + "value": { + "value": "cred_ex_id", + "type": "string" + }, + "type": "primitive" + } + } + ], + "queryParameters": [], + "headers": [], + "request": { + "properties": { + "description": { + "value": { + "value": "description", + "type": "string" + }, + "type": "primitive" + } + }, + "type": "object" + }, + "response": { "value": { - "schema": { - "type": "boolean" - }, - "generatedName": "ReceiveOobInvitationRequestAutoAccept", - "groupName": [], - "type": "primitive" + "value": [ + { + "key": { + "value": "key", + "type": "string" + }, + "value": { + "value": { + "value": { + "value": "value", + "type": "string" + }, + "type": "primitive" + }, + "type": "unknown" + } + } + ], + "type": "map" + }, + "type": "withoutStreaming" + }, + "codeSamples": [], + "type": "full" + } + ], + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + }, + { + "summary": "Send holder a credential offer in reference to a proposal with preview", + "audiences": [], + "operationId": "send_credential_offer", + "tags": [ + "issue-credential v1.0" + ], + "pathParameters": [ + { + "description": "Credential exchange identifier", + "name": "cred_ex_id", + "schema": { + "schema": { + "pattern": "[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-4[a-fA-F0-9]{3}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}", + "type": "string" }, + "generatedName": "SendCredentialOfferRequestCredExId", "groupName": [], - "type": "nullable" + "type": "primitive" }, "source": { "file": "../openapi.yml", "type": "openapi" } + } + ], + "queryParameters": [], + "headers": [], + "generatedRequestName": "SendCredentialOfferRequest", + "request": { + "schema": { + "generatedName": "SendCredentialOfferRequest", + "schema": "V10CredentialBoundOfferRequest", + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "reference" + }, + "contentType": "application/json", + "fullExamples": [], + "additionalProperties": false, + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "json" + }, + "response": { + "description": "", + "schema": { + "generatedName": "SendCredentialOfferResponse", + "schema": "V10CredentialExchange", + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "reference" + }, + "fullExamples": [], + "source": { + "file": "../openapi.yml", + "type": "openapi" }, + "type": "json" + }, + "errors": {}, + "server": [], + "authed": true, + "method": "POST", + "path": "/issue-credential/records/{cred_ex_id}/send-offer", + "examples": [ { - "description": "Identifier for active mediation record to be used", - "name": "mediation_id", - "schema": { - "generatedName": "ReceiveOobInvitationRequestMediationId", + "pathParameters": [ + { + "name": "cred_ex_id", + "value": { + "value": { + "value": "cred_ex_id", + "type": "string" + }, + "type": "primitive" + } + } + ], + "queryParameters": [], + "headers": [], + "request": { + "properties": {}, + "type": "object" + }, + "response": { "value": { - "schema": { - "pattern": "[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-4[a-fA-F0-9]{3}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}", - "type": "string" + "properties": { + "auto_issue": { + "value": { + "value": false, + "type": "boolean" + }, + "type": "primitive" + }, + "auto_offer": { + "value": { + "value": false, + "type": "boolean" + }, + "type": "primitive" + }, + "auto_remove": { + "value": { + "value": false, + "type": "boolean" + }, + "type": "primitive" + }, + "connection_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "created_at": { + "value": { + "value": "2021-12-31 23:59:59+00:00", + "type": "string" + }, + "type": "primitive" + }, + "credential_definition_id": { + "value": { + "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", + "type": "string" + }, + "type": "primitive" + }, + "credential_exchange_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "credential_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "error_msg": { + "value": { + "value": "Credential definition identifier is not set in proposal", + "type": "string" + }, + "type": "primitive" + }, + "initiator": { + "value": "self", + "type": "enum" + }, + "parent_thread_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "revoc_reg_id": { + "value": { + "value": "revoc_reg_id", + "type": "string" + }, + "type": "primitive" + }, + "revocation_id": { + "value": { + "value": "revocation_id", + "type": "string" + }, + "type": "primitive" + }, + "role": { + "value": "issuer", + "type": "enum" + }, + "schema_id": { + "value": { + "value": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", + "type": "string" + }, + "type": "primitive" + }, + "state": { + "value": { + "value": "credential_acked", + "type": "string" + }, + "type": "primitive" + }, + "thread_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "trace": { + "value": { + "value": true, + "type": "boolean" + }, + "type": "primitive" + }, + "updated_at": { + "value": { + "value": "2021-12-31 23:59:59+00:00", + "type": "string" + }, + "type": "primitive" + } }, - "generatedName": "ReceiveOobInvitationRequestMediationId", - "groupName": [], - "type": "primitive" + "type": "object" }, - "groupName": [], - "type": "nullable" + "type": "withoutStreaming" }, - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - }, + "codeSamples": [], + "type": "full" + } + ], + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + }, + { + "summary": "Send issuer a credential request", + "audiences": [], + "operationId": "send_credential_request", + "tags": [ + "issue-credential v1.0" + ], + "pathParameters": [ { - "description": "Use an existing connection, if possible", - "name": "use_existing_connection", + "description": "Credential exchange identifier", + "name": "cred_ex_id", "schema": { - "generatedName": "ReceiveOobInvitationRequestUseExistingConnection", - "value": { - "schema": { - "type": "boolean" - }, - "generatedName": "ReceiveOobInvitationRequestUseExistingConnection", - "groupName": [], - "type": "primitive" + "schema": { + "pattern": "[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-4[a-fA-F0-9]{3}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}", + "type": "string" }, + "generatedName": "SendCredentialRequestRequestCredExId", "groupName": [], - "type": "nullable" + "type": "primitive" }, "source": { "file": "../openapi.yml", @@ -40299,487 +13654,69 @@ } } ], + "queryParameters": [], "headers": [], - "generatedRequestName": "ReceiveOobInvitationRequest", - "request": { - "schema": { - "generatedName": "ReceiveOobInvitationRequestBody", - "schema": "InvitationMessage", - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "reference" - }, - "contentType": "application/json", - "fullExamples": [], - "additionalProperties": false, - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "json" - }, + "generatedRequestName": "SendCredentialRequestRequest", "response": { "description": "", "schema": { - "generatedName": "ReceiveOobInvitationResponse", - "schema": "OobRecord", - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "reference" - }, - "fullExamples": [], - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "json" - }, - "errors": {}, - "server": [], - "authed": true, - "method": "POST", - "path": "/out-of-band/receive-invitation", - "examples": [ - { - "pathParameters": [], - "queryParameters": [], - "headers": [], - "request": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "accept": { - "value": [ - { - "value": { - "value": "didcomm/aip1", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "didcomm/aip2;env=rfc19", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "handshake_protocols": { - "value": [ - { - "value": { - "value": "did:sov:BzCbsNYhMrjHiqZDTUASHg;spec/didexchange/1.0", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "did:sov:BzCbsNYhMrjHiqZDTUASHg;spec/didexchange/1.0", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "imageUrl": { - "value": { - "value": "http://192.168.56.101/img/logo.jpg", - "type": "string" - }, - "type": "primitive" - }, - "label": { - "value": { - "value": "Bob", - "type": "string" - }, - "type": "primitive" - }, - "requests~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "services": { - "value": [ - { - "value": [ - { - "key": { - "value": "did", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - }, - { - "key": { - "value": "id", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "string", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - }, - { - "key": { - "value": "recipientKeys", - "type": "string" - }, - "value": { - "value": { - "value": [ - { - "value": { - "value": "did:key:z6MkpTHR8VNsBxYAAWHut2Geadd9jSwuBV8xRoAnwWsdvktH", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "type": "unknown" - } - }, - { - "key": { - "value": "routingKeys", - "type": "string" - }, - "value": { - "value": { - "value": [ - { - "value": { - "value": "did:key:z6MkpTHR8VNsBxYAAWHut2Geadd9jSwuBV8xRoAnwWsdvktH", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "type": "unknown" - } - }, - { - "key": { - "value": "serviceEndpoint", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "http://192.168.56.101:8020", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - }, - { - "key": { - "value": "type", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "string", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - } - ], - "type": "array" - } - }, - "type": "object" + "generatedName": "SendCredentialRequestResponse", + "schema": "V10CredentialExchange", + "source": { + "file": "../openapi.yml", + "type": "openapi" }, + "type": "reference" + }, + "fullExamples": [], + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "json" + }, + "errors": {}, + "server": [], + "authed": true, + "method": "POST", + "path": "/issue-credential/records/{cred_ex_id}/send-request", + "examples": [ + { + "pathParameters": [ + { + "name": "cred_ex_id", + "value": { + "value": { + "value": "cred_ex_id", + "type": "string" + }, + "type": "primitive" + } + } + ], + "queryParameters": [], + "headers": [], "response": { "value": { "properties": { - "attach_thread_id": { + "auto_issue": { "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" + "value": false, + "type": "boolean" + }, + "type": "primitive" + }, + "auto_offer": { + "value": { + "value": false, + "type": "boolean" + }, + "type": "primitive" + }, + "auto_remove": { + "value": { + "value": false, + "type": "boolean" }, "type": "primitive" }, @@ -40797,509 +13734,83 @@ }, "type": "primitive" }, - "invi_msg_id": { + "credential_definition_id": { + "value": { + "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", + "type": "string" + }, + "type": "primitive" + }, + "credential_exchange_id": { "value": { "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "type": "string" }, "type": "primitive" }, - "invitation": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "accept": { - "value": [ - { - "value": { - "value": "didcomm/aip1", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "didcomm/aip2;env=rfc19", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "handshake_protocols": { - "value": [ - { - "value": { - "value": "did:sov:BzCbsNYhMrjHiqZDTUASHg;spec/didexchange/1.0", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "did:sov:BzCbsNYhMrjHiqZDTUASHg;spec/didexchange/1.0", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "imageUrl": { - "value": { - "value": "http://192.168.56.101/img/logo.jpg", - "type": "string" - }, - "type": "primitive" - }, - "label": { - "value": { - "value": "Bob", - "type": "string" - }, - "type": "primitive" - }, - "requests~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "services": { - "value": [ - { - "value": [ - { - "key": { - "value": "did", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - }, - { - "key": { - "value": "id", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "string", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - }, - { - "key": { - "value": "recipientKeys", - "type": "string" - }, - "value": { - "value": { - "value": [ - { - "value": { - "value": "did:key:z6MkpTHR8VNsBxYAAWHut2Geadd9jSwuBV8xRoAnwWsdvktH", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "type": "unknown" - } - }, - { - "key": { - "value": "routingKeys", - "type": "string" - }, - "value": { - "value": { - "value": [ - { - "value": { - "value": "did:key:z6MkpTHR8VNsBxYAAWHut2Geadd9jSwuBV8xRoAnwWsdvktH", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "type": "unknown" - } - }, - { - "key": { - "value": "serviceEndpoint", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "http://192.168.56.101:8020", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - }, - { - "key": { - "value": "type", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "string", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - } - ], - "type": "array" - } + "credential_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" }, - "type": "object" + "type": "primitive" }, - "oob_id": { + "error_msg": { + "value": { + "value": "Credential definition identifier is not set in proposal", + "type": "string" + }, + "type": "primitive" + }, + "initiator": { + "value": "self", + "type": "enum" + }, + "parent_thread_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "revoc_reg_id": { "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "value": "revoc_reg_id", "type": "string" }, "type": "primitive" }, - "our_recipient_key": { + "revocation_id": { "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "value": "revocation_id", "type": "string" }, "type": "primitive" }, "role": { - "value": "receiver", + "value": "issuer", "type": "enum" }, + "schema_id": { + "value": { + "value": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", + "type": "string" + }, + "type": "primitive" + }, "state": { - "value": "await-response", - "type": "enum" + "value": { + "value": "credential_acked", + "type": "string" + }, + "type": "primitive" }, - "their_service": { - "properties": { - "recipientKeys": { - "value": [ - { - "value": { - "value": "H3C2AVvLMv6gmMNam3uVAjZpfkcJCwDwnZn6z3wXmqPV", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "H3C2AVvLMv6gmMNam3uVAjZpfkcJCwDwnZn6z3wXmqPV", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "routingKeys": { - "value": [ - { - "value": { - "value": "H3C2AVvLMv6gmMNam3uVAjZpfkcJCwDwnZn6z3wXmqPV", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "H3C2AVvLMv6gmMNam3uVAjZpfkcJCwDwnZn6z3wXmqPV", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "serviceEndpoint": { - "value": { - "value": "http://192.168.56.101:8020", - "type": "string" - }, - "type": "primitive" - } + "thread_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" }, - "type": "object" + "type": "primitive" }, "trace": { "value": { @@ -41330,21 +13841,58 @@ } }, { - "summary": "Fetch the list of loaded plugins", + "summary": "Store a received credential", "audiences": [], - "operationId": "get_loaded_plugins", + "operationId": "store_received_credential", "tags": [ - "server" + "issue-credential v1.0" + ], + "pathParameters": [ + { + "description": "Credential exchange identifier", + "name": "cred_ex_id", + "schema": { + "schema": { + "pattern": "[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-4[a-fA-F0-9]{3}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}", + "type": "string" + }, + "generatedName": "StoreReceivedCredentialRequestCredExId", + "groupName": [], + "type": "primitive" + }, + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + } ], - "pathParameters": [], "queryParameters": [], "headers": [], - "generatedRequestName": "GetLoadedPluginsRequest", + "generatedRequestName": "StoreReceivedCredentialRequest", + "request": { + "schema": { + "generatedName": "StoreReceivedCredentialRequest", + "schema": "V10CredentialStoreRequest", + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "reference" + }, + "contentType": "application/json", + "fullExamples": [], + "additionalProperties": false, + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "json" + }, "response": { "description": "", "schema": { - "generatedName": "GetLoadedPluginsResponse", - "schema": "AdminModules", + "generatedName": "StoreReceivedCredentialResponse", + "schema": "V10CredentialExchange", "source": { "file": "../openapi.yml", "type": "openapi" @@ -41361,34 +13909,165 @@ "errors": {}, "server": [], "authed": true, - "method": "GET", - "path": "/plugins", + "method": "POST", + "path": "/issue-credential/records/{cred_ex_id}/store", "examples": [ { - "pathParameters": [], + "pathParameters": [ + { + "name": "cred_ex_id", + "value": { + "value": { + "value": "cred_ex_id", + "type": "string" + }, + "type": "primitive" + } + } + ], "queryParameters": [], "headers": [], + "request": { + "properties": { + "credential_id": { + "value": { + "value": "credential_id", + "type": "string" + }, + "type": "primitive" + } + }, + "type": "object" + }, "response": { "value": { "properties": { - "result": { - "value": [ - { - "value": { - "value": "result", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "result", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" + "auto_issue": { + "value": { + "value": false, + "type": "boolean" + }, + "type": "primitive" + }, + "auto_offer": { + "value": { + "value": false, + "type": "boolean" + }, + "type": "primitive" + }, + "auto_remove": { + "value": { + "value": false, + "type": "boolean" + }, + "type": "primitive" + }, + "connection_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "created_at": { + "value": { + "value": "2021-12-31 23:59:59+00:00", + "type": "string" + }, + "type": "primitive" + }, + "credential_definition_id": { + "value": { + "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", + "type": "string" + }, + "type": "primitive" + }, + "credential_exchange_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "credential_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "error_msg": { + "value": { + "value": "Credential definition identifier is not set in proposal", + "type": "string" + }, + "type": "primitive" + }, + "initiator": { + "value": "self", + "type": "enum" + }, + "parent_thread_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "revoc_reg_id": { + "value": { + "value": "revoc_reg_id", + "type": "string" + }, + "type": "primitive" + }, + "revocation_id": { + "value": { + "value": "revocation_id", + "type": "string" + }, + "type": "primitive" + }, + "role": { + "value": "issuer", + "type": "enum" + }, + "schema_id": { + "value": { + "value": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", + "type": "string" + }, + "type": "primitive" + }, + "state": { + "value": { + "value": "credential_acked", + "type": "string" + }, + "type": "primitive" + }, + "thread_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "trace": { + "value": { + "value": true, + "type": "boolean" + }, + "type": "primitive" + }, + "updated_at": { + "value": { + "value": "2021-12-31 23:59:59+00:00", + "type": "string" + }, + "type": "primitive" } }, "type": "object" @@ -41405,20 +14084,20 @@ } }, { - "summary": "Creates a presentation request not bound to any proposal or connection", + "summary": "Send holder a credential, automating entire flow", "audiences": [], - "operationId": "create_proof_request", + "operationId": "send_free_credential", "tags": [ - "present-proof v2.0" + "issue-credential v1.0" ], "pathParameters": [], "queryParameters": [], "headers": [], - "generatedRequestName": "CreateProofRequestRequest", + "generatedRequestName": "SendFreeCredentialRequest", "request": { "schema": { - "generatedName": "CreateProofRequestRequest", - "schema": "V20PresCreateRequestRequest", + "generatedName": "SendFreeCredentialRequest", + "schema": "V10CredentialProposalRequestMand", "source": { "file": "../openapi.yml", "type": "openapi" @@ -41437,8 +14116,8 @@ "response": { "description": "", "schema": { - "generatedName": "CreateProofRequestResponse", - "schema": "V20PresExRecord", + "generatedName": "SendFreeCredentialResponse", + "schema": "V10CredentialExchange", "source": { "file": "../openapi.yml", "type": "openapi" @@ -41456,7 +14135,7 @@ "server": [], "authed": true, "method": "POST", - "path": "/present-proof-2.0/create-request", + "path": "/issue-credential/send", "examples": [ { "pathParameters": [], @@ -41464,9 +14143,9 @@ "headers": [], "request": { "properties": { - "auto_verify": { + "auto_remove": { "value": { - "value": false, + "value": true, "type": "boolean" }, "type": "primitive" @@ -41478,198 +14157,127 @@ }, "type": "primitive" }, - "presentation_request": { + "connection_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "cred_def_id": { + "value": { + "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", + "type": "string" + }, + "type": "primitive" + }, + "credential_proposal": { "properties": { - "indy": { - "properties": { - "name": { - "value": { - "value": "Proof request", - "type": "string" - }, - "type": "primitive" - }, - "nonce": { - "value": { - "value": "1", - "type": "string" - }, - "type": "primitive" - }, - "requested_attributes": { - "value": [ - { - "key": { - "value": "key", + "@type": { + "value": { + "value": "issue-credential/1.0/credential-preview", + "type": "string" + }, + "type": "primitive" + }, + "attributes": { + "value": [ + { + "properties": { + "mime-type": { + "value": { + "value": "image/jpeg", "type": "string" }, + "type": "primitive" + }, + "name": { "value": { - "properties": { - "name": { - "value": { - "value": "favouriteDrink", - "type": "string" - }, - "type": "primitive" - }, - "names": { - "value": [ - { - "value": { - "value": "age", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "age", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "restrictions": { - "value": [ - { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - } - } - ], - "type": "map" - }, - { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - } - } - ], - "type": "map" - } - ], - "type": "array" - } - }, - "type": "object" - } + "value": "favourite_drink", + "type": "string" + }, + "type": "primitive" + }, + "value": { + "value": { + "value": "martini", + "type": "string" + }, + "type": "primitive" } - ], - "type": "map" + }, + "type": "object" }, - "requested_predicates": { - "value": [ - { - "key": { - "value": "key", + { + "properties": { + "mime-type": { + "value": { + "value": "image/jpeg", "type": "string" }, + "type": "primitive" + }, + "name": { "value": { - "properties": { - "name": { - "value": { - "value": "index", - "type": "string" - }, - "type": "primitive" - }, - "p_type": { - "value": ">=", - "type": "enum" - }, - "p_value": { - "value": { - "value": 0, - "type": "int" - }, - "type": "primitive" - }, - "restrictions": { - "value": [ - { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - } - } - ], - "type": "map" - }, - { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - } - } - ], - "type": "map" - } - ], - "type": "array" - } - }, - "type": "object" - } + "value": "favourite_drink", + "type": "string" + }, + "type": "primitive" + }, + "value": { + "value": { + "value": "martini", + "type": "string" + }, + "type": "primitive" } - ], - "type": "map" - }, - "version": { - "value": { - "value": "1.0", - "type": "string" }, - "type": "primitive" + "type": "object" } - }, - "type": "object" + ], + "type": "array" } }, - "type": "object" + "type": "object" + }, + "issuer_did": { + "value": { + "value": "WgWxqztrNooG92RXvxSTWv", + "type": "string" + }, + "type": "primitive" + }, + "schema_id": { + "value": { + "value": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", + "type": "string" + }, + "type": "primitive" + }, + "schema_issuer_did": { + "value": { + "value": "WgWxqztrNooG92RXvxSTWv", + "type": "string" + }, + "type": "primitive" + }, + "schema_name": { + "value": { + "value": "preferences", + "type": "string" + }, + "type": "primitive" + }, + "schema_version": { + "value": { + "value": "1.0", + "type": "string" + }, + "type": "primitive" }, "trace": { "value": { - "value": false, + "value": true, "type": "boolean" }, "type": "primitive" @@ -41680,16 +14288,23 @@ "response": { "value": { "properties": { - "auto_present": { + "auto_issue": { "value": { "value": false, "type": "boolean" }, "type": "primitive" }, - "auto_verify": { + "auto_offer": { "value": { - "value": true, + "value": false, + "type": "boolean" + }, + "type": "primitive" + }, + "auto_remove": { + "value": { + "value": false, "type": "boolean" }, "type": "primitive" @@ -41708,9 +14323,30 @@ }, "type": "primitive" }, + "credential_definition_id": { + "value": { + "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", + "type": "string" + }, + "type": "primitive" + }, + "credential_exchange_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "credential_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, "error_msg": { "value": { - "value": "Invalid structure", + "value": "Credential definition identifier is not set in proposal", "type": "string" }, "type": "primitive" @@ -41719,510 +14355,44 @@ "value": "self", "type": "enum" }, - "pres": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" - }, - "formats": { - "value": [ - { - "properties": { - "attach_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "format": { - "value": { - "value": "dif/presentation-exchange/submission@v1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "presentations~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "pres_ex_id": { + "parent_thread_id": { "value": { "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "type": "string" }, "type": "primitive" }, - "pres_proposal": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" - }, - "formats": { - "value": [ - { - "properties": { - "attach_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "format": { - "value": { - "value": "dif/presentation-exchange/submission@v1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "proposals~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } + "revoc_reg_id": { + "value": { + "value": "revoc_reg_id", + "type": "string" }, - "type": "object" + "type": "primitive" }, - "pres_request": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" - }, - "formats": { - "value": [ - { - "properties": { - "attach_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "format": { - "value": { - "value": "dif/presentation-exchange/submission@v1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "request_presentations~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "will_confirm": { - "value": { - "value": true, - "type": "boolean" - }, - "type": "primitive" - } + "revocation_id": { + "value": { + "value": "revocation_id", + "type": "string" }, - "type": "object" + "type": "primitive" }, "role": { - "value": "prover", + "value": "issuer", "type": "enum" }, + "schema_id": { + "value": { + "value": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", + "type": "string" + }, + "type": "primitive" + }, "state": { - "value": "proposal-sent", - "type": "enum" + "value": { + "value": "credential_acked", + "type": "string" + }, + "type": "primitive" }, "thread_id": { "value": { @@ -42244,29 +14414,6 @@ "type": "string" }, "type": "primitive" - }, - "verified": { - "value": "true", - "type": "enum" - }, - "verified_msgs": { - "value": [ - { - "value": { - "value": "verified_msgs", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "verified_msgs", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" } }, "type": "object" @@ -42283,164 +14430,40 @@ } }, { - "summary": "Fetch all present-proof exchange records", + "summary": "Send holder a credential offer, independent of any proposal", "audiences": [], - "operationId": "get_matching_pres_ex_records-v2", + "operationId": "send_free_credential_offer", "tags": [ - "present-proof v2.0" + "issue-credential v1.0" ], "pathParameters": [], - "queryParameters": [ - { - "description": "Connection identifier", - "name": "connection_id", - "schema": { - "generatedName": "GetMatchingPresExRecordsV2RequestConnectionId", - "value": { - "schema": { - "format": "uuid", - "type": "string" - }, - "generatedName": "GetMatchingPresExRecordsV2RequestConnectionId", - "groupName": [], - "type": "primitive" - }, - "groupName": [], - "type": "nullable" - }, + "queryParameters": [], + "headers": [], + "generatedRequestName": "SendFreeCredentialOfferRequest", + "request": { + "schema": { + "generatedName": "SendFreeCredentialOfferRequest", + "schema": "V10CredentialFreeOfferRequest", "source": { "file": "../openapi.yml", "type": "openapi" - } - }, - { - "description": "Role assigned in presentation exchange", - "name": "role", - "schema": { - "generatedName": "GetMatchingPresExRecordsV2RequestRole", - "value": { - "generatedName": "GetMatchingPresExRecordsV2RequestRole", - "values": [ - { - "generatedName": "prover", - "value": "prover", - "casing": {} - }, - { - "generatedName": "verifier", - "value": "verifier", - "casing": {} - } - ], - "groupName": [], - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "enum" - }, - "groupName": [], - "type": "nullable" }, - "source": { - "file": "../openapi.yml", - "type": "openapi" - } + "type": "reference" }, - { - "description": "Presentation exchange state", - "name": "state", - "schema": { - "generatedName": "GetMatchingPresExRecordsV2RequestState", - "value": { - "generatedName": "GetMatchingPresExRecordsV2RequestState", - "values": [ - { - "generatedName": "ProposalSent", - "value": "proposal-sent", - "casing": {} - }, - { - "generatedName": "ProposalReceived", - "value": "proposal-received", - "casing": {} - }, - { - "generatedName": "RequestSent", - "value": "request-sent", - "casing": {} - }, - { - "generatedName": "RequestReceived", - "value": "request-received", - "casing": {} - }, - { - "generatedName": "PresentationSent", - "value": "presentation-sent", - "casing": {} - }, - { - "generatedName": "PresentationReceived", - "value": "presentation-received", - "casing": {} - }, - { - "generatedName": "done", - "value": "done", - "casing": {} - }, - { - "generatedName": "abandoned", - "value": "abandoned", - "casing": {} - } - ], - "groupName": [], - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "enum" - }, - "groupName": [], - "type": "nullable" - }, - "source": { - "file": "../openapi.yml", - "type": "openapi" - } + "contentType": "application/json", + "fullExamples": [], + "additionalProperties": false, + "source": { + "file": "../openapi.yml", + "type": "openapi" }, - { - "description": "Thread identifier", - "name": "thread_id", - "schema": { - "generatedName": "GetMatchingPresExRecordsV2RequestThreadId", - "value": { - "schema": { - "format": "uuid", - "type": "string" - }, - "generatedName": "GetMatchingPresExRecordsV2RequestThreadId", - "groupName": [], - "type": "primitive" - }, - "groupName": [], - "type": "nullable" - }, - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - } - ], - "headers": [], - "generatedRequestName": "GetMatchingPresExRecordsV2Request", + "type": "json" + }, "response": { "description": "", "schema": { - "generatedName": "GetMatchingPresExRecordsV2Response", - "schema": "V20PresExRecordList", + "generatedName": "SendFreeCredentialOfferResponse", + "schema": "V10CredentialExchange", "source": { "file": "../openapi.yml", "type": "openapi" @@ -42457,1150 +14480,258 @@ "errors": {}, "server": [], "authed": true, - "method": "GET", - "path": "/present-proof-2.0/records", + "method": "POST", + "path": "/issue-credential/send-offer", "examples": [ { "pathParameters": [], "queryParameters": [], "headers": [], - "response": { - "value": { - "properties": { - "results": { - "value": [ - { - "properties": { - "auto_present": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - }, - "auto_verify": { - "value": { - "value": true, - "type": "boolean" - }, - "type": "primitive" - }, - "connection_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "created_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "error_msg": { - "value": { - "value": "Invalid structure", - "type": "string" - }, - "type": "primitive" - }, - "initiator": { - "value": "self", - "type": "enum" - }, - "pres": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "formats": { - "value": [ - { - "properties": { - "attach_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "format": { - "value": { - "value": "dif/presentation-exchange/submission@v1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "presentations~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "pres_ex_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "pres_proposal": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "formats": { - "value": [ - { - "properties": { - "attach_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "format": { - "value": { - "value": "dif/presentation-exchange/submission@v1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "proposals~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "pres_request": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "formats": { - "value": [ - { - "properties": { - "attach_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "format": { - "value": { - "value": "dif/presentation-exchange/submission@v1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" + "request": { + "properties": { + "auto_issue": { + "value": { + "value": true, + "type": "boolean" + }, + "type": "primitive" + }, + "auto_remove": { + "value": { + "value": true, + "type": "boolean" + }, + "type": "primitive" + }, + "comment": { + "value": { + "value": "comment", + "type": "string" + }, + "type": "primitive" + }, + "connection_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "cred_def_id": { + "value": { + "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", + "type": "string" + }, + "type": "primitive" + }, + "credential_preview": { + "properties": { + "@type": { + "value": { + "value": "issue-credential/1.0/credential-preview", + "type": "string" + }, + "type": "primitive" + }, + "attributes": { + "value": [ + { + "properties": { + "mime-type": { + "value": { + "value": "image/jpeg", + "type": "string" }, - "request_presentations~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "role": { - "value": "prover", - "type": "enum" - }, - "state": { - "value": "proposal-sent", - "type": "enum" - }, - "thread_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "trace": { - "value": { - "value": true, - "type": "boolean" - }, - "type": "primitive" - }, - "updated_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" + "type": "primitive" }, - "type": "primitive" - }, - "verified": { - "value": "true", - "type": "enum" - }, - "verified_msgs": { - "value": [ - { - "value": { - "value": "verified_msgs", - "type": "string" - }, - "type": "primitive" + "name": { + "value": { + "value": "favourite_drink", + "type": "string" }, - { - "value": { - "value": "verified_msgs", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - } - }, - "type": "object" - }, - { - "properties": { - "auto_present": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - }, - "auto_verify": { - "value": { - "value": true, - "type": "boolean" - }, - "type": "primitive" - }, - "connection_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "created_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" + "type": "primitive" }, - "type": "primitive" - }, - "error_msg": { "value": { - "value": "Invalid structure", - "type": "string" - }, - "type": "primitive" - }, - "initiator": { - "value": "self", - "type": "enum" - }, - "pres": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "formats": { - "value": [ - { - "properties": { - "attach_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "format": { - "value": { - "value": "dif/presentation-exchange/submission@v1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" + "value": { + "value": "martini", + "type": "string" }, - "presentations~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "pres_ex_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" + "type": "primitive" + } }, - "pres_proposal": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "formats": { - "value": [ - { - "properties": { - "attach_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "format": { - "value": { - "value": "dif/presentation-exchange/submission@v1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" + "type": "object" + }, + { + "properties": { + "mime-type": { + "value": { + "value": "image/jpeg", + "type": "string" }, - "proposals~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } + "type": "primitive" }, - "type": "object" - }, - "pres_request": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "formats": { - "value": [ - { - "properties": { - "attach_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "format": { - "value": { - "value": "dif/presentation-exchange/submission@v1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" + "name": { + "value": { + "value": "favourite_drink", + "type": "string" }, - "request_presentations~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "role": { - "value": "prover", - "type": "enum" - }, - "state": { - "value": "proposal-sent", - "type": "enum" - }, - "thread_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "trace": { - "value": { - "value": true, - "type": "boolean" + "type": "primitive" }, - "type": "primitive" - }, - "updated_at": { "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "verified": { - "value": "true", - "type": "enum" - }, - "verified_msgs": { - "value": [ - { - "value": { - "value": "verified_msgs", - "type": "string" - }, - "type": "primitive" + "value": { + "value": "martini", + "type": "string" }, - { - "value": { - "value": "verified_msgs", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - } - }, - "type": "object" - } - ], - "type": "array" + "type": "primitive" + } + }, + "type": "object" + } + ], + "type": "array" + } + }, + "type": "object" + }, + "trace": { + "value": { + "value": true, + "type": "boolean" + }, + "type": "primitive" + } + }, + "type": "object" + }, + "response": { + "value": { + "properties": { + "auto_issue": { + "value": { + "value": false, + "type": "boolean" + }, + "type": "primitive" + }, + "auto_offer": { + "value": { + "value": false, + "type": "boolean" + }, + "type": "primitive" + }, + "auto_remove": { + "value": { + "value": false, + "type": "boolean" + }, + "type": "primitive" + }, + "connection_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "created_at": { + "value": { + "value": "2021-12-31 23:59:59+00:00", + "type": "string" + }, + "type": "primitive" + }, + "credential_definition_id": { + "value": { + "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", + "type": "string" + }, + "type": "primitive" + }, + "credential_exchange_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "credential_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "error_msg": { + "value": { + "value": "Credential definition identifier is not set in proposal", + "type": "string" + }, + "type": "primitive" + }, + "initiator": { + "value": "self", + "type": "enum" + }, + "parent_thread_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "revoc_reg_id": { + "value": { + "value": "revoc_reg_id", + "type": "string" + }, + "type": "primitive" + }, + "revocation_id": { + "value": { + "value": "revocation_id", + "type": "string" + }, + "type": "primitive" + }, + "role": { + "value": "issuer", + "type": "enum" + }, + "schema_id": { + "value": { + "value": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", + "type": "string" + }, + "type": "primitive" + }, + "state": { + "value": { + "value": "credential_acked", + "type": "string" + }, + "type": "primitive" + }, + "thread_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "trace": { + "value": { + "value": true, + "type": "boolean" + }, + "type": "primitive" + }, + "updated_at": { + "value": { + "value": "2021-12-31 23:59:59+00:00", + "type": "string" + }, + "type": "primitive" } }, "type": "object" @@ -43617,39 +14748,40 @@ } }, { - "summary": "Fetch a single presentation exchange record", + "summary": "Send issuer a credential proposal", "audiences": [], - "operationId": "get_pres_ex_record", + "operationId": "send_free_credential_proposal", "tags": [ - "present-proof v2.0" + "issue-credential v1.0" ], - "pathParameters": [ - { - "description": "Presentation exchange identifier", - "name": "pres_ex_id", - "schema": { - "schema": { - "pattern": "[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-4[a-fA-F0-9]{3}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}", - "type": "string" - }, - "generatedName": "GetPresExRecordRequestPresExId", - "groupName": [], - "type": "primitive" - }, + "pathParameters": [], + "queryParameters": [], + "headers": [], + "generatedRequestName": "SendFreeCredentialProposalRequest", + "request": { + "schema": { + "generatedName": "SendFreeCredentialProposalRequest", + "schema": "V10CredentialProposalRequestOpt", "source": { "file": "../openapi.yml", "type": "openapi" - } - } - ], - "queryParameters": [], - "headers": [], - "generatedRequestName": "GetPresExRecordRequest", + }, + "type": "reference" + }, + "contentType": "application/json", + "fullExamples": [], + "additionalProperties": false, + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "json" + }, "response": { "description": "", "schema": { - "generatedName": "GetPresExRecordResponse", - "schema": "V20PresExRecord", + "generatedName": "SendFreeCredentialProposalResponse", + "schema": "V10CredentialExchange", "source": { "file": "../openapi.yml", "type": "openapi" @@ -43666,611 +14798,983 @@ "errors": {}, "server": [], "authed": true, - "method": "GET", - "path": "/present-proof-2.0/records/{pres_ex_id}", + "method": "POST", + "path": "/issue-credential/send-proposal", "examples": [ { - "pathParameters": [ - { - "name": "pres_ex_id", - "value": { + "pathParameters": [], + "queryParameters": [], + "headers": [], + "request": { + "properties": { + "auto_remove": { "value": { - "value": "pres_ex_id", + "value": true, + "type": "boolean" + }, + "type": "primitive" + }, + "comment": { + "value": { + "value": "comment", + "type": "string" + }, + "type": "primitive" + }, + "connection_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "cred_def_id": { + "value": { + "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", + "type": "string" + }, + "type": "primitive" + }, + "credential_proposal": { + "properties": { + "@type": { + "value": { + "value": "issue-credential/1.0/credential-preview", + "type": "string" + }, + "type": "primitive" + }, + "attributes": { + "value": [ + { + "properties": { + "mime-type": { + "value": { + "value": "image/jpeg", + "type": "string" + }, + "type": "primitive" + }, + "name": { + "value": { + "value": "favourite_drink", + "type": "string" + }, + "type": "primitive" + }, + "value": { + "value": { + "value": "martini", + "type": "string" + }, + "type": "primitive" + } + }, + "type": "object" + }, + { + "properties": { + "mime-type": { + "value": { + "value": "image/jpeg", + "type": "string" + }, + "type": "primitive" + }, + "name": { + "value": { + "value": "favourite_drink", + "type": "string" + }, + "type": "primitive" + }, + "value": { + "value": { + "value": "martini", + "type": "string" + }, + "type": "primitive" + } + }, + "type": "object" + } + ], + "type": "array" + } + }, + "type": "object" + }, + "issuer_did": { + "value": { + "value": "WgWxqztrNooG92RXvxSTWv", + "type": "string" + }, + "type": "primitive" + }, + "schema_id": { + "value": { + "value": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", + "type": "string" + }, + "type": "primitive" + }, + "schema_issuer_did": { + "value": { + "value": "WgWxqztrNooG92RXvxSTWv", + "type": "string" + }, + "type": "primitive" + }, + "schema_name": { + "value": { + "value": "preferences", + "type": "string" + }, + "type": "primitive" + }, + "schema_version": { + "value": { + "value": "1.0", "type": "string" }, "type": "primitive" + }, + "trace": { + "value": { + "value": true, + "type": "boolean" + }, + "type": "primitive" } - } - ], - "queryParameters": [], - "headers": [], + }, + "type": "object" + }, "response": { "value": { "properties": { - "auto_present": { + "auto_issue": { "value": { "value": false, "type": "boolean" }, "type": "primitive" }, - "auto_verify": { + "auto_offer": { "value": { - "value": true, + "value": false, "type": "boolean" }, - "type": "primitive" - }, - "connection_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "created_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "error_msg": { - "value": { - "value": "Invalid structure", - "type": "string" - }, - "type": "primitive" - }, - "initiator": { - "value": "self", - "type": "enum" - }, - "pres": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" - }, - "formats": { - "value": [ - { - "properties": { - "attach_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "format": { - "value": { - "value": "dif/presentation-exchange/submission@v1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "presentations~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" + "type": "primitive" }, - "pres_ex_id": { + "auto_remove": { + "value": { + "value": false, + "type": "boolean" + }, + "type": "primitive" + }, + "connection_id": { "value": { "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "type": "string" }, "type": "primitive" }, - "pres_proposal": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" - }, - "formats": { - "value": [ - { - "properties": { - "attach_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "format": { - "value": { - "value": "dif/presentation-exchange/submission@v1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "proposals~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } + "created_at": { + "value": { + "value": "2021-12-31 23:59:59+00:00", + "type": "string" }, - "type": "object" + "type": "primitive" }, - "pres_request": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" + "credential_definition_id": { + "value": { + "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", + "type": "string" + }, + "type": "primitive" + }, + "credential_exchange_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "credential_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "error_msg": { + "value": { + "value": "Credential definition identifier is not set in proposal", + "type": "string" + }, + "type": "primitive" + }, + "initiator": { + "value": "self", + "type": "enum" + }, + "parent_thread_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "revoc_reg_id": { + "value": { + "value": "revoc_reg_id", + "type": "string" + }, + "type": "primitive" + }, + "revocation_id": { + "value": { + "value": "revocation_id", + "type": "string" + }, + "type": "primitive" + }, + "role": { + "value": "issuer", + "type": "enum" + }, + "schema_id": { + "value": { + "value": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", + "type": "string" + }, + "type": "primitive" + }, + "state": { + "value": { + "value": "credential_acked", + "type": "string" + }, + "type": "primitive" + }, + "thread_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "trace": { + "value": { + "value": true, + "type": "boolean" + }, + "type": "primitive" + }, + "updated_at": { + "value": { + "value": "2021-12-31 23:59:59+00:00", + "type": "string" + }, + "type": "primitive" + } + }, + "type": "object" + }, + "type": "withoutStreaming" + }, + "codeSamples": [], + "type": "full" + } + ], + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + }, + { + "summary": "Sign a JSON-LD structure and return it", + "audiences": [], + "operationId": "sign", + "tags": [ + "jsonld" + ], + "pathParameters": [], + "queryParameters": [], + "headers": [], + "generatedRequestName": "SignRequest", + "request": { + "schema": { + "generatedName": "SignRequest", + "schema": "SignRequest", + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "reference" + }, + "contentType": "application/json", + "fullExamples": [], + "additionalProperties": false, + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "json" + }, + "response": { + "description": "", + "schema": { + "generatedName": "SignResponse", + "schema": "SignResponse", + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "reference" + }, + "fullExamples": [], + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "json" + }, + "errors": {}, + "server": [], + "authed": true, + "method": "POST", + "path": "/jsonld/sign", + "examples": [ + { + "pathParameters": [], + "queryParameters": [], + "headers": [], + "request": { + "properties": { + "doc": { + "properties": { + "credential": { + "properties": {}, + "type": "object" + }, + "options": { + "properties": { + "proofPurpose": { + "value": { + "value": "proofPurpose", + "type": "string" + }, + "type": "primitive" }, - "type": "primitive" - }, - "formats": { - "value": [ - { - "properties": { - "attach_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "format": { - "value": { - "value": "dif/presentation-exchange/submission@v1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "request_presentations~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" + "verificationMethod": { + "value": { + "value": "verificationMethod", + "type": "string" + }, + "type": "primitive" + } }, - "will_confirm": { - "value": { - "value": true, - "type": "boolean" - }, - "type": "primitive" - } - }, - "type": "object" + "type": "object" + } }, - "role": { - "value": "prover", - "type": "enum" + "type": "object" + }, + "verkey": { + "value": { + "value": "verkey", + "type": "string" }, - "state": { - "value": "proposal-sent", - "type": "enum" + "type": "primitive" + } + }, + "type": "object" + }, + "response": { + "value": { + "properties": { + "error": { + "value": { + "value": "error", + "type": "string" + }, + "type": "primitive" + } + }, + "type": "object" + }, + "type": "withoutStreaming" + }, + "codeSamples": [], + "type": "full" + } + ], + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + }, + { + "summary": "Verify a JSON-LD structure.", + "audiences": [], + "operationId": "verify", + "tags": [ + "jsonld" + ], + "pathParameters": [], + "queryParameters": [], + "headers": [], + "generatedRequestName": "VerifyRequest", + "request": { + "schema": { + "generatedName": "VerifyRequest", + "schema": "VerifyRequest", + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "reference" + }, + "contentType": "application/json", + "fullExamples": [], + "additionalProperties": false, + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "json" + }, + "response": { + "description": "", + "schema": { + "generatedName": "VerifyResponse", + "schema": "VerifyResponse", + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "reference" + }, + "fullExamples": [], + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "json" + }, + "errors": {}, + "server": [], + "authed": true, + "method": "POST", + "path": "/jsonld/verify", + "examples": [ + { + "pathParameters": [], + "queryParameters": [], + "headers": [], + "request": { + "properties": { + "doc": { + "properties": { + "proof": { + "properties": { + "proofPurpose": { + "value": { + "value": "proofPurpose", + "type": "string" + }, + "type": "primitive" + }, + "verificationMethod": { + "value": { + "value": "verificationMethod", + "type": "string" + }, + "type": "primitive" + } + }, + "type": "object" + } }, - "thread_id": { + "type": "object" + }, + "verkey": { + "value": { + "value": "verkey", + "type": "string" + }, + "type": "primitive" + } + }, + "type": "object" + }, + "response": { + "value": { + "properties": { + "error": { "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "value": "error", "type": "string" }, "type": "primitive" }, - "trace": { + "valid": { "value": { "value": true, "type": "boolean" }, "type": "primitive" + } + }, + "type": "object" + }, + "type": "withoutStreaming" + }, + "codeSamples": [], + "type": "full" + } + ], + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + }, + { + "summary": "Get the endpoint for a DID from the ledger.", + "audiences": [], + "operationId": "get_published_did_endpoint", + "tags": [ + "ledger" + ], + "pathParameters": [], + "queryParameters": [ + { + "description": "DID of interest", + "name": "did", + "schema": { + "schema": { + "pattern": "^(did:sov:)?[123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz]{21,22}$", + "type": "string" + }, + "generatedName": "GetPublishedDidEndpointRequestDid", + "groupName": [], + "type": "primitive" + }, + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + }, + { + "description": "Endpoint type of interest (default 'Endpoint')", + "name": "endpoint_type", + "schema": { + "generatedName": "GetPublishedDidEndpointRequestEndpointType", + "value": { + "generatedName": "GetPublishedDidEndpointRequestEndpointType", + "values": [ + { + "generatedName": "Endpoint", + "value": "Endpoint", + "casing": {} }, - "updated_at": { + { + "generatedName": "Profile", + "value": "Profile", + "casing": {} + }, + { + "generatedName": "LinkedDomains", + "value": "LinkedDomains", + "casing": {} + } + ], + "groupName": [], + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "enum" + }, + "groupName": [], + "type": "nullable" + }, + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + } + ], + "headers": [], + "generatedRequestName": "GetPublishedDidEndpointRequest", + "response": { + "description": "", + "schema": { + "generatedName": "GetPublishedDidEndpointResponse", + "schema": "GetDIDEndpointResponse", + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "reference" + }, + "fullExamples": [], + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "json" + }, + "errors": {}, + "server": [], + "authed": true, + "method": "GET", + "path": "/ledger/did-endpoint", + "examples": [ + { + "pathParameters": [], + "queryParameters": [ + { + "name": "did", + "value": { + "value": { + "value": "did", + "type": "string" + }, + "type": "primitive" + } + } + ], + "headers": [], + "response": { + "value": { + "properties": { + "endpoint": { "value": { - "value": "2021-12-31 23:59:59+00:00", + "value": "https://myhost:8021", "type": "string" }, "type": "primitive" + } + }, + "type": "object" + }, + "type": "withoutStreaming" + }, + "codeSamples": [], + "type": "full" + } + ], + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + }, + { + "summary": "Get the verkey for a DID from the ledger.", + "audiences": [], + "operationId": "get_did_verkey", + "tags": [ + "ledger" + ], + "pathParameters": [], + "queryParameters": [ + { + "description": "DID of interest", + "name": "did", + "schema": { + "schema": { + "pattern": "^(did:sov:)?[123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz]{21,22}$", + "type": "string" + }, + "generatedName": "GetDidVerkeyRequestDid", + "groupName": [], + "type": "primitive" + }, + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + } + ], + "headers": [], + "generatedRequestName": "GetDidVerkeyRequest", + "response": { + "description": "", + "schema": { + "generatedName": "GetDidVerkeyResponse", + "schema": "GetDIDVerkeyResponse", + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "reference" + }, + "fullExamples": [], + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "json" + }, + "errors": {}, + "server": [], + "authed": true, + "method": "GET", + "path": "/ledger/did-verkey", + "examples": [ + { + "pathParameters": [], + "queryParameters": [ + { + "name": "did", + "value": { + "value": { + "value": "did", + "type": "string" }, - "verified": { - "value": "true", - "type": "enum" + "type": "primitive" + } + } + ], + "headers": [], + "response": { + "value": { + "properties": { + "verkey": { + "value": { + "value": "H3C2AVvLMv6gmMNam3uVAjZpfkcJCwDwnZn6z3wXmqPV", + "type": "string" + }, + "type": "primitive" + } + }, + "type": "object" + }, + "type": "withoutStreaming" + }, + "codeSamples": [], + "type": "full" + } + ], + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + }, + { + "summary": "Get the role from the NYM registration of a public DID.", + "audiences": [], + "operationId": "get_did_nym_role", + "tags": [ + "ledger" + ], + "pathParameters": [], + "queryParameters": [ + { + "description": "DID of interest", + "name": "did", + "schema": { + "schema": { + "pattern": "^(did:sov:)?[123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz]{21,22}$", + "type": "string" + }, + "generatedName": "GetDidNymRoleRequestDid", + "groupName": [], + "type": "primitive" + }, + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + } + ], + "headers": [], + "generatedRequestName": "GetDidNymRoleRequest", + "response": { + "description": "", + "schema": { + "generatedName": "GetDidNymRoleResponse", + "schema": "GetNymRoleResponse", + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "reference" + }, + "fullExamples": [], + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "json" + }, + "errors": {}, + "server": [], + "authed": true, + "method": "GET", + "path": "/ledger/get-nym-role", + "examples": [ + { + "pathParameters": [], + "queryParameters": [ + { + "name": "did", + "value": { + "value": { + "value": "did", + "type": "string" }, - "verified_msgs": { + "type": "primitive" + } + } + ], + "headers": [], + "response": { + "value": { + "properties": { + "role": { + "value": "ENDORSER", + "type": "enum" + } + }, + "type": "object" + }, + "type": "withoutStreaming" + }, + "codeSamples": [], + "type": "full" + } + ], + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + }, + { + "summary": "Fetch the multiple ledger configuration currently in use", + "audiences": [], + "operationId": "get_multiple_ledger_config", + "tags": [ + "ledger" + ], + "pathParameters": [], + "queryParameters": [], + "headers": [], + "generatedRequestName": "GetMultipleLedgerConfigRequest", + "response": { + "description": "", + "schema": { + "generatedName": "GetMultipleLedgerConfigResponse", + "schema": "LedgerConfigList", + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "reference" + }, + "fullExamples": [], + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "json" + }, + "errors": {}, + "server": [], + "authed": true, + "method": "GET", + "path": "/ledger/multiple/config", + "examples": [ + { + "pathParameters": [], + "queryParameters": [], + "headers": [], + "response": { + "value": { + "properties": { + "ledger_config_list": { "value": [ { - "value": { - "value": "verified_msgs", - "type": "string" + "properties": { + "genesis_file": { + "value": { + "value": "genesis_file", + "type": "string" + }, + "type": "primitive" + }, + "genesis_transactions": { + "value": { + "value": "genesis_transactions", + "type": "string" + }, + "type": "primitive" + }, + "genesis_url": { + "value": { + "value": "genesis_url", + "type": "string" + }, + "type": "primitive" + }, + "id": { + "value": { + "value": "id", + "type": "string" + }, + "type": "primitive" + }, + "is_production": { + "value": { + "value": true, + "type": "boolean" + }, + "type": "primitive" + } }, - "type": "primitive" + "type": "object" }, { - "value": { - "value": "verified_msgs", - "type": "string" + "properties": { + "genesis_file": { + "value": { + "value": "genesis_file", + "type": "string" + }, + "type": "primitive" + }, + "genesis_transactions": { + "value": { + "value": "genesis_transactions", + "type": "string" + }, + "type": "primitive" + }, + "genesis_url": { + "value": { + "value": "genesis_url", + "type": "string" + }, + "type": "primitive" + }, + "id": { + "value": { + "value": "id", + "type": "string" + }, + "type": "primitive" + }, + "is_production": { + "value": { + "value": true, + "type": "boolean" + }, + "type": "primitive" + } }, - "type": "primitive" + "type": "object" } ], "type": "array" @@ -44290,39 +15794,21 @@ } }, { - "summary": "Remove an existing presentation exchange record", + "summary": "Fetch the current write ledger", "audiences": [], - "operationId": "delete_pres_ex_record", + "operationId": "get_write_ledger", "tags": [ - "present-proof v2.0" - ], - "pathParameters": [ - { - "description": "Presentation exchange identifier", - "name": "pres_ex_id", - "schema": { - "schema": { - "pattern": "[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-4[a-fA-F0-9]{3}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}", - "type": "string" - }, - "generatedName": "DeletePresExRecordRequestPresExId", - "groupName": [], - "type": "primitive" - }, - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - } + "ledger" ], + "pathParameters": [], "queryParameters": [], "headers": [], - "generatedRequestName": "DeletePresExRecordRequest", + "generatedRequestName": "GetWriteLedgerRequest", "response": { "description": "", "schema": { - "generatedName": "DeletePresExRecordResponse", - "schema": "V20PresentProofModuleResponse", + "generatedName": "GetWriteLedgerResponse", + "schema": "WriteLedgerRequest", "source": { "file": "../openapi.yml", "type": "openapi" @@ -44339,45 +15825,25 @@ "errors": {}, "server": [], "authed": true, - "method": "DELETE", - "path": "/present-proof-2.0/records/{pres_ex_id}", + "method": "GET", + "path": "/ledger/multiple/get-write-ledger", "examples": [ { - "pathParameters": [ - { - "name": "pres_ex_id", - "value": { - "value": { - "value": "pres_ex_id", - "type": "string" - }, - "type": "primitive" - } - } - ], + "pathParameters": [], "queryParameters": [], "headers": [], "response": { "value": { - "value": [ - { - "key": { - "value": "key", + "properties": { + "ledger_id": { + "value": { + "value": "ledger_id", "type": "string" }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } + "type": "primitive" } - ], - "type": "map" + }, + "type": "object" }, "type": "withoutStreaming" }, @@ -44391,22 +15857,23 @@ } }, { - "summary": "Fetch credentials from wallet for presentation request", + "summary": "Send a NYM registration to the ledger.", "audiences": [], - "operationId": "get_pres_ex_credentials-v2", + "operationId": "register_nym", "tags": [ - "present-proof v2.0" + "ledger" ], - "pathParameters": [ + "pathParameters": [], + "queryParameters": [ { - "description": "Presentation exchange identifier", - "name": "pres_ex_id", + "description": "DID to register", + "name": "did", "schema": { "schema": { - "pattern": "[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-4[a-fA-F0-9]{3}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}", + "pattern": "^(did:sov:)?[123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz]{21,22}$", "type": "string" }, - "generatedName": "GetPresExCredentialsV2RequestPresExId", + "generatedName": "RegisterNymRequestDid", "groupName": [], "type": "primitive" }, @@ -44414,20 +15881,34 @@ "file": "../openapi.yml", "type": "openapi" } - } - ], - "queryParameters": [ + }, { - "description": "Maximum number to retrieve", - "name": "count", + "description": "Verification key", + "name": "verkey", "schema": { - "generatedName": "GetPresExCredentialsV2RequestCount", + "schema": { + "pattern": "^[123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz]{43,44}$", + "type": "string" + }, + "generatedName": "RegisterNymRequestVerkey", + "groupName": [], + "type": "primitive" + }, + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + }, + { + "description": "Alias", + "name": "alias", + "schema": { + "generatedName": "RegisterNymRequestAlias", "value": { "schema": { - "pattern": "^[1-9][0-9]*$", "type": "string" }, - "generatedName": "GetPresExCredentialsV2RequestCount", + "generatedName": "RegisterNymRequestAlias", "groupName": [], "type": "primitive" }, @@ -44440,16 +15921,15 @@ } }, { - "description": "(JSON) object mapping referents to extra WQL queries", - "name": "extra_query", + "description": "Connection identifier", + "name": "conn_id", "schema": { - "generatedName": "GetPresExCredentialsV2RequestExtraQuery", + "generatedName": "RegisterNymRequestConnId", "value": { "schema": { - "pattern": "^{\\s*\".*?\"\\s*:\\s*{.*?}\\s*(,\\s*\".*?\"\\s*:\\s*{.*?}\\s*)*\\s*}$", "type": "string" }, - "generatedName": "GetPresExCredentialsV2RequestExtraQuery", + "generatedName": "RegisterNymRequestConnId", "groupName": [], "type": "primitive" }, @@ -44462,15 +15942,15 @@ } }, { - "description": "Proof request referents of interest, comma-separated", - "name": "referent", + "description": "Create Transaction For Endorser's signature", + "name": "create_transaction_for_endorser", "schema": { - "generatedName": "GetPresExCredentialsV2RequestReferent", + "generatedName": "RegisterNymRequestCreateTransactionForEndorser", "value": { "schema": { - "type": "string" + "type": "boolean" }, - "generatedName": "GetPresExCredentialsV2RequestReferent", + "generatedName": "RegisterNymRequestCreateTransactionForEndorser", "groupName": [], "type": "primitive" }, @@ -44483,18 +15963,45 @@ } }, { - "description": "Start index", - "name": "start", + "description": "Role", + "name": "role", "schema": { - "generatedName": "GetPresExCredentialsV2RequestStart", + "generatedName": "RegisterNymRequestRole", "value": { - "schema": { - "pattern": "^[0-9]*$", - "type": "string" - }, - "generatedName": "GetPresExCredentialsV2RequestStart", + "generatedName": "RegisterNymRequestRole", + "values": [ + { + "generatedName": "STEWARD", + "value": "STEWARD", + "casing": {} + }, + { + "generatedName": "TRUSTEE", + "value": "TRUSTEE", + "casing": {} + }, + { + "generatedName": "ENDORSER", + "value": "ENDORSER", + "casing": {} + }, + { + "generatedName": "NETWORK_MONITOR", + "value": "NETWORK_MONITOR", + "casing": {} + }, + { + "generatedName": "reset", + "value": "reset", + "casing": {} + } + ], "groupName": [], - "type": "primitive" + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "enum" }, "groupName": [], "type": "nullable" @@ -44506,22 +16013,17 @@ } ], "headers": [], - "generatedRequestName": "GetPresExCredentialsV2Request", + "generatedRequestName": "RegisterNymRequest", "response": { "description": "", "schema": { - "value": { - "generatedName": "GetPresExCredentialsV2ResponseItem", - "schema": "IndyCredPrecis", - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "reference" + "generatedName": "RegisterNymResponse", + "schema": "TxnOrRegisterLedgerNymResponse", + "source": { + "file": "../openapi.yml", + "type": "openapi" }, - "generatedName": "GetPresExCredentialsV2Response", - "groupName": [], - "type": "array" + "type": "reference" }, "fullExamples": [], "source": { @@ -44533,32 +16035,177 @@ "errors": {}, "server": [], "authed": true, - "method": "GET", - "path": "/present-proof-2.0/records/{pres_ex_id}/credentials", + "method": "POST", + "path": "/ledger/register-nym", "examples": [ { - "pathParameters": [ + "pathParameters": [], + "queryParameters": [ { - "name": "pres_ex_id", + "name": "did", "value": { "value": { - "value": "pres_ex_id", + "value": "did", + "type": "string" + }, + "type": "primitive" + } + }, + { + "name": "verkey", + "value": { + "value": { + "value": "verkey", "type": "string" }, "type": "primitive" } } ], + "headers": [], + "response": { + "value": { + "properties": { + "success": { + "value": { + "value": true, + "type": "boolean" + }, + "type": "primitive" + } + }, + "type": "object" + }, + "type": "withoutStreaming" + }, + "codeSamples": [], + "type": "full" + } + ], + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + }, + { + "summary": "Rotate key pair for public DID.", + "audiences": [], + "operationId": "rotate_public_did_keypair", + "tags": [ + "ledger" + ], + "pathParameters": [], + "queryParameters": [], + "headers": [], + "generatedRequestName": "RotatePublicDidKeypairRequest", + "response": { + "description": "", + "schema": { + "generatedName": "RotatePublicDidKeypairResponse", + "schema": "LedgerModulesResult", + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "reference" + }, + "fullExamples": [], + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "json" + }, + "errors": {}, + "server": [], + "authed": true, + "method": "PATCH", + "path": "/ledger/rotate-public-did-keypair", + "examples": [ + { + "pathParameters": [], "queryParameters": [], "headers": [], "response": { "value": { "value": [ { + "key": { + "value": "key", + "type": "string" + }, + "value": { + "value": { + "value": { + "value": "value", + "type": "string" + }, + "type": "primitive" + }, + "type": "unknown" + } + } + ], + "type": "map" + }, + "type": "withoutStreaming" + }, + "codeSamples": [], + "type": "full" + } + ], + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + }, + { + "summary": "Fetch the current transaction author agreement, if any", + "audiences": [], + "operationId": "get_taa", + "tags": [ + "ledger" + ], + "pathParameters": [], + "queryParameters": [], + "headers": [], + "generatedRequestName": "GetTaaRequest", + "response": { + "description": "", + "schema": { + "generatedName": "GetTaaResponse", + "schema": "TAAResult", + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "reference" + }, + "fullExamples": [], + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "json" + }, + "errors": {}, + "server": [], + "authed": true, + "method": "GET", + "path": "/ledger/taa", + "examples": [ + { + "pathParameters": [], + "queryParameters": [], + "headers": [], + "response": { + "value": { + "properties": { + "result": { "properties": { - "cred_info": { + "aml_record": { "properties": { - "attrs": { + "aml": { "value": [ { "key": { @@ -44567,7 +16214,7 @@ }, "value": { "value": { - "value": "alice", + "value": "aml", "type": "string" }, "type": "primitive" @@ -44576,37 +16223,16 @@ ], "type": "map" }, - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "cred_rev_id": { - "value": { - "value": "12345", - "type": "string" - }, - "type": "primitive" - }, - "referent": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "rev_reg_id": { + "amlContext": { "value": { - "value": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", + "value": "amlContext", "type": "string" }, "type": "primitive" }, - "schema_id": { + "version": { "value": { - "value": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", + "value": "version", "type": "string" }, "type": "primitive" @@ -44614,16 +16240,16 @@ }, "type": "object" }, - "interval": { + "taa_accepted": { "properties": { - "from": { + "mechanism": { "value": { - "value": 1640995199, - "type": "int" + "value": "mechanism", + "type": "string" }, "type": "primitive" }, - "to": { + "time": { "value": { "value": 1640995199, "type": "int" @@ -44633,30 +16259,44 @@ }, "type": "object" }, - "presentation_referents": { - "value": [ - { + "taa_record": { + "properties": { + "digest": { "value": { - "value": "1_age_uuid", + "value": "digest", "type": "string" }, "type": "primitive" }, - { + "text": { "value": { - "value": "1_age_uuid", + "value": "text", + "type": "string" + }, + "type": "primitive" + }, + "version": { + "value": { + "value": "version", "type": "string" }, "type": "primitive" } - ], - "type": "array" + }, + "type": "object" + }, + "taa_required": { + "value": { + "value": true, + "type": "boolean" + }, + "type": "primitive" } }, "type": "object" } - ], - "type": "array" + }, + "type": "object" }, "type": "withoutStreaming" }, @@ -44670,38 +16310,20 @@ } }, { - "summary": "Send a problem report for presentation exchange", + "summary": "Accept the transaction author agreement", "audiences": [], - "operationId": "report_pres_ex_problem", + "operationId": "accept_taa", "tags": [ - "present-proof v2.0" - ], - "pathParameters": [ - { - "description": "Presentation exchange identifier", - "name": "pres_ex_id", - "schema": { - "schema": { - "pattern": "[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-4[a-fA-F0-9]{3}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}", - "type": "string" - }, - "generatedName": "ReportPresExProblemRequestPresExId", - "groupName": [], - "type": "primitive" - }, - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - } + "ledger" ], + "pathParameters": [], "queryParameters": [], "headers": [], - "generatedRequestName": "ReportPresExProblemRequest", + "generatedRequestName": "AcceptTaaRequest", "request": { "schema": { - "generatedName": "ReportPresExProblemRequest", - "schema": "V20PresProblemReportRequest", + "generatedName": "AcceptTaaRequest", + "schema": "TAAAccept", "source": { "file": "../openapi.yml", "type": "openapi" @@ -44720,8 +16342,8 @@ "response": { "description": "", "schema": { - "generatedName": "ReportPresExProblemResponse", - "schema": "V20PresentProofModuleResponse", + "generatedName": "AcceptTaaResponse", + "schema": "LedgerModulesResult", "source": { "file": "../openapi.yml", "type": "openapi" @@ -44739,28 +16361,31 @@ "server": [], "authed": true, "method": "POST", - "path": "/present-proof-2.0/records/{pres_ex_id}/problem-report", + "path": "/ledger/taa/accept", "examples": [ { - "pathParameters": [ - { - "name": "pres_ex_id", - "value": { - "value": { - "value": "pres_ex_id", - "type": "string" - }, - "type": "primitive" - } - } - ], + "pathParameters": [], "queryParameters": [], "headers": [], "request": { "properties": { - "description": { + "mechanism": { "value": { - "value": "description", + "value": "mechanism", + "type": "string" + }, + "type": "primitive" + }, + "text": { + "value": { + "value": "text", + "type": "string" + }, + "type": "primitive" + }, + "version": { + "value": { + "value": "version", "type": "string" }, "type": "primitive" @@ -44802,58 +16427,21 @@ } }, { - "summary": "Sends a proof presentation", + "summary": "Get default mediator", "audiences": [], - "operationId": "send_proof_presentation", + "operationId": "get_default_mediator", "tags": [ - "present-proof v2.0" - ], - "pathParameters": [ - { - "description": "Presentation exchange identifier", - "name": "pres_ex_id", - "schema": { - "schema": { - "pattern": "[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-4[a-fA-F0-9]{3}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}", - "type": "string" - }, - "generatedName": "SendProofPresentationRequestPresExId", - "groupName": [], - "type": "primitive" - }, - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - } + "mediation" ], + "pathParameters": [], "queryParameters": [], "headers": [], - "generatedRequestName": "SendProofPresentationRequest", - "request": { - "schema": { - "generatedName": "SendProofPresentationRequest", - "schema": "V20PresSpecByFormatRequest", - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "reference" - }, - "contentType": "application/json", - "fullExamples": [], - "additionalProperties": false, - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "json" - }, + "generatedRequestName": "GetDefaultMediatorRequest", "response": { "description": "", "schema": { - "generatedName": "SendProofPresentationResponse", - "schema": "V20PresExRecord", + "generatedName": "GetDefaultMediatorResponse", + "schema": "MediationRecord", "source": { "file": "../openapi.yml", "type": "openapi" @@ -44870,146 +16458,19 @@ "errors": {}, "server": [], "authed": true, - "method": "POST", - "path": "/present-proof-2.0/records/{pres_ex_id}/send-presentation", + "method": "GET", + "path": "/mediation/default-mediator", "examples": [ { - "pathParameters": [ - { - "name": "pres_ex_id", - "value": { - "value": { - "value": "pres_ex_id", - "type": "string" - }, - "type": "primitive" - } - } - ], + "pathParameters": [], "queryParameters": [], "headers": [], - "request": { - "properties": { - "indy": { - "properties": { - "requested_attributes": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "properties": { - "cred_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "revealed": { - "value": { - "value": true, - "type": "boolean" - }, - "type": "primitive" - } - }, - "type": "object" - } - } - ], - "type": "map" - }, - "requested_predicates": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "properties": { - "cred_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "timestamp": { - "value": { - "value": 1640995199, - "type": "int" - }, - "type": "primitive" - } - }, - "type": "object" - } - } - ], - "type": "map" - }, - "self_attested_attributes": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": "self_attested_value", - "type": "string" - }, - "type": "primitive" - } - } - ], - "type": "map" - }, - "trace": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "trace": { - "value": { - "value": true, - "type": "boolean" - }, - "type": "primitive" - } - }, - "type": "object" - }, "response": { "value": { "properties": { - "auto_present": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - }, - "auto_verify": { - "value": { - "value": true, - "type": "boolean" - }, - "type": "primitive" - }, "connection_id": { "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "value": "connection_id", "type": "string" }, "type": "primitive" @@ -45021,562 +16482,865 @@ }, "type": "primitive" }, - "error_msg": { + "endpoint": { "value": { - "value": "Invalid structure", + "value": "endpoint", "type": "string" }, "type": "primitive" }, - "initiator": { - "value": "self", - "type": "enum" + "mediation_id": { + "value": { + "value": "mediation_id", + "type": "string" + }, + "type": "primitive" }, - "pres": { - "properties": { - "@id": { + "mediator_terms": { + "value": [ + { "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "value": "mediator_terms", "type": "string" }, "type": "primitive" }, - "@type": { + { "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", + "value": "mediator_terms", "type": "string" }, "type": "primitive" - }, - "comment": { + } + ], + "type": "array" + }, + "recipient_terms": { + "value": [ + { "value": { - "value": "comment", + "value": "recipient_terms", "type": "string" }, "type": "primitive" }, - "formats": { - "value": [ - { - "properties": { - "attach_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "format": { - "value": { - "value": "dif/presentation-exchange/submission@v1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" + { + "value": { + "value": "recipient_terms", + "type": "string" + }, + "type": "primitive" + } + ], + "type": "array" + }, + "role": { + "value": { + "value": "role", + "type": "string" + }, + "type": "primitive" + }, + "routing_keys": { + "value": [ + { + "value": { + "value": "did:key:z6MkpTHR8VNsBxYAAWHut2Geadd9jSwuBV8xRoAnwWsdvktH", + "type": "string" + }, + "type": "primitive" }, - "presentations~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" + { + "value": { + "value": "did:key:z6MkpTHR8VNsBxYAAWHut2Geadd9jSwuBV8xRoAnwWsdvktH", + "type": "string" + }, + "type": "primitive" } + ], + "type": "array" + }, + "state": { + "value": { + "value": "active", + "type": "string" + }, + "type": "primitive" + }, + "updated_at": { + "value": { + "value": "2021-12-31 23:59:59+00:00", + "type": "string" + }, + "type": "primitive" + } + }, + "type": "object" + }, + "type": "withoutStreaming" + }, + "codeSamples": [], + "type": "full" + } + ], + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + }, + { + "summary": "Clear default mediator", + "audiences": [], + "operationId": "clear_default_mediator", + "tags": [ + "mediation" + ], + "pathParameters": [], + "queryParameters": [], + "headers": [], + "generatedRequestName": "ClearDefaultMediatorRequest", + "response": { + "description": "", + "schema": { + "generatedName": "ClearDefaultMediatorResponse", + "schema": "MediationRecord", + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "reference" + }, + "fullExamples": [], + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "json" + }, + "errors": {}, + "server": [], + "authed": true, + "method": "DELETE", + "path": "/mediation/default-mediator", + "examples": [ + { + "pathParameters": [], + "queryParameters": [], + "headers": [], + "response": { + "value": { + "properties": { + "connection_id": { + "value": { + "value": "connection_id", + "type": "string" }, - "type": "object" + "type": "primitive" }, - "pres_ex_id": { + "created_at": { "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "value": "2021-12-31 23:59:59+00:00", "type": "string" }, "type": "primitive" }, - "pres_proposal": { - "properties": { - "@id": { + "endpoint": { + "value": { + "value": "endpoint", + "type": "string" + }, + "type": "primitive" + }, + "mediation_id": { + "value": { + "value": "mediation_id", + "type": "string" + }, + "type": "primitive" + }, + "mediator_terms": { + "value": [ + { "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "value": "mediator_terms", "type": "string" }, "type": "primitive" }, - "@type": { + { "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", + "value": "mediator_terms", "type": "string" }, "type": "primitive" - }, - "comment": { + } + ], + "type": "array" + }, + "recipient_terms": { + "value": [ + { "value": { - "value": "comment", + "value": "recipient_terms", "type": "string" }, "type": "primitive" }, - "formats": { - "value": [ - { - "properties": { - "attach_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "format": { - "value": { - "value": "dif/presentation-exchange/submission@v1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "proposals~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "pres_request": { - "properties": { - "@id": { + { "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "value": "recipient_terms", "type": "string" }, "type": "primitive" - }, - "@type": { + } + ], + "type": "array" + }, + "role": { + "value": { + "value": "role", + "type": "string" + }, + "type": "primitive" + }, + "routing_keys": { + "value": [ + { "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", + "value": "did:key:z6MkpTHR8VNsBxYAAWHut2Geadd9jSwuBV8xRoAnwWsdvktH", "type": "string" }, "type": "primitive" }, - "comment": { + { "value": { - "value": "comment", + "value": "did:key:z6MkpTHR8VNsBxYAAWHut2Geadd9jSwuBV8xRoAnwWsdvktH", "type": "string" }, "type": "primitive" - }, - "formats": { - "value": [ - { - "properties": { - "attach_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "format": { - "value": { - "value": "dif/presentation-exchange/submission@v1.0", - "type": "string" - }, - "type": "primitive" - } + } + ], + "type": "array" + }, + "state": { + "value": { + "value": "active", + "type": "string" + }, + "type": "primitive" + }, + "updated_at": { + "value": { + "value": "2021-12-31 23:59:59+00:00", + "type": "string" + }, + "type": "primitive" + } + }, + "type": "object" + }, + "type": "withoutStreaming" + }, + "codeSamples": [], + "type": "full" + } + ], + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + }, + { + "summary": "Retrieve keylists by connection or role", + "audiences": [], + "operationId": "get_keylists", + "tags": [ + "mediation" + ], + "pathParameters": [], + "queryParameters": [ + { + "description": "Connection identifier (optional)", + "name": "conn_id", + "schema": { + "generatedName": "GetKeylistsRequestConnId", + "value": { + "schema": { + "format": "uuid", + "type": "string" + }, + "generatedName": "GetKeylistsRequestConnId", + "groupName": [], + "type": "primitive" + }, + "groupName": [], + "type": "nullable" + }, + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + }, + { + "description": "Filer on role, 'client' for keys mediated by other agents, 'server' for keys mediated by this agent", + "name": "role", + "schema": { + "generatedName": "GetKeylistsRequestRole", + "value": { + "generatedName": "GetKeylistsRequestRole", + "values": [ + { + "generatedName": "client", + "value": "client", + "casing": {} + }, + { + "generatedName": "server", + "value": "server", + "casing": {} + } + ], + "default": { + "generatedName": "server", + "value": "server", + "casing": {} + }, + "groupName": [], + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "enum" + }, + "groupName": [], + "type": "nullable" + }, + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + } + ], + "headers": [], + "generatedRequestName": "GetKeylistsRequest", + "response": { + "description": "", + "schema": { + "generatedName": "GetKeylistsResponse", + "schema": "Keylist", + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "reference" + }, + "fullExamples": [], + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "json" + }, + "errors": {}, + "server": [], + "authed": true, + "method": "GET", + "path": "/mediation/keylists", + "examples": [ + { + "pathParameters": [], + "queryParameters": [], + "headers": [], + "response": { + "value": { + "properties": { + "results": { + "value": [ + { + "properties": { + "connection_id": { + "value": { + "value": "connection_id", + "type": "string" }, - "type": "object" - } - ], - "type": "array" - }, - "request_presentations~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } + "type": "primitive" + }, + "created_at": { + "value": { + "value": "2021-12-31 23:59:59+00:00", + "type": "string" + }, + "type": "primitive" + }, + "recipient_key": { + "value": { + "value": "recipient_key", + "type": "string" + }, + "type": "primitive" + }, + "record_id": { + "value": { + "value": "record_id", + "type": "string" + }, + "type": "primitive" + }, + "role": { + "value": { + "value": "role", + "type": "string" + }, + "type": "primitive" + }, + "state": { + "value": { + "value": "active", + "type": "string" + }, + "type": "primitive" + }, + "updated_at": { + "value": { + "value": "2021-12-31 23:59:59+00:00", + "type": "string" + }, + "type": "primitive" + }, + "wallet_id": { + "value": { + "value": "wallet_id", + "type": "string" }, - "type": "object" + "type": "primitive" } - ], - "type": "array" + }, + "type": "object" }, - "will_confirm": { - "value": { - "value": true, - "type": "boolean" + { + "properties": { + "connection_id": { + "value": { + "value": "connection_id", + "type": "string" + }, + "type": "primitive" + }, + "created_at": { + "value": { + "value": "2021-12-31 23:59:59+00:00", + "type": "string" + }, + "type": "primitive" + }, + "recipient_key": { + "value": { + "value": "recipient_key", + "type": "string" + }, + "type": "primitive" + }, + "record_id": { + "value": { + "value": "record_id", + "type": "string" + }, + "type": "primitive" + }, + "role": { + "value": { + "value": "role", + "type": "string" + }, + "type": "primitive" + }, + "state": { + "value": { + "value": "active", + "type": "string" + }, + "type": "primitive" + }, + "updated_at": { + "value": { + "value": "2021-12-31 23:59:59+00:00", + "type": "string" + }, + "type": "primitive" + }, + "wallet_id": { + "value": { + "value": "wallet_id", + "type": "string" + }, + "type": "primitive" + } }, - "type": "primitive" + "type": "object" } - }, - "type": "object" - }, - "role": { - "value": "prover", - "type": "enum" - }, - "state": { - "value": "proposal-sent", - "type": "enum" + ], + "type": "array" + } + }, + "type": "object" + }, + "type": "withoutStreaming" + }, + "codeSamples": [], + "type": "full" + } + ], + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + }, + { + "summary": "Send keylist query to mediator", + "audiences": [], + "operationId": "send_keylist_query_to_mediator", + "tags": [ + "mediation" + ], + "pathParameters": [ + { + "description": "Mediation record identifier", + "name": "mediation_id", + "schema": { + "schema": { + "format": "uuid", + "type": "string" + }, + "generatedName": "SendKeylistQueryToMediatorRequestMediationId", + "groupName": [], + "type": "primitive" + }, + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + } + ], + "queryParameters": [ + { + "description": "limit number of results", + "name": "paginate_limit", + "schema": { + "generatedName": "SendKeylistQueryToMediatorRequestPaginateLimit", + "value": { + "schema": { + "default": -1, + "type": "int" + }, + "generatedName": "SendKeylistQueryToMediatorRequestPaginateLimit", + "groupName": [], + "type": "primitive" + }, + "groupName": [], + "type": "nullable" + }, + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + }, + { + "description": "offset to use in pagination", + "name": "paginate_offset", + "schema": { + "generatedName": "SendKeylistQueryToMediatorRequestPaginateOffset", + "value": { + "schema": { + "default": 0, + "type": "int" + }, + "generatedName": "SendKeylistQueryToMediatorRequestPaginateOffset", + "groupName": [], + "type": "primitive" + }, + "groupName": [], + "type": "nullable" + }, + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + } + ], + "headers": [], + "generatedRequestName": "SendKeylistQueryToMediatorRequest", + "request": { + "schema": { + "generatedName": "SendKeylistQueryToMediatorRequestBody", + "schema": "KeylistQueryFilterRequest", + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "reference" + }, + "contentType": "application/json", + "fullExamples": [], + "additionalProperties": false, + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "json" + }, + "response": { + "description": "", + "schema": { + "generatedName": "SendKeylistQueryToMediatorResponse", + "schema": "KeylistQuery", + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "reference" + }, + "fullExamples": [], + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "json" + }, + "errors": {}, + "server": [], + "authed": true, + "method": "POST", + "path": "/mediation/keylists/{mediation_id}/send-keylist-query", + "examples": [ + { + "pathParameters": [ + { + "name": "mediation_id", + "value": { + "value": { + "value": "mediation_id", + "type": "string" }, - "thread_id": { + "type": "primitive" + } + } + ], + "queryParameters": [], + "headers": [], + "request": { + "properties": {}, + "type": "object" + }, + "response": { + "value": { + "properties": { + "@id": { "value": { "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "type": "string" }, "type": "primitive" }, - "trace": { + "@type": { "value": { - "value": true, - "type": "boolean" + "value": "https://didcomm.org/my-family/1.0/my-message-type", + "type": "string" }, "type": "primitive" + } + }, + "type": "object" + }, + "type": "withoutStreaming" + }, + "codeSamples": [], + "type": "full" + } + ], + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + }, + { + "summary": "Send keylist update to mediator", + "audiences": [], + "operationId": "send_keylist_update_to_mediator", + "tags": [ + "mediation" + ], + "pathParameters": [ + { + "description": "Mediation record identifier", + "name": "mediation_id", + "schema": { + "schema": { + "format": "uuid", + "type": "string" + }, + "generatedName": "SendKeylistUpdateToMediatorRequestMediationId", + "groupName": [], + "type": "primitive" + }, + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + } + ], + "queryParameters": [], + "headers": [], + "generatedRequestName": "SendKeylistUpdateToMediatorRequest", + "request": { + "schema": { + "generatedName": "SendKeylistUpdateToMediatorRequest", + "schema": "KeylistUpdateRequest", + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "reference" + }, + "contentType": "application/json", + "fullExamples": [], + "additionalProperties": false, + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "json" + }, + "response": { + "description": "", + "schema": { + "generatedName": "SendKeylistUpdateToMediatorResponse", + "schema": "KeylistUpdate", + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "reference" + }, + "fullExamples": [], + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "json" + }, + "errors": {}, + "server": [], + "authed": true, + "method": "POST", + "path": "/mediation/keylists/{mediation_id}/send-keylist-update", + "examples": [ + { + "pathParameters": [ + { + "name": "mediation_id", + "value": { + "value": { + "value": "mediation_id", + "type": "string" }, - "updated_at": { + "type": "primitive" + } + } + ], + "queryParameters": [], + "headers": [], + "request": { + "properties": { + "updates": { + "value": [ + { + "properties": { + "action": { + "value": "add", + "type": "enum" + }, + "recipient_key": { + "value": { + "value": "did:key:z6MkpTHR8VNsBxYAAWHut2Geadd9jSwuBV8xRoAnwWsdvktH", + "type": "string" + }, + "type": "primitive" + } + }, + "type": "object" + }, + { + "properties": { + "action": { + "value": "add", + "type": "enum" + }, + "recipient_key": { + "value": { + "value": "did:key:z6MkpTHR8VNsBxYAAWHut2Geadd9jSwuBV8xRoAnwWsdvktH", + "type": "string" + }, + "type": "primitive" + } + }, + "type": "object" + } + ], + "type": "array" + } + }, + "type": "object" + }, + "response": { + "value": { + "properties": { + "@id": { "value": { - "value": "2021-12-31 23:59:59+00:00", + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "type": "string" }, "type": "primitive" }, - "verified": { - "value": "true", - "type": "enum" + "@type": { + "value": { + "value": "https://didcomm.org/my-family/1.0/my-message-type", + "type": "string" + }, + "type": "primitive" }, - "verified_msgs": { + "updates": { "value": [ { - "value": { - "value": "verified_msgs", - "type": "string" + "properties": { + "action": { + "value": "add", + "type": "enum" + }, + "recipient_key": { + "value": { + "value": "did:key:z6MkpTHR8VNsBxYAAWHut2Geadd9jSwuBV8xRoAnwWsdvktH", + "type": "string" + }, + "type": "primitive" + } }, - "type": "primitive" + "type": "object" }, { - "value": { - "value": "verified_msgs", - "type": "string" + "properties": { + "action": { + "value": "add", + "type": "enum" + }, + "recipient_key": { + "value": { + "value": "did:key:z6MkpTHR8VNsBxYAAWHut2Geadd9jSwuBV8xRoAnwWsdvktH", + "type": "string" + }, + "type": "primitive" + } }, - "type": "primitive" + "type": "object" } ], "type": "array" @@ -45596,22 +17360,21 @@ } }, { - "summary": "Sends a presentation request in reference to a proposal", + "summary": "Request mediation from connection", "audiences": [], - "operationId": "send_proof_presentation_request", + "operationId": "request_mediation_for_connection", "tags": [ - "present-proof v2.0" + "mediation" ], "pathParameters": [ { - "description": "Presentation exchange identifier", - "name": "pres_ex_id", + "description": "Connection identifier", + "name": "conn_id", "schema": { "schema": { - "pattern": "[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-4[a-fA-F0-9]{3}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}", "type": "string" }, - "generatedName": "SendProofPresentationRequestRequestPresExId", + "generatedName": "RequestMediationForConnectionRequestConnId", "groupName": [], "type": "primitive" }, @@ -45623,11 +17386,11 @@ ], "queryParameters": [], "headers": [], - "generatedRequestName": "SendProofPresentationRequestRequest", + "generatedRequestName": "RequestMediationForConnectionRequest", "request": { "schema": { - "generatedName": "SendProofPresentationRequestRequest", - "schema": "V20PresentationSendRequestToProposal", + "generatedName": "RequestMediationForConnectionRequest", + "schema": "MediationCreateRequest", "source": { "file": "../openapi.yml", "type": "openapi" @@ -45646,8 +17409,8 @@ "response": { "description": "", "schema": { - "generatedName": "SendProofPresentationRequestResponse", - "schema": "V20PresExRecord", + "generatedName": "RequestMediationForConnectionResponse", + "schema": "MediationRecord", "source": { "file": "../openapi.yml", "type": "openapi" @@ -45665,15 +17428,15 @@ "server": [], "authed": true, "method": "POST", - "path": "/present-proof-2.0/records/{pres_ex_id}/send-request", + "path": "/mediation/request/{conn_id}", "examples": [ { "pathParameters": [ { - "name": "pres_ex_id", + "name": "conn_id", "value": { "value": { - "value": "pres_ex_id", + "value": "conn_id", "type": "string" }, "type": "primitive" @@ -45684,19 +17447,43 @@ "headers": [], "request": { "properties": { - "auto_verify": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" + "mediator_terms": { + "value": [ + { + "value": { + "value": "mediator_terms", + "type": "string" + }, + "type": "primitive" + }, + { + "value": { + "value": "mediator_terms", + "type": "string" + }, + "type": "primitive" + } + ], + "type": "array" }, - "trace": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" + "recipient_terms": { + "value": [ + { + "value": { + "value": "recipient_terms", + "type": "string" + }, + "type": "primitive" + }, + { + "value": { + "value": "recipient_terms", + "type": "string" + }, + "type": "primitive" + } + ], + "type": "array" } }, "type": "object" @@ -45704,23 +17491,9 @@ "response": { "value": { "properties": { - "auto_present": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - }, - "auto_verify": { - "value": { - "value": true, - "type": "boolean" - }, - "type": "primitive" - }, "connection_id": { "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "value": "connection_id", "type": "string" }, "type": "primitive" @@ -45732,565 +17505,97 @@ }, "type": "primitive" }, - "error_msg": { + "endpoint": { "value": { - "value": "Invalid structure", + "value": "endpoint", "type": "string" }, "type": "primitive" }, - "initiator": { - "value": "self", - "type": "enum" - }, - "pres": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" - }, - "formats": { - "value": [ - { - "properties": { - "attach_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "format": { - "value": { - "value": "dif/presentation-exchange/submission@v1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "presentations~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "pres_ex_id": { + "mediation_id": { "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "value": "mediation_id", "type": "string" }, "type": "primitive" }, - "pres_proposal": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { + "mediator_terms": { + "value": [ + { "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", + "value": "mediator_terms", "type": "string" }, "type": "primitive" }, - "comment": { + { "value": { - "value": "comment", + "value": "mediator_terms", "type": "string" }, "type": "primitive" - }, - "formats": { - "value": [ - { - "properties": { - "attach_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "format": { - "value": { - "value": "dif/presentation-exchange/submission@v1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "proposals~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" } - }, - "type": "object" + ], + "type": "array" }, - "pres_request": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { + "recipient_terms": { + "value": [ + { "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", + "value": "recipient_terms", "type": "string" }, "type": "primitive" }, - "comment": { + { "value": { - "value": "comment", + "value": "recipient_terms", "type": "string" }, "type": "primitive" - }, - "formats": { - "value": [ - { - "properties": { - "attach_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "format": { - "value": { - "value": "dif/presentation-exchange/submission@v1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "request_presentations~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "will_confirm": { - "value": { - "value": true, - "type": "boolean" - }, - "type": "primitive" } - }, - "type": "object" - }, - "role": { - "value": "prover", - "type": "enum" - }, - "state": { - "value": "proposal-sent", - "type": "enum" - }, - "thread_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "trace": { - "value": { - "value": true, - "type": "boolean" - }, - "type": "primitive" + ], + "type": "array" }, - "updated_at": { + "role": { "value": { - "value": "2021-12-31 23:59:59+00:00", + "value": "role", "type": "string" }, "type": "primitive" }, - "verified": { - "value": "true", - "type": "enum" - }, - "verified_msgs": { + "routing_keys": { "value": [ { "value": { - "value": "verified_msgs", + "value": "did:key:z6MkpTHR8VNsBxYAAWHut2Geadd9jSwuBV8xRoAnwWsdvktH", "type": "string" }, "type": "primitive" }, { "value": { - "value": "verified_msgs", + "value": "did:key:z6MkpTHR8VNsBxYAAWHut2Geadd9jSwuBV8xRoAnwWsdvktH", "type": "string" }, "type": "primitive" } ], "type": "array" + }, + "state": { + "value": { + "value": "active", + "type": "string" + }, + "type": "primitive" + }, + "updated_at": { + "value": { + "value": "2021-12-31 23:59:59+00:00", + "type": "string" + }, + "type": "primitive" } }, "type": "object" @@ -46307,24 +17612,123 @@ } }, { - "summary": "Verify a received presentation", + "summary": "Query mediation requests, returns list of all mediation records", "audiences": [], - "operationId": "verify_received_presentation", + "operationId": "get_matching_mediation_records", "tags": [ - "present-proof v2.0" + "mediation" ], - "pathParameters": [ + "pathParameters": [], + "queryParameters": [ { - "description": "Presentation exchange identifier", - "name": "pres_ex_id", + "description": "Connection identifier (optional)", + "name": "conn_id", "schema": { - "schema": { - "pattern": "[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-4[a-fA-F0-9]{3}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}", - "type": "string" + "generatedName": "GetMatchingMediationRecordsRequestConnId", + "value": { + "schema": { + "format": "uuid", + "type": "string" + }, + "generatedName": "GetMatchingMediationRecordsRequestConnId", + "groupName": [], + "type": "primitive" }, - "generatedName": "VerifyReceivedPresentationRequestPresExId", "groupName": [], - "type": "primitive" + "type": "nullable" + }, + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + }, + { + "description": "List of mediator rules for recipient", + "name": "mediator_terms", + "schema": { + "generatedName": "GetMatchingMediationRecordsRequestMediatorTerms", + "value": { + "value": { + "description": "Indicate terms to which the mediator requires the recipient to agree", + "schema": { + "type": "string" + }, + "generatedName": "GetMatchingMediationRecordsRequestMediatorTermsItem", + "groupName": [], + "type": "primitive" + }, + "generatedName": "GetMatchingMediationRecordsRequestMediatorTerms", + "groupName": [], + "type": "array" + }, + "groupName": [], + "type": "nullable" + }, + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + }, + { + "description": "List of recipient rules for mediation", + "name": "recipient_terms", + "schema": { + "generatedName": "GetMatchingMediationRecordsRequestRecipientTerms", + "value": { + "value": { + "description": "Indicate terms to which the recipient requires the mediator to agree", + "schema": { + "type": "string" + }, + "generatedName": "GetMatchingMediationRecordsRequestRecipientTermsItem", + "groupName": [], + "type": "primitive" + }, + "generatedName": "GetMatchingMediationRecordsRequestRecipientTerms", + "groupName": [], + "type": "array" + }, + "groupName": [], + "type": "nullable" + }, + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + }, + { + "description": "Mediation state (optional)", + "name": "state", + "schema": { + "generatedName": "GetMatchingMediationRecordsRequestState", + "value": { + "generatedName": "GetMatchingMediationRecordsRequestState", + "values": [ + { + "generatedName": "request", + "value": "request", + "casing": {} + }, + { + "generatedName": "granted", + "value": "granted", + "casing": {} + }, + { + "generatedName": "denied", + "value": "denied", + "casing": {} + } + ], + "groupName": [], + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "enum" + }, + "groupName": [], + "type": "nullable" }, "source": { "file": "../openapi.yml", @@ -46332,14 +17736,13 @@ } } ], - "queryParameters": [], "headers": [], - "generatedRequestName": "VerifyReceivedPresentationRequest", + "generatedRequestName": "GetMatchingMediationRecordsRequest", "response": { "description": "", "schema": { - "generatedName": "VerifyReceivedPresentationResponse", - "schema": "V20PresExRecord", + "generatedName": "GetMatchingMediationRecordsResponse", + "schema": "MediationList", "source": { "file": "../openapi.yml", "type": "openapi" @@ -46356,614 +17759,624 @@ "errors": {}, "server": [], "authed": true, - "method": "POST", - "path": "/present-proof-2.0/records/{pres_ex_id}/verify-presentation", + "method": "GET", + "path": "/mediation/requests", "examples": [ { - "pathParameters": [ - { - "name": "pres_ex_id", - "value": { - "value": { - "value": "pres_ex_id", - "type": "string" - }, - "type": "primitive" - } - } - ], + "pathParameters": [], "queryParameters": [], "headers": [], "response": { "value": { "properties": { - "auto_present": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - }, - "auto_verify": { - "value": { - "value": true, - "type": "boolean" - }, - "type": "primitive" - }, - "connection_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "created_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "error_msg": { - "value": { - "value": "Invalid structure", - "type": "string" - }, - "type": "primitive" - }, - "initiator": { - "value": "self", - "type": "enum" - }, - "pres": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" - }, - "formats": { - "value": [ - { - "properties": { - "attach_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "format": { - "value": { - "value": "dif/presentation-exchange/submission@v1.0", - "type": "string" - }, - "type": "primitive" - } + "results": { + "value": [ + { + "properties": { + "connection_id": { + "value": { + "value": "connection_id", + "type": "string" }, - "type": "object" - } - ], - "type": "array" - }, - "presentations~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } + "type": "primitive" + }, + "created_at": { + "value": { + "value": "2021-12-31 23:59:59+00:00", + "type": "string" }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "pres_ex_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "pres_proposal": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" - }, - "formats": { - "value": [ - { - "properties": { - "attach_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "format": { - "value": { - "value": "dif/presentation-exchange/submission@v1.0", - "type": "string" - }, - "type": "primitive" - } + "type": "primitive" + }, + "endpoint": { + "value": { + "value": "endpoint", + "type": "string" }, - "type": "object" - } - ], - "type": "array" - }, - "proposals~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { + "type": "primitive" + }, + "mediation_id": { + "value": { + "value": "mediation_id", + "type": "string" + }, + "type": "primitive" + }, + "mediator_terms": { + "value": [ + { "value": { - "value": "view from doorway, facing east, with lights off", + "value": "mediator_terms", "type": "string" }, "type": "primitive" }, - "filename": { + { "value": { - "value": "IMG1092348.png", + "value": "mediator_terms", "type": "string" }, "type": "primitive" - }, - "lastmod_time": { + } + ], + "type": "array" + }, + "recipient_terms": { + "value": [ + { "value": { - "value": "2021-12-31 23:59:59+00:00", + "value": "recipient_terms", "type": "string" }, "type": "primitive" }, - "mime-type": { + { "value": { - "value": "image/png", + "value": "recipient_terms", "type": "string" }, "type": "primitive" } + ], + "type": "array" + }, + "role": { + "value": { + "value": "role", + "type": "string" }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "pres_request": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" - }, - "formats": { - "value": [ - { - "properties": { - "attach_id": { + "type": "primitive" + }, + "routing_keys": { + "value": [ + { "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "value": "did:key:z6MkpTHR8VNsBxYAAWHut2Geadd9jSwuBV8xRoAnwWsdvktH", "type": "string" }, "type": "primitive" }, - "format": { + { "value": { - "value": "dif/presentation-exchange/submission@v1.0", + "value": "did:key:z6MkpTHR8VNsBxYAAWHut2Geadd9jSwuBV8xRoAnwWsdvktH", "type": "string" }, "type": "primitive" } + ], + "type": "array" + }, + "state": { + "value": { + "value": "active", + "type": "string" }, - "type": "object" + "type": "primitive" + }, + "updated_at": { + "value": { + "value": "2021-12-31 23:59:59+00:00", + "type": "string" + }, + "type": "primitive" } - ], - "type": "array" + }, + "type": "object" }, - "request_presentations~attach": { - "value": [ - { - "properties": { - "@id": { + { + "properties": { + "connection_id": { + "value": { + "value": "connection_id", + "type": "string" + }, + "type": "primitive" + }, + "created_at": { + "value": { + "value": "2021-12-31 23:59:59+00:00", + "type": "string" + }, + "type": "primitive" + }, + "endpoint": { + "value": { + "value": "endpoint", + "type": "string" + }, + "type": "primitive" + }, + "mediation_id": { + "value": { + "value": "mediation_id", + "type": "string" + }, + "type": "primitive" + }, + "mediator_terms": { + "value": [ + { "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "value": "mediator_terms", "type": "string" }, "type": "primitive" }, - "byte_count": { + { "value": { - "value": 1234, - "type": "int" + "value": "mediator_terms", + "type": "string" }, "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { + } + ], + "type": "array" + }, + "recipient_terms": { + "value": [ + { "value": { - "value": "view from doorway, facing east, with lights off", + "value": "recipient_terms", "type": "string" }, "type": "primitive" }, - "filename": { + { "value": { - "value": "IMG1092348.png", + "value": "recipient_terms", "type": "string" }, "type": "primitive" - }, - "lastmod_time": { + } + ], + "type": "array" + }, + "role": { + "value": { + "value": "role", + "type": "string" + }, + "type": "primitive" + }, + "routing_keys": { + "value": [ + { "value": { - "value": "2021-12-31 23:59:59+00:00", + "value": "did:key:z6MkpTHR8VNsBxYAAWHut2Geadd9jSwuBV8xRoAnwWsdvktH", "type": "string" }, "type": "primitive" }, - "mime-type": { + { "value": { - "value": "image/png", + "value": "did:key:z6MkpTHR8VNsBxYAAWHut2Geadd9jSwuBV8xRoAnwWsdvktH", "type": "string" }, "type": "primitive" } + ], + "type": "array" + }, + "state": { + "value": { + "value": "active", + "type": "string" }, - "type": "object" + "type": "primitive" + }, + "updated_at": { + "value": { + "value": "2021-12-31 23:59:59+00:00", + "type": "string" + }, + "type": "primitive" } - ], - "type": "array" + }, + "type": "object" + } + ], + "type": "array" + } + }, + "type": "object" + }, + "type": "withoutStreaming" + }, + "codeSamples": [], + "type": "full" + } + ], + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + }, + { + "summary": "Retrieve mediation request record", + "audiences": [], + "operationId": "get_mediation_record", + "tags": [ + "mediation" + ], + "pathParameters": [ + { + "description": "Mediation record identifier", + "name": "mediation_id", + "schema": { + "schema": { + "format": "uuid", + "type": "string" + }, + "generatedName": "GetMediationRecordRequestMediationId", + "groupName": [], + "type": "primitive" + }, + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + } + ], + "queryParameters": [], + "headers": [], + "generatedRequestName": "GetMediationRecordRequest", + "response": { + "description": "", + "schema": { + "generatedName": "GetMediationRecordResponse", + "schema": "MediationRecord", + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "reference" + }, + "fullExamples": [], + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "json" + }, + "errors": {}, + "server": [], + "authed": true, + "method": "GET", + "path": "/mediation/requests/{mediation_id}", + "examples": [ + { + "pathParameters": [ + { + "name": "mediation_id", + "value": { + "value": { + "value": "mediation_id", + "type": "string" + }, + "type": "primitive" + } + } + ], + "queryParameters": [], + "headers": [], + "response": { + "value": { + "properties": { + "connection_id": { + "value": { + "value": "connection_id", + "type": "string" + }, + "type": "primitive" + }, + "created_at": { + "value": { + "value": "2021-12-31 23:59:59+00:00", + "type": "string" + }, + "type": "primitive" + }, + "endpoint": { + "value": { + "value": "endpoint", + "type": "string" + }, + "type": "primitive" + }, + "mediation_id": { + "value": { + "value": "mediation_id", + "type": "string" + }, + "type": "primitive" + }, + "mediator_terms": { + "value": [ + { + "value": { + "value": "mediator_terms", + "type": "string" + }, + "type": "primitive" }, - "will_confirm": { + { "value": { - "value": true, - "type": "boolean" + "value": "mediator_terms", + "type": "string" }, "type": "primitive" } - }, - "type": "object" + ], + "type": "array" + }, + "recipient_terms": { + "value": [ + { + "value": { + "value": "recipient_terms", + "type": "string" + }, + "type": "primitive" + }, + { + "value": { + "value": "recipient_terms", + "type": "string" + }, + "type": "primitive" + } + ], + "type": "array" }, "role": { - "value": "prover", - "type": "enum" + "value": { + "value": "role", + "type": "string" + }, + "type": "primitive" + }, + "routing_keys": { + "value": [ + { + "value": { + "value": "did:key:z6MkpTHR8VNsBxYAAWHut2Geadd9jSwuBV8xRoAnwWsdvktH", + "type": "string" + }, + "type": "primitive" + }, + { + "value": { + "value": "did:key:z6MkpTHR8VNsBxYAAWHut2Geadd9jSwuBV8xRoAnwWsdvktH", + "type": "string" + }, + "type": "primitive" + } + ], + "type": "array" + }, + "state": { + "value": { + "value": "active", + "type": "string" + }, + "type": "primitive" + }, + "updated_at": { + "value": { + "value": "2021-12-31 23:59:59+00:00", + "type": "string" + }, + "type": "primitive" + } + }, + "type": "object" + }, + "type": "withoutStreaming" + }, + "codeSamples": [], + "type": "full" + } + ], + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + }, + { + "summary": "Delete mediation request by ID", + "audiences": [], + "operationId": "delete_mediation_record", + "tags": [ + "mediation" + ], + "pathParameters": [ + { + "description": "Mediation record identifier", + "name": "mediation_id", + "schema": { + "schema": { + "format": "uuid", + "type": "string" + }, + "generatedName": "DeleteMediationRecordRequestMediationId", + "groupName": [], + "type": "primitive" + }, + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + } + ], + "queryParameters": [], + "headers": [], + "generatedRequestName": "DeleteMediationRecordRequest", + "response": { + "description": "", + "schema": { + "generatedName": "DeleteMediationRecordResponse", + "schema": "MediationRecord", + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "reference" + }, + "fullExamples": [], + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "json" + }, + "errors": {}, + "server": [], + "authed": true, + "method": "DELETE", + "path": "/mediation/requests/{mediation_id}", + "examples": [ + { + "pathParameters": [ + { + "name": "mediation_id", + "value": { + "value": { + "value": "mediation_id", + "type": "string" }, - "state": { - "value": "proposal-sent", - "type": "enum" + "type": "primitive" + } + } + ], + "queryParameters": [], + "headers": [], + "response": { + "value": { + "properties": { + "connection_id": { + "value": { + "value": "connection_id", + "type": "string" + }, + "type": "primitive" }, - "thread_id": { + "created_at": { "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "value": "2021-12-31 23:59:59+00:00", "type": "string" }, "type": "primitive" }, - "trace": { + "endpoint": { "value": { - "value": true, - "type": "boolean" + "value": "endpoint", + "type": "string" }, "type": "primitive" }, - "updated_at": { + "mediation_id": { "value": { - "value": "2021-12-31 23:59:59+00:00", + "value": "mediation_id", "type": "string" }, "type": "primitive" }, - "verified": { - "value": "true", - "type": "enum" + "mediator_terms": { + "value": [ + { + "value": { + "value": "mediator_terms", + "type": "string" + }, + "type": "primitive" + }, + { + "value": { + "value": "mediator_terms", + "type": "string" + }, + "type": "primitive" + } + ], + "type": "array" }, - "verified_msgs": { + "recipient_terms": { "value": [ { "value": { - "value": "verified_msgs", + "value": "recipient_terms", "type": "string" }, "type": "primitive" }, { "value": { - "value": "verified_msgs", + "value": "recipient_terms", + "type": "string" + }, + "type": "primitive" + } + ], + "type": "array" + }, + "role": { + "value": { + "value": "role", + "type": "string" + }, + "type": "primitive" + }, + "routing_keys": { + "value": [ + { + "value": { + "value": "did:key:z6MkpTHR8VNsBxYAAWHut2Geadd9jSwuBV8xRoAnwWsdvktH", + "type": "string" + }, + "type": "primitive" + }, + { + "value": { + "value": "did:key:z6MkpTHR8VNsBxYAAWHut2Geadd9jSwuBV8xRoAnwWsdvktH", "type": "string" }, "type": "primitive" } ], "type": "array" + }, + "state": { + "value": { + "value": "active", + "type": "string" + }, + "type": "primitive" + }, + "updated_at": { + "value": { + "value": "2021-12-31 23:59:59+00:00", + "type": "string" + }, + "type": "primitive" } }, "type": "object" @@ -46980,20 +18393,38 @@ } }, { - "summary": "Sends a presentation proposal", + "summary": "Deny a stored mediation request", "audiences": [], - "operationId": "send_presentation_proposal", + "operationId": "deny_mediation_request", "tags": [ - "present-proof v2.0" + "mediation" + ], + "pathParameters": [ + { + "description": "Mediation record identifier", + "name": "mediation_id", + "schema": { + "schema": { + "format": "uuid", + "type": "string" + }, + "generatedName": "DenyMediationRequestRequestMediationId", + "groupName": [], + "type": "primitive" + }, + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + } ], - "pathParameters": [], "queryParameters": [], "headers": [], - "generatedRequestName": "SendPresentationProposalRequest", + "generatedRequestName": "DenyMediationRequestRequest", "request": { "schema": { - "generatedName": "SendPresentationProposalRequest", - "schema": "V20PresProposalRequest", + "generatedName": "DenyMediationRequestRequest", + "schema": "AdminMediationDeny", "source": { "file": "../openapi.yml", "type": "openapi" @@ -47012,8 +18443,8 @@ "response": { "description": "", "schema": { - "generatedName": "SendPresentationProposalResponse", - "schema": "V20PresExRecord", + "generatedName": "DenyMediationRequestResponse", + "schema": "MediationDeny", "source": { "file": "../openapi.yml", "type": "openapi" @@ -47031,228 +18462,352 @@ "server": [], "authed": true, "method": "POST", - "path": "/present-proof-2.0/send-proposal", + "path": "/mediation/requests/{mediation_id}/deny", "examples": [ { - "pathParameters": [], + "pathParameters": [ + { + "name": "mediation_id", + "value": { + "value": { + "value": "mediation_id", + "type": "string" + }, + "type": "primitive" + } + } + ], "queryParameters": [], "headers": [], "request": { "properties": { - "auto_present": { - "value": { - "value": true, - "type": "boolean" - }, - "type": "primitive" + "mediator_terms": { + "value": [ + { + "value": { + "value": "mediator_terms", + "type": "string" + }, + "type": "primitive" + }, + { + "value": { + "value": "mediator_terms", + "type": "string" + }, + "type": "primitive" + } + ], + "type": "array" }, - "comment": { - "value": { - "value": "comment", - "type": "string" + "recipient_terms": { + "value": [ + { + "value": { + "value": "recipient_terms", + "type": "string" + }, + "type": "primitive" + }, + { + "value": { + "value": "recipient_terms", + "type": "string" + }, + "type": "primitive" + } + ], + "type": "array" + } + }, + "type": "object" + }, + "response": { + "value": { + "properties": { + "@id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" }, - "type": "primitive" + "@type": { + "value": { + "value": "https://didcomm.org/my-family/1.0/my-message-type", + "type": "string" + }, + "type": "primitive" + }, + "mediator_terms": { + "value": [ + { + "value": { + "value": "mediator_terms", + "type": "string" + }, + "type": "primitive" + }, + { + "value": { + "value": "mediator_terms", + "type": "string" + }, + "type": "primitive" + } + ], + "type": "array" + }, + "recipient_terms": { + "value": [ + { + "value": { + "value": "recipient_terms", + "type": "string" + }, + "type": "primitive" + }, + { + "value": { + "value": "recipient_terms", + "type": "string" + }, + "type": "primitive" + } + ], + "type": "array" + } }, - "connection_id": { + "type": "object" + }, + "type": "withoutStreaming" + }, + "codeSamples": [], + "type": "full" + } + ], + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + }, + { + "summary": "Grant received mediation", + "audiences": [], + "operationId": "grant_mediation_request", + "tags": [ + "mediation" + ], + "pathParameters": [ + { + "description": "Mediation record identifier", + "name": "mediation_id", + "schema": { + "schema": { + "format": "uuid", + "type": "string" + }, + "generatedName": "GrantMediationRequestRequestMediationId", + "groupName": [], + "type": "primitive" + }, + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + } + ], + "queryParameters": [], + "headers": [], + "generatedRequestName": "GrantMediationRequestRequest", + "response": { + "description": "", + "schema": { + "generatedName": "GrantMediationRequestResponse", + "schema": "MediationGrant", + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "reference" + }, + "fullExamples": [], + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "json" + }, + "errors": {}, + "server": [], + "authed": true, + "method": "POST", + "path": "/mediation/requests/{mediation_id}/grant", + "examples": [ + { + "pathParameters": [ + { + "name": "mediation_id", + "value": { "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "value": "mediation_id", "type": "string" }, "type": "primitive" - }, - "presentation_proposal": { - "properties": { - "indy": { - "properties": { - "name": { - "value": { - "value": "Proof request", - "type": "string" - }, - "type": "primitive" - }, - "nonce": { - "value": { - "value": "1", - "type": "string" - }, - "type": "primitive" - }, - "requested_attributes": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "properties": { - "name": { - "value": { - "value": "favouriteDrink", - "type": "string" - }, - "type": "primitive" - }, - "names": { - "value": [ - { - "value": { - "value": "age", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "age", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "restrictions": { - "value": [ - { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - } - } - ], - "type": "map" - }, - { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - } - } - ], - "type": "map" - } - ], - "type": "array" - } - }, - "type": "object" - } - } - ], - "type": "map" - }, - "requested_predicates": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "properties": { - "name": { - "value": { - "value": "index", - "type": "string" - }, - "type": "primitive" - }, - "p_type": { - "value": ">=", - "type": "enum" - }, - "p_value": { - "value": { - "value": 0, - "type": "int" - }, - "type": "primitive" - }, - "restrictions": { - "value": [ - { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - } - } - ], - "type": "map" - }, - { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - } - } - ], - "type": "map" - } - ], - "type": "array" - } - }, - "type": "object" - } - } - ], - "type": "map" + } + } + ], + "queryParameters": [], + "headers": [], + "response": { + "value": { + "properties": { + "@id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "@type": { + "value": { + "value": "https://didcomm.org/my-family/1.0/my-message-type", + "type": "string" + }, + "type": "primitive" + }, + "endpoint": { + "value": { + "value": "http://192.168.56.102:8020/", + "type": "string" + }, + "type": "primitive" + }, + "routing_keys": { + "value": [ + { + "value": { + "value": "routing_keys", + "type": "string" }, - "version": { - "value": { - "value": "1.0", - "type": "string" - }, - "type": "primitive" - } + "type": "primitive" }, - "type": "object" - } + { + "value": { + "value": "routing_keys", + "type": "string" + }, + "type": "primitive" + } + ], + "type": "array" + } + }, + "type": "object" + }, + "type": "withoutStreaming" + }, + "codeSamples": [], + "type": "full" + } + ], + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + }, + { + "summary": "Update keylist for a connection", + "audiences": [], + "operationId": "update_keylist_for_conn_id", + "tags": [ + "mediation" + ], + "pathParameters": [ + { + "description": "Connection identifier", + "name": "conn_id", + "schema": { + "schema": { + "type": "string" + }, + "generatedName": "UpdateKeylistForConnIdRequestConnId", + "groupName": [], + "type": "primitive" + }, + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + } + ], + "queryParameters": [], + "headers": [], + "generatedRequestName": "UpdateKeylistForConnIdRequest", + "request": { + "schema": { + "generatedName": "UpdateKeylistForConnIdRequest", + "schema": "MediationIdMatchInfo", + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "reference" + }, + "contentType": "application/json", + "fullExamples": [], + "additionalProperties": false, + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "json" + }, + "response": { + "description": "", + "schema": { + "generatedName": "UpdateKeylistForConnIdResponse", + "schema": "KeylistUpdate", + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "reference" + }, + "fullExamples": [], + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "json" + }, + "errors": {}, + "server": [], + "authed": true, + "method": "POST", + "path": "/mediation/update-keylist/{conn_id}", + "examples": [ + { + "pathParameters": [ + { + "name": "conn_id", + "value": { + "value": { + "value": "conn_id", + "type": "string" }, - "type": "object" - }, - "trace": { + "type": "primitive" + } + } + ], + "queryParameters": [], + "headers": [], + "request": { + "properties": { + "mediation_id": { "value": { - "value": false, - "type": "boolean" + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" }, "type": "primitive" } @@ -47262,561 +18817,709 @@ "response": { "value": { "properties": { - "auto_present": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - }, - "auto_verify": { - "value": { - "value": true, - "type": "boolean" - }, - "type": "primitive" - }, - "connection_id": { + "@id": { "value": { "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "type": "string" }, "type": "primitive" }, - "created_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "error_msg": { + "@type": { "value": { - "value": "Invalid structure", + "value": "https://didcomm.org/my-family/1.0/my-message-type", "type": "string" }, "type": "primitive" }, - "initiator": { - "value": "self", - "type": "enum" - }, - "pres": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" - }, - "formats": { - "value": [ - { - "properties": { - "attach_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "format": { - "value": { - "value": "dif/presentation-exchange/submission@v1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "presentations~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } + "updates": { + "value": [ + { + "properties": { + "action": { + "value": "add", + "type": "enum" + }, + "recipient_key": { + "value": { + "value": "did:key:z6MkpTHR8VNsBxYAAWHut2Geadd9jSwuBV8xRoAnwWsdvktH", + "type": "string" }, - "type": "object" + "type": "primitive" } - ], - "type": "array" - } - }, - "type": "object" - }, - "pres_ex_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "pres_proposal": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" }, - "type": "primitive" - }, - "formats": { - "value": [ - { - "properties": { - "attach_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "format": { - "value": { - "value": "dif/presentation-exchange/submission@v1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" + "type": "object" }, - "proposals~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } + { + "properties": { + "action": { + "value": "add", + "type": "enum" + }, + "recipient_key": { + "value": { + "value": "did:key:z6MkpTHR8VNsBxYAAWHut2Geadd9jSwuBV8xRoAnwWsdvktH", + "type": "string" }, - "type": "object" + "type": "primitive" } - ], - "type": "array" + }, + "type": "object" } + ], + "type": "array" + } + }, + "type": "object" + }, + "type": "withoutStreaming" + }, + "codeSamples": [], + "type": "full" + } + ], + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + }, + { + "summary": "Set default mediator", + "audiences": [], + "operationId": "set_default_mediator", + "tags": [ + "mediation" + ], + "pathParameters": [ + { + "description": "Mediation record identifier", + "name": "mediation_id", + "schema": { + "schema": { + "format": "uuid", + "type": "string" + }, + "generatedName": "SetDefaultMediatorRequestMediationId", + "groupName": [], + "type": "primitive" + }, + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + } + ], + "queryParameters": [], + "headers": [], + "generatedRequestName": "SetDefaultMediatorRequest", + "response": { + "description": "", + "schema": { + "generatedName": "SetDefaultMediatorResponse", + "schema": "MediationRecord", + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "reference" + }, + "fullExamples": [], + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "json" + }, + "errors": {}, + "server": [], + "authed": true, + "method": "PUT", + "path": "/mediation/{mediation_id}/default-mediator", + "examples": [ + { + "pathParameters": [ + { + "name": "mediation_id", + "value": { + "value": { + "value": "mediation_id", + "type": "string" + }, + "type": "primitive" + } + } + ], + "queryParameters": [], + "headers": [], + "response": { + "value": { + "properties": { + "connection_id": { + "value": { + "value": "connection_id", + "type": "string" }, - "type": "object" + "type": "primitive" }, - "pres_request": { - "properties": { - "@id": { + "created_at": { + "value": { + "value": "2021-12-31 23:59:59+00:00", + "type": "string" + }, + "type": "primitive" + }, + "endpoint": { + "value": { + "value": "endpoint", + "type": "string" + }, + "type": "primitive" + }, + "mediation_id": { + "value": { + "value": "mediation_id", + "type": "string" + }, + "type": "primitive" + }, + "mediator_terms": { + "value": [ + { "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "value": "mediator_terms", "type": "string" }, "type": "primitive" }, - "@type": { + { "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", + "value": "mediator_terms", "type": "string" }, "type": "primitive" - }, - "comment": { + } + ], + "type": "array" + }, + "recipient_terms": { + "value": [ + { "value": { - "value": "comment", + "value": "recipient_terms", "type": "string" }, "type": "primitive" }, - "formats": { - "value": [ - { - "properties": { - "attach_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "format": { - "value": { - "value": "dif/presentation-exchange/submission@v1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "request_presentations~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" + { + "value": { + "value": "recipient_terms", + "type": "string" + }, + "type": "primitive" + } + ], + "type": "array" + }, + "role": { + "value": { + "value": "role", + "type": "string" + }, + "type": "primitive" + }, + "routing_keys": { + "value": [ + { + "value": { + "value": "did:key:z6MkpTHR8VNsBxYAAWHut2Geadd9jSwuBV8xRoAnwWsdvktH", + "type": "string" + }, + "type": "primitive" }, - "will_confirm": { + { "value": { - "value": true, - "type": "boolean" + "value": "did:key:z6MkpTHR8VNsBxYAAWHut2Geadd9jSwuBV8xRoAnwWsdvktH", + "type": "string" }, "type": "primitive" } + ], + "type": "array" + }, + "state": { + "value": { + "value": "active", + "type": "string" + }, + "type": "primitive" + }, + "updated_at": { + "value": { + "value": "2021-12-31 23:59:59+00:00", + "type": "string" + }, + "type": "primitive" + } + }, + "type": "object" + }, + "type": "withoutStreaming" + }, + "codeSamples": [], + "type": "full" + } + ], + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + }, + { + "summary": "Create a subwallet", + "audiences": [], + "operationId": "create_wallet", + "tags": [ + "multitenancy" + ], + "pathParameters": [], + "queryParameters": [], + "headers": [], + "generatedRequestName": "CreateWalletRequest", + "request": { + "schema": { + "generatedName": "CreateWalletRequest", + "schema": "CreateWalletRequest", + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "reference" + }, + "contentType": "application/json", + "fullExamples": [], + "additionalProperties": false, + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "json" + }, + "response": { + "description": "", + "schema": { + "generatedName": "CreateWalletResponse", + "schema": "CreateWalletResponse", + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "reference" + }, + "fullExamples": [], + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "json" + }, + "errors": {}, + "server": [], + "authed": true, + "method": "POST", + "path": "/multitenancy/wallet", + "examples": [ + { + "pathParameters": [], + "queryParameters": [], + "headers": [], + "request": { + "properties": { + "image_url": { + "value": { + "value": "https://aries.ca/images/sample.png", + "type": "string" + }, + "type": "primitive" + }, + "key_management_mode": { + "value": { + "value": "managed", + "type": "string" + }, + "type": "literal" + }, + "label": { + "value": { + "value": "Alice", + "type": "string" + }, + "type": "primitive" + }, + "wallet_dispatch_type": { + "value": "default", + "type": "enum" + }, + "wallet_key": { + "value": { + "value": "MySecretKey123", + "type": "string" + }, + "type": "primitive" + }, + "wallet_key_derivation": { + "value": "RAW", + "type": "enum" + }, + "wallet_name": { + "value": { + "value": "MyNewWallet", + "type": "string" + }, + "type": "primitive" + }, + "wallet_type": { + "value": "indy", + "type": "enum" + }, + "wallet_webhook_urls": { + "value": [ + { + "value": { + "value": "http://localhost:8022/webhooks", + "type": "string" + }, + "type": "primitive" + }, + { + "value": { + "value": "http://localhost:8022/webhooks", + "type": "string" + }, + "type": "primitive" + } + ], + "type": "array" + } + }, + "type": "object" + }, + "response": { + "value": { + "properties": { + "created_at": { + "value": { + "value": "2021-12-31 23:59:59+00:00", + "type": "string" + }, + "type": "primitive" + }, + "key_management_mode": { + "value": "managed", + "type": "enum" + }, + "state": { + "value": { + "value": "active", + "type": "string" + }, + "type": "primitive" + }, + "token": { + "value": { + "value": "eyJhbGciOiJFZERTQSJ9.eyJhIjogIjAifQ.dBjftJeZ4CVP-mB92K27uhbUJU1p1r_wW1gFWFOEjXk", + "type": "string" + }, + "type": "primitive" + }, + "updated_at": { + "value": { + "value": "2021-12-31 23:59:59+00:00", + "type": "string" + }, + "type": "primitive" + }, + "wallet_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + } + }, + "type": "object" + }, + "type": "withoutStreaming" + }, + "codeSamples": [], + "type": "full" + } + ], + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + }, + { + "summary": "Get a single subwallet", + "audiences": [], + "operationId": "get_wallet_record", + "tags": [ + "multitenancy" + ], + "pathParameters": [ + { + "description": "Subwallet identifier", + "name": "wallet_id", + "schema": { + "schema": { + "type": "string" + }, + "generatedName": "GetWalletRecordRequestWalletId", + "groupName": [], + "type": "primitive" + }, + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + } + ], + "queryParameters": [], + "headers": [], + "generatedRequestName": "GetWalletRecordRequest", + "response": { + "description": "", + "schema": { + "generatedName": "GetWalletRecordResponse", + "schema": "WalletRecord", + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "reference" + }, + "fullExamples": [], + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "json" + }, + "errors": {}, + "server": [], + "authed": true, + "method": "GET", + "path": "/multitenancy/wallet/{wallet_id}", + "examples": [ + { + "pathParameters": [ + { + "name": "wallet_id", + "value": { + "value": { + "value": "wallet_id", + "type": "string" + }, + "type": "primitive" + } + } + ], + "queryParameters": [], + "headers": [], + "response": { + "value": { + "properties": { + "created_at": { + "value": { + "value": "2021-12-31 23:59:59+00:00", + "type": "string" }, - "type": "object" + "type": "primitive" }, - "role": { - "value": "prover", + "key_management_mode": { + "value": "managed", "type": "enum" }, "state": { - "value": "proposal-sent", - "type": "enum" + "value": { + "value": "active", + "type": "string" + }, + "type": "primitive" }, - "thread_id": { + "updated_at": { + "value": { + "value": "2021-12-31 23:59:59+00:00", + "type": "string" + }, + "type": "primitive" + }, + "wallet_id": { "value": { "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "type": "string" }, "type": "primitive" + } + }, + "type": "object" + }, + "type": "withoutStreaming" + }, + "codeSamples": [], + "type": "full" + } + ], + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + }, + { + "summary": "Update a subwallet", + "audiences": [], + "operationId": "update_wallet", + "tags": [ + "multitenancy" + ], + "pathParameters": [ + { + "description": "Subwallet identifier", + "name": "wallet_id", + "schema": { + "schema": { + "type": "string" + }, + "generatedName": "UpdateWalletRequestWalletId", + "groupName": [], + "type": "primitive" + }, + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + } + ], + "queryParameters": [], + "headers": [], + "generatedRequestName": "UpdateWalletRequest", + "request": { + "schema": { + "generatedName": "UpdateWalletRequest", + "schema": "UpdateWalletRequest", + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "reference" + }, + "contentType": "application/json", + "fullExamples": [], + "additionalProperties": false, + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "json" + }, + "response": { + "description": "", + "schema": { + "generatedName": "UpdateWalletResponse", + "schema": "WalletRecord", + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "reference" + }, + "fullExamples": [], + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "json" + }, + "errors": {}, + "server": [], + "authed": true, + "method": "PUT", + "path": "/multitenancy/wallet/{wallet_id}", + "examples": [ + { + "pathParameters": [ + { + "name": "wallet_id", + "value": { + "value": { + "value": "wallet_id", + "type": "string" }, - "trace": { + "type": "primitive" + } + } + ], + "queryParameters": [], + "headers": [], + "request": { + "properties": { + "image_url": { + "value": { + "value": "https://aries.ca/images/sample.png", + "type": "string" + }, + "type": "primitive" + }, + "label": { + "value": { + "value": "Alice", + "type": "string" + }, + "type": "primitive" + }, + "wallet_dispatch_type": { + "value": "default", + "type": "enum" + }, + "wallet_webhook_urls": { + "value": [ + { + "value": { + "value": "http://localhost:8022/webhooks", + "type": "string" + }, + "type": "primitive" + }, + { + "value": { + "value": "http://localhost:8022/webhooks", + "type": "string" + }, + "type": "primitive" + } + ], + "type": "array" + } + }, + "type": "object" + }, + "response": { + "value": { + "properties": { + "created_at": { "value": { - "value": true, - "type": "boolean" + "value": "2021-12-31 23:59:59+00:00", + "type": "string" + }, + "type": "primitive" + }, + "key_management_mode": { + "value": "managed", + "type": "enum" + }, + "state": { + "value": { + "value": "active", + "type": "string" }, "type": "primitive" }, @@ -47827,25 +19530,418 @@ }, "type": "primitive" }, - "verified": { - "value": "true", - "type": "enum" + "wallet_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + } + }, + "type": "object" + }, + "type": "withoutStreaming" + }, + "codeSamples": [], + "type": "full" + } + ], + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + }, + { + "summary": "Remove a subwallet", + "audiences": [], + "operationId": "delete_wallet", + "tags": [ + "multitenancy" + ], + "pathParameters": [ + { + "description": "Subwallet identifier", + "name": "wallet_id", + "schema": { + "schema": { + "type": "string" + }, + "generatedName": "DeleteWalletRequestWalletId", + "groupName": [], + "type": "primitive" + }, + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + } + ], + "queryParameters": [], + "headers": [], + "generatedRequestName": "DeleteWalletRequest", + "request": { + "schema": { + "generatedName": "DeleteWalletRequest", + "schema": "RemoveWalletRequest", + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "reference" + }, + "contentType": "application/json", + "fullExamples": [], + "additionalProperties": false, + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "json" + }, + "response": { + "description": "", + "schema": { + "generatedName": "DeleteWalletResponse", + "schema": "MultitenantModuleResponse", + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "reference" + }, + "fullExamples": [], + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "json" + }, + "errors": {}, + "server": [], + "authed": true, + "method": "POST", + "path": "/multitenancy/wallet/{wallet_id}/remove", + "examples": [ + { + "pathParameters": [ + { + "name": "wallet_id", + "value": { + "value": { + "value": "wallet_id", + "type": "string" }, - "verified_msgs": { + "type": "primitive" + } + } + ], + "queryParameters": [], + "headers": [], + "request": { + "properties": { + "wallet_key": { + "value": { + "value": "MySecretKey123", + "type": "string" + }, + "type": "primitive" + } + }, + "type": "object" + }, + "response": { + "value": { + "value": [ + { + "key": { + "value": "key", + "type": "string" + }, + "value": { + "value": { + "value": { + "value": "value", + "type": "string" + }, + "type": "primitive" + }, + "type": "unknown" + } + } + ], + "type": "map" + }, + "type": "withoutStreaming" + }, + "codeSamples": [], + "type": "full" + } + ], + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + }, + { + "summary": "Get auth token for a subwallet", + "audiences": [], + "operationId": "get_auth_token", + "tags": [ + "multitenancy" + ], + "pathParameters": [ + { + "name": "wallet_id", + "schema": { + "schema": { + "type": "string" + }, + "generatedName": "GetAuthTokenRequestWalletId", + "groupName": [], + "type": "primitive" + }, + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + } + ], + "queryParameters": [], + "headers": [], + "generatedRequestName": "GetAuthTokenRequest", + "request": { + "schema": { + "generatedName": "GetAuthTokenRequest", + "schema": "CreateWalletTokenRequest", + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "reference" + }, + "contentType": "application/json", + "fullExamples": [], + "additionalProperties": false, + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "json" + }, + "response": { + "description": "", + "schema": { + "generatedName": "GetAuthTokenResponse", + "schema": "CreateWalletTokenResponse", + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "reference" + }, + "fullExamples": [], + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "json" + }, + "errors": {}, + "server": [], + "authed": true, + "method": "POST", + "path": "/multitenancy/wallet/{wallet_id}/token", + "examples": [ + { + "pathParameters": [ + { + "name": "wallet_id", + "value": { + "value": { + "value": "wallet_id", + "type": "string" + }, + "type": "primitive" + } + } + ], + "queryParameters": [], + "headers": [], + "request": { + "properties": { + "wallet_key": { + "value": { + "value": "MySecretKey123", + "type": "string" + }, + "type": "primitive" + } + }, + "type": "object" + }, + "response": { + "value": { + "properties": { + "token": { + "value": { + "value": "eyJhbGciOiJFZERTQSJ9.eyJhIjogIjAifQ.dBjftJeZ4CVP-mB92K27uhbUJU1p1r_wW1gFWFOEjXk", + "type": "string" + }, + "type": "primitive" + } + }, + "type": "object" + }, + "type": "withoutStreaming" + }, + "codeSamples": [], + "type": "full" + } + ], + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + }, + { + "summary": "Query subwallets", + "audiences": [], + "operationId": "get_matching_wallets", + "tags": [ + "multitenancy" + ], + "pathParameters": [], + "queryParameters": [ + { + "description": "Wallet name", + "name": "wallet_name", + "schema": { + "generatedName": "GetMatchingWalletsRequestWalletName", + "value": { + "schema": { + "type": "string" + }, + "generatedName": "GetMatchingWalletsRequestWalletName", + "groupName": [], + "type": "primitive" + }, + "groupName": [], + "type": "nullable" + }, + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + } + ], + "headers": [], + "generatedRequestName": "GetMatchingWalletsRequest", + "response": { + "description": "", + "schema": { + "generatedName": "GetMatchingWalletsResponse", + "schema": "WalletList", + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "reference" + }, + "fullExamples": [], + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "json" + }, + "errors": {}, + "server": [], + "authed": true, + "method": "GET", + "path": "/multitenancy/wallets", + "examples": [ + { + "pathParameters": [], + "queryParameters": [], + "headers": [], + "response": { + "value": { + "properties": { + "results": { "value": [ { - "value": { - "value": "verified_msgs", - "type": "string" + "properties": { + "created_at": { + "value": { + "value": "2021-12-31 23:59:59+00:00", + "type": "string" + }, + "type": "primitive" + }, + "key_management_mode": { + "value": "managed", + "type": "enum" + }, + "state": { + "value": { + "value": "active", + "type": "string" + }, + "type": "primitive" + }, + "updated_at": { + "value": { + "value": "2021-12-31 23:59:59+00:00", + "type": "string" + }, + "type": "primitive" + }, + "wallet_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + } }, - "type": "primitive" + "type": "object" }, { - "value": { - "value": "verified_msgs", - "type": "string" + "properties": { + "created_at": { + "value": { + "value": "2021-12-31 23:59:59+00:00", + "type": "string" + }, + "type": "primitive" + }, + "key_management_mode": { + "value": "managed", + "type": "enum" + }, + "state": { + "value": { + "value": "active", + "type": "string" + }, + "type": "primitive" + }, + "updated_at": { + "value": { + "value": "2021-12-31 23:59:59+00:00", + "type": "string" + }, + "type": "primitive" + }, + "wallet_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + } }, - "type": "primitive" + "type": "object" } ], "type": "array" @@ -47865,20 +19961,63 @@ } }, { - "summary": "Sends a free presentation request not bound to any proposal", + "summary": "Create a new connection invitation", "audiences": [], - "operationId": "send_free_presentation_request", + "operationId": "create_oob_invitation", "tags": [ - "present-proof v2.0" + "out-of-band" ], "pathParameters": [], - "queryParameters": [], + "queryParameters": [ + { + "description": "Auto-accept connection (defaults to configuration)", + "name": "auto_accept", + "schema": { + "generatedName": "CreateOobInvitationRequestAutoAccept", + "value": { + "schema": { + "type": "boolean" + }, + "generatedName": "CreateOobInvitationRequestAutoAccept", + "groupName": [], + "type": "primitive" + }, + "groupName": [], + "type": "nullable" + }, + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + }, + { + "description": "Create invitation for multiple use (default false)", + "name": "multi_use", + "schema": { + "generatedName": "CreateOobInvitationRequestMultiUse", + "value": { + "schema": { + "type": "boolean" + }, + "generatedName": "CreateOobInvitationRequestMultiUse", + "groupName": [], + "type": "primitive" + }, + "groupName": [], + "type": "nullable" + }, + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + } + ], "headers": [], - "generatedRequestName": "SendFreePresentationRequestRequest", + "generatedRequestName": "CreateOobInvitationRequest", "request": { "schema": { - "generatedName": "SendFreePresentationRequestRequest", - "schema": "V20PresSendRequestRequest", + "generatedName": "CreateOobInvitationRequestBody", + "schema": "InvitationCreateRequest", "source": { "file": "../openapi.yml", "type": "openapi" @@ -47897,8 +20036,8 @@ "response": { "description": "", "schema": { - "generatedName": "SendFreePresentationRequestResponse", - "schema": "V20PresExRecord", + "generatedName": "CreateOobInvitationResponse", + "schema": "InvitationRecord", "source": { "file": "../openapi.yml", "type": "openapi" @@ -47916,7 +20055,7 @@ "server": [], "authed": true, "method": "POST", - "path": "/present-proof-2.0/send-request", + "path": "/out-of-band/create-invitation", "examples": [ { "pathParameters": [], @@ -47924,776 +20063,160 @@ "headers": [], "request": { "properties": { - "auto_verify": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" + "accept": { + "value": [ + { + "value": { + "value": "didcomm/aip1", + "type": "string" + }, + "type": "primitive" + }, + { + "value": { + "value": "didcomm/aip2;env=rfc19", + "type": "string" + }, + "type": "primitive" + } + ], + "type": "array" }, - "connection_id": { + "alias": { "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "value": "Barry", "type": "string" }, "type": "primitive" }, - "presentation_request": { - "properties": { - "indy": { + "attachments": { + "value": [ + { "properties": { - "name": { + "id": { "value": { - "value": "Proof request", + "value": "attachment-0", "type": "string" }, "type": "primitive" }, - "nonce": { + "type": { + "value": "present-proof", + "type": "enum" + } + }, + "type": "object" + }, + { + "properties": { + "id": { "value": { - "value": "1", + "value": "attachment-0", "type": "string" }, "type": "primitive" }, - "requested_attributes": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "properties": { - "name": { - "value": { - "value": "favouriteDrink", - "type": "string" - }, - "type": "primitive" - }, - "names": { - "value": [ - { - "value": { - "value": "age", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "age", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "restrictions": { - "value": [ - { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - } - } - ], - "type": "map" - }, - { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - } - } - ], - "type": "map" - } - ], - "type": "array" - } - }, - "type": "object" - } - } - ], - "type": "map" - }, - "requested_predicates": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "properties": { - "name": { - "value": { - "value": "index", - "type": "string" - }, - "type": "primitive" - }, - "p_type": { - "value": ">=", - "type": "enum" - }, - "p_value": { - "value": { - "value": 0, - "type": "int" - }, - "type": "primitive" - }, - "restrictions": { - "value": [ - { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - } - } - ], - "type": "map" - }, - { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - } - } - ], - "type": "map" - } - ], - "type": "array" - } - }, - "type": "object" - } - } - ], - "type": "map" - }, - "version": { - "value": { - "value": "1.0", - "type": "string" - }, - "type": "primitive" + "type": { + "value": "present-proof", + "type": "enum" } }, "type": "object" } - }, - "type": "object" - }, - "trace": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "response": { - "value": { - "properties": { - "auto_present": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - }, - "auto_verify": { - "value": { - "value": true, - "type": "boolean" - }, - "type": "primitive" - }, - "connection_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "created_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "error_msg": { - "value": { - "value": "Invalid structure", - "type": "string" - }, - "type": "primitive" - }, - "initiator": { - "value": "self", - "type": "enum" - }, - "pres": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" - }, - "formats": { - "value": [ - { - "properties": { - "attach_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "format": { - "value": { - "value": "dif/presentation-exchange/submission@v1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "presentations~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } + ], + "type": "array" + }, + "handshake_protocols": { + "value": [ + { + "value": { + "value": "did:sov:BzCbsNYhMrjHiqZDTUASHg;spec/didexchange/1.0", + "type": "string" + }, + "type": "primitive" }, - "type": "object" + { + "value": { + "value": "did:sov:BzCbsNYhMrjHiqZDTUASHg;spec/didexchange/1.0", + "type": "string" + }, + "type": "primitive" + } + ], + "type": "array" + }, + "mediation_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" }, - "pres_ex_id": { + "type": "primitive" + }, + "my_label": { + "value": { + "value": "Invitation to Barry", + "type": "string" + }, + "type": "primitive" + }, + "protocol_version": { + "value": { + "value": "1.1", + "type": "string" + }, + "type": "primitive" + }, + "use_public_did": { + "value": { + "value": false, + "type": "boolean" + }, + "type": "primitive" + } + }, + "type": "object" + }, + "response": { + "value": { + "properties": { + "created_at": { + "value": { + "value": "2021-12-31 23:59:59+00:00", + "type": "string" + }, + "type": "primitive" + }, + "invi_msg_id": { "value": { "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "type": "string" }, "type": "primitive" }, - "pres_proposal": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" - }, - "formats": { - "value": [ - { - "properties": { - "attach_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "format": { - "value": { - "value": "dif/presentation-exchange/submission@v1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "proposals~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } + "invitation_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" }, - "type": "object" + "type": "primitive" }, - "pres_request": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" - }, - "formats": { - "value": [ - { - "properties": { - "attach_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "format": { - "value": { - "value": "dif/presentation-exchange/submission@v1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "request_presentations~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "will_confirm": { - "value": { - "value": true, - "type": "boolean" - }, - "type": "primitive" - } + "invitation_url": { + "value": { + "value": "https://example.com/endpoint?c_i=eyJAdHlwZSI6ICIuLi4iLCAiLi4uIjogIi4uLiJ9XX0=", + "type": "string" }, - "type": "object" + "type": "primitive" }, - "role": { - "value": "prover", - "type": "enum" + "oob_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" }, "state": { - "value": "proposal-sent", - "type": "enum" - }, - "thread_id": { "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "value": "await_response", "type": "string" }, "type": "primitive" @@ -48711,59 +20234,122 @@ "type": "string" }, "type": "primitive" - }, - "verified": { - "value": "true", - "type": "enum" - }, - "verified_msgs": { - "value": [ - { - "value": { - "value": "verified_msgs", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "verified_msgs", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" } }, "type": "object" }, - "type": "withoutStreaming" + "type": "withoutStreaming" + }, + "codeSamples": [], + "type": "full" + } + ], + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + }, + { + "summary": "Receive a new connection invitation", + "audiences": [], + "operationId": "receive_oob_invitation", + "tags": [ + "out-of-band" + ], + "pathParameters": [], + "queryParameters": [ + { + "description": "Alias for connection", + "name": "alias", + "schema": { + "generatedName": "ReceiveOobInvitationRequestAlias", + "value": { + "schema": { + "type": "string" + }, + "generatedName": "ReceiveOobInvitationRequestAlias", + "groupName": [], + "type": "primitive" + }, + "groupName": [], + "type": "nullable" + }, + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + }, + { + "description": "Auto-accept connection (defaults to configuration)", + "name": "auto_accept", + "schema": { + "generatedName": "ReceiveOobInvitationRequestAutoAccept", + "value": { + "schema": { + "type": "boolean" + }, + "generatedName": "ReceiveOobInvitationRequestAutoAccept", + "groupName": [], + "type": "primitive" + }, + "groupName": [], + "type": "nullable" + }, + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + }, + { + "description": "Identifier for active mediation record to be used", + "name": "mediation_id", + "schema": { + "generatedName": "ReceiveOobInvitationRequestMediationId", + "value": { + "schema": { + "pattern": "[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-4[a-fA-F0-9]{3}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}", + "type": "string" + }, + "generatedName": "ReceiveOobInvitationRequestMediationId", + "groupName": [], + "type": "primitive" + }, + "groupName": [], + "type": "nullable" + }, + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + }, + { + "description": "Use an existing connection, if possible", + "name": "use_existing_connection", + "schema": { + "generatedName": "ReceiveOobInvitationRequestUseExistingConnection", + "value": { + "schema": { + "type": "boolean" + }, + "generatedName": "ReceiveOobInvitationRequestUseExistingConnection", + "groupName": [], + "type": "primitive" + }, + "groupName": [], + "type": "nullable" }, - "codeSamples": [], - "type": "full" + "source": { + "file": "../openapi.yml", + "type": "openapi" + } } ], - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - }, - { - "summary": "Creates a presentation request not bound to any proposal or connection", - "audiences": [], - "operationId": "create_free_proof_request", - "tags": [ - "present-proof v1.0" - ], - "pathParameters": [], - "queryParameters": [], "headers": [], - "generatedRequestName": "CreateFreeProofRequestRequest", + "generatedRequestName": "ReceiveOobInvitationRequest", "request": { "schema": { - "generatedName": "CreateFreeProofRequestRequest", - "schema": "V10PresentationCreateRequestRequest", + "generatedName": "ReceiveOobInvitationRequestBody", + "schema": "InvitationMessage", "source": { "file": "../openapi.yml", "type": "openapi" @@ -48782,8 +20368,8 @@ "response": { "description": "", "schema": { - "generatedName": "CreateFreeProofRequestResponse", - "schema": "V10PresentationExchange", + "generatedName": "ReceiveOobInvitationResponse", + "schema": "OobRecord", "source": { "file": "../openapi.yml", "type": "openapi" @@ -48801,7 +20387,7 @@ "server": [], "authed": true, "method": "POST", - "path": "/present-proof/create-request", + "path": "/out-of-band/receive-invitation", "examples": [ { "pathParameters": [], @@ -48809,1164 +20395,531 @@ "headers": [], "request": { "properties": { - "auto_verify": { + "@id": { "value": { - "value": false, - "type": "boolean" + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" }, "type": "primitive" }, - "comment": { + "@type": { "value": { - "value": "comment", + "value": "https://didcomm.org/my-family/1.0/my-message-type", "type": "string" }, "type": "primitive" }, - "proof_request": { - "properties": { - "name": { + "accept": { + "value": [ + { "value": { - "value": "Proof request", + "value": "didcomm/aip1", "type": "string" }, "type": "primitive" }, - "nonce": { + { "value": { - "value": "1", + "value": "didcomm/aip2;env=rfc19", + "type": "string" + }, + "type": "primitive" + } + ], + "type": "array" + }, + "handshake_protocols": { + "value": [ + { + "value": { + "value": "did:sov:BzCbsNYhMrjHiqZDTUASHg;spec/didexchange/1.0", "type": "string" }, "type": "primitive" }, - "requested_attributes": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "properties": { - "name": { - "value": { - "value": "favouriteDrink", - "type": "string" - }, - "type": "primitive" - }, - "names": { - "value": [ - { - "value": { - "value": "age", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "age", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "restrictions": { - "value": [ - { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - } - } - ], - "type": "map" - }, - { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - } - } - ], - "type": "map" - } - ], - "type": "array" - } - }, - "type": "object" - } - } - ], - "type": "map" - }, - "requested_predicates": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "properties": { - "name": { - "value": { - "value": "index", - "type": "string" - }, - "type": "primitive" - }, - "p_type": { - "value": ">=", - "type": "enum" - }, - "p_value": { - "value": { - "value": 0, - "type": "int" - }, - "type": "primitive" - }, - "restrictions": { - "value": [ - { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - } - } - ], - "type": "map" - }, - { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - } - } - ], - "type": "map" - } - ], - "type": "array" - } - }, - "type": "object" - } - } - ], - "type": "map" - }, - "version": { + { "value": { - "value": "1.0", + "value": "did:sov:BzCbsNYhMrjHiqZDTUASHg;spec/didexchange/1.0", "type": "string" }, "type": "primitive" } - }, - "type": "object" + ], + "type": "array" }, - "trace": { + "imageUrl": { "value": { - "value": false, - "type": "boolean" + "value": "http://192.168.56.101/img/logo.jpg", + "type": "string" }, "type": "primitive" - } - }, - "type": "object" - }, - "response": { - "value": { - "properties": { - "auto_present": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - }, - "auto_verify": { - "value": { - "value": true, - "type": "boolean" - }, - "type": "primitive" - }, - "connection_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "created_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "error_msg": { - "value": { - "value": "Invalid structure", - "type": "string" - }, - "type": "primitive" - }, - "initiator": { - "value": "self", - "type": "enum" - }, - "presentation": { - "properties": { - "identifiers": { - "value": [ - { - "properties": { - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "schema_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "proof": { - "properties": { - "proofs": { - "value": [ - { - "properties": {}, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "requested_proof": { - "properties": { - "predicates": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "properties": {}, - "type": "object" - } - } - ], - "type": "map" - } - }, - "type": "object" - } - }, - "type": "object" - }, - "presentation_exchange_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" + }, + "label": { + "value": { + "value": "Bob", + "type": "string" }, - "presentation_proposal_dict": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" + "type": "primitive" + }, + "requests~attach": { + "value": [ + { + "properties": { + "@id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" }, - "type": "primitive" - }, - "presentation_proposal": { - "properties": { - "@type": { - "value": { - "value": "did:sov:BzCbsNYhMrjHiqZDTUASHg;spec/present-proof/1.0/presentation-preview", - "type": "string" - }, - "type": "primitive" + "byte_count": { + "value": { + "value": 1234, + "type": "int" }, - "attributes": { - "value": [ - { - "properties": { - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "referent": { - "value": { - "value": "0", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" + "type": "primitive" + }, + "data": { + "properties": { + "base64": { + "value": { + "value": "ey4uLn0=", + "type": "string" }, - { - "properties": { - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "referent": { - "value": { - "value": "0", - "type": "string" - }, - "type": "primitive" + "type": "primitive" + }, + "json": { + "value": [ + { + "key": { + "value": "key", + "type": "string" }, "value": { "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "predicates": { - "value": [ - { - "properties": { - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "high_score", - "type": "string" - }, - "type": "primitive" - }, - "predicate": { - "value": ">=", - "type": "enum" - }, - "threshold": { - "value": { - "value": 0, - "type": "int" - }, - "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "high_score", - "type": "string" - }, - "type": "primitive" - }, - "predicate": { - "value": ">=", - "type": "enum" - }, - "threshold": { - "value": { - "value": 0, - "type": "int" + "value": { + "value": "value", + "type": "string" + }, + "type": "primitive" }, - "type": "primitive" + "type": "unknown" } + } + ], + "type": "map" + }, + "links": { + "value": [ + { + "value": { + "value": "https://link.to/data", + "type": "string" + }, + "type": "primitive" }, - "type": "object" - } - ], - "type": "array" - } + { + "value": { + "value": "https://link.to/data", + "type": "string" + }, + "type": "primitive" + } + ], + "type": "array" + }, + "sha256": { + "value": { + "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", + "type": "string" + }, + "type": "primitive" + } + }, + "type": "object" }, - "type": "object" - } - }, - "type": "object" - }, - "presentation_request": { - "properties": { - "name": { - "value": { - "value": "Proof request", - "type": "string" + "description": { + "value": { + "value": "view from doorway, facing east, with lights off", + "type": "string" + }, + "type": "primitive" }, - "type": "primitive" - }, - "non_revoked": { - "properties": { - "from": { - "value": { - "value": 1640995199, - "type": "int" - }, - "type": "primitive" + "filename": { + "value": { + "value": "IMG1092348.png", + "type": "string" }, - "to": { - "value": { - "value": 1640995199, - "type": "int" - }, - "type": "primitive" - } + "type": "primitive" }, - "type": "object" - }, - "nonce": { - "value": { - "value": "1", - "type": "string" + "lastmod_time": { + "value": { + "value": "2021-12-31 23:59:59+00:00", + "type": "string" + }, + "type": "primitive" }, - "type": "primitive" + "mime-type": { + "value": { + "value": "image/png", + "type": "string" + }, + "type": "primitive" + } }, - "requested_attributes": { - "value": [ - { - "key": { - "value": "key", - "type": "string" + "type": "object" + }, + { + "properties": { + "@id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "byte_count": { + "value": { + "value": 1234, + "type": "int" + }, + "type": "primitive" + }, + "data": { + "properties": { + "base64": { + "value": { + "value": "ey4uLn0=", + "type": "string" + }, + "type": "primitive" }, - "value": { - "properties": { - "name": { - "value": { - "value": "favouriteDrink", + "json": { + "value": [ + { + "key": { + "value": "key", "type": "string" }, - "type": "primitive" - }, - "names": { - "value": [ - { - "value": { - "value": "age", - "type": "string" - }, - "type": "primitive" - }, - { + "value": { + "value": { "value": { - "value": "age", + "value": "value", "type": "string" }, "type": "primitive" - } - ], - "type": "array" - }, - "restrictions": { - "value": [ - { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - } - } - ], - "type": "map" }, - { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - } - } - ], - "type": "map" - } - ], - "type": "array" + "type": "unknown" + } } - }, - "type": "object" - } - } - ], - "type": "map" - }, - "requested_predicates": { - "value": [ - { - "key": { - "value": "key", - "type": "string" + ], + "type": "map" }, - "value": { - "properties": { - "name": { + "links": { + "value": [ + { "value": { - "value": "index", + "value": "https://link.to/data", "type": "string" }, "type": "primitive" }, - "p_type": { - "value": ">=", - "type": "enum" - }, - "p_value": { + { "value": { - "value": 0, - "type": "int" + "value": "https://link.to/data", + "type": "string" }, "type": "primitive" - }, - "restrictions": { - "value": [ - { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - } - } - ], - "type": "map" - }, - { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - } - } - ], - "type": "map" - } - ], - "type": "array" } + ], + "type": "array" + }, + "sha256": { + "value": { + "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", + "type": "string" }, - "type": "object" + "type": "primitive" } - } - ], - "type": "map" - }, - "version": { - "value": { - "value": "1.0", - "type": "string" + }, + "type": "object" }, - "type": "primitive" - } - }, - "type": "object" - }, - "presentation_request_dict": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" + "description": { + "value": { + "value": "view from doorway, facing east, with lights off", + "type": "string" + }, + "type": "primitive" }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" + "filename": { + "value": { + "value": "IMG1092348.png", + "type": "string" + }, + "type": "primitive" }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" + "lastmod_time": { + "value": { + "value": "2021-12-31 23:59:59+00:00", + "type": "string" + }, + "type": "primitive" }, - "type": "primitive" + "mime-type": { + "value": { + "value": "image/png", + "type": "string" + }, + "type": "primitive" + } }, - "request_presentations~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" + "type": "object" + } + ], + "type": "array" + }, + "services": { + "value": [ + { + "value": [ + { + "key": { + "value": "did", + "type": "string" + }, + "value": { + "value": { + "value": { + "value": "WgWxqztrNooG92RXvxSTWv", + "type": "string" }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" + "type": "primitive" + }, + "type": "unknown" + } + }, + { + "key": { + "value": "id", + "type": "string" + }, + "value": { + "value": { + "value": { + "value": "string", + "type": "string" }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" + "type": "primitive" + }, + "type": "unknown" + } + }, + { + "key": { + "value": "recipientKeys", + "type": "string" + }, + "value": { + "value": { + "value": [ + { + "value": { + "value": "did:key:z6MkpTHR8VNsBxYAAWHut2Geadd9jSwuBV8xRoAnwWsdvktH", + "type": "string" }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" + "type": "primitive" + } + ], + "type": "array" + }, + "type": "unknown" + } + }, + { + "key": { + "value": "routingKeys", + "type": "string" + }, + "value": { + "value": { + "value": [ + { + "value": { + "value": "did:key:z6MkpTHR8VNsBxYAAWHut2Geadd9jSwuBV8xRoAnwWsdvktH", + "type": "string" }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" + "type": "primitive" + } + ], + "type": "array" + }, + "type": "unknown" + } + }, + { + "key": { + "value": "serviceEndpoint", + "type": "string" + }, + "value": { + "value": { + "value": { + "value": "http://192.168.56.101:8020", + "type": "string" }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" + "type": "primitive" + }, + "type": "unknown" + } + }, + { + "key": { + "value": "type", + "type": "string" + }, + "value": { + "value": { + "value": { + "value": "string", + "type": "string" }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } + "type": "primitive" }, - "type": "object" + "type": "unknown" } - ], - "type": "array" - } + } + ], + "type": "map" }, - "type": "object" - }, - "role": { - "value": "prover", - "type": "enum" - }, - "state": { + { + "value": [ + { + "key": { + "value": "key", + "type": "string" + }, + "value": { + "value": { + "value": { + "value": "value", + "type": "string" + }, + "type": "primitive" + }, + "type": "unknown" + } + } + ], + "type": "map" + } + ], + "type": "array" + } + }, + "type": "object" + }, + "response": { + "value": { + "properties": { + "attach_thread_id": { "value": { - "value": "verified", + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "type": "string" }, "type": "primitive" }, - "thread_id": { + "connection_id": { "value": { "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "type": "string" }, "type": "primitive" }, - "trace": { + "created_at": { "value": { - "value": true, - "type": "boolean" + "value": "2021-12-31 23:59:59+00:00", + "type": "string" }, "type": "primitive" }, - "updated_at": { + "invi_msg_id": { "value": { - "value": "2021-12-31 23:59:59+00:00", + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "type": "string" }, "type": "primitive" }, - "verified": { - "value": "true", - "type": "enum" - }, - "verified_msgs": { - "value": [ - { + "invitation": { + "properties": { + "@id": { "value": { - "value": "verified_msgs", + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "type": "string" }, "type": "primitive" }, - { + "@type": { "value": { - "value": "verified_msgs", + "value": "https://didcomm.org/my-family/1.0/my-message-type", "type": "string" }, "type": "primitive" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "type": "withoutStreaming" - }, - "codeSamples": [], - "type": "full" - } - ], - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - }, - { - "summary": "Fetch all present-proof exchange records", - "audiences": [], - "operationId": "get_matching_pres_ex_records", - "tags": [ - "present-proof v1.0" - ], - "pathParameters": [], - "queryParameters": [ - { - "description": "Connection identifier", - "name": "connection_id", - "schema": { - "generatedName": "GetMatchingPresExRecordsRequestConnectionId", - "value": { - "schema": { - "format": "uuid", - "type": "string" - }, - "generatedName": "GetMatchingPresExRecordsRequestConnectionId", - "groupName": [], - "type": "primitive" - }, - "groupName": [], - "type": "nullable" - }, - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - }, - { - "description": "Role assigned in presentation exchange", - "name": "role", - "schema": { - "generatedName": "GetMatchingPresExRecordsRequestRole", - "value": { - "generatedName": "GetMatchingPresExRecordsRequestRole", - "values": [ - { - "generatedName": "prover", - "value": "prover", - "casing": {} - }, - { - "generatedName": "verifier", - "value": "verifier", - "casing": {} - } - ], - "groupName": [], - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "enum" - }, - "groupName": [], - "type": "nullable" - }, - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - }, - { - "description": "Presentation exchange state", - "name": "state", - "schema": { - "generatedName": "GetMatchingPresExRecordsRequestState", - "value": { - "generatedName": "GetMatchingPresExRecordsRequestState", - "values": [ - { - "generatedName": "proposal_sent", - "value": "proposal_sent", - "casing": {} - }, - { - "generatedName": "proposal_received", - "value": "proposal_received", - "casing": {} - }, - { - "generatedName": "request_sent", - "value": "request_sent", - "casing": {} - }, - { - "generatedName": "request_received", - "value": "request_received", - "casing": {} - }, - { - "generatedName": "presentation_sent", - "value": "presentation_sent", - "casing": {} - }, - { - "generatedName": "presentation_received", - "value": "presentation_received", - "casing": {} - }, - { - "generatedName": "verified", - "value": "verified", - "casing": {} - }, - { - "generatedName": "presentation_acked", - "value": "presentation_acked", - "casing": {} - }, - { - "generatedName": "abandoned", - "value": "abandoned", - "casing": {} - } - ], - "groupName": [], - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "enum" - }, - "groupName": [], - "type": "nullable" - }, - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - }, - { - "description": "Thread identifier", - "name": "thread_id", - "schema": { - "generatedName": "GetMatchingPresExRecordsRequestThreadId", - "value": { - "schema": { - "format": "uuid", - "type": "string" - }, - "generatedName": "GetMatchingPresExRecordsRequestThreadId", - "groupName": [], - "type": "primitive" - }, - "groupName": [], - "type": "nullable" - }, - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - } - ], - "headers": [], - "generatedRequestName": "GetMatchingPresExRecordsRequest", - "response": { - "description": "", - "schema": { - "generatedName": "GetMatchingPresExRecordsResponse", - "schema": "V10PresentationExchangeList", - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "reference" - }, - "fullExamples": [], - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "json" - }, - "errors": {}, - "server": [], - "authed": true, - "method": "GET", - "path": "/present-proof/records", - "examples": [ - { - "pathParameters": [], - "queryParameters": [], - "headers": [], - "response": { - "value": { - "properties": { - "results": { - "value": [ - { - "properties": { - "auto_present": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - }, - "auto_verify": { - "value": { - "value": true, - "type": "boolean" - }, - "type": "primitive" - }, - "connection_id": { + }, + "accept": { + "value": [ + { "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "value": "didcomm/aip1", "type": "string" }, "type": "primitive" }, - "created_at": { + { "value": { - "value": "2021-12-31 23:59:59+00:00", + "value": "didcomm/aip2;env=rfc19", "type": "string" }, "type": "primitive" - }, - "error_msg": { + } + ], + "type": "array" + }, + "handshake_protocols": { + "value": [ + { "value": { - "value": "Invalid structure", + "value": "did:sov:BzCbsNYhMrjHiqZDTUASHg;spec/didexchange/1.0", "type": "string" }, "type": "primitive" }, - "initiator": { - "value": "self", - "type": "enum" - }, - "presentation_exchange_id": { + { "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "value": "did:sov:BzCbsNYhMrjHiqZDTUASHg;spec/didexchange/1.0", "type": "string" }, "type": "primitive" - }, - "presentation_proposal_dict": { + } + ], + "type": "array" + }, + "imageUrl": { + "value": { + "value": "http://192.168.56.101/img/logo.jpg", + "type": "string" + }, + "type": "primitive" + }, + "label": { + "value": { + "value": "Bob", + "type": "string" + }, + "type": "primitive" + }, + "requests~attach": { + "value": [ + { "properties": { "@id": { "value": { @@ -49975,355 +20928,96 @@ }, "type": "primitive" }, - "@type": { + "byte_count": { "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" + "value": 1234, + "type": "int" }, "type": "primitive" }, - "presentation_proposal": { + "data": { "properties": { - "@type": { + "base64": { "value": { - "value": "did:sov:BzCbsNYhMrjHiqZDTUASHg;spec/present-proof/1.0/presentation-preview", + "value": "ey4uLn0=", "type": "string" }, "type": "primitive" }, - "attributes": { + "json": { "value": [ { - "properties": { - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "referent": { - "value": { - "value": "0", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } + "key": { + "value": "key", + "type": "string" }, - "type": "object" - }, - { - "properties": { - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "referent": { - "value": { - "value": "0", - "type": "string" - }, - "type": "primitive" - }, + "value": { "value": { "value": { - "value": "martini", + "value": "value", "type": "string" }, "type": "primitive" - } - }, - "type": "object" + }, + "type": "unknown" + } } ], - "type": "array" + "type": "map" }, - "predicates": { + "links": { "value": [ { - "properties": { - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "high_score", - "type": "string" - }, - "type": "primitive" - }, - "predicate": { - "value": ">=", - "type": "enum" - }, - "threshold": { - "value": { - "value": 0, - "type": "int" - }, - "type": "primitive" - } + "value": { + "value": "https://link.to/data", + "type": "string" }, - "type": "object" + "type": "primitive" }, { - "properties": { - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "high_score", - "type": "string" - }, - "type": "primitive" - }, - "predicate": { - "value": ">=", - "type": "enum" - }, - "threshold": { - "value": { - "value": 0, - "type": "int" - }, - "type": "primitive" - } + "value": { + "value": "https://link.to/data", + "type": "string" }, - "type": "object" + "type": "primitive" } ], "type": "array" + }, + "sha256": { + "value": { + "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", + "type": "string" + }, + "type": "primitive" } }, "type": "object" - } - }, - "type": "object" - }, - "presentation_request": { - "properties": { - "name": { + }, + "description": { "value": { - "value": "Proof request", + "value": "view from doorway, facing east, with lights off", "type": "string" }, "type": "primitive" }, - "nonce": { + "filename": { "value": { - "value": "1", + "value": "IMG1092348.png", "type": "string" }, "type": "primitive" }, - "requested_attributes": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "properties": { - "name": { - "value": { - "value": "favouriteDrink", - "type": "string" - }, - "type": "primitive" - }, - "names": { - "value": [ - { - "value": { - "value": "age", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "age", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "restrictions": { - "value": [ - { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - } - } - ], - "type": "map" - }, - { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - } - } - ], - "type": "map" - } - ], - "type": "array" - } - }, - "type": "object" - } - } - ], - "type": "map" - }, - "requested_predicates": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "properties": { - "name": { - "value": { - "value": "index", - "type": "string" - }, - "type": "primitive" - }, - "p_type": { - "value": ">=", - "type": "enum" - }, - "p_value": { - "value": { - "value": 0, - "type": "int" - }, - "type": "primitive" - }, - "restrictions": { - "value": [ - { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - } - } - ], - "type": "map" - }, - { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - } - } - ], - "type": "map" - } - ], - "type": "array" - } - }, - "type": "object" - } - } - ], - "type": "map" + "lastmod_time": { + "value": { + "value": "2021-12-31 23:59:59+00:00", + "type": "string" + }, + "type": "primitive" }, - "version": { + "mime-type": { "value": { - "value": "1.0", + "value": "image/png", "type": "string" }, "type": "primitive" @@ -50331,7 +21025,7 @@ }, "type": "object" }, - "presentation_request_dict": { + { "properties": { "@id": { "value": { @@ -50340,185 +21034,811 @@ }, "type": "primitive" }, - "@type": { + "byte_count": { "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" + "value": 1234, + "type": "int" }, "type": "primitive" }, - "request_presentations~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "data": { + "properties": { + "base64": { + "value": { + "value": "ey4uLn0=", + "type": "string" + }, + "type": "primitive" + }, + "json": { + "value": [ + { + "key": { + "value": "key", "type": "string" }, - "type": "primitive" - }, - "byte_count": { "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { + "value": { "value": { - "value": "ey4uLn0=", + "value": "value", "type": "string" }, "type": "primitive" }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { + "type": "unknown" + } + } + ], + "type": "map" + }, + "links": { + "value": [ + { "value": { - "value": "view from doorway, facing east, with lights off", + "value": "https://link.to/data", "type": "string" }, "type": "primitive" }, - "filename": { + { "value": { - "value": "IMG1092348.png", + "value": "https://link.to/data", "type": "string" }, "type": "primitive" - }, - "lastmod_time": { + } + ], + "type": "array" + }, + "sha256": { + "value": { + "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", + "type": "string" + }, + "type": "primitive" + } + }, + "type": "object" + }, + "description": { + "value": { + "value": "view from doorway, facing east, with lights off", + "type": "string" + }, + "type": "primitive" + }, + "filename": { + "value": { + "value": "IMG1092348.png", + "type": "string" + }, + "type": "primitive" + }, + "lastmod_time": { + "value": { + "value": "2021-12-31 23:59:59+00:00", + "type": "string" + }, + "type": "primitive" + }, + "mime-type": { + "value": { + "value": "image/png", + "type": "string" + }, + "type": "primitive" + } + }, + "type": "object" + } + ], + "type": "array" + }, + "services": { + "value": [ + { + "value": [ + { + "key": { + "value": "did", + "type": "string" + }, + "value": { + "value": { + "value": { + "value": "WgWxqztrNooG92RXvxSTWv", + "type": "string" + }, + "type": "primitive" + }, + "type": "unknown" + } + }, + { + "key": { + "value": "id", + "type": "string" + }, + "value": { + "value": { + "value": { + "value": "string", + "type": "string" + }, + "type": "primitive" + }, + "type": "unknown" + } + }, + { + "key": { + "value": "recipientKeys", + "type": "string" + }, + "value": { + "value": { + "value": [ + { "value": { - "value": "2021-12-31 23:59:59+00:00", + "value": "did:key:z6MkpTHR8VNsBxYAAWHut2Geadd9jSwuBV8xRoAnwWsdvktH", "type": "string" }, "type": "primitive" - }, - "mime-type": { + } + ], + "type": "array" + }, + "type": "unknown" + } + }, + { + "key": { + "value": "routingKeys", + "type": "string" + }, + "value": { + "value": { + "value": [ + { "value": { - "value": "image/png", + "value": "did:key:z6MkpTHR8VNsBxYAAWHut2Geadd9jSwuBV8xRoAnwWsdvktH", "type": "string" }, "type": "primitive" } + ], + "type": "array" + }, + "type": "unknown" + } + }, + { + "key": { + "value": "serviceEndpoint", + "type": "string" + }, + "value": { + "value": { + "value": { + "value": "http://192.168.56.101:8020", + "type": "string" }, - "type": "object" - } - ], - "type": "array" + "type": "primitive" + }, + "type": "unknown" + } + }, + { + "key": { + "value": "type", + "type": "string" + }, + "value": { + "value": { + "value": { + "value": "string", + "type": "string" + }, + "type": "primitive" + }, + "type": "unknown" + } } - }, - "type": "object" - }, - "role": { - "value": "prover", - "type": "enum" + ], + "type": "map" }, - "state": { + { + "value": [ + { + "key": { + "value": "key", + "type": "string" + }, + "value": { + "value": { + "value": { + "value": "value", + "type": "string" + }, + "type": "primitive" + }, + "type": "unknown" + } + } + ], + "type": "map" + } + ], + "type": "array" + } + }, + "type": "object" + }, + "oob_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "our_recipient_key": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "role": { + "value": "receiver", + "type": "enum" + }, + "state": { + "value": "await-response", + "type": "enum" + }, + "their_service": { + "properties": { + "recipientKeys": { + "value": [ + { "value": { - "value": "verified", + "value": "H3C2AVvLMv6gmMNam3uVAjZpfkcJCwDwnZn6z3wXmqPV", "type": "string" }, "type": "primitive" }, - "thread_id": { + { "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "value": "H3C2AVvLMv6gmMNam3uVAjZpfkcJCwDwnZn6z3wXmqPV", "type": "string" }, "type": "primitive" - }, - "trace": { + } + ], + "type": "array" + }, + "routingKeys": { + "value": [ + { "value": { - "value": true, - "type": "boolean" + "value": "H3C2AVvLMv6gmMNam3uVAjZpfkcJCwDwnZn6z3wXmqPV", + "type": "string" }, "type": "primitive" }, - "updated_at": { + { "value": { - "value": "2021-12-31 23:59:59+00:00", + "value": "H3C2AVvLMv6gmMNam3uVAjZpfkcJCwDwnZn6z3wXmqPV", "type": "string" }, "type": "primitive" - }, - "verified": { - "value": "true", - "type": "enum" - }, - "verified_msgs": { - "value": [ - { - "value": { - "value": "verified_msgs", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "verified_msgs", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" } + ], + "type": "array" + }, + "serviceEndpoint": { + "value": { + "value": "http://192.168.56.101:8020", + "type": "string" + }, + "type": "primitive" + } + }, + "type": "object" + }, + "trace": { + "value": { + "value": true, + "type": "boolean" + }, + "type": "primitive" + }, + "updated_at": { + "value": { + "value": "2021-12-31 23:59:59+00:00", + "type": "string" + }, + "type": "primitive" + } + }, + "type": "object" + }, + "type": "withoutStreaming" + }, + "codeSamples": [], + "type": "full" + } + ], + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + }, + { + "summary": "Fetch the list of loaded plugins", + "audiences": [], + "operationId": "get_loaded_plugins", + "tags": [ + "server" + ], + "pathParameters": [], + "queryParameters": [], + "headers": [], + "generatedRequestName": "GetLoadedPluginsRequest", + "response": { + "description": "", + "schema": { + "generatedName": "GetLoadedPluginsResponse", + "schema": "AdminModules", + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "reference" + }, + "fullExamples": [], + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "json" + }, + "errors": {}, + "server": [], + "authed": true, + "method": "GET", + "path": "/plugins", + "examples": [ + { + "pathParameters": [], + "queryParameters": [], + "headers": [], + "response": { + "value": { + "properties": { + "result": { + "value": [ + { + "value": { + "value": "result", + "type": "string" + }, + "type": "primitive" + }, + { + "value": { + "value": "result", + "type": "string" + }, + "type": "primitive" + } + ], + "type": "array" + } + }, + "type": "object" + }, + "type": "withoutStreaming" + }, + "codeSamples": [], + "type": "full" + } + ], + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + }, + { + "summary": "Creates a presentation request not bound to any proposal or connection", + "audiences": [], + "operationId": "create_proof_request", + "tags": [ + "present-proof v2.0" + ], + "pathParameters": [], + "queryParameters": [], + "headers": [], + "generatedRequestName": "CreateProofRequestRequest", + "request": { + "schema": { + "generatedName": "CreateProofRequestRequest", + "schema": "V20PresCreateRequestRequest", + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "reference" + }, + "contentType": "application/json", + "fullExamples": [], + "additionalProperties": false, + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "json" + }, + "response": { + "description": "", + "schema": { + "generatedName": "CreateProofRequestResponse", + "schema": "V20PresExRecord", + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "reference" + }, + "fullExamples": [], + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "json" + }, + "errors": {}, + "server": [], + "authed": true, + "method": "POST", + "path": "/present-proof-2.0/create-request", + "examples": [ + { + "pathParameters": [], + "queryParameters": [], + "headers": [], + "request": { + "properties": { + "auto_verify": { + "value": { + "value": false, + "type": "boolean" + }, + "type": "primitive" + }, + "comment": { + "value": { + "value": "comment", + "type": "string" + }, + "type": "primitive" + }, + "presentation_request": { + "properties": {}, + "type": "object" + }, + "trace": { + "value": { + "value": false, + "type": "boolean" + }, + "type": "primitive" + } + }, + "type": "object" + }, + "response": { + "value": { + "properties": { + "auto_present": { + "value": { + "value": false, + "type": "boolean" + }, + "type": "primitive" + }, + "auto_verify": { + "value": { + "value": true, + "type": "boolean" + }, + "type": "primitive" + }, + "connection_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "created_at": { + "value": { + "value": "2021-12-31 23:59:59+00:00", + "type": "string" + }, + "type": "primitive" + }, + "error_msg": { + "value": { + "value": "Invalid structure", + "type": "string" + }, + "type": "primitive" + }, + "initiator": { + "value": "self", + "type": "enum" + }, + "pres_ex_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "role": { + "value": "prover", + "type": "enum" + }, + "state": { + "value": "proposal-sent", + "type": "enum" + }, + "thread_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "trace": { + "value": { + "value": true, + "type": "boolean" + }, + "type": "primitive" + }, + "updated_at": { + "value": { + "value": "2021-12-31 23:59:59+00:00", + "type": "string" + }, + "type": "primitive" + }, + "verified": { + "value": "true", + "type": "enum" + }, + "verified_msgs": { + "value": [ + { + "value": { + "value": "verified_msgs", + "type": "string" }, - "type": "object" + "type": "primitive" }, + { + "value": { + "value": "verified_msgs", + "type": "string" + }, + "type": "primitive" + } + ], + "type": "array" + } + }, + "type": "object" + }, + "type": "withoutStreaming" + }, + "codeSamples": [], + "type": "full" + } + ], + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + }, + { + "summary": "Fetch all present-proof exchange records", + "audiences": [], + "operationId": "get_matching_pres_ex_records-v2", + "tags": [ + "present-proof v2.0" + ], + "pathParameters": [], + "queryParameters": [ + { + "description": "Connection identifier", + "name": "connection_id", + "schema": { + "generatedName": "GetMatchingPresExRecordsV2RequestConnectionId", + "value": { + "schema": { + "format": "uuid", + "type": "string" + }, + "generatedName": "GetMatchingPresExRecordsV2RequestConnectionId", + "groupName": [], + "type": "primitive" + }, + "groupName": [], + "type": "nullable" + }, + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + }, + { + "description": "Role assigned in presentation exchange", + "name": "role", + "schema": { + "generatedName": "GetMatchingPresExRecordsV2RequestRole", + "value": { + "generatedName": "GetMatchingPresExRecordsV2RequestRole", + "values": [ + { + "generatedName": "prover", + "value": "prover", + "casing": {} + }, + { + "generatedName": "verifier", + "value": "verifier", + "casing": {} + } + ], + "groupName": [], + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "enum" + }, + "groupName": [], + "type": "nullable" + }, + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + }, + { + "description": "Presentation exchange state", + "name": "state", + "schema": { + "generatedName": "GetMatchingPresExRecordsV2RequestState", + "value": { + "generatedName": "GetMatchingPresExRecordsV2RequestState", + "values": [ + { + "generatedName": "ProposalSent", + "value": "proposal-sent", + "casing": {} + }, + { + "generatedName": "ProposalReceived", + "value": "proposal-received", + "casing": {} + }, + { + "generatedName": "RequestSent", + "value": "request-sent", + "casing": {} + }, + { + "generatedName": "RequestReceived", + "value": "request-received", + "casing": {} + }, + { + "generatedName": "PresentationSent", + "value": "presentation-sent", + "casing": {} + }, + { + "generatedName": "PresentationReceived", + "value": "presentation-received", + "casing": {} + }, + { + "generatedName": "done", + "value": "done", + "casing": {} + }, + { + "generatedName": "abandoned", + "value": "abandoned", + "casing": {} + } + ], + "groupName": [], + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "enum" + }, + "groupName": [], + "type": "nullable" + }, + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + }, + { + "description": "Thread identifier", + "name": "thread_id", + "schema": { + "generatedName": "GetMatchingPresExRecordsV2RequestThreadId", + "value": { + "schema": { + "format": "uuid", + "type": "string" + }, + "generatedName": "GetMatchingPresExRecordsV2RequestThreadId", + "groupName": [], + "type": "primitive" + }, + "groupName": [], + "type": "nullable" + }, + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + } + ], + "headers": [], + "generatedRequestName": "GetMatchingPresExRecordsV2Request", + "response": { + "description": "", + "schema": { + "generatedName": "GetMatchingPresExRecordsV2Response", + "schema": "V20PresExRecordList", + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "reference" + }, + "fullExamples": [], + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "json" + }, + "errors": {}, + "server": [], + "authed": true, + "method": "GET", + "path": "/present-proof-2.0/records", + "examples": [ + { + "pathParameters": [], + "queryParameters": [], + "headers": [], + "response": { + "value": { + "properties": { + "results": { + "value": [ { "properties": { "auto_present": { @@ -50560,565 +21880,1002 @@ "value": "self", "type": "enum" }, - "presentation_exchange_id": { + "pres_ex_id": { "value": { "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "type": "string" }, "type": "primitive" }, - "presentation_proposal_dict": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "presentation_proposal": { - "properties": { - "@type": { - "value": { - "value": "did:sov:BzCbsNYhMrjHiqZDTUASHg;spec/present-proof/1.0/presentation-preview", - "type": "string" - }, - "type": "primitive" - }, - "attributes": { - "value": [ - { - "properties": { - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "referent": { - "value": { - "value": "0", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "referent": { - "value": { - "value": "0", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "predicates": { - "value": [ - { - "properties": { - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "high_score", - "type": "string" - }, - "type": "primitive" - }, - "predicate": { - "value": ">=", - "type": "enum" - }, - "threshold": { - "value": { - "value": 0, - "type": "int" - }, - "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "high_score", - "type": "string" - }, - "type": "primitive" - }, - "predicate": { - "value": ">=", - "type": "enum" - }, - "threshold": { - "value": { - "value": 0, - "type": "int" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - } + "role": { + "value": "prover", + "type": "enum" + }, + "state": { + "value": "proposal-sent", + "type": "enum" + }, + "thread_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" }, - "type": "object" + "type": "primitive" }, - "presentation_request": { - "properties": { - "name": { - "value": { - "value": "Proof request", - "type": "string" - }, - "type": "primitive" - }, - "nonce": { - "value": { - "value": "1", - "type": "string" - }, - "type": "primitive" - }, - "requested_attributes": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "properties": { - "name": { - "value": { - "value": "favouriteDrink", - "type": "string" - }, - "type": "primitive" - }, - "names": { - "value": [ - { - "value": { - "value": "age", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "age", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "restrictions": { - "value": [ - { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - } - } - ], - "type": "map" - }, - { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - } - } - ], - "type": "map" - } - ], - "type": "array" - } - }, - "type": "object" - } - } - ], - "type": "map" - }, - "requested_predicates": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "properties": { - "name": { - "value": { - "value": "index", - "type": "string" - }, - "type": "primitive" - }, - "p_type": { - "value": ">=", - "type": "enum" - }, - "p_value": { - "value": { - "value": 0, - "type": "int" - }, - "type": "primitive" - }, - "restrictions": { - "value": [ - { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - } - } - ], - "type": "map" - }, - { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - } - } - ], - "type": "map" - } - ], - "type": "array" - } - }, - "type": "object" - } - } - ], - "type": "map" - }, - "version": { - "value": { - "value": "1.0", - "type": "string" - }, - "type": "primitive" - } + "trace": { + "value": { + "value": true, + "type": "boolean" }, - "type": "object" + "type": "primitive" }, - "presentation_request_dict": { - "properties": { - "@id": { + "updated_at": { + "value": { + "value": "2021-12-31 23:59:59+00:00", + "type": "string" + }, + "type": "primitive" + }, + "verified": { + "value": "true", + "type": "enum" + }, + "verified_msgs": { + "value": [ + { "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "value": "verified_msgs", "type": "string" }, "type": "primitive" }, - "@type": { + { "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", + "value": "verified_msgs", "type": "string" }, "type": "primitive" - }, - "request_presentations~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" } + ], + "type": "array" + } + }, + "type": "object" + }, + { + "properties": { + "auto_present": { + "value": { + "value": false, + "type": "boolean" }, - "type": "object" + "type": "primitive" + }, + "auto_verify": { + "value": { + "value": true, + "type": "boolean" + }, + "type": "primitive" + }, + "connection_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "created_at": { + "value": { + "value": "2021-12-31 23:59:59+00:00", + "type": "string" + }, + "type": "primitive" + }, + "error_msg": { + "value": { + "value": "Invalid structure", + "type": "string" + }, + "type": "primitive" + }, + "initiator": { + "value": "self", + "type": "enum" + }, + "pres_ex_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" }, "role": { "value": "prover", "type": "enum" }, "state": { + "value": "proposal-sent", + "type": "enum" + }, + "thread_id": { "value": { - "value": "verified", + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "type": "string" }, "type": "primitive" }, - "thread_id": { + "trace": { + "value": { + "value": true, + "type": "boolean" + }, + "type": "primitive" + }, + "updated_at": { + "value": { + "value": "2021-12-31 23:59:59+00:00", + "type": "string" + }, + "type": "primitive" + }, + "verified": { + "value": "true", + "type": "enum" + }, + "verified_msgs": { + "value": [ + { + "value": { + "value": "verified_msgs", + "type": "string" + }, + "type": "primitive" + }, + { + "value": { + "value": "verified_msgs", + "type": "string" + }, + "type": "primitive" + } + ], + "type": "array" + } + }, + "type": "object" + } + ], + "type": "array" + } + }, + "type": "object" + }, + "type": "withoutStreaming" + }, + "codeSamples": [], + "type": "full" + } + ], + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + }, + { + "summary": "Fetch a single presentation exchange record", + "audiences": [], + "operationId": "get_pres_ex_record", + "tags": [ + "present-proof v2.0" + ], + "pathParameters": [ + { + "description": "Presentation exchange identifier", + "name": "pres_ex_id", + "schema": { + "schema": { + "pattern": "[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-4[a-fA-F0-9]{3}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}", + "type": "string" + }, + "generatedName": "GetPresExRecordRequestPresExId", + "groupName": [], + "type": "primitive" + }, + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + } + ], + "queryParameters": [], + "headers": [], + "generatedRequestName": "GetPresExRecordRequest", + "response": { + "description": "", + "schema": { + "generatedName": "GetPresExRecordResponse", + "schema": "V20PresExRecord", + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "reference" + }, + "fullExamples": [], + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "json" + }, + "errors": {}, + "server": [], + "authed": true, + "method": "GET", + "path": "/present-proof-2.0/records/{pres_ex_id}", + "examples": [ + { + "pathParameters": [ + { + "name": "pres_ex_id", + "value": { + "value": { + "value": "pres_ex_id", + "type": "string" + }, + "type": "primitive" + } + } + ], + "queryParameters": [], + "headers": [], + "response": { + "value": { + "properties": { + "auto_present": { + "value": { + "value": false, + "type": "boolean" + }, + "type": "primitive" + }, + "auto_verify": { + "value": { + "value": true, + "type": "boolean" + }, + "type": "primitive" + }, + "connection_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "created_at": { + "value": { + "value": "2021-12-31 23:59:59+00:00", + "type": "string" + }, + "type": "primitive" + }, + "error_msg": { + "value": { + "value": "Invalid structure", + "type": "string" + }, + "type": "primitive" + }, + "initiator": { + "value": "self", + "type": "enum" + }, + "pres_ex_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "role": { + "value": "prover", + "type": "enum" + }, + "state": { + "value": "proposal-sent", + "type": "enum" + }, + "thread_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "trace": { + "value": { + "value": true, + "type": "boolean" + }, + "type": "primitive" + }, + "updated_at": { + "value": { + "value": "2021-12-31 23:59:59+00:00", + "type": "string" + }, + "type": "primitive" + }, + "verified": { + "value": "true", + "type": "enum" + }, + "verified_msgs": { + "value": [ + { + "value": { + "value": "verified_msgs", + "type": "string" + }, + "type": "primitive" + }, + { + "value": { + "value": "verified_msgs", + "type": "string" + }, + "type": "primitive" + } + ], + "type": "array" + } + }, + "type": "object" + }, + "type": "withoutStreaming" + }, + "codeSamples": [], + "type": "full" + } + ], + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + }, + { + "summary": "Remove an existing presentation exchange record", + "audiences": [], + "operationId": "delete_pres_ex_record", + "tags": [ + "present-proof v2.0" + ], + "pathParameters": [ + { + "description": "Presentation exchange identifier", + "name": "pres_ex_id", + "schema": { + "schema": { + "pattern": "[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-4[a-fA-F0-9]{3}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}", + "type": "string" + }, + "generatedName": "DeletePresExRecordRequestPresExId", + "groupName": [], + "type": "primitive" + }, + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + } + ], + "queryParameters": [], + "headers": [], + "generatedRequestName": "DeletePresExRecordRequest", + "response": { + "description": "", + "schema": { + "generatedName": "DeletePresExRecordResponse", + "schema": "V20PresentProofModuleResponse", + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "reference" + }, + "fullExamples": [], + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "json" + }, + "errors": {}, + "server": [], + "authed": true, + "method": "DELETE", + "path": "/present-proof-2.0/records/{pres_ex_id}", + "examples": [ + { + "pathParameters": [ + { + "name": "pres_ex_id", + "value": { + "value": { + "value": "pres_ex_id", + "type": "string" + }, + "type": "primitive" + } + } + ], + "queryParameters": [], + "headers": [], + "response": { + "value": { + "value": [ + { + "key": { + "value": "key", + "type": "string" + }, + "value": { + "value": { + "value": { + "value": "value", + "type": "string" + }, + "type": "primitive" + }, + "type": "unknown" + } + } + ], + "type": "map" + }, + "type": "withoutStreaming" + }, + "codeSamples": [], + "type": "full" + } + ], + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + }, + { + "summary": "Fetch credentials from wallet for presentation request", + "audiences": [], + "operationId": "get_pres_ex_credentials-v2", + "tags": [ + "present-proof v2.0" + ], + "pathParameters": [ + { + "description": "Presentation exchange identifier", + "name": "pres_ex_id", + "schema": { + "schema": { + "pattern": "[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-4[a-fA-F0-9]{3}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}", + "type": "string" + }, + "generatedName": "GetPresExCredentialsV2RequestPresExId", + "groupName": [], + "type": "primitive" + }, + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + } + ], + "queryParameters": [ + { + "description": "Maximum number to retrieve", + "name": "count", + "schema": { + "generatedName": "GetPresExCredentialsV2RequestCount", + "value": { + "schema": { + "pattern": "^[1-9][0-9]*$", + "type": "string" + }, + "generatedName": "GetPresExCredentialsV2RequestCount", + "groupName": [], + "type": "primitive" + }, + "groupName": [], + "type": "nullable" + }, + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + }, + { + "description": "(JSON) object mapping referents to extra WQL queries", + "name": "extra_query", + "schema": { + "generatedName": "GetPresExCredentialsV2RequestExtraQuery", + "value": { + "schema": { + "pattern": "^{\\s*\".*?\"\\s*:\\s*{.*?}\\s*(,\\s*\".*?\"\\s*:\\s*{.*?}\\s*)*\\s*}$", + "type": "string" + }, + "generatedName": "GetPresExCredentialsV2RequestExtraQuery", + "groupName": [], + "type": "primitive" + }, + "groupName": [], + "type": "nullable" + }, + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + }, + { + "description": "Proof request referents of interest, comma-separated", + "name": "referent", + "schema": { + "generatedName": "GetPresExCredentialsV2RequestReferent", + "value": { + "schema": { + "type": "string" + }, + "generatedName": "GetPresExCredentialsV2RequestReferent", + "groupName": [], + "type": "primitive" + }, + "groupName": [], + "type": "nullable" + }, + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + }, + { + "description": "Start index", + "name": "start", + "schema": { + "generatedName": "GetPresExCredentialsV2RequestStart", + "value": { + "schema": { + "pattern": "^[0-9]*$", + "type": "string" + }, + "generatedName": "GetPresExCredentialsV2RequestStart", + "groupName": [], + "type": "primitive" + }, + "groupName": [], + "type": "nullable" + }, + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + } + ], + "headers": [], + "generatedRequestName": "GetPresExCredentialsV2Request", + "response": { + "description": "", + "schema": { + "value": { + "generatedName": "GetPresExCredentialsV2ResponseItem", + "schema": "IndyCredPrecis", + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "reference" + }, + "generatedName": "GetPresExCredentialsV2Response", + "groupName": [], + "type": "array" + }, + "fullExamples": [], + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "json" + }, + "errors": {}, + "server": [], + "authed": true, + "method": "GET", + "path": "/present-proof-2.0/records/{pres_ex_id}/credentials", + "examples": [ + { + "pathParameters": [ + { + "name": "pres_ex_id", + "value": { + "value": { + "value": "pres_ex_id", + "type": "string" + }, + "type": "primitive" + } + } + ], + "queryParameters": [], + "headers": [], + "response": { + "value": { + "value": [ + { + "properties": { + "presentation_referents": { + "value": [ + { "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "value": "1_age_uuid", "type": "string" }, "type": "primitive" }, - "trace": { - "value": { - "value": true, - "type": "boolean" - }, - "type": "primitive" - }, - "updated_at": { + { "value": { - "value": "2021-12-31 23:59:59+00:00", + "value": "1_age_uuid", "type": "string" }, "type": "primitive" - }, - "verified": { - "value": "true", - "type": "enum" - }, - "verified_msgs": { - "value": [ - { - "value": { - "value": "verified_msgs", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "verified_msgs", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" } + ], + "type": "array" + } + }, + "type": "object" + } + ], + "type": "array" + }, + "type": "withoutStreaming" + }, + "codeSamples": [], + "type": "full" + } + ], + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + }, + { + "summary": "Send a problem report for presentation exchange", + "audiences": [], + "operationId": "report_pres_ex_problem", + "tags": [ + "present-proof v2.0" + ], + "pathParameters": [ + { + "description": "Presentation exchange identifier", + "name": "pres_ex_id", + "schema": { + "schema": { + "pattern": "[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-4[a-fA-F0-9]{3}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}", + "type": "string" + }, + "generatedName": "ReportPresExProblemRequestPresExId", + "groupName": [], + "type": "primitive" + }, + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + } + ], + "queryParameters": [], + "headers": [], + "generatedRequestName": "ReportPresExProblemRequest", + "request": { + "schema": { + "generatedName": "ReportPresExProblemRequest", + "schema": "V20PresProblemReportRequest", + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "reference" + }, + "contentType": "application/json", + "fullExamples": [], + "additionalProperties": false, + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "json" + }, + "response": { + "description": "", + "schema": { + "generatedName": "ReportPresExProblemResponse", + "schema": "V20PresentProofModuleResponse", + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "reference" + }, + "fullExamples": [], + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "json" + }, + "errors": {}, + "server": [], + "authed": true, + "method": "POST", + "path": "/present-proof-2.0/records/{pres_ex_id}/problem-report", + "examples": [ + { + "pathParameters": [ + { + "name": "pres_ex_id", + "value": { + "value": { + "value": "pres_ex_id", + "type": "string" + }, + "type": "primitive" + } + } + ], + "queryParameters": [], + "headers": [], + "request": { + "properties": { + "description": { + "value": { + "value": "description", + "type": "string" + }, + "type": "primitive" + } + }, + "type": "object" + }, + "response": { + "value": { + "value": [ + { + "key": { + "value": "key", + "type": "string" + }, + "value": { + "value": { + "value": { + "value": "value", + "type": "string" }, - "type": "object" + "type": "primitive" + }, + "type": "unknown" + } + } + ], + "type": "map" + }, + "type": "withoutStreaming" + }, + "codeSamples": [], + "type": "full" + } + ], + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + }, + { + "summary": "Sends a proof presentation", + "audiences": [], + "operationId": "send_proof_presentation", + "tags": [ + "present-proof v2.0" + ], + "pathParameters": [ + { + "description": "Presentation exchange identifier", + "name": "pres_ex_id", + "schema": { + "schema": { + "pattern": "[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-4[a-fA-F0-9]{3}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}", + "type": "string" + }, + "generatedName": "SendProofPresentationRequestPresExId", + "groupName": [], + "type": "primitive" + }, + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + } + ], + "queryParameters": [], + "headers": [], + "generatedRequestName": "SendProofPresentationRequest", + "request": { + "schema": { + "generatedName": "SendProofPresentationRequest", + "schema": "V20PresSpecByFormatRequest", + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "reference" + }, + "contentType": "application/json", + "fullExamples": [], + "additionalProperties": false, + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "json" + }, + "response": { + "description": "", + "schema": { + "generatedName": "SendProofPresentationResponse", + "schema": "V20PresExRecord", + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "reference" + }, + "fullExamples": [], + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "json" + }, + "errors": {}, + "server": [], + "authed": true, + "method": "POST", + "path": "/present-proof-2.0/records/{pres_ex_id}/send-presentation", + "examples": [ + { + "pathParameters": [ + { + "name": "pres_ex_id", + "value": { + "value": { + "value": "pres_ex_id", + "type": "string" + }, + "type": "primitive" + } + } + ], + "queryParameters": [], + "headers": [], + "request": { + "properties": { + "trace": { + "value": { + "value": true, + "type": "boolean" + }, + "type": "primitive" + } + }, + "type": "object" + }, + "response": { + "value": { + "properties": { + "auto_present": { + "value": { + "value": false, + "type": "boolean" + }, + "type": "primitive" + }, + "auto_verify": { + "value": { + "value": true, + "type": "boolean" + }, + "type": "primitive" + }, + "connection_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "created_at": { + "value": { + "value": "2021-12-31 23:59:59+00:00", + "type": "string" + }, + "type": "primitive" + }, + "error_msg": { + "value": { + "value": "Invalid structure", + "type": "string" + }, + "type": "primitive" + }, + "initiator": { + "value": "self", + "type": "enum" + }, + "pres_ex_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "role": { + "value": "prover", + "type": "enum" + }, + "state": { + "value": "proposal-sent", + "type": "enum" + }, + "thread_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "trace": { + "value": { + "value": true, + "type": "boolean" + }, + "type": "primitive" + }, + "updated_at": { + "value": { + "value": "2021-12-31 23:59:59+00:00", + "type": "string" + }, + "type": "primitive" + }, + "verified": { + "value": "true", + "type": "enum" + }, + "verified_msgs": { + "value": [ + { + "value": { + "value": "verified_msgs", + "type": "string" + }, + "type": "primitive" + }, + { + "value": { + "value": "verified_msgs", + "type": "string" + }, + "type": "primitive" } ], "type": "array" @@ -51138,11 +22895,11 @@ } }, { - "summary": "Fetch a single presentation exchange record", + "summary": "Sends a presentation request in reference to a proposal", "audiences": [], - "operationId": "get_pres_ex_record", + "operationId": "send_proof_presentation_request", "tags": [ - "present-proof v1.0" + "present-proof v2.0" ], "pathParameters": [ { @@ -51153,7 +22910,7 @@ "pattern": "[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-4[a-fA-F0-9]{3}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}", "type": "string" }, - "generatedName": "GetPresExRecordRequestPresExId", + "generatedName": "SendProofPresentationRequestRequestPresExId", "groupName": [], "type": "primitive" }, @@ -51165,12 +22922,31 @@ ], "queryParameters": [], "headers": [], - "generatedRequestName": "GetPresExRecordRequest", + "generatedRequestName": "SendProofPresentationRequestRequest", + "request": { + "schema": { + "generatedName": "SendProofPresentationRequestRequest", + "schema": "V20PresentationSendRequestToProposal", + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "reference" + }, + "contentType": "application/json", + "fullExamples": [], + "additionalProperties": false, + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "json" + }, "response": { "description": "", "schema": { - "generatedName": "GetPresExRecordResponse", - "schema": "V10PresentationExchange", + "generatedName": "SendProofPresentationRequestResponse", + "schema": "V20PresExRecord", "source": { "file": "../openapi.yml", "type": "openapi" @@ -51187,8 +22963,8 @@ "errors": {}, "server": [], "authed": true, - "method": "GET", - "path": "/present-proof/records/{pres_ex_id}", + "method": "POST", + "path": "/present-proof-2.0/records/{pres_ex_id}/send-request", "examples": [ { "pathParameters": [ @@ -51205,6 +22981,25 @@ ], "queryParameters": [], "headers": [], + "request": { + "properties": { + "auto_verify": { + "value": { + "value": false, + "type": "boolean" + }, + "type": "primitive" + }, + "trace": { + "value": { + "value": false, + "type": "boolean" + }, + "type": "primitive" + } + }, + "type": "object" + }, "response": { "value": { "properties": { @@ -51247,614 +23042,20 @@ "value": "self", "type": "enum" }, - "presentation": { - "properties": { - "identifiers": { - "value": [ - { - "properties": { - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "schema_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "proof": { - "properties": { - "proofs": { - "value": [ - { - "properties": {}, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "requested_proof": { - "properties": { - "predicates": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "properties": {}, - "type": "object" - } - } - ], - "type": "map" - } - }, - "type": "object" - } - }, - "type": "object" - }, - "presentation_exchange_id": { + "pres_ex_id": { "value": { "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "type": "string" }, "type": "primitive" }, - "presentation_proposal_dict": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" - }, - "presentation_proposal": { - "properties": { - "@type": { - "value": { - "value": "did:sov:BzCbsNYhMrjHiqZDTUASHg;spec/present-proof/1.0/presentation-preview", - "type": "string" - }, - "type": "primitive" - }, - "attributes": { - "value": [ - { - "properties": { - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "referent": { - "value": { - "value": "0", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "referent": { - "value": { - "value": "0", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "predicates": { - "value": [ - { - "properties": { - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "high_score", - "type": "string" - }, - "type": "primitive" - }, - "predicate": { - "value": ">=", - "type": "enum" - }, - "threshold": { - "value": { - "value": 0, - "type": "int" - }, - "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "high_score", - "type": "string" - }, - "type": "primitive" - }, - "predicate": { - "value": ">=", - "type": "enum" - }, - "threshold": { - "value": { - "value": 0, - "type": "int" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - } - }, - "type": "object" - }, - "presentation_request": { - "properties": { - "name": { - "value": { - "value": "Proof request", - "type": "string" - }, - "type": "primitive" - }, - "non_revoked": { - "properties": { - "from": { - "value": { - "value": 1640995199, - "type": "int" - }, - "type": "primitive" - }, - "to": { - "value": { - "value": 1640995199, - "type": "int" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "nonce": { - "value": { - "value": "1", - "type": "string" - }, - "type": "primitive" - }, - "requested_attributes": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "properties": { - "name": { - "value": { - "value": "favouriteDrink", - "type": "string" - }, - "type": "primitive" - }, - "names": { - "value": [ - { - "value": { - "value": "age", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "age", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "restrictions": { - "value": [ - { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - } - } - ], - "type": "map" - }, - { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - } - } - ], - "type": "map" - } - ], - "type": "array" - } - }, - "type": "object" - } - } - ], - "type": "map" - }, - "requested_predicates": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "properties": { - "name": { - "value": { - "value": "index", - "type": "string" - }, - "type": "primitive" - }, - "p_type": { - "value": ">=", - "type": "enum" - }, - "p_value": { - "value": { - "value": 0, - "type": "int" - }, - "type": "primitive" - }, - "restrictions": { - "value": [ - { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - } - } - ], - "type": "map" - }, - { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - } - } - ], - "type": "map" - } - ], - "type": "array" - } - }, - "type": "object" - } - } - ], - "type": "map" - }, - "version": { - "value": { - "value": "1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "presentation_request_dict": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" - }, - "request_presentations~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, "role": { "value": "prover", "type": "enum" }, "state": { - "value": { - "value": "verified", - "type": "string" - }, - "type": "primitive" + "value": "proposal-sent", + "type": "enum" }, "thread_id": { "value": { @@ -51915,11 +23116,11 @@ } }, { - "summary": "Remove an existing presentation exchange record", + "summary": "Verify a received presentation", "audiences": [], - "operationId": "delete_pres_ex_record", + "operationId": "verify_received_presentation", "tags": [ - "present-proof v1.0" + "present-proof v2.0" ], "pathParameters": [ { @@ -51930,7 +23131,7 @@ "pattern": "[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-4[a-fA-F0-9]{3}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}", "type": "string" }, - "generatedName": "DeletePresExRecordRequestPresExId", + "generatedName": "VerifyReceivedPresentationRequestPresExId", "groupName": [], "type": "primitive" }, @@ -51942,12 +23143,12 @@ ], "queryParameters": [], "headers": [], - "generatedRequestName": "DeletePresExRecordRequest", + "generatedRequestName": "VerifyReceivedPresentationRequest", "response": { "description": "", "schema": { - "generatedName": "DeletePresExRecordResponse", - "schema": "V10PresentProofModuleResponse", + "generatedName": "VerifyReceivedPresentationResponse", + "schema": "V20PresExRecord", "source": { "file": "../openapi.yml", "type": "openapi" @@ -51964,8 +23165,8 @@ "errors": {}, "server": [], "authed": true, - "method": "DELETE", - "path": "/present-proof/records/{pres_ex_id}", + "method": "POST", + "path": "/present-proof-2.0/records/{pres_ex_id}/verify-presentation", "examples": [ { "pathParameters": [ @@ -51984,25 +23185,107 @@ "headers": [], "response": { "value": { - "value": [ - { - "key": { - "value": "key", + "properties": { + "auto_present": { + "value": { + "value": false, + "type": "boolean" + }, + "type": "primitive" + }, + "auto_verify": { + "value": { + "value": true, + "type": "boolean" + }, + "type": "primitive" + }, + "connection_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "type": "string" }, + "type": "primitive" + }, + "created_at": { "value": { - "value": { + "value": "2021-12-31 23:59:59+00:00", + "type": "string" + }, + "type": "primitive" + }, + "error_msg": { + "value": { + "value": "Invalid structure", + "type": "string" + }, + "type": "primitive" + }, + "initiator": { + "value": "self", + "type": "enum" + }, + "pres_ex_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "role": { + "value": "prover", + "type": "enum" + }, + "state": { + "value": "proposal-sent", + "type": "enum" + }, + "thread_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "trace": { + "value": { + "value": true, + "type": "boolean" + }, + "type": "primitive" + }, + "updated_at": { + "value": { + "value": "2021-12-31 23:59:59+00:00", + "type": "string" + }, + "type": "primitive" + }, + "verified": { + "value": "true", + "type": "enum" + }, + "verified_msgs": { + "value": [ + { "value": { - "value": "value", + "value": "verified_msgs", "type": "string" }, "type": "primitive" }, - "type": "unknown" - } + { + "value": { + "value": "verified_msgs", + "type": "string" + }, + "type": "primitive" + } + ], + "type": "array" } - ], - "type": "map" + }, + "type": "object" }, "type": "withoutStreaming" }, @@ -52016,137 +23299,255 @@ } }, { - "summary": "Fetch credentials for a presentation request from wallet", + "summary": "Sends a presentation proposal", "audiences": [], - "operationId": "get_pres_ex_credentials", + "operationId": "send_presentation_proposal", "tags": [ - "present-proof v1.0" + "present-proof v2.0" ], - "pathParameters": [ - { - "description": "Presentation exchange identifier", - "name": "pres_ex_id", - "schema": { - "schema": { - "pattern": "[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-4[a-fA-F0-9]{3}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}", - "type": "string" - }, - "generatedName": "GetPresExCredentialsRequestPresExId", - "groupName": [], - "type": "primitive" - }, + "pathParameters": [], + "queryParameters": [], + "headers": [], + "generatedRequestName": "SendPresentationProposalRequest", + "request": { + "schema": { + "generatedName": "SendPresentationProposalRequest", + "schema": "V20PresProposalRequest", "source": { "file": "../openapi.yml", "type": "openapi" - } - } - ], - "queryParameters": [ - { - "description": "Maximum number to retrieve", - "name": "count", - "schema": { - "generatedName": "GetPresExCredentialsRequestCount", - "value": { - "schema": { - "pattern": "^[1-9][0-9]*$", - "type": "string" - }, - "generatedName": "GetPresExCredentialsRequestCount", - "groupName": [], - "type": "primitive" - }, - "groupName": [], - "type": "nullable" }, - "source": { - "file": "../openapi.yml", - "type": "openapi" - } + "type": "reference" }, - { - "description": "(JSON) object mapping referents to extra WQL queries", - "name": "extra_query", - "schema": { - "generatedName": "GetPresExCredentialsRequestExtraQuery", - "value": { - "schema": { - "pattern": "^{\\s*\".*?\"\\s*:\\s*{.*?}\\s*(,\\s*\".*?\"\\s*:\\s*{.*?}\\s*)*\\s*}$", - "type": "string" - }, - "generatedName": "GetPresExCredentialsRequestExtraQuery", - "groupName": [], - "type": "primitive" - }, - "groupName": [], - "type": "nullable" - }, + "contentType": "application/json", + "fullExamples": [], + "additionalProperties": false, + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "json" + }, + "response": { + "description": "", + "schema": { + "generatedName": "SendPresentationProposalResponse", + "schema": "V20PresExRecord", "source": { "file": "../openapi.yml", "type": "openapi" - } + }, + "type": "reference" + }, + "fullExamples": [], + "source": { + "file": "../openapi.yml", + "type": "openapi" }, + "type": "json" + }, + "errors": {}, + "server": [], + "authed": true, + "method": "POST", + "path": "/present-proof-2.0/send-proposal", + "examples": [ { - "description": "Proof request referents of interest, comma-separated", - "name": "referent", - "schema": { - "generatedName": "GetPresExCredentialsRequestReferent", - "value": { - "schema": { - "type": "string" + "pathParameters": [], + "queryParameters": [], + "headers": [], + "request": { + "properties": { + "auto_present": { + "value": { + "value": true, + "type": "boolean" + }, + "type": "primitive" }, - "generatedName": "GetPresExCredentialsRequestReferent", - "groupName": [], - "type": "primitive" + "comment": { + "value": { + "value": "comment", + "type": "string" + }, + "type": "primitive" + }, + "connection_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "presentation_proposal": { + "properties": {}, + "type": "object" + }, + "trace": { + "value": { + "value": false, + "type": "boolean" + }, + "type": "primitive" + } }, - "groupName": [], - "type": "nullable" + "type": "object" }, - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - }, - { - "description": "Start index", - "name": "start", - "schema": { - "generatedName": "GetPresExCredentialsRequestStart", + "response": { "value": { - "schema": { - "pattern": "^[0-9]*$", - "type": "string" + "properties": { + "auto_present": { + "value": { + "value": false, + "type": "boolean" + }, + "type": "primitive" + }, + "auto_verify": { + "value": { + "value": true, + "type": "boolean" + }, + "type": "primitive" + }, + "connection_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "created_at": { + "value": { + "value": "2021-12-31 23:59:59+00:00", + "type": "string" + }, + "type": "primitive" + }, + "error_msg": { + "value": { + "value": "Invalid structure", + "type": "string" + }, + "type": "primitive" + }, + "initiator": { + "value": "self", + "type": "enum" + }, + "pres_ex_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "role": { + "value": "prover", + "type": "enum" + }, + "state": { + "value": "proposal-sent", + "type": "enum" + }, + "thread_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "trace": { + "value": { + "value": true, + "type": "boolean" + }, + "type": "primitive" + }, + "updated_at": { + "value": { + "value": "2021-12-31 23:59:59+00:00", + "type": "string" + }, + "type": "primitive" + }, + "verified": { + "value": "true", + "type": "enum" + }, + "verified_msgs": { + "value": [ + { + "value": { + "value": "verified_msgs", + "type": "string" + }, + "type": "primitive" + }, + { + "value": { + "value": "verified_msgs", + "type": "string" + }, + "type": "primitive" + } + ], + "type": "array" + } }, - "generatedName": "GetPresExCredentialsRequestStart", - "groupName": [], - "type": "primitive" + "type": "object" }, - "groupName": [], - "type": "nullable" + "type": "withoutStreaming" }, - "source": { - "file": "../openapi.yml", - "type": "openapi" - } + "codeSamples": [], + "type": "full" } ], + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + }, + { + "summary": "Sends a free presentation request not bound to any proposal", + "audiences": [], + "operationId": "send_free_presentation_request", + "tags": [ + "present-proof v2.0" + ], + "pathParameters": [], + "queryParameters": [], "headers": [], - "generatedRequestName": "GetPresExCredentialsRequest", + "generatedRequestName": "SendFreePresentationRequestRequest", + "request": { + "schema": { + "generatedName": "SendFreePresentationRequestRequest", + "schema": "V20PresSendRequestRequest", + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "reference" + }, + "contentType": "application/json", + "fullExamples": [], + "additionalProperties": false, + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "json" + }, "response": { "description": "", "schema": { - "value": { - "generatedName": "GetPresExCredentialsResponseItem", - "schema": "IndyCredPrecis", - "source": { - "file": "../openapi.yml", - "type": "openapi" - }, - "type": "reference" + "generatedName": "SendFreePresentationRequestResponse", + "schema": "V20PresExRecord", + "source": { + "file": "../openapi.yml", + "type": "openapi" }, - "generatedName": "GetPresExCredentialsResponse", - "groupName": [], - "type": "array" + "type": "reference" }, "fullExamples": [], "source": { @@ -52158,130 +23559,153 @@ "errors": {}, "server": [], "authed": true, - "method": "GET", - "path": "/present-proof/records/{pres_ex_id}/credentials", + "method": "POST", + "path": "/present-proof-2.0/send-request", "examples": [ { - "pathParameters": [ - { - "name": "pres_ex_id", - "value": { + "pathParameters": [], + "queryParameters": [], + "headers": [], + "request": { + "properties": { + "auto_verify": { "value": { - "value": "pres_ex_id", + "value": false, + "type": "boolean" + }, + "type": "primitive" + }, + "comment": { + "value": { + "value": "comment", + "type": "string" + }, + "type": "primitive" + }, + "connection_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "type": "string" }, - "type": "primitive" - } - } - ], - "queryParameters": [], - "headers": [], - "response": { - "value": { - "value": [ - { - "properties": { - "cred_info": { - "properties": { - "attrs": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": "alice", - "type": "string" - }, - "type": "primitive" - } - } - ], - "type": "map" - }, - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "cred_rev_id": { - "value": { - "value": "12345", - "type": "string" - }, - "type": "primitive" - }, - "referent": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "rev_reg_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "type": "string" - }, - "type": "primitive" - }, - "schema_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "type": "string" - }, - "type": "primitive" - } + "type": "primitive" + }, + "presentation_request": { + "properties": {}, + "type": "object" + }, + "trace": { + "value": { + "value": false, + "type": "boolean" + }, + "type": "primitive" + } + }, + "type": "object" + }, + "response": { + "value": { + "properties": { + "auto_present": { + "value": { + "value": false, + "type": "boolean" + }, + "type": "primitive" + }, + "auto_verify": { + "value": { + "value": true, + "type": "boolean" + }, + "type": "primitive" + }, + "connection_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "created_at": { + "value": { + "value": "2021-12-31 23:59:59+00:00", + "type": "string" + }, + "type": "primitive" + }, + "error_msg": { + "value": { + "value": "Invalid structure", + "type": "string" + }, + "type": "primitive" + }, + "initiator": { + "value": "self", + "type": "enum" + }, + "pres_ex_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "role": { + "value": "prover", + "type": "enum" + }, + "state": { + "value": "proposal-sent", + "type": "enum" + }, + "thread_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "trace": { + "value": { + "value": true, + "type": "boolean" + }, + "type": "primitive" + }, + "updated_at": { + "value": { + "value": "2021-12-31 23:59:59+00:00", + "type": "string" + }, + "type": "primitive" + }, + "verified": { + "value": "true", + "type": "enum" + }, + "verified_msgs": { + "value": [ + { + "value": { + "value": "verified_msgs", + "type": "string" }, - "type": "object" + "type": "primitive" }, - "interval": { - "properties": { - "from": { - "value": { - "value": 1640995199, - "type": "int" - }, - "type": "primitive" - }, - "to": { - "value": { - "value": 1640995199, - "type": "int" - }, - "type": "primitive" - } + { + "value": { + "value": "verified_msgs", + "type": "string" }, - "type": "object" - }, - "presentation_referents": { - "value": [ - { - "value": { - "value": "1_age_uuid", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "1_age_uuid", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" + "type": "primitive" } - }, - "type": "object" + ], + "type": "array" } - ], - "type": "array" + }, + "type": "object" }, "type": "withoutStreaming" }, @@ -52295,38 +23719,20 @@ } }, { - "summary": "Send a problem report for presentation exchange", + "summary": "Creates a presentation request not bound to any proposal or connection", "audiences": [], - "operationId": "report_pres_ex_problem", + "operationId": "create_free_proof_request", "tags": [ "present-proof v1.0" ], - "pathParameters": [ - { - "description": "Presentation exchange identifier", - "name": "pres_ex_id", - "schema": { - "schema": { - "pattern": "[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-4[a-fA-F0-9]{3}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}", - "type": "string" - }, - "generatedName": "ReportPresExProblemRequestPresExId", - "groupName": [], - "type": "primitive" - }, - "source": { - "file": "../openapi.yml", - "type": "openapi" - } - } - ], + "pathParameters": [], "queryParameters": [], "headers": [], - "generatedRequestName": "ReportPresExProblemRequest", + "generatedRequestName": "CreateFreeProofRequestRequest", "request": { "schema": { - "generatedName": "ReportPresExProblemRequest", - "schema": "V10PresentationProblemReportRequest", + "generatedName": "CreateFreeProofRequestRequest", + "schema": "V10PresentationCreateRequestRequest", "source": { "file": "../openapi.yml", "type": "openapi" @@ -52345,8 +23751,8 @@ "response": { "description": "", "schema": { - "generatedName": "ReportPresExProblemResponse", - "schema": "V10PresentProofModuleResponse", + "generatedName": "CreateFreeProofRequestResponse", + "schema": "V10PresentationExchange", "source": { "file": "../openapi.yml", "type": "openapi" @@ -52364,56 +23770,328 @@ "server": [], "authed": true, "method": "POST", - "path": "/present-proof/records/{pres_ex_id}/problem-report", + "path": "/present-proof/create-request", "examples": [ { - "pathParameters": [ - { - "name": "pres_ex_id", - "value": { - "value": { - "value": "pres_ex_id", - "type": "string" - }, - "type": "primitive" - } - } - ], + "pathParameters": [], "queryParameters": [], "headers": [], "request": { "properties": { - "description": { + "auto_verify": { "value": { - "value": "description", + "value": false, + "type": "boolean" + }, + "type": "primitive" + }, + "comment": { + "value": { + "value": "comment", "type": "string" }, "type": "primitive" + }, + "proof_request": { + "properties": { + "name": { + "value": { + "value": "Proof request", + "type": "string" + }, + "type": "primitive" + }, + "nonce": { + "value": { + "value": "1", + "type": "string" + }, + "type": "primitive" + }, + "requested_attributes": { + "value": [ + { + "key": { + "value": "key", + "type": "string" + }, + "value": { + "properties": { + "name": { + "value": { + "value": "favouriteDrink", + "type": "string" + }, + "type": "primitive" + }, + "names": { + "value": [ + { + "value": { + "value": "age", + "type": "string" + }, + "type": "primitive" + }, + { + "value": { + "value": "age", + "type": "string" + }, + "type": "primitive" + } + ], + "type": "array" + }, + "restrictions": { + "value": [ + { + "value": [ + { + "key": { + "value": "key", + "type": "string" + }, + "value": { + "value": { + "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", + "type": "string" + }, + "type": "primitive" + } + } + ], + "type": "map" + }, + { + "value": [ + { + "key": { + "value": "key", + "type": "string" + }, + "value": { + "value": { + "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", + "type": "string" + }, + "type": "primitive" + } + } + ], + "type": "map" + } + ], + "type": "array" + } + }, + "type": "object" + } + } + ], + "type": "map" + }, + "requested_predicates": { + "value": [ + { + "key": { + "value": "key", + "type": "string" + }, + "value": { + "properties": { + "name": { + "value": { + "value": "index", + "type": "string" + }, + "type": "primitive" + }, + "p_type": { + "value": ">=", + "type": "enum" + }, + "p_value": { + "value": { + "value": 0, + "type": "int" + }, + "type": "primitive" + }, + "restrictions": { + "value": [ + { + "value": [ + { + "key": { + "value": "key", + "type": "string" + }, + "value": { + "value": { + "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", + "type": "string" + }, + "type": "primitive" + } + } + ], + "type": "map" + }, + { + "value": [ + { + "key": { + "value": "key", + "type": "string" + }, + "value": { + "value": { + "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", + "type": "string" + }, + "type": "primitive" + } + } + ], + "type": "map" + } + ], + "type": "array" + } + }, + "type": "object" + } + } + ], + "type": "map" + }, + "version": { + "value": { + "value": "1.0", + "type": "string" + }, + "type": "primitive" + } + }, + "type": "object" + }, + "trace": { + "value": { + "value": false, + "type": "boolean" + }, + "type": "primitive" } }, "type": "object" }, "response": { "value": { - "value": [ - { - "key": { - "value": "key", + "properties": { + "auto_present": { + "value": { + "value": false, + "type": "boolean" + }, + "type": "primitive" + }, + "auto_verify": { + "value": { + "value": true, + "type": "boolean" + }, + "type": "primitive" + }, + "connection_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "type": "string" }, + "type": "primitive" + }, + "created_at": { "value": { - "value": { + "value": "2021-12-31 23:59:59+00:00", + "type": "string" + }, + "type": "primitive" + }, + "error_msg": { + "value": { + "value": "Invalid structure", + "type": "string" + }, + "type": "primitive" + }, + "initiator": { + "value": "self", + "type": "enum" + }, + "presentation_exchange_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "role": { + "value": "prover", + "type": "enum" + }, + "state": { + "value": { + "value": "verified", + "type": "string" + }, + "type": "primitive" + }, + "thread_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "trace": { + "value": { + "value": true, + "type": "boolean" + }, + "type": "primitive" + }, + "updated_at": { + "value": { + "value": "2021-12-31 23:59:59+00:00", + "type": "string" + }, + "type": "primitive" + }, + "verified": { + "value": "true", + "type": "enum" + }, + "verified_msgs": { + "value": [ + { "value": { - "value": "value", + "value": "verified_msgs", "type": "string" }, "type": "primitive" }, - "type": "unknown" - } + { + "value": { + "value": "verified_msgs", + "type": "string" + }, + "type": "primitive" + } + ], + "type": "array" } - ], - "type": "map" + }, + "type": "object" }, "type": "withoutStreaming" }, @@ -52427,58 +24105,169 @@ } }, { - "summary": "Sends a proof presentation", + "summary": "Fetch all present-proof exchange records", "audiences": [], - "operationId": "send_proof_presentation", + "operationId": "get_matching_pres_ex_records", "tags": [ "present-proof v1.0" ], - "pathParameters": [ + "pathParameters": [], + "queryParameters": [ { - "description": "Presentation exchange identifier", - "name": "pres_ex_id", + "description": "Connection identifier", + "name": "connection_id", "schema": { - "schema": { - "pattern": "[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-4[a-fA-F0-9]{3}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}", - "type": "string" + "generatedName": "GetMatchingPresExRecordsRequestConnectionId", + "value": { + "schema": { + "format": "uuid", + "type": "string" + }, + "generatedName": "GetMatchingPresExRecordsRequestConnectionId", + "groupName": [], + "type": "primitive" }, - "generatedName": "SendProofPresentationRequestPresExId", "groupName": [], - "type": "primitive" + "type": "nullable" }, "source": { "file": "../openapi.yml", "type": "openapi" } - } - ], - "queryParameters": [], - "headers": [], - "generatedRequestName": "SendProofPresentationRequest", - "request": { - "schema": { - "generatedName": "SendProofPresentationRequest", - "schema": "IndyPresSpec", + }, + { + "description": "Role assigned in presentation exchange", + "name": "role", + "schema": { + "generatedName": "GetMatchingPresExRecordsRequestRole", + "value": { + "generatedName": "GetMatchingPresExRecordsRequestRole", + "values": [ + { + "generatedName": "prover", + "value": "prover", + "casing": {} + }, + { + "generatedName": "verifier", + "value": "verifier", + "casing": {} + } + ], + "groupName": [], + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "enum" + }, + "groupName": [], + "type": "nullable" + }, "source": { "file": "../openapi.yml", "type": "openapi" - }, - "type": "reference" + } }, - "contentType": "application/json", - "fullExamples": [], - "additionalProperties": false, - "source": { - "file": "../openapi.yml", - "type": "openapi" + { + "description": "Presentation exchange state", + "name": "state", + "schema": { + "generatedName": "GetMatchingPresExRecordsRequestState", + "value": { + "generatedName": "GetMatchingPresExRecordsRequestState", + "values": [ + { + "generatedName": "proposal_sent", + "value": "proposal_sent", + "casing": {} + }, + { + "generatedName": "proposal_received", + "value": "proposal_received", + "casing": {} + }, + { + "generatedName": "request_sent", + "value": "request_sent", + "casing": {} + }, + { + "generatedName": "request_received", + "value": "request_received", + "casing": {} + }, + { + "generatedName": "presentation_sent", + "value": "presentation_sent", + "casing": {} + }, + { + "generatedName": "presentation_received", + "value": "presentation_received", + "casing": {} + }, + { + "generatedName": "verified", + "value": "verified", + "casing": {} + }, + { + "generatedName": "presentation_acked", + "value": "presentation_acked", + "casing": {} + }, + { + "generatedName": "abandoned", + "value": "abandoned", + "casing": {} + } + ], + "groupName": [], + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "enum" + }, + "groupName": [], + "type": "nullable" + }, + "source": { + "file": "../openapi.yml", + "type": "openapi" + } }, - "type": "json" - }, + { + "description": "Thread identifier", + "name": "thread_id", + "schema": { + "generatedName": "GetMatchingPresExRecordsRequestThreadId", + "value": { + "schema": { + "format": "uuid", + "type": "string" + }, + "generatedName": "GetMatchingPresExRecordsRequestThreadId", + "groupName": [], + "type": "primitive" + }, + "groupName": [], + "type": "nullable" + }, + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + } + ], + "headers": [], + "generatedRequestName": "GetMatchingPresExRecordsRequest", "response": { "description": "", "schema": { - "generatedName": "SendProofPresentationResponse", - "schema": "V10PresentationExchange", + "generatedName": "GetMatchingPresExRecordsResponse", + "schema": "V10PresentationExchangeList", "source": { "file": "../openapi.yml", "type": "openapi" @@ -52495,753 +24284,363 @@ "errors": {}, "server": [], "authed": true, - "method": "POST", - "path": "/present-proof/records/{pres_ex_id}/send-presentation", + "method": "GET", + "path": "/present-proof/records", "examples": [ { - "pathParameters": [ - { - "name": "pres_ex_id", - "value": { - "value": { - "value": "pres_ex_id", - "type": "string" - }, - "type": "primitive" - } - } - ], + "pathParameters": [], "queryParameters": [], "headers": [], - "request": { - "properties": { - "requested_attributes": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { + "response": { + "value": { + "properties": { + "results": { + "value": [ + { "properties": { - "cred_id": { + "auto_present": { "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" + "value": false, + "type": "boolean" }, "type": "primitive" }, - "revealed": { + "auto_verify": { "value": { "value": true, "type": "boolean" }, "type": "primitive" - } - }, - "type": "object" - } - } - ], - "type": "map" - }, - "requested_predicates": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "properties": { - "cred_id": { + }, + "connection_id": { "value": { "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "type": "string" }, "type": "primitive" }, - "timestamp": { + "created_at": { "value": { - "value": 1640995199, - "type": "int" + "value": "2021-12-31 23:59:59+00:00", + "type": "string" }, "type": "primitive" - } - }, - "type": "object" - } - } - ], - "type": "map" - }, - "self_attested_attributes": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": "self_attested_value", - "type": "string" - }, - "type": "primitive" - } - } - ], - "type": "map" - }, - "trace": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "response": { - "value": { - "properties": { - "auto_present": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - }, - "auto_verify": { - "value": { - "value": true, - "type": "boolean" - }, - "type": "primitive" - }, - "connection_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "created_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "error_msg": { - "value": { - "value": "Invalid structure", - "type": "string" - }, - "type": "primitive" - }, - "initiator": { - "value": "self", - "type": "enum" - }, - "presentation": { - "properties": { - "identifiers": { - "value": [ - { - "properties": { - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "schema_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "type": "string" - }, - "type": "primitive" - } + }, + "error_msg": { + "value": { + "value": "Invalid structure", + "type": "string" }, - "type": "object" - } - ], - "type": "array" - }, - "proof": { - "properties": { - "proofs": { - "value": [ - { - "properties": {}, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "requested_proof": { - "properties": { - "predicates": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "properties": {}, - "type": "object" - } - } - ], - "type": "map" - } - }, - "type": "object" - } - }, - "type": "object" - }, - "presentation_exchange_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "presentation_proposal_dict": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" - }, - "presentation_proposal": { - "properties": { - "@type": { + "type": "primitive" + }, + "initiator": { + "value": "self", + "type": "enum" + }, + "presentation_exchange_id": { "value": { - "value": "did:sov:BzCbsNYhMrjHiqZDTUASHg;spec/present-proof/1.0/presentation-preview", + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "type": "string" }, "type": "primitive" }, - "attributes": { - "value": [ - { - "properties": { - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "referent": { - "value": { - "value": "0", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "referent": { - "value": { - "value": "0", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" + "role": { + "value": "prover", + "type": "enum" + }, + "state": { + "value": { + "value": "verified", + "type": "string" + }, + "type": "primitive" + }, + "thread_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "trace": { + "value": { + "value": true, + "type": "boolean" + }, + "type": "primitive" + }, + "updated_at": { + "value": { + "value": "2021-12-31 23:59:59+00:00", + "type": "string" + }, + "type": "primitive" + }, + "verified": { + "value": "true", + "type": "enum" }, - "predicates": { + "verified_msgs": { "value": [ { - "properties": { - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "high_score", - "type": "string" - }, - "type": "primitive" - }, - "predicate": { - "value": ">=", - "type": "enum" - }, - "threshold": { - "value": { - "value": 0, - "type": "int" - }, - "type": "primitive" - } + "value": { + "value": "verified_msgs", + "type": "string" }, - "type": "object" + "type": "primitive" }, { - "properties": { - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "high_score", - "type": "string" - }, - "type": "primitive" - }, - "predicate": { - "value": ">=", - "type": "enum" - }, - "threshold": { - "value": { - "value": 0, - "type": "int" - }, - "type": "primitive" - } + "value": { + "value": "verified_msgs", + "type": "string" }, - "type": "object" + "type": "primitive" } ], "type": "array" } }, "type": "object" - } - }, - "type": "object" - }, - "presentation_request": { - "properties": { - "name": { - "value": { - "value": "Proof request", - "type": "string" - }, - "type": "primitive" }, - "non_revoked": { + { "properties": { - "from": { + "auto_present": { "value": { - "value": 1640995199, - "type": "int" + "value": false, + "type": "boolean" }, "type": "primitive" }, - "to": { + "auto_verify": { "value": { - "value": 1640995199, - "type": "int" + "value": true, + "type": "boolean" }, "type": "primitive" - } - }, - "type": "object" - }, - "nonce": { - "value": { - "value": "1", - "type": "string" - }, - "type": "primitive" - }, - "requested_attributes": { - "value": [ - { - "key": { - "value": "key", + }, + "connection_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "type": "string" }, + "type": "primitive" + }, + "created_at": { "value": { - "properties": { - "name": { - "value": { - "value": "favouriteDrink", - "type": "string" - }, - "type": "primitive" - }, - "names": { - "value": [ - { - "value": { - "value": "age", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "age", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "restrictions": { - "value": [ - { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - } - } - ], - "type": "map" - }, - { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - } - } - ], - "type": "map" - } - ], - "type": "array" - } - }, - "type": "object" - } - } - ], - "type": "map" - }, - "requested_predicates": { - "value": [ - { - "key": { - "value": "key", + "value": "2021-12-31 23:59:59+00:00", "type": "string" }, + "type": "primitive" + }, + "error_msg": { "value": { - "properties": { - "name": { - "value": { - "value": "index", - "type": "string" - }, - "type": "primitive" - }, - "p_type": { - "value": ">=", - "type": "enum" - }, - "p_value": { - "value": { - "value": 0, - "type": "int" - }, - "type": "primitive" - }, - "restrictions": { - "value": [ - { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - } - } - ], - "type": "map" - }, - { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - } - } - ], - "type": "map" - } - ], - "type": "array" - } - }, - "type": "object" - } - } - ], - "type": "map" - }, - "version": { - "value": { - "value": "1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "presentation_request_dict": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" - }, - "request_presentations~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { + "value": "Invalid structure", + "type": "string" + }, + "type": "primitive" + }, + "initiator": { + "value": "self", + "type": "enum" + }, + "presentation_exchange_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "role": { + "value": "prover", + "type": "enum" + }, + "state": { + "value": { + "value": "verified", + "type": "string" + }, + "type": "primitive" + }, + "thread_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "trace": { + "value": { + "value": true, + "type": "boolean" + }, + "type": "primitive" + }, + "updated_at": { + "value": { + "value": "2021-12-31 23:59:59+00:00", + "type": "string" + }, + "type": "primitive" + }, + "verified": { + "value": "true", + "type": "enum" + }, + "verified_msgs": { + "value": [ + { "value": { - "value": "2021-12-31 23:59:59+00:00", + "value": "verified_msgs", "type": "string" }, "type": "primitive" }, - "mime-type": { + { "value": { - "value": "image/png", + "value": "verified_msgs", "type": "string" }, "type": "primitive" } - }, - "type": "object" + ], + "type": "array" } - ], - "type": "array" + }, + "type": "object" } + ], + "type": "array" + } + }, + "type": "object" + }, + "type": "withoutStreaming" + }, + "codeSamples": [], + "type": "full" + } + ], + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + }, + { + "summary": "Fetch a single presentation exchange record", + "audiences": [], + "operationId": "get_pres_ex_record", + "tags": [ + "present-proof v1.0" + ], + "pathParameters": [ + { + "description": "Presentation exchange identifier", + "name": "pres_ex_id", + "schema": { + "schema": { + "pattern": "[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-4[a-fA-F0-9]{3}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}", + "type": "string" + }, + "generatedName": "GetPresExRecordRequestPresExId", + "groupName": [], + "type": "primitive" + }, + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + } + ], + "queryParameters": [], + "headers": [], + "generatedRequestName": "GetPresExRecordRequest", + "response": { + "description": "", + "schema": { + "generatedName": "GetPresExRecordResponse", + "schema": "V10PresentationExchange", + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "reference" + }, + "fullExamples": [], + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "json" + }, + "errors": {}, + "server": [], + "authed": true, + "method": "GET", + "path": "/present-proof/records/{pres_ex_id}", + "examples": [ + { + "pathParameters": [ + { + "name": "pres_ex_id", + "value": { + "value": { + "value": "pres_ex_id", + "type": "string" + }, + "type": "primitive" + } + } + ], + "queryParameters": [], + "headers": [], + "response": { + "value": { + "properties": { + "auto_present": { + "value": { + "value": false, + "type": "boolean" + }, + "type": "primitive" + }, + "auto_verify": { + "value": { + "value": true, + "type": "boolean" + }, + "type": "primitive" + }, + "connection_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "created_at": { + "value": { + "value": "2021-12-31 23:59:59+00:00", + "type": "string" + }, + "type": "primitive" + }, + "error_msg": { + "value": { + "value": "Invalid structure", + "type": "string" }, - "type": "object" + "type": "primitive" + }, + "initiator": { + "value": "self", + "type": "enum" + }, + "presentation_exchange_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" }, "role": { "value": "prover", @@ -53313,9 +24712,9 @@ } }, { - "summary": "Sends a presentation request in reference to a proposal", + "summary": "Remove an existing presentation exchange record", "audiences": [], - "operationId": "send_proof_presentation_request", + "operationId": "delete_pres_ex_record", "tags": [ "present-proof v1.0" ], @@ -53328,7 +24727,7 @@ "pattern": "[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-4[a-fA-F0-9]{3}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}", "type": "string" }, - "generatedName": "SendProofPresentationRequestRequestPresExId", + "generatedName": "DeletePresExRecordRequestPresExId", "groupName": [], "type": "primitive" }, @@ -53340,36 +24739,211 @@ ], "queryParameters": [], "headers": [], - "generatedRequestName": "SendProofPresentationRequestRequest", - "request": { + "generatedRequestName": "DeletePresExRecordRequest", + "response": { + "description": "", "schema": { - "generatedName": "SendProofPresentationRequestRequest", - "schema": "V10PresentationSendRequestToProposal", + "generatedName": "DeletePresExRecordResponse", + "schema": "V10PresentProofModuleResponse", "source": { "file": "../openapi.yml", "type": "openapi" }, "type": "reference" }, - "contentType": "application/json", "fullExamples": [], - "additionalProperties": false, "source": { "file": "../openapi.yml", "type": "openapi" }, "type": "json" }, - "response": { - "description": "", - "schema": { - "generatedName": "SendProofPresentationRequestResponse", - "schema": "V10PresentationExchange", + "errors": {}, + "server": [], + "authed": true, + "method": "DELETE", + "path": "/present-proof/records/{pres_ex_id}", + "examples": [ + { + "pathParameters": [ + { + "name": "pres_ex_id", + "value": { + "value": { + "value": "pres_ex_id", + "type": "string" + }, + "type": "primitive" + } + } + ], + "queryParameters": [], + "headers": [], + "response": { + "value": { + "value": [ + { + "key": { + "value": "key", + "type": "string" + }, + "value": { + "value": { + "value": { + "value": "value", + "type": "string" + }, + "type": "primitive" + }, + "type": "unknown" + } + } + ], + "type": "map" + }, + "type": "withoutStreaming" + }, + "codeSamples": [], + "type": "full" + } + ], + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + }, + { + "summary": "Fetch credentials for a presentation request from wallet", + "audiences": [], + "operationId": "get_pres_ex_credentials", + "tags": [ + "present-proof v1.0" + ], + "pathParameters": [ + { + "description": "Presentation exchange identifier", + "name": "pres_ex_id", + "schema": { + "schema": { + "pattern": "[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-4[a-fA-F0-9]{3}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}", + "type": "string" + }, + "generatedName": "GetPresExCredentialsRequestPresExId", + "groupName": [], + "type": "primitive" + }, + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + } + ], + "queryParameters": [ + { + "description": "Maximum number to retrieve", + "name": "count", + "schema": { + "generatedName": "GetPresExCredentialsRequestCount", + "value": { + "schema": { + "pattern": "^[1-9][0-9]*$", + "type": "string" + }, + "generatedName": "GetPresExCredentialsRequestCount", + "groupName": [], + "type": "primitive" + }, + "groupName": [], + "type": "nullable" + }, "source": { "file": "../openapi.yml", "type": "openapi" + } + }, + { + "description": "(JSON) object mapping referents to extra WQL queries", + "name": "extra_query", + "schema": { + "generatedName": "GetPresExCredentialsRequestExtraQuery", + "value": { + "schema": { + "pattern": "^{\\s*\".*?\"\\s*:\\s*{.*?}\\s*(,\\s*\".*?\"\\s*:\\s*{.*?}\\s*)*\\s*}$", + "type": "string" + }, + "generatedName": "GetPresExCredentialsRequestExtraQuery", + "groupName": [], + "type": "primitive" + }, + "groupName": [], + "type": "nullable" }, - "type": "reference" + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + }, + { + "description": "Proof request referents of interest, comma-separated", + "name": "referent", + "schema": { + "generatedName": "GetPresExCredentialsRequestReferent", + "value": { + "schema": { + "type": "string" + }, + "generatedName": "GetPresExCredentialsRequestReferent", + "groupName": [], + "type": "primitive" + }, + "groupName": [], + "type": "nullable" + }, + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + }, + { + "description": "Start index", + "name": "start", + "schema": { + "generatedName": "GetPresExCredentialsRequestStart", + "value": { + "schema": { + "pattern": "^[0-9]*$", + "type": "string" + }, + "generatedName": "GetPresExCredentialsRequestStart", + "groupName": [], + "type": "primitive" + }, + "groupName": [], + "type": "nullable" + }, + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + } + ], + "headers": [], + "generatedRequestName": "GetPresExCredentialsRequest", + "response": { + "description": "", + "schema": { + "value": { + "generatedName": "GetPresExCredentialsResponseItem", + "schema": "IndyCredPrecis", + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "reference" + }, + "generatedName": "GetPresExCredentialsResponse", + "groupName": [], + "type": "array" }, "fullExamples": [], "source": { @@ -53381,8 +24955,8 @@ "errors": {}, "server": [], "authed": true, - "method": "POST", - "path": "/present-proof/records/{pres_ex_id}/send-request", + "method": "GET", + "path": "/present-proof/records/{pres_ex_id}/credentials", "examples": [ { "pathParameters": [ @@ -53399,722 +24973,167 @@ ], "queryParameters": [], "headers": [], - "request": { - "properties": { - "auto_verify": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - }, - "trace": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - } - }, - "type": "object" - }, "response": { "value": { - "properties": { - "auto_present": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - }, - "auto_verify": { - "value": { - "value": true, - "type": "boolean" - }, - "type": "primitive" - }, - "connection_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "created_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "error_msg": { - "value": { - "value": "Invalid structure", - "type": "string" - }, - "type": "primitive" - }, - "initiator": { - "value": "self", - "type": "enum" - }, - "presentation": { - "properties": { - "identifiers": { - "value": [ - { - "properties": { - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "schema_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "proof": { - "properties": { - "proofs": { - "value": [ - { - "properties": {}, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "requested_proof": { - "properties": { - "predicates": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "properties": {}, - "type": "object" - } - } - ], - "type": "map" - } - }, - "type": "object" - } - }, - "type": "object" - }, - "presentation_exchange_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "presentation_proposal_dict": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" - }, - "presentation_proposal": { - "properties": { - "@type": { - "value": { - "value": "did:sov:BzCbsNYhMrjHiqZDTUASHg;spec/present-proof/1.0/presentation-preview", - "type": "string" - }, - "type": "primitive" - }, - "attributes": { - "value": [ - { - "properties": { - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "referent": { - "value": { - "value": "0", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "referent": { - "value": { - "value": "0", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "predicates": { - "value": [ - { - "properties": { - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "high_score", - "type": "string" - }, - "type": "primitive" - }, - "predicate": { - "value": ">=", - "type": "enum" - }, - "threshold": { - "value": { - "value": 0, - "type": "int" - }, - "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "high_score", - "type": "string" - }, - "type": "primitive" - }, - "predicate": { - "value": ">=", - "type": "enum" - }, - "threshold": { - "value": { - "value": 0, - "type": "int" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - } - }, - "type": "object" - }, - "presentation_request": { + "value": [ + { "properties": { - "name": { - "value": { - "value": "Proof request", - "type": "string" - }, - "type": "primitive" - }, - "non_revoked": { - "properties": { - "from": { - "value": { - "value": 1640995199, - "type": "int" - }, - "type": "primitive" - }, - "to": { - "value": { - "value": 1640995199, - "type": "int" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "nonce": { - "value": { - "value": "1", - "type": "string" - }, - "type": "primitive" - }, - "requested_attributes": { + "presentation_referents": { "value": [ { - "key": { - "value": "key", - "type": "string" - }, "value": { - "properties": { - "name": { - "value": { - "value": "favouriteDrink", - "type": "string" - }, - "type": "primitive" - }, - "names": { - "value": [ - { - "value": { - "value": "age", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "age", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "restrictions": { - "value": [ - { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - } - } - ], - "type": "map" - }, - { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - } - } - ], - "type": "map" - } - ], - "type": "array" - } - }, - "type": "object" - } - } - ], - "type": "map" - }, - "requested_predicates": { - "value": [ - { - "key": { - "value": "key", + "value": "1_age_uuid", "type": "string" }, - "value": { - "properties": { - "name": { - "value": { - "value": "index", - "type": "string" - }, - "type": "primitive" - }, - "p_type": { - "value": ">=", - "type": "enum" - }, - "p_value": { - "value": { - "value": 0, - "type": "int" - }, - "type": "primitive" - }, - "restrictions": { - "value": [ - { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - } - } - ], - "type": "map" - }, - { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - } - } - ], - "type": "map" - } - ], - "type": "array" - } - }, - "type": "object" - } - } - ], - "type": "map" - }, - "version": { - "value": { - "value": "1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "presentation_request_dict": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" - }, - "request_presentations~attach": { - "value": [ + "type": "primitive" + }, { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } + "value": { + "value": "1_age_uuid", + "type": "string" }, - "type": "object" + "type": "primitive" } ], "type": "array" } }, "type": "object" + } + ], + "type": "array" + }, + "type": "withoutStreaming" + }, + "codeSamples": [], + "type": "full" + } + ], + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + }, + { + "summary": "Send a problem report for presentation exchange", + "audiences": [], + "operationId": "report_pres_ex_problem", + "tags": [ + "present-proof v1.0" + ], + "pathParameters": [ + { + "description": "Presentation exchange identifier", + "name": "pres_ex_id", + "schema": { + "schema": { + "pattern": "[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-4[a-fA-F0-9]{3}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}", + "type": "string" + }, + "generatedName": "ReportPresExProblemRequestPresExId", + "groupName": [], + "type": "primitive" + }, + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + } + ], + "queryParameters": [], + "headers": [], + "generatedRequestName": "ReportPresExProblemRequest", + "request": { + "schema": { + "generatedName": "ReportPresExProblemRequest", + "schema": "V10PresentationProblemReportRequest", + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "reference" + }, + "contentType": "application/json", + "fullExamples": [], + "additionalProperties": false, + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "json" + }, + "response": { + "description": "", + "schema": { + "generatedName": "ReportPresExProblemResponse", + "schema": "V10PresentProofModuleResponse", + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "reference" + }, + "fullExamples": [], + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "json" + }, + "errors": {}, + "server": [], + "authed": true, + "method": "POST", + "path": "/present-proof/records/{pres_ex_id}/problem-report", + "examples": [ + { + "pathParameters": [ + { + "name": "pres_ex_id", + "value": { + "value": { + "value": "pres_ex_id", + "type": "string" }, - "role": { - "value": "prover", - "type": "enum" - }, - "state": { - "value": { - "value": "verified", - "type": "string" - }, - "type": "primitive" + "type": "primitive" + } + } + ], + "queryParameters": [], + "headers": [], + "request": { + "properties": { + "description": { + "value": { + "value": "description", + "type": "string" }, - "thread_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "primitive" + } + }, + "type": "object" + }, + "response": { + "value": { + "value": [ + { + "key": { + "value": "key", "type": "string" }, - "type": "primitive" - }, - "trace": { - "value": { - "value": true, - "type": "boolean" - }, - "type": "primitive" - }, - "updated_at": { "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "verified": { - "value": "true", - "type": "enum" - }, - "verified_msgs": { - "value": [ - { + "value": { "value": { - "value": "verified_msgs", + "value": "value", "type": "string" }, "type": "primitive" }, - { - "value": { - "value": "verified_msgs", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" + "type": "unknown" + } } - }, - "type": "object" + ], + "type": "map" }, "type": "withoutStreaming" }, @@ -54128,9 +25147,9 @@ } }, { - "summary": "Verify a received presentation", + "summary": "Sends a proof presentation", "audiences": [], - "operationId": "verify_received_presentation", + "operationId": "send_proof_presentation", "tags": [ "present-proof v1.0" ], @@ -54143,7 +25162,7 @@ "pattern": "[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-4[a-fA-F0-9]{3}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}", "type": "string" }, - "generatedName": "VerifyReceivedPresentationRequestPresExId", + "generatedName": "SendProofPresentationRequestPresExId", "groupName": [], "type": "primitive" }, @@ -54155,11 +25174,30 @@ ], "queryParameters": [], "headers": [], - "generatedRequestName": "VerifyReceivedPresentationRequest", + "generatedRequestName": "SendProofPresentationRequest", + "request": { + "schema": { + "generatedName": "SendProofPresentationRequest", + "schema": "IndyPresSpec", + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "reference" + }, + "contentType": "application/json", + "fullExamples": [], + "additionalProperties": false, + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "json" + }, "response": { "description": "", "schema": { - "generatedName": "VerifyReceivedPresentationResponse", + "generatedName": "SendProofPresentationResponse", "schema": "V10PresentationExchange", "source": { "file": "../openapi.yml", @@ -54178,7 +25216,7 @@ "server": [], "authed": true, "method": "POST", - "path": "/present-proof/records/{pres_ex_id}/verify-presentation", + "path": "/present-proof/records/{pres_ex_id}/send-presentation", "examples": [ { "pathParameters": [ @@ -54186,15 +25224,105 @@ "name": "pres_ex_id", "value": { "value": { - "value": "pres_ex_id", - "type": "string" + "value": "pres_ex_id", + "type": "string" + }, + "type": "primitive" + } + } + ], + "queryParameters": [], + "headers": [], + "request": { + "properties": { + "requested_attributes": { + "value": [ + { + "key": { + "value": "key", + "type": "string" + }, + "value": { + "properties": { + "cred_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "revealed": { + "value": { + "value": true, + "type": "boolean" + }, + "type": "primitive" + } + }, + "type": "object" + } + } + ], + "type": "map" + }, + "requested_predicates": { + "value": [ + { + "key": { + "value": "key", + "type": "string" + }, + "value": { + "properties": { + "cred_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "timestamp": { + "value": { + "value": 1640995199, + "type": "int" + }, + "type": "primitive" + } + }, + "type": "object" + } + } + ], + "type": "map" + }, + "self_attested_attributes": { + "value": [ + { + "key": { + "value": "key", + "type": "string" + }, + "value": { + "value": { + "value": "self_attested_value", + "type": "string" + }, + "type": "primitive" + } + } + ], + "type": "map" + }, + "trace": { + "value": { + "value": false, + "type": "boolean" }, "type": "primitive" } - } - ], - "queryParameters": [], - "headers": [], + }, + "type": "object" + }, "response": { "value": { "properties": { @@ -54237,69 +25365,6 @@ "value": "self", "type": "enum" }, - "presentation": { - "properties": { - "identifiers": { - "value": [ - { - "properties": { - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "schema_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "proof": { - "properties": { - "proofs": { - "value": [ - { - "properties": {}, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "requested_proof": { - "properties": { - "predicates": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "properties": {}, - "type": "object" - } - } - ], - "type": "map" - } - }, - "type": "object" - } - }, - "type": "object" - }, "presentation_exchange_id": { "value": { "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", @@ -54307,534 +25372,6 @@ }, "type": "primitive" }, - "presentation_proposal_dict": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" - }, - "presentation_proposal": { - "properties": { - "@type": { - "value": { - "value": "did:sov:BzCbsNYhMrjHiqZDTUASHg;spec/present-proof/1.0/presentation-preview", - "type": "string" - }, - "type": "primitive" - }, - "attributes": { - "value": [ - { - "properties": { - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "referent": { - "value": { - "value": "0", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "referent": { - "value": { - "value": "0", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "predicates": { - "value": [ - { - "properties": { - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "high_score", - "type": "string" - }, - "type": "primitive" - }, - "predicate": { - "value": ">=", - "type": "enum" - }, - "threshold": { - "value": { - "value": 0, - "type": "int" - }, - "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "high_score", - "type": "string" - }, - "type": "primitive" - }, - "predicate": { - "value": ">=", - "type": "enum" - }, - "threshold": { - "value": { - "value": 0, - "type": "int" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - } - }, - "type": "object" - }, - "presentation_request": { - "properties": { - "name": { - "value": { - "value": "Proof request", - "type": "string" - }, - "type": "primitive" - }, - "non_revoked": { - "properties": { - "from": { - "value": { - "value": 1640995199, - "type": "int" - }, - "type": "primitive" - }, - "to": { - "value": { - "value": 1640995199, - "type": "int" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "nonce": { - "value": { - "value": "1", - "type": "string" - }, - "type": "primitive" - }, - "requested_attributes": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "properties": { - "name": { - "value": { - "value": "favouriteDrink", - "type": "string" - }, - "type": "primitive" - }, - "names": { - "value": [ - { - "value": { - "value": "age", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "age", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "restrictions": { - "value": [ - { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - } - } - ], - "type": "map" - }, - { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - } - } - ], - "type": "map" - } - ], - "type": "array" - } - }, - "type": "object" - } - } - ], - "type": "map" - }, - "requested_predicates": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "properties": { - "name": { - "value": { - "value": "index", - "type": "string" - }, - "type": "primitive" - }, - "p_type": { - "value": ">=", - "type": "enum" - }, - "p_value": { - "value": { - "value": 0, - "type": "int" - }, - "type": "primitive" - }, - "restrictions": { - "value": [ - { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - } - } - ], - "type": "map" - }, - { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - } - } - ], - "type": "map" - } - ], - "type": "array" - } - }, - "type": "object" - } - } - ], - "type": "map" - }, - "version": { - "value": { - "value": "1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "presentation_request_dict": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" - }, - "request_presentations~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" - }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, "role": { "value": "prover", "type": "enum" @@ -54905,20 +25442,38 @@ } }, { - "summary": "Sends a presentation proposal", + "summary": "Sends a presentation request in reference to a proposal", "audiences": [], - "operationId": "send_presentation_proposal", + "operationId": "send_proof_presentation_request", "tags": [ "present-proof v1.0" ], - "pathParameters": [], + "pathParameters": [ + { + "description": "Presentation exchange identifier", + "name": "pres_ex_id", + "schema": { + "schema": { + "pattern": "[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-4[a-fA-F0-9]{3}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}", + "type": "string" + }, + "generatedName": "SendProofPresentationRequestRequestPresExId", + "groupName": [], + "type": "primitive" + }, + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + } + ], "queryParameters": [], "headers": [], - "generatedRequestName": "SendPresentationProposalRequest", + "generatedRequestName": "SendProofPresentationRequestRequest", "request": { "schema": { - "generatedName": "SendPresentationProposalRequest", - "schema": "V10PresentationProposalRequest", + "generatedName": "SendProofPresentationRequestRequest", + "schema": "V10PresentationSendRequestToProposal", "source": { "file": "../openapi.yml", "type": "openapi" @@ -54937,7 +25492,7 @@ "response": { "description": "", "schema": { - "generatedName": "SendPresentationProposalResponse", + "generatedName": "SendProofPresentationRequestResponse", "schema": "V10PresentationExchange", "source": { "file": "../openapi.yml", @@ -54956,197 +25511,32 @@ "server": [], "authed": true, "method": "POST", - "path": "/present-proof/send-proposal", + "path": "/present-proof/records/{pres_ex_id}/send-request", "examples": [ { - "pathParameters": [], + "pathParameters": [ + { + "name": "pres_ex_id", + "value": { + "value": { + "value": "pres_ex_id", + "type": "string" + }, + "type": "primitive" + } + } + ], "queryParameters": [], "headers": [], "request": { "properties": { - "auto_present": { + "auto_verify": { "value": { - "value": true, + "value": false, "type": "boolean" }, "type": "primitive" }, - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" - }, - "connection_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "presentation_proposal": { - "properties": { - "@type": { - "value": { - "value": "did:sov:BzCbsNYhMrjHiqZDTUASHg;spec/present-proof/1.0/presentation-preview", - "type": "string" - }, - "type": "primitive" - }, - "attributes": { - "value": [ - { - "properties": { - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "referent": { - "value": { - "value": "0", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "referent": { - "value": { - "value": "0", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "predicates": { - "value": [ - { - "properties": { - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "high_score", - "type": "string" - }, - "type": "primitive" - }, - "predicate": { - "value": ">=", - "type": "enum" - }, - "threshold": { - "value": { - "value": 0, - "type": "int" - }, - "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "high_score", - "type": "string" - }, - "type": "primitive" - }, - "predicate": { - "value": ">=", - "type": "enum" - }, - "threshold": { - "value": { - "value": 0, - "type": "int" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, "trace": { "value": { "value": false, @@ -55199,603 +25589,569 @@ "value": "self", "type": "enum" }, - "presentation": { - "properties": { - "identifiers": { - "value": [ - { - "properties": { - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "schema_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "proof": { - "properties": { - "proofs": { - "value": [ - { - "properties": {}, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "requested_proof": { - "properties": { - "predicates": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "properties": {}, - "type": "object" - } - } - ], - "type": "map" - } - }, - "type": "object" - } + "presentation_exchange_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" }, - "type": "object" + "type": "primitive" }, - "presentation_exchange_id": { + "role": { + "value": "prover", + "type": "enum" + }, + "state": { + "value": { + "value": "verified", + "type": "string" + }, + "type": "primitive" + }, + "thread_id": { "value": { "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "type": "string" }, "type": "primitive" }, - "presentation_proposal_dict": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { + "trace": { + "value": { + "value": true, + "type": "boolean" + }, + "type": "primitive" + }, + "updated_at": { + "value": { + "value": "2021-12-31 23:59:59+00:00", + "type": "string" + }, + "type": "primitive" + }, + "verified": { + "value": "true", + "type": "enum" + }, + "verified_msgs": { + "value": [ + { "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", + "value": "verified_msgs", "type": "string" }, "type": "primitive" }, - "comment": { + { "value": { - "value": "comment", + "value": "verified_msgs", "type": "string" }, "type": "primitive" - }, - "presentation_proposal": { - "properties": { - "@type": { - "value": { - "value": "did:sov:BzCbsNYhMrjHiqZDTUASHg;spec/present-proof/1.0/presentation-preview", - "type": "string" - }, - "type": "primitive" - }, - "attributes": { - "value": [ - { - "properties": { - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "referent": { - "value": { - "value": "0", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "referent": { - "value": { - "value": "0", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "predicates": { - "value": [ - { - "properties": { - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "high_score", - "type": "string" - }, - "type": "primitive" - }, - "predicate": { - "value": ">=", - "type": "enum" - }, - "threshold": { - "value": { - "value": 0, - "type": "int" - }, - "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "high_score", - "type": "string" - }, - "type": "primitive" - }, - "predicate": { - "value": ">=", - "type": "enum" - }, - "threshold": { - "value": { - "value": 0, - "type": "int" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" } + ], + "type": "array" + } + }, + "type": "object" + }, + "type": "withoutStreaming" + }, + "codeSamples": [], + "type": "full" + } + ], + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + }, + { + "summary": "Verify a received presentation", + "audiences": [], + "operationId": "verify_received_presentation", + "tags": [ + "present-proof v1.0" + ], + "pathParameters": [ + { + "description": "Presentation exchange identifier", + "name": "pres_ex_id", + "schema": { + "schema": { + "pattern": "[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-4[a-fA-F0-9]{3}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}", + "type": "string" + }, + "generatedName": "VerifyReceivedPresentationRequestPresExId", + "groupName": [], + "type": "primitive" + }, + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + } + ], + "queryParameters": [], + "headers": [], + "generatedRequestName": "VerifyReceivedPresentationRequest", + "response": { + "description": "", + "schema": { + "generatedName": "VerifyReceivedPresentationResponse", + "schema": "V10PresentationExchange", + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "reference" + }, + "fullExamples": [], + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "json" + }, + "errors": {}, + "server": [], + "authed": true, + "method": "POST", + "path": "/present-proof/records/{pres_ex_id}/verify-presentation", + "examples": [ + { + "pathParameters": [ + { + "name": "pres_ex_id", + "value": { + "value": { + "value": "pres_ex_id", + "type": "string" + }, + "type": "primitive" + } + } + ], + "queryParameters": [], + "headers": [], + "response": { + "value": { + "properties": { + "auto_present": { + "value": { + "value": false, + "type": "boolean" }, - "type": "object" + "type": "primitive" }, - "presentation_request": { - "properties": { - "name": { + "auto_verify": { + "value": { + "value": true, + "type": "boolean" + }, + "type": "primitive" + }, + "connection_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "created_at": { + "value": { + "value": "2021-12-31 23:59:59+00:00", + "type": "string" + }, + "type": "primitive" + }, + "error_msg": { + "value": { + "value": "Invalid structure", + "type": "string" + }, + "type": "primitive" + }, + "initiator": { + "value": "self", + "type": "enum" + }, + "presentation_exchange_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "role": { + "value": "prover", + "type": "enum" + }, + "state": { + "value": { + "value": "verified", + "type": "string" + }, + "type": "primitive" + }, + "thread_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "trace": { + "value": { + "value": true, + "type": "boolean" + }, + "type": "primitive" + }, + "updated_at": { + "value": { + "value": "2021-12-31 23:59:59+00:00", + "type": "string" + }, + "type": "primitive" + }, + "verified": { + "value": "true", + "type": "enum" + }, + "verified_msgs": { + "value": [ + { "value": { - "value": "Proof request", + "value": "verified_msgs", "type": "string" }, "type": "primitive" }, - "non_revoked": { - "properties": { - "from": { - "value": { - "value": 1640995199, - "type": "int" - }, - "type": "primitive" - }, - "to": { - "value": { - "value": 1640995199, - "type": "int" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "nonce": { + { "value": { - "value": "1", + "value": "verified_msgs", "type": "string" }, "type": "primitive" + } + ], + "type": "array" + } + }, + "type": "object" + }, + "type": "withoutStreaming" + }, + "codeSamples": [], + "type": "full" + } + ], + "source": { + "file": "../openapi.yml", + "type": "openapi" + } + }, + { + "summary": "Sends a presentation proposal", + "audiences": [], + "operationId": "send_presentation_proposal", + "tags": [ + "present-proof v1.0" + ], + "pathParameters": [], + "queryParameters": [], + "headers": [], + "generatedRequestName": "SendPresentationProposalRequest", + "request": { + "schema": { + "generatedName": "SendPresentationProposalRequest", + "schema": "V10PresentationProposalRequest", + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "reference" + }, + "contentType": "application/json", + "fullExamples": [], + "additionalProperties": false, + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "json" + }, + "response": { + "description": "", + "schema": { + "generatedName": "SendPresentationProposalResponse", + "schema": "V10PresentationExchange", + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "reference" + }, + "fullExamples": [], + "source": { + "file": "../openapi.yml", + "type": "openapi" + }, + "type": "json" + }, + "errors": {}, + "server": [], + "authed": true, + "method": "POST", + "path": "/present-proof/send-proposal", + "examples": [ + { + "pathParameters": [], + "queryParameters": [], + "headers": [], + "request": { + "properties": { + "auto_present": { + "value": { + "value": true, + "type": "boolean" + }, + "type": "primitive" + }, + "comment": { + "value": { + "value": "comment", + "type": "string" + }, + "type": "primitive" + }, + "connection_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "presentation_proposal": { + "properties": { + "@type": { + "value": { + "value": "did:sov:BzCbsNYhMrjHiqZDTUASHg;spec/present-proof/1.0/presentation-preview", + "type": "string" }, - "requested_attributes": { - "value": [ - { - "key": { - "value": "key", - "type": "string" + "type": "primitive" + }, + "attributes": { + "value": [ + { + "properties": { + "cred_def_id": { + "value": { + "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", + "type": "string" + }, + "type": "primitive" + }, + "mime-type": { + "value": { + "value": "image/jpeg", + "type": "string" + }, + "type": "primitive" + }, + "name": { + "value": { + "value": "favourite_drink", + "type": "string" + }, + "type": "primitive" + }, + "referent": { + "value": { + "value": "0", + "type": "string" + }, + "type": "primitive" }, "value": { - "properties": { - "name": { - "value": { - "value": "favouriteDrink", - "type": "string" - }, - "type": "primitive" - }, - "names": { - "value": [ - { - "value": { - "value": "age", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "age", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "restrictions": { - "value": [ - { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - } - } - ], - "type": "map" - }, - { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - } - } - ], - "type": "map" - } - ], - "type": "array" - } + "value": { + "value": "martini", + "type": "string" }, - "type": "object" + "type": "primitive" } - } - ], - "type": "map" - }, - "requested_predicates": { - "value": [ - { - "key": { - "value": "key", - "type": "string" + }, + "type": "object" + }, + { + "properties": { + "cred_def_id": { + "value": { + "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", + "type": "string" + }, + "type": "primitive" + }, + "mime-type": { + "value": { + "value": "image/jpeg", + "type": "string" + }, + "type": "primitive" + }, + "name": { + "value": { + "value": "favourite_drink", + "type": "string" + }, + "type": "primitive" + }, + "referent": { + "value": { + "value": "0", + "type": "string" + }, + "type": "primitive" }, "value": { - "properties": { - "name": { - "value": { - "value": "index", - "type": "string" - }, - "type": "primitive" - }, - "p_type": { - "value": ">=", - "type": "enum" - }, - "p_value": { - "value": { - "value": 0, - "type": "int" - }, - "type": "primitive" - }, - "restrictions": { - "value": [ - { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - } - } - ], - "type": "map" - }, - { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - } - } - ], - "type": "map" - } - ], - "type": "array" - } + "value": { + "value": "martini", + "type": "string" }, - "type": "object" + "type": "primitive" } - } - ], - "type": "map" - }, - "version": { - "value": { - "value": "1.0", - "type": "string" - }, - "type": "primitive" - } + }, + "type": "object" + } + ], + "type": "array" }, - "type": "object" - }, - "presentation_request_dict": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" - }, - "request_presentations~attach": { - "value": [ - { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "byte_count": { - "value": { - "value": 1234, - "type": "int" - }, - "type": "primitive" + "predicates": { + "value": [ + { + "properties": { + "cred_def_id": { + "value": { + "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", + "type": "string" }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" - }, - "links": { - "value": [ - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" + "type": "primitive" + }, + "name": { + "value": { + "value": "high_score", + "type": "string" }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" + "type": "primitive" + }, + "predicate": { + "value": ">=", + "type": "enum" + }, + "threshold": { + "value": { + "value": 0, + "type": "int" }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" + "type": "primitive" + } + }, + "type": "object" + }, + { + "properties": { + "cred_def_id": { + "value": { + "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", + "type": "string" }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" + "type": "primitive" + }, + "name": { + "value": { + "value": "high_score", + "type": "string" }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" - } + "type": "primitive" }, - "type": "object" - } - ], - "type": "array" - } + "predicate": { + "value": ">=", + "type": "enum" + }, + "threshold": { + "value": { + "value": 0, + "type": "int" + }, + "type": "primitive" + } + }, + "type": "object" + } + ], + "type": "array" + } + }, + "type": "object" + }, + "trace": { + "value": { + "value": false, + "type": "boolean" + }, + "type": "primitive" + } + }, + "type": "object" + }, + "response": { + "value": { + "properties": { + "auto_present": { + "value": { + "value": false, + "type": "boolean" }, - "type": "object" + "type": "primitive" + }, + "auto_verify": { + "value": { + "value": true, + "type": "boolean" + }, + "type": "primitive" + }, + "connection_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "created_at": { + "value": { + "value": "2021-12-31 23:59:59+00:00", + "type": "string" + }, + "type": "primitive" + }, + "error_msg": { + "value": { + "value": "Invalid structure", + "type": "string" + }, + "type": "primitive" + }, + "initiator": { + "value": "self", + "type": "enum" + }, + "presentation_exchange_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" }, "role": { "value": "prover", @@ -55950,751 +26306,132 @@ "proof_request": { "properties": { "name": { - "value": { - "value": "Proof request", - "type": "string" - }, - "type": "primitive" - }, - "nonce": { - "value": { - "value": "1", - "type": "string" - }, - "type": "primitive" - }, - "requested_attributes": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "properties": { - "name": { - "value": { - "value": "favouriteDrink", - "type": "string" - }, - "type": "primitive" - }, - "names": { - "value": [ - { - "value": { - "value": "age", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "age", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "restrictions": { - "value": [ - { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - } - } - ], - "type": "map" - }, - { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - } - } - ], - "type": "map" - } - ], - "type": "array" - } - }, - "type": "object" - } - } - ], - "type": "map" - }, - "requested_predicates": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "properties": { - "name": { - "value": { - "value": "index", - "type": "string" - }, - "type": "primitive" - }, - "p_type": { - "value": ">=", - "type": "enum" - }, - "p_value": { - "value": { - "value": 0, - "type": "int" - }, - "type": "primitive" - }, - "restrictions": { - "value": [ - { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - } - } - ], - "type": "map" - }, - { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - } - } - ], - "type": "map" - } - ], - "type": "array" - } - }, - "type": "object" - } - } - ], - "type": "map" - }, - "version": { - "value": { - "value": "1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "trace": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "response": { - "value": { - "properties": { - "auto_present": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - }, - "auto_verify": { - "value": { - "value": true, - "type": "boolean" - }, - "type": "primitive" - }, - "connection_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "created_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "error_msg": { - "value": { - "value": "Invalid structure", - "type": "string" - }, - "type": "primitive" - }, - "initiator": { - "value": "self", - "type": "enum" - }, - "presentation": { - "properties": { - "identifiers": { - "value": [ - { - "properties": { - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "schema_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "proof": { - "properties": { - "proofs": { - "value": [ - { - "properties": {}, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "requested_proof": { - "properties": { - "predicates": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "properties": {}, - "type": "object" - } - } - ], - "type": "map" - } - }, - "type": "object" - } - }, - "type": "object" - }, - "presentation_exchange_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "presentation_proposal_dict": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" - }, - "presentation_proposal": { - "properties": { - "@type": { - "value": { - "value": "did:sov:BzCbsNYhMrjHiqZDTUASHg;spec/present-proof/1.0/presentation-preview", - "type": "string" - }, - "type": "primitive" - }, - "attributes": { - "value": [ - { - "properties": { - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "referent": { - "value": { - "value": "0", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - { - "properties": { - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/jpeg", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "favourite_drink", - "type": "string" - }, - "type": "primitive" - }, - "referent": { - "value": { - "value": "0", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "martini", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" + "value": { + "value": "Proof request", + "type": "string" + }, + "type": "primitive" + }, + "nonce": { + "value": { + "value": "1", + "type": "string" + }, + "type": "primitive" + }, + "requested_attributes": { + "value": [ + { + "key": { + "value": "key", + "type": "string" }, - "predicates": { - "value": [ - { - "properties": { - "cred_def_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "high_score", - "type": "string" - }, - "type": "primitive" - }, - "predicate": { - "value": ">=", - "type": "enum" - }, - "threshold": { - "value": { - "value": 0, - "type": "int" - }, - "type": "primitive" - } + "value": { + "properties": { + "name": { + "value": { + "value": "favouriteDrink", + "type": "string" }, - "type": "object" + "type": "primitive" }, - { - "properties": { - "cred_def_id": { + "names": { + "value": [ + { "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", + "value": "age", "type": "string" }, "type": "primitive" }, - "name": { + { "value": { - "value": "high_score", + "value": "age", "type": "string" }, "type": "primitive" - }, - "predicate": { - "value": ">=", - "type": "enum" - }, - "threshold": { - "value": { - "value": 0, - "type": "int" - }, - "type": "primitive" } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - } - }, - "type": "object" - }, - "presentation_request": { - "properties": { - "name": { - "value": { - "value": "Proof request", - "type": "string" - }, - "type": "primitive" - }, - "non_revoked": { - "properties": { - "from": { - "value": { - "value": 1640995199, - "type": "int" - }, - "type": "primitive" - }, - "to": { - "value": { - "value": 1640995199, - "type": "int" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "nonce": { - "value": { - "value": "1", - "type": "string" - }, - "type": "primitive" - }, - "requested_attributes": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "properties": { - "name": { - "value": { - "value": "favouriteDrink", - "type": "string" - }, - "type": "primitive" - }, - "names": { - "value": [ - { - "value": { - "value": "age", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "age", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "restrictions": { - "value": [ - { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, + ], + "type": "array" + }, + "restrictions": { + "value": [ + { + "value": [ + { + "key": { + "value": "key", + "type": "string" + }, + "value": { "value": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - } - } - ], - "type": "map" - }, - { - "value": [ - { - "key": { - "value": "key", + "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", "type": "string" }, - "value": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - } + "type": "primitive" } - ], - "type": "map" - } - ], - "type": "array" - } - }, - "type": "object" - } - } - ], - "type": "map" - }, - "requested_predicates": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "properties": { - "name": { - "value": { - "value": "index", - "type": "string" - }, - "type": "primitive" - }, - "p_type": { - "value": ">=", - "type": "enum" - }, - "p_value": { - "value": { - "value": 0, - "type": "int" + } + ], + "type": "map" }, - "type": "primitive" - }, - "restrictions": { - "value": [ - { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, + { + "value": [ + { + "key": { + "value": "key", + "type": "string" + }, + "value": { "value": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - } - } - ], - "type": "map" - }, - { - "value": [ - { - "key": { - "value": "key", + "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", "type": "string" }, - "value": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - } + "type": "primitive" } - ], - "type": "map" - } - ], - "type": "array" - } - }, - "type": "object" - } + } + ], + "type": "map" + } + ], + "type": "array" + } + }, + "type": "object" } - ], - "type": "map" - }, - "version": { - "value": { - "value": "1.0", - "type": "string" - }, - "type": "primitive" - } + } + ], + "type": "map" }, - "type": "object" - }, - "presentation_request_dict": { - "properties": { - "@id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "@type": { - "value": { - "value": "https://didcomm.org/my-family/1.0/my-message-type", - "type": "string" - }, - "type": "primitive" - }, - "comment": { - "value": { - "value": "comment", - "type": "string" - }, - "type": "primitive" - }, - "request_presentations~attach": { - "value": [ - { + "requested_predicates": { + "value": [ + { + "key": { + "value": "key", + "type": "string" + }, + "value": { "properties": { - "@id": { + "name": { "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "value": "index", "type": "string" }, "type": "primitive" }, - "byte_count": { + "p_type": { + "value": ">=", + "type": "enum" + }, + "p_value": { "value": { - "value": 1234, + "value": 0, "type": "int" }, "type": "primitive" }, - "data": { - "properties": { - "base64": { - "value": { - "value": "ey4uLn0=", - "type": "string" - }, - "type": "primitive" - }, - "json": { + "restrictions": { + "value": [ + { "value": [ { "key": { @@ -56703,83 +26440,111 @@ }, "value": { "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" + "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", + "type": "string" }, - "type": "unknown" + "type": "primitive" } } ], "type": "map" }, - "links": { + { "value": [ { - "value": { - "value": "https://link.to/data", + "key": { + "value": "key", "type": "string" }, - "type": "primitive" - }, - { "value": { - "value": "https://link.to/data", - "type": "string" - }, - "type": "primitive" + "value": { + "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", + "type": "string" + }, + "type": "primitive" + } } ], - "type": "array" - }, - "sha256": { - "value": { - "value": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - "type": "string" - }, - "type": "primitive" + "type": "map" } - }, - "type": "object" - }, - "description": { - "value": { - "value": "view from doorway, facing east, with lights off", - "type": "string" - }, - "type": "primitive" - }, - "filename": { - "value": { - "value": "IMG1092348.png", - "type": "string" - }, - "type": "primitive" - }, - "lastmod_time": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "mime-type": { - "value": { - "value": "image/png", - "type": "string" - }, - "type": "primitive" + ], + "type": "array" } }, "type": "object" } - ], - "type": "array" - } + } + ], + "type": "map" }, - "type": "object" + "version": { + "value": { + "value": "1.0", + "type": "string" + }, + "type": "primitive" + } + }, + "type": "object" + }, + "trace": { + "value": { + "value": false, + "type": "boolean" + }, + "type": "primitive" + } + }, + "type": "object" + }, + "response": { + "value": { + "properties": { + "auto_present": { + "value": { + "value": false, + "type": "boolean" + }, + "type": "primitive" + }, + "auto_verify": { + "value": { + "value": true, + "type": "boolean" + }, + "type": "primitive" + }, + "connection_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" + }, + "created_at": { + "value": { + "value": "2021-12-31 23:59:59+00:00", + "type": "string" + }, + "type": "primitive" + }, + "error_msg": { + "value": { + "value": "Invalid structure", + "type": "string" + }, + "type": "primitive" + }, + "initiator": { + "value": "self", + "type": "enum" + }, + "presentation_exchange_id": { + "value": { + "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "type": "string" + }, + "type": "primitive" }, "role": { "value": "prover", @@ -57084,96 +26849,6 @@ }, "type": "literal" }, - "revoc_reg_def": { - "properties": { - "credDefId": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "type": "string" - }, - "type": "primitive" - }, - "revocDefType": { - "value": { - "value": "CL_ACCUM", - "type": "string" - }, - "type": "literal" - }, - "tag": { - "value": { - "value": "tag", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "properties": { - "maxCredNum": { - "value": { - "value": 10, - "type": "int" - }, - "type": "primitive" - }, - "tailsHash": { - "value": { - "value": "H3C2AVvLMv6gmMNam3uVAjZpfkcJCwDwnZn6z3wXmqPV", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "ver": { - "value": { - "value": "1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "revoc_reg_entry": { - "properties": { - "value": { - "properties": { - "accum": { - "value": { - "value": "21 11792B036AED0AAA12A4 4 298B2571FFC63A737", - "type": "string" - }, - "type": "primitive" - }, - "prevAccum": { - "value": { - "value": "21 137AC810975E4 6 76F0384B6F23", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "ver": { - "value": { - "value": "1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, "revoc_reg_id": { "value": { "value": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", @@ -57530,96 +27205,6 @@ }, "type": "literal" }, - "revoc_reg_def": { - "properties": { - "credDefId": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "type": "string" - }, - "type": "primitive" - }, - "revocDefType": { - "value": { - "value": "CL_ACCUM", - "type": "string" - }, - "type": "literal" - }, - "tag": { - "value": { - "value": "tag", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "properties": { - "maxCredNum": { - "value": { - "value": 10, - "type": "int" - }, - "type": "primitive" - }, - "tailsHash": { - "value": { - "value": "H3C2AVvLMv6gmMNam3uVAjZpfkcJCwDwnZn6z3wXmqPV", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "ver": { - "value": { - "value": "1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "revoc_reg_entry": { - "properties": { - "value": { - "properties": { - "accum": { - "value": { - "value": "21 11792B036AED0AAA12A4 4 298B2571FFC63A737", - "type": "string" - }, - "type": "primitive" - }, - "prevAccum": { - "value": { - "value": "21 137AC810975E4 6 76F0384B6F23", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "ver": { - "value": { - "value": "1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, "revoc_reg_id": { "value": { "value": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", @@ -58007,180 +27592,6 @@ } }, "type": "object" - }, - "txn": { - "properties": { - "_type": { - "value": { - "value": "101", - "type": "string" - }, - "type": "primitive" - }, - "connection_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "created_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "endorser_write_txn": { - "value": { - "value": true, - "type": "boolean" - }, - "type": "primitive" - }, - "formats": { - "value": [ - { - "value": [ - { - "key": { - "value": "attach_id", - "type": "string" - }, - "value": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - } - }, - { - "key": { - "value": "format", - "type": "string" - }, - "value": { - "value": { - "value": "dif/endorse-transaction/request@v1.0", - "type": "string" - }, - "type": "primitive" - } - } - ], - "type": "map" - }, - { - "value": [ - { - "key": { - "value": "attach_id", - "type": "string" - }, - "value": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - } - }, - { - "key": { - "value": "format", - "type": "string" - }, - "value": { - "value": { - "value": "dif/endorse-transaction/request@v1.0", - "type": "string" - }, - "type": "primitive" - } - } - ], - "type": "map" - } - ], - "type": "array" - }, - "messages_attach": { - "value": [ - { - "properties": {}, - "type": "object" - }, - { - "properties": {}, - "type": "object" - } - ], - "type": "array" - }, - "signature_request": { - "value": [ - { - "properties": {}, - "type": "object" - }, - { - "properties": {}, - "type": "object" - } - ], - "type": "array" - }, - "signature_response": { - "value": [ - { - "properties": {}, - "type": "object" - }, - { - "properties": {}, - "type": "object" - } - ], - "type": "array" - }, - "state": { - "value": { - "value": "active", - "type": "string" - }, - "type": "primitive" - }, - "thread_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "trace": { - "value": { - "value": true, - "type": "boolean" - }, - "type": "primitive" - }, - "transaction_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "updated_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" } }, "type": "object" @@ -58592,96 +28003,6 @@ }, "type": "literal" }, - "revoc_reg_def": { - "properties": { - "credDefId": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "type": "string" - }, - "type": "primitive" - }, - "revocDefType": { - "value": { - "value": "CL_ACCUM", - "type": "string" - }, - "type": "literal" - }, - "tag": { - "value": { - "value": "tag", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "properties": { - "maxCredNum": { - "value": { - "value": 10, - "type": "int" - }, - "type": "primitive" - }, - "tailsHash": { - "value": { - "value": "H3C2AVvLMv6gmMNam3uVAjZpfkcJCwDwnZn6z3wXmqPV", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "ver": { - "value": { - "value": "1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "revoc_reg_entry": { - "properties": { - "value": { - "properties": { - "accum": { - "value": { - "value": "21 11792B036AED0AAA12A4 4 298B2571FFC63A737", - "type": "string" - }, - "type": "primitive" - }, - "prevAccum": { - "value": { - "value": "21 137AC810975E4 6 76F0384B6F23", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "ver": { - "value": { - "value": "1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, "revoc_reg_id": { "value": { "value": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", @@ -58920,96 +28241,6 @@ }, "type": "literal" }, - "revoc_reg_def": { - "properties": { - "credDefId": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "type": "string" - }, - "type": "primitive" - }, - "revocDefType": { - "value": { - "value": "CL_ACCUM", - "type": "string" - }, - "type": "literal" - }, - "tag": { - "value": { - "value": "tag", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "properties": { - "maxCredNum": { - "value": { - "value": 10, - "type": "int" - }, - "type": "primitive" - }, - "tailsHash": { - "value": { - "value": "H3C2AVvLMv6gmMNam3uVAjZpfkcJCwDwnZn6z3wXmqPV", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "ver": { - "value": { - "value": "1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "revoc_reg_entry": { - "properties": { - "value": { - "properties": { - "accum": { - "value": { - "value": "21 11792B036AED0AAA12A4 4 298B2571FFC63A737", - "type": "string" - }, - "type": "primitive" - }, - "prevAccum": { - "value": { - "value": "21 137AC810975E4 6 76F0384B6F23", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "ver": { - "value": { - "value": "1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, "revoc_reg_id": { "value": { "value": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", @@ -59262,44 +28493,6 @@ }, "type": "literal" }, - "revoc_reg_def": { - "properties": { - "credDefId": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "type": "string" - }, - "type": "primitive" - }, - "ver": { - "value": { - "value": "1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "revoc_reg_entry": { - "properties": { - "ver": { - "value": { - "value": "1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, "revoc_reg_id": { "value": { "value": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", @@ -59354,180 +28547,6 @@ } }, "type": "object" - }, - "txn": { - "properties": { - "_type": { - "value": { - "value": "101", - "type": "string" - }, - "type": "primitive" - }, - "connection_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "created_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "endorser_write_txn": { - "value": { - "value": true, - "type": "boolean" - }, - "type": "primitive" - }, - "formats": { - "value": [ - { - "value": [ - { - "key": { - "value": "attach_id", - "type": "string" - }, - "value": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - } - }, - { - "key": { - "value": "format", - "type": "string" - }, - "value": { - "value": { - "value": "dif/endorse-transaction/request@v1.0", - "type": "string" - }, - "type": "primitive" - } - } - ], - "type": "map" - }, - { - "value": [ - { - "key": { - "value": "attach_id", - "type": "string" - }, - "value": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - } - }, - { - "key": { - "value": "format", - "type": "string" - }, - "value": { - "value": { - "value": "dif/endorse-transaction/request@v1.0", - "type": "string" - }, - "type": "primitive" - } - } - ], - "type": "map" - } - ], - "type": "array" - }, - "messages_attach": { - "value": [ - { - "properties": {}, - "type": "object" - }, - { - "properties": {}, - "type": "object" - } - ], - "type": "array" - }, - "signature_request": { - "value": [ - { - "properties": {}, - "type": "object" - }, - { - "properties": {}, - "type": "object" - } - ], - "type": "array" - }, - "signature_response": { - "value": [ - { - "properties": {}, - "type": "object" - }, - { - "properties": {}, - "type": "object" - } - ], - "type": "array" - }, - "state": { - "value": { - "value": "active", - "type": "string" - }, - "type": "primitive" - }, - "thread_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "trace": { - "value": { - "value": true, - "type": "boolean" - }, - "type": "primitive" - }, - "transaction_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "updated_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" } }, "type": "object" @@ -59727,96 +28746,6 @@ }, "type": "literal" }, - "revoc_reg_def": { - "properties": { - "credDefId": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "type": "string" - }, - "type": "primitive" - }, - "revocDefType": { - "value": { - "value": "CL_ACCUM", - "type": "string" - }, - "type": "literal" - }, - "tag": { - "value": { - "value": "tag", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "properties": { - "maxCredNum": { - "value": { - "value": 10, - "type": "int" - }, - "type": "primitive" - }, - "tailsHash": { - "value": { - "value": "H3C2AVvLMv6gmMNam3uVAjZpfkcJCwDwnZn6z3wXmqPV", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "ver": { - "value": { - "value": "1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "revoc_reg_entry": { - "properties": { - "value": { - "properties": { - "accum": { - "value": { - "value": "21 11792B036AED0AAA12A4 4 298B2571FFC63A737", - "type": "string" - }, - "type": "primitive" - }, - "prevAccum": { - "value": { - "value": "21 137AC810975E4 6 76F0384B6F23", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "ver": { - "value": { - "value": "1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, "revoc_reg_id": { "value": { "value": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", @@ -60591,96 +29520,6 @@ }, "type": "literal" }, - "revoc_reg_def": { - "properties": { - "credDefId": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "type": "string" - }, - "type": "primitive" - }, - "id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "type": "string" - }, - "type": "primitive" - }, - "revocDefType": { - "value": { - "value": "CL_ACCUM", - "type": "string" - }, - "type": "literal" - }, - "tag": { - "value": { - "value": "tag", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "properties": { - "maxCredNum": { - "value": { - "value": 10, - "type": "int" - }, - "type": "primitive" - }, - "tailsHash": { - "value": { - "value": "H3C2AVvLMv6gmMNam3uVAjZpfkcJCwDwnZn6z3wXmqPV", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "ver": { - "value": { - "value": "1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "revoc_reg_entry": { - "properties": { - "value": { - "properties": { - "accum": { - "value": { - "value": "21 11792B036AED0AAA12A4 4 298B2571FFC63A737", - "type": "string" - }, - "type": "primitive" - }, - "prevAccum": { - "value": { - "value": "21 137AC810975E4 6 76F0384B6F23", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "ver": { - "value": { - "value": "1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, "revoc_reg_id": { "value": { "value": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", @@ -61241,253 +30080,7 @@ }, "response": { "value": { - "properties": { - "sent": { - "properties": { - "schema": { - "properties": { - "attrNames": { - "value": [ - { - "value": { - "value": "score", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "score", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "schema_name", - "type": "string" - }, - "type": "primitive" - }, - "seqNo": { - "value": { - "value": 10, - "type": "int" - }, - "type": "primitive" - }, - "ver": { - "value": { - "value": "1.0", - "type": "string" - }, - "type": "primitive" - }, - "version": { - "value": { - "value": "1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "schema_id": { - "value": { - "value": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "txn": { - "properties": { - "_type": { - "value": { - "value": "101", - "type": "string" - }, - "type": "primitive" - }, - "connection_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "created_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - }, - "endorser_write_txn": { - "value": { - "value": true, - "type": "boolean" - }, - "type": "primitive" - }, - "formats": { - "value": [ - { - "value": [ - { - "key": { - "value": "attach_id", - "type": "string" - }, - "value": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - } - }, - { - "key": { - "value": "format", - "type": "string" - }, - "value": { - "value": { - "value": "dif/endorse-transaction/request@v1.0", - "type": "string" - }, - "type": "primitive" - } - } - ], - "type": "map" - }, - { - "value": [ - { - "key": { - "value": "attach_id", - "type": "string" - }, - "value": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - } - }, - { - "key": { - "value": "format", - "type": "string" - }, - "value": { - "value": { - "value": "dif/endorse-transaction/request@v1.0", - "type": "string" - }, - "type": "primitive" - } - } - ], - "type": "map" - } - ], - "type": "array" - }, - "messages_attach": { - "value": [ - { - "properties": {}, - "type": "object" - }, - { - "properties": {}, - "type": "object" - } - ], - "type": "array" - }, - "signature_request": { - "value": [ - { - "properties": {}, - "type": "object" - }, - { - "properties": {}, - "type": "object" - } - ], - "type": "array" - }, - "signature_response": { - "value": [ - { - "properties": {}, - "type": "object" - }, - { - "properties": {}, - "type": "object" - } - ], - "type": "array" - }, - "state": { - "value": { - "value": "active", - "type": "string" - }, - "type": "primitive" - }, - "thread_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "trace": { - "value": { - "value": true, - "type": "boolean" - }, - "type": "primitive" - }, - "transaction_id": { - "value": { - "value": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "type": "string" - }, - "type": "primitive" - }, - "updated_at": { - "value": { - "value": "2021-12-31 23:59:59+00:00", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - }, + "properties": {}, "type": "object" }, "type": "withoutStreaming" diff --git a/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi-ir/belvo.json b/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi-ir/belvo.json index dcaf95f8df8..b4e8867d729 100644 --- a/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi-ir/belvo.json +++ b/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi-ir/belvo.json @@ -7172,23 +7172,6 @@ }, "type": "object" }, - "funds_data": { - "value": [ - { - "properties": { - "collected_at": { - "value": { - "value": "2020-04-23T21:32:55.336854+00:00", - "type": "datetime" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, "receivables_data": { "properties": { "current": { @@ -7221,20 +7204,6 @@ } }, "type": "object" - }, - "bank_product_id": { - "value": { - "value": "bank_product_id", - "type": "string" - }, - "type": "primitive" - }, - "internal_identification": { - "value": { - "value": "internal_identification", - "type": "string" - }, - "type": "primitive" } }, "type": "object" @@ -7497,20 +7466,6 @@ "type": "string" }, "type": "primitive" - }, - "monthly_payment": { - "value": { - "value": 1.1, - "type": "double" - }, - "type": "primitive" - }, - "last_payment_date": { - "value": { - "value": "last_payment_date", - "type": "string" - }, - "type": "primitive" } }, "type": "object" @@ -7712,23 +7667,6 @@ }, "type": "object" }, - "funds_data": { - "value": [ - { - "properties": { - "collected_at": { - "value": { - "value": "2020-04-23T21:32:55.336854+00:00", - "type": "datetime" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, "receivables_data": { "properties": { "current": { @@ -7761,20 +7699,6 @@ } }, "type": "object" - }, - "bank_product_id": { - "value": { - "value": "bank_product_id", - "type": "string" - }, - "type": "primitive" - }, - "internal_identification": { - "value": { - "value": "internal_identification", - "type": "string" - }, - "type": "primitive" } }, "type": "object" @@ -8256,23 +8180,6 @@ }, "type": "object" }, - "funds_data": { - "value": [ - { - "properties": { - "collected_at": { - "value": { - "value": "2020-04-23T21:32:55.336854+00:00", - "type": "datetime" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, "receivables_data": { "properties": { "current": { @@ -8305,20 +8212,6 @@ } }, "type": "object" - }, - "bank_product_id": { - "value": { - "value": "bank_product_id", - "type": "string" - }, - "type": "primitive" - }, - "internal_identification": { - "value": { - "value": "internal_identification", - "type": "string" - }, - "type": "primitive" } }, "type": "object" @@ -8999,20 +8892,6 @@ } }, "type": "object" - }, - "bank_product_id": { - "value": { - "value": "bank_product_id", - "type": "string" - }, - "type": "primitive" - }, - "internal_identification": { - "value": { - "value": "internal_identification", - "type": "string" - }, - "type": "primitive" } }, "type": "object" @@ -9490,23 +9369,6 @@ }, "type": "object" }, - "funds_data": { - "value": [ - { - "properties": { - "collected_at": { - "value": { - "value": "2020-04-23T21:32:55.336854+00:00", - "type": "datetime" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, "receivables_data": { "properties": { "current": { @@ -9539,20 +9401,6 @@ } }, "type": "object" - }, - "bank_product_id": { - "value": { - "value": "bank_product_id", - "type": "string" - }, - "type": "primitive" - }, - "internal_identification": { - "value": { - "value": "internal_identification", - "type": "string" - }, - "type": "primitive" } }, "type": "object" @@ -10807,23 +10655,6 @@ }, "type": "object" }, - "funds_data": { - "value": [ - { - "properties": { - "collected_at": { - "value": { - "value": "2020-04-23T21:32:55.336854+00:00", - "type": "datetime" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, "receivables_data": { "properties": { "current": { @@ -10856,20 +10687,6 @@ } }, "type": "object" - }, - "bank_product_id": { - "value": { - "value": "bank_product_id", - "type": "string" - }, - "type": "primitive" - }, - "internal_identification": { - "value": { - "value": "internal_identification", - "type": "string" - }, - "type": "primitive" } }, "type": "object" @@ -11139,20 +10956,6 @@ "type": "string" }, "type": "primitive" - }, - "monthly_payment": { - "value": { - "value": 1.1, - "type": "double" - }, - "type": "primitive" - }, - "last_payment_date": { - "value": { - "value": "last_payment_date", - "type": "string" - }, - "type": "primitive" } }, "type": "object" @@ -11354,23 +11157,6 @@ }, "type": "object" }, - "funds_data": { - "value": [ - { - "properties": { - "collected_at": { - "value": { - "value": "2020-04-23T21:32:55.336854+00:00", - "type": "datetime" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, "receivables_data": { "properties": { "current": { @@ -11403,20 +11189,6 @@ } }, "type": "object" - }, - "bank_product_id": { - "value": { - "value": "bank_product_id", - "type": "string" - }, - "type": "primitive" - }, - "internal_identification": { - "value": { - "value": "internal_identification", - "type": "string" - }, - "type": "primitive" } }, "type": "object" @@ -11905,23 +11677,6 @@ }, "type": "object" }, - "funds_data": { - "value": [ - { - "properties": { - "collected_at": { - "value": { - "value": "2020-04-23T21:32:55.336854+00:00", - "type": "datetime" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, "receivables_data": { "properties": { "current": { @@ -11954,20 +11709,6 @@ } }, "type": "object" - }, - "bank_product_id": { - "value": { - "value": "bank_product_id", - "type": "string" - }, - "type": "primitive" - }, - "internal_identification": { - "value": { - "value": "internal_identification", - "type": "string" - }, - "type": "primitive" } }, "type": "object" @@ -12655,20 +12396,6 @@ } }, "type": "object" - }, - "bank_product_id": { - "value": { - "value": "bank_product_id", - "type": "string" - }, - "type": "primitive" - }, - "internal_identification": { - "value": { - "value": "internal_identification", - "type": "string" - }, - "type": "primitive" } }, "type": "object" @@ -13153,23 +12880,6 @@ }, "type": "object" }, - "funds_data": { - "value": [ - { - "properties": { - "collected_at": { - "value": { - "value": "2020-04-23T21:32:55.336854+00:00", - "type": "datetime" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, "receivables_data": { "properties": { "current": { @@ -13202,20 +12912,6 @@ } }, "type": "object" - }, - "bank_product_id": { - "value": { - "value": "bank_product_id", - "type": "string" - }, - "type": "primitive" - }, - "internal_identification": { - "value": { - "value": "internal_identification", - "type": "string" - }, - "type": "primitive" } }, "type": "object" @@ -14145,75 +13841,6 @@ }, "type": "object" }, - "funds_data": { - "value": [ - { - "properties": { - "collected_at": { - "value": { - "value": "2020-04-23T21:32:55.336854+00:00", - "type": "datetime" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "FIX X", - "type": "string" - }, - "type": "primitive" - }, - "type": { - "value": { - "value": "CNPJ", - "type": "string" - }, - "type": "primitive" - }, - "public_identifications": { - "value": [ - { - "properties": { - "name": { - "value": { - "value": "CNPJ", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "05.954.445/0221-68", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "balance": { - "value": { - "value": 88427.94, - "type": "float" - }, - "type": "primitive" - }, - "percentage": { - "value": { - "value": 100, - "type": "float" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, "receivables_data": { "properties": { "current": { @@ -14246,20 +13873,6 @@ } }, "type": "object" - }, - "bank_product_id": { - "value": { - "value": "bank_product_id", - "type": "string" - }, - "type": "primitive" - }, - "internal_identification": { - "value": { - "value": "internal_identification", - "type": "string" - }, - "type": "primitive" } }, "type": "object" @@ -14516,20 +14129,6 @@ "type": "string" }, "type": "primitive" - }, - "monthly_payment": { - "value": { - "value": 1.1, - "type": "double" - }, - "type": "primitive" - }, - "last_payment_date": { - "value": { - "value": "last_payment_date", - "type": "string" - }, - "type": "primitive" } }, "type": "object" @@ -14731,75 +14330,6 @@ }, "type": "object" }, - "funds_data": { - "value": [ - { - "properties": { - "collected_at": { - "value": { - "value": "2020-04-23T21:32:55.336854+00:00", - "type": "datetime" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "FIX X", - "type": "string" - }, - "type": "primitive" - }, - "type": { - "value": { - "value": "CNPJ", - "type": "string" - }, - "type": "primitive" - }, - "public_identifications": { - "value": [ - { - "properties": { - "name": { - "value": { - "value": "CNPJ", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "05.954.445/0221-68", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "balance": { - "value": { - "value": 88427.94, - "type": "float" - }, - "type": "primitive" - }, - "percentage": { - "value": { - "value": 100, - "type": "float" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, "receivables_data": { "properties": { "current": { @@ -14832,20 +14362,6 @@ } }, "type": "object" - }, - "bank_product_id": { - "value": { - "value": "bank_product_id", - "type": "string" - }, - "type": "primitive" - }, - "internal_identification": { - "value": { - "value": "internal_identification", - "type": "string" - }, - "type": "primitive" } }, "type": "object" @@ -15321,75 +14837,6 @@ }, "type": "object" }, - "funds_data": { - "value": [ - { - "properties": { - "collected_at": { - "value": { - "value": "2020-04-23T21:32:55.336854+00:00", - "type": "datetime" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "FIX X", - "type": "string" - }, - "type": "primitive" - }, - "type": { - "value": { - "value": "CNPJ", - "type": "string" - }, - "type": "primitive" - }, - "public_identifications": { - "value": [ - { - "properties": { - "name": { - "value": { - "value": "CNPJ", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "05.954.445/0221-68", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "balance": { - "value": { - "value": 88427.94, - "type": "float" - }, - "type": "primitive" - }, - "percentage": { - "value": { - "value": 100, - "type": "float" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, "receivables_data": { "properties": { "current": { @@ -15422,20 +14869,6 @@ } }, "type": "object" - }, - "bank_product_id": { - "value": { - "value": "bank_product_id", - "type": "string" - }, - "type": "primitive" - }, - "internal_identification": { - "value": { - "value": "internal_identification", - "type": "string" - }, - "type": "primitive" } }, "type": "object" @@ -16110,20 +15543,6 @@ } }, "type": "object" - }, - "bank_product_id": { - "value": { - "value": "bank_product_id", - "type": "string" - }, - "type": "primitive" - }, - "internal_identification": { - "value": { - "value": "internal_identification", - "type": "string" - }, - "type": "primitive" } }, "type": "object" @@ -16595,75 +16014,6 @@ }, "type": "object" }, - "funds_data": { - "value": [ - { - "properties": { - "collected_at": { - "value": { - "value": "2020-04-23T21:32:55.336854+00:00", - "type": "datetime" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "FIX X", - "type": "string" - }, - "type": "primitive" - }, - "type": { - "value": { - "value": "CNPJ", - "type": "string" - }, - "type": "primitive" - }, - "public_identifications": { - "value": [ - { - "properties": { - "name": { - "value": { - "value": "CNPJ", - "type": "string" - }, - "type": "primitive" - }, - "value": { - "value": { - "value": "05.954.445/0221-68", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "balance": { - "value": { - "value": 88427.94, - "type": "float" - }, - "type": "primitive" - }, - "percentage": { - "value": { - "value": 100, - "type": "float" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, "receivables_data": { "properties": { "current": { @@ -16696,20 +16046,6 @@ } }, "type": "object" - }, - "bank_product_id": { - "value": { - "value": "bank_product_id", - "type": "string" - }, - "type": "primitive" - }, - "internal_identification": { - "value": { - "value": "internal_identification", - "type": "string" - }, - "type": "primitive" } }, "type": "object" @@ -19123,13 +18459,6 @@ }, "type": "primitive" }, - "previous": { - "value": { - "value": "previous", - "type": "string" - }, - "type": "primitive" - }, "results": { "value": [ { @@ -20098,13 +19427,6 @@ }, "type": "primitive" }, - "previous": { - "value": { - "value": "previous", - "type": "string" - }, - "type": "primitive" - }, "results": { "value": [ { @@ -21066,13 +20388,6 @@ }, "type": "primitive" }, - "previous": { - "value": { - "value": "previous", - "type": "string" - }, - "type": "primitive" - }, "results": { "value": [ { @@ -23117,13 +22432,6 @@ }, "type": "object" }, - "bank_product_id": { - "value": { - "value": "bank_product_id", - "type": "string" - }, - "type": "primitive" - }, "internal_identification": { "value": { "value": "996685090015", @@ -23626,23 +22934,6 @@ }, "type": "object" }, - "funds_data": { - "value": [ - { - "properties": { - "collected_at": { - "value": { - "value": "2020-04-23T21:32:55.336854+00:00", - "type": "datetime" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, "receivables_data": { "properties": { "current": { @@ -23675,20 +22966,6 @@ } }, "type": "object" - }, - "bank_product_id": { - "value": { - "value": "bank_product_id", - "type": "string" - }, - "type": "primitive" - }, - "internal_identification": { - "value": { - "value": "internal_identification", - "type": "string" - }, - "type": "primitive" } }, "type": "object" @@ -26133,13 +25410,6 @@ }, "type": "object" }, - "bank_product_id": { - "value": { - "value": "bank_product_id", - "type": "string" - }, - "type": "primitive" - }, "internal_identification": { "value": { "value": "996685090015", @@ -26635,23 +25905,6 @@ }, "type": "object" }, - "funds_data": { - "value": [ - { - "properties": { - "collected_at": { - "value": { - "value": "2020-04-23T21:32:55.336854+00:00", - "type": "datetime" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, "receivables_data": { "properties": { "current": { @@ -26684,20 +25937,6 @@ } }, "type": "object" - }, - "bank_product_id": { - "value": { - "value": "bank_product_id", - "type": "string" - }, - "type": "primitive" - }, - "internal_identification": { - "value": { - "value": "internal_identification", - "type": "string" - }, - "type": "primitive" } }, "type": "object" @@ -28522,13 +27761,6 @@ }, "type": "object" }, - "bank_product_id": { - "value": { - "value": "bank_product_id", - "type": "string" - }, - "type": "primitive" - }, "internal_identification": { "value": { "value": "996685090015", @@ -28967,27 +28199,6 @@ "type": "float" }, "type": "primitive" - }, - "end_date": { - "value": { - "value": "end_date", - "type": "string" - }, - "type": "primitive" - }, - "monthly_payment": { - "value": { - "value": 1.1, - "type": "double" - }, - "type": "primitive" - }, - "last_payment_date": { - "value": { - "value": "last_payment_date", - "type": "string" - }, - "type": "primitive" } }, "type": "object" @@ -29189,23 +28400,6 @@ }, "type": "object" }, - "funds_data": { - "value": [ - { - "properties": { - "collected_at": { - "value": { - "value": "2020-04-23T21:32:55.336854+00:00", - "type": "datetime" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, "receivables_data": { "properties": { "current": { @@ -29238,20 +28432,6 @@ } }, "type": "object" - }, - "bank_product_id": { - "value": { - "value": "bank_product_id", - "type": "string" - }, - "type": "primitive" - }, - "internal_identification": { - "value": { - "value": "internal_identification", - "type": "string" - }, - "type": "primitive" } }, "type": "object" @@ -30726,13 +29906,6 @@ }, "type": "primitive" }, - "previous": { - "value": { - "value": "previous", - "type": "string" - }, - "type": "primitive" - }, "results": { "value": [ { @@ -30943,13 +30116,6 @@ }, "type": "primitive" }, - "statement": { - "value": { - "value": "statement", - "type": "string" - }, - "type": "primitive" - }, "collected_at": { "value": { "value": "2022-04-06T23:30:51.282174+00:00", @@ -31900,13 +31066,6 @@ }, "type": "object" }, - "bank_product_id": { - "value": { - "value": "bank_product_id", - "type": "string" - }, - "type": "primitive" - }, "internal_identification": { "value": { "value": "9fa5fab9-e2b7-4bd7-8413-71ed9bb94b4c", @@ -31938,13 +31097,6 @@ }, "type": "primitive" }, - "statement": { - "value": { - "value": "statement", - "type": "string" - }, - "type": "primitive" - }, "collected_at": { "value": { "value": "2022-04-06T23:30:51.282174+00:00", @@ -32885,13 +32037,6 @@ }, "type": "object" }, - "bank_product_id": { - "value": { - "value": "bank_product_id", - "type": "string" - }, - "type": "primitive" - }, "internal_identification": { "value": { "value": "9fa5fab9-e2b7-4bd7-8413-71ed9bb94b4c", @@ -32923,13 +32068,6 @@ }, "type": "primitive" }, - "statement": { - "value": { - "value": "statement", - "type": "string" - }, - "type": "primitive" - }, "collected_at": { "value": { "value": "2022-04-06T23:30:51.282174+00:00", @@ -33731,13 +32869,6 @@ }, "type": "object" }, - "bank_product_id": { - "value": { - "value": "bank_product_id", - "type": "string" - }, - "type": "primitive" - }, "internal_identification": { "value": { "value": "9fa5fab9-e2b7-4bd7-8413-71ed9bb94b4c", @@ -33769,13 +32900,6 @@ }, "type": "primitive" }, - "statement": { - "value": { - "value": "statement", - "type": "string" - }, - "type": "primitive" - }, "collected_at": { "value": { "value": "2022-04-06T23:30:51.282174+00:00", @@ -36055,13 +35179,6 @@ }, "type": "primitive" }, - "previous": { - "value": { - "value": "previous", - "type": "string" - }, - "type": "primitive" - }, "results": { "value": [ { @@ -36147,27 +35264,6 @@ } }, "type": "object" - }, - "first_name": { - "value": { - "value": "first_name", - "type": "string" - }, - "type": "primitive" - }, - "last_name": { - "value": { - "value": "last_name", - "type": "string" - }, - "type": "primitive" - }, - "second_last_name": { - "value": { - "value": "second_last_name", - "type": "string" - }, - "type": "primitive" } }, "type": "object" @@ -36883,27 +35979,6 @@ } }, "type": "object" - }, - "first_name": { - "value": { - "value": "first_name", - "type": "string" - }, - "type": "primitive" - }, - "last_name": { - "value": { - "value": "last_name", - "type": "string" - }, - "type": "primitive" - }, - "second_last_name": { - "value": { - "value": "second_last_name", - "type": "string" - }, - "type": "primitive" } }, "type": "object" @@ -37623,27 +36698,6 @@ } }, "type": "object" - }, - "first_name": { - "value": { - "value": "first_name", - "type": "string" - }, - "type": "primitive" - }, - "last_name": { - "value": { - "value": "last_name", - "type": "string" - }, - "type": "primitive" - }, - "second_last_name": { - "value": { - "value": "second_last_name", - "type": "string" - }, - "type": "primitive" } }, "type": "object" @@ -38046,27 +37100,6 @@ } }, "type": "object" - }, - "first_name": { - "value": { - "value": "first_name", - "type": "string" - }, - "type": "primitive" - }, - "last_name": { - "value": { - "value": "last_name", - "type": "string" - }, - "type": "primitive" - }, - "second_last_name": { - "value": { - "value": "second_last_name", - "type": "string" - }, - "type": "primitive" } }, "type": "object" @@ -39796,13 +38829,6 @@ }, "type": "primitive" }, - "previous": { - "value": { - "value": "previous", - "type": "string" - }, - "type": "primitive" - }, "results": { "value": [ { @@ -40757,13 +39783,6 @@ }, "type": "primitive" }, - "previous": { - "value": { - "value": "previous", - "type": "string" - }, - "type": "primitive" - }, "results": { "value": [ { @@ -40912,13 +39931,6 @@ }, "type": "primitive" }, - "payment_method": { - "value": { - "value": "PUE", - "type": "string" - }, - "type": "primitive" - }, "payment_method_description": { "value": { "value": "payment_method_description", @@ -41725,13 +40737,6 @@ }, "type": "primitive" }, - "previous": { - "value": { - "value": "previous", - "type": "string" - }, - "type": "primitive" - }, "results": { "value": [ { @@ -42693,13 +41698,6 @@ }, "type": "primitive" }, - "previous": { - "value": { - "value": "previous", - "type": "string" - }, - "type": "primitive" - }, "results": { "value": [ { @@ -43654,13 +42652,6 @@ }, "type": "primitive" }, - "previous": { - "value": { - "value": "previous", - "type": "string" - }, - "type": "primitive" - }, "results": { "value": [ { @@ -43809,13 +42800,6 @@ }, "type": "primitive" }, - "payment_method": { - "value": { - "value": "PUE", - "type": "string" - }, - "type": "primitive" - }, "payment_method_description": { "value": { "value": "payment_method_description", @@ -45981,13 +44965,6 @@ }, "type": "primitive" }, - "payment_method": { - "value": { - "value": "PUE", - "type": "string" - }, - "type": "primitive" - }, "payment_method_description": { "value": { "value": "payment_method_description", @@ -48019,13 +46996,6 @@ }, "type": "primitive" }, - "payment_method": { - "value": { - "value": "PUE", - "type": "string" - }, - "type": "primitive" - }, "payment_method_description": { "value": { "value": "payment_method_description", @@ -51116,13 +50086,6 @@ }, "type": "primitive" }, - "payment_method": { - "value": { - "value": "PUE", - "type": "string" - }, - "type": "primitive" - }, "payment_method_description": { "value": { "value": "payment_method_description", @@ -53132,13 +52095,6 @@ }, "type": "primitive" }, - "payment_method": { - "value": { - "value": "PUE", - "type": "string" - }, - "type": "primitive" - }, "payment_method_description": { "value": { "value": "payment_method_description", @@ -55734,13 +54690,6 @@ }, "type": "primitive" }, - "previous": { - "value": { - "value": "previous", - "type": "string" - }, - "type": "primitive" - }, "results": { "value": [ { @@ -57764,13 +56713,6 @@ }, "type": "primitive" }, - "previous": { - "value": { - "value": "previous", - "type": "string" - }, - "type": "primitive" - }, "results": { "value": [ { @@ -58547,13 +57489,6 @@ }, "type": "primitive" }, - "previous": { - "value": { - "value": "previous", - "type": "string" - }, - "type": "primitive" - }, "results": { "value": [ { @@ -59434,13 +58369,6 @@ }, "type": "primitive" }, - "previous": { - "value": { - "value": "previous", - "type": "string" - }, - "type": "primitive" - }, "results": { "value": [ { @@ -61593,13 +60521,6 @@ }, "type": "primitive" }, - "previous": { - "value": { - "value": "previous", - "type": "string" - }, - "type": "primitive" - }, "results": { "value": [ { @@ -85642,13 +84563,6 @@ }, "type": "primitive" }, - "previous": { - "value": { - "value": "previous", - "type": "string" - }, - "type": "primitive" - }, "results": { "value": [ { @@ -86200,13 +85114,6 @@ }, "type": "primitive" }, - "previous": { - "value": { - "value": "previous", - "type": "string" - }, - "type": "primitive" - }, "results": { "value": [ { @@ -87354,13 +86261,6 @@ }, "type": "primitive" }, - "social_name": { - "value": { - "value": "John Doe SA DE CV", - "type": "string" - }, - "type": "primitive" - }, "email": { "value": { "value": "alfredo@robin.com", @@ -87422,13 +86322,6 @@ }, "type": "primitive" }, - "locality": { - "value": { - "value": "none", - "type": "string" - }, - "type": "primitive" - }, "municipality": { "value": { "value": "ALTOS DE MIRAMAR", @@ -87488,13 +86381,6 @@ }, "type": "primitive" }, - "end_date": { - "value": { - "value": "end_date", - "type": "string" - }, - "type": "primitive" - }, "order": { "value": { "value": "1", @@ -87570,13 +86456,6 @@ "type": "string" }, "type": "primitive" - }, - "end_date": { - "value": { - "value": "end_date", - "type": "string" - }, - "type": "primitive" } }, "type": "object" @@ -87603,13 +86482,6 @@ "type": "string" }, "type": "primitive" - }, - "end_date": { - "value": { - "value": "end_date", - "type": "string" - }, - "type": "primitive" } }, "type": "object" @@ -87769,34 +86641,6 @@ }, "type": "primitive" }, - "curp": { - "value": { - "value": "curp", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "JOHN", - "type": "string" - }, - "type": "primitive" - }, - "first_last_name": { - "value": { - "value": "DOE", - "type": "string" - }, - "type": "primitive" - }, - "second_last_name": { - "value": { - "value": "SCHMOE", - "type": "string" - }, - "type": "primitive" - }, "start_operations_date": { "value": { "value": "1995-08-01", @@ -87818,13 +86662,6 @@ }, "type": "primitive" }, - "commercial_name": { - "value": { - "value": "Jar Jar Transport", - "type": "string" - }, - "type": "primitive" - }, "social_name": { "value": { "value": "ACNE SA DE CV", @@ -87893,13 +86730,6 @@ }, "type": "primitive" }, - "locality": { - "value": { - "value": "none", - "type": "string" - }, - "type": "primitive" - }, "municipality": { "value": { "value": "ALTOS DE MIRAMAR", @@ -87959,13 +86789,6 @@ }, "type": "primitive" }, - "end_date": { - "value": { - "value": "end_date", - "type": "string" - }, - "type": "primitive" - }, "order": { "value": { "value": "1", @@ -88041,13 +86864,6 @@ "type": "string" }, "type": "primitive" - }, - "end_date": { - "value": { - "value": "end_date", - "type": "string" - }, - "type": "primitive" } }, "type": "object" @@ -88074,13 +86890,6 @@ "type": "string" }, "type": "primitive" - }, - "end_date": { - "value": { - "value": "end_date", - "type": "string" - }, - "type": "primitive" } }, "type": "object" @@ -88695,13 +87504,6 @@ }, "type": "primitive" }, - "social_name": { - "value": { - "value": "John Doe SA DE CV", - "type": "string" - }, - "type": "primitive" - }, "email": { "value": { "value": "alfredo@robin.com", @@ -88763,13 +87565,6 @@ }, "type": "primitive" }, - "locality": { - "value": { - "value": "none", - "type": "string" - }, - "type": "primitive" - }, "municipality": { "value": { "value": "ALTOS DE MIRAMAR", @@ -88829,13 +87624,6 @@ }, "type": "primitive" }, - "end_date": { - "value": { - "value": "end_date", - "type": "string" - }, - "type": "primitive" - }, "order": { "value": { "value": "1", @@ -88911,13 +87699,6 @@ "type": "string" }, "type": "primitive" - }, - "end_date": { - "value": { - "value": "end_date", - "type": "string" - }, - "type": "primitive" } }, "type": "object" @@ -88944,13 +87725,6 @@ "type": "string" }, "type": "primitive" - }, - "end_date": { - "value": { - "value": "end_date", - "type": "string" - }, - "type": "primitive" } }, "type": "object" @@ -89109,34 +87883,6 @@ }, "type": "primitive" }, - "curp": { - "value": { - "value": "curp", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "JOHN", - "type": "string" - }, - "type": "primitive" - }, - "first_last_name": { - "value": { - "value": "DOE", - "type": "string" - }, - "type": "primitive" - }, - "second_last_name": { - "value": { - "value": "SCHMOE", - "type": "string" - }, - "type": "primitive" - }, "start_operations_date": { "value": { "value": "1995-08-01", @@ -89158,13 +87904,6 @@ }, "type": "primitive" }, - "commercial_name": { - "value": { - "value": "Jar Jar Transport", - "type": "string" - }, - "type": "primitive" - }, "social_name": { "value": { "value": "ACNE SA DE CV", @@ -89233,13 +87972,6 @@ }, "type": "primitive" }, - "locality": { - "value": { - "value": "none", - "type": "string" - }, - "type": "primitive" - }, "municipality": { "value": { "value": "ALTOS DE MIRAMAR", @@ -89299,13 +88031,6 @@ }, "type": "primitive" }, - "end_date": { - "value": { - "value": "end_date", - "type": "string" - }, - "type": "primitive" - }, "order": { "value": { "value": "1", @@ -89381,13 +88106,6 @@ "type": "string" }, "type": "primitive" - }, - "end_date": { - "value": { - "value": "end_date", - "type": "string" - }, - "type": "primitive" } }, "type": "object" @@ -89414,13 +88132,6 @@ "type": "string" }, "type": "primitive" - }, - "end_date": { - "value": { - "value": "end_date", - "type": "string" - }, - "type": "primitive" } }, "type": "object" @@ -115499,13 +114210,6 @@ }, "type": "primitive" }, - "mcc": { - "value": { - "value": 2345, - "type": "int" - }, - "type": "primitive" - }, "category": { "value": { "value": "Income & Payments", @@ -118708,13 +117412,6 @@ }, "type": "primitive" }, - "previous": { - "value": { - "value": "previous", - "type": "string" - }, - "type": "primitive" - }, "results": { "value": [ { @@ -118997,13 +117694,6 @@ }, "type": "primitive" }, - "previous": { - "value": { - "value": "previous", - "type": "string" - }, - "type": "primitive" - }, "results": { "value": [ { @@ -119286,13 +117976,6 @@ }, "type": "primitive" }, - "previous": { - "value": { - "value": "previous", - "type": "string" - }, - "type": "primitive" - }, "results": { "value": [ { @@ -121532,13 +120215,6 @@ }, "type": "primitive" }, - "previous": { - "value": { - "value": "previous", - "type": "string" - }, - "type": "primitive" - }, "results": { "value": [ { @@ -121824,13 +120500,6 @@ }, "type": "primitive" }, - "previous": { - "value": { - "value": "previous", - "type": "string" - }, - "type": "primitive" - }, "results": { "value": [ { @@ -122105,13 +120774,6 @@ }, "type": "primitive" }, - "previous": { - "value": { - "value": "previous", - "type": "string" - }, - "type": "primitive" - }, "results": { "value": [ { diff --git a/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi-ir/flexport.json b/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi-ir/flexport.json index fa7d8717d5b..d745cf11f36 100644 --- a/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi-ir/flexport.json +++ b/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi-ir/flexport.json @@ -1133,13 +1133,6 @@ }, "type": "primitive" }, - "street_address2": { - "value": { - "value": "STE 2918", - "type": "string" - }, - "type": "primitive" - }, "city": { "value": { "value": "Shanghai", @@ -1147,13 +1140,6 @@ }, "type": "primitive" }, - "state": { - "value": { - "value": "MN", - "type": "string" - }, - "type": "primitive" - }, "country": { "value": { "value": "China", @@ -1168,13 +1154,6 @@ }, "type": "primitive" }, - "zip": { - "value": { - "value": "56307", - "type": "string" - }, - "type": "primitive" - }, "timezone": { "value": { "value": "China/Shanghai", @@ -1215,13 +1194,6 @@ }, "type": "primitive" }, - "street_address2": { - "value": { - "value": "STE 2918", - "type": "string" - }, - "type": "primitive" - }, "city": { "value": { "value": "Shanghai", @@ -1229,13 +1201,6 @@ }, "type": "primitive" }, - "state": { - "value": { - "value": "MN", - "type": "string" - }, - "type": "primitive" - }, "country": { "value": { "value": "China", @@ -1250,13 +1215,6 @@ }, "type": "primitive" }, - "zip": { - "value": { - "value": "56307", - "type": "string" - }, - "type": "primitive" - }, "timezone": { "value": { "value": "China/Shanghai", @@ -2402,13 +2360,6 @@ }, "type": "primitive" }, - "next": { - "value": { - "value": "https://api.flexport.com/booking_line_items?page=3&per=10", - "type": "string" - }, - "type": "primitive" - }, "data": { "value": [ { @@ -4672,13 +4623,6 @@ }, "type": "primitive" }, - "next": { - "value": { - "value": "https://api.flexport.com/bookings?page=3&per=10", - "type": "string" - }, - "type": "primitive" - }, "data": { "value": [ { @@ -5134,13 +5078,6 @@ }, "type": "primitive" }, - "ref": { - "value": { - "value": "address_ref_x", - "type": "string" - }, - "type": "primitive" - }, "unlocode": { "value": { "value": "CNSZP", @@ -5251,13 +5188,6 @@ }, "type": "primitive" }, - "ref": { - "value": { - "value": "address_ref_x", - "type": "string" - }, - "type": "primitive" - }, "unlocode": { "value": { "value": "USLA", @@ -6868,10 +6798,6 @@ "value": "archived", "type": "enum" }, - "quote_status": { - "value": "pending_quote", - "type": "enum" - }, "shipper_entity": { "properties": { "_object": { @@ -7164,13 +7090,6 @@ }, "type": "object" }, - "notify_party": { - "value": { - "value": "John Doe | john@example.com | 905-555-1234", - "type": "string" - }, - "type": "primitive" - }, "transportation_mode": { "value": "ocean", "type": "enum" @@ -7557,142 +7476,6 @@ }, "type": "object" }, - "air_booking": { - "properties": { - "_object": { - "value": { - "value": "/air/booking", - "type": "string" - }, - "type": "primitive" - }, - "incoterm": { - "value": "EXW", - "type": "enum" - }, - "wants_pickup_service": { - "value": { - "value": true, - "type": "boolean" - }, - "type": "primitive" - }, - "wants_delivery_service": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - }, - "origin_port": { - "properties": { - "_object": { - "value": { - "value": "/place", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "ORD - Chicago - IL", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "destination_port": { - "properties": { - "_object": { - "value": { - "value": "/place", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "ORD - Chicago - IL", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "product_descriptions": { - "value": [ - { - "properties": { - "_object": { - "value": { - "value": "/bookings/product_descriptions", - "type": "string" - }, - "type": "primitive" - }, - "description": { - "value": { - "value": "Wristwatches", - "type": "string" - }, - "type": "primitive" - }, - "description_for_export_customs": { - "value": { - "value": "手表", - "type": "string" - }, - "type": "primitive" - }, - "description_for_export_customs_locale": { - "value": { - "value": "zh_CN", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "trucking_booking": { - "properties": { - "_object": { - "value": { - "value": "/trucking/booking", - "type": "string" - }, - "type": "primitive" - }, - "is_ftl": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - }, - "payment_terms": { - "value": "collect", - "type": "enum" - }, - "description_of_products": { - "value": { - "value": "Wristwatches", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, "origin_address": { "properties": { "_object": { @@ -9547,142 +9330,6 @@ }, "type": "object" }, - "air_booking": { - "properties": { - "_object": { - "value": { - "value": "/air/booking", - "type": "string" - }, - "type": "primitive" - }, - "incoterm": { - "value": "EXW", - "type": "enum" - }, - "wants_pickup_service": { - "value": { - "value": true, - "type": "boolean" - }, - "type": "primitive" - }, - "wants_delivery_service": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - }, - "origin_port": { - "properties": { - "_object": { - "value": { - "value": "/place", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "ORD - Chicago - IL", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "destination_port": { - "properties": { - "_object": { - "value": { - "value": "/place", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "ORD - Chicago - IL", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "product_descriptions": { - "value": [ - { - "properties": { - "_object": { - "value": { - "value": "/bookings/product_descriptions", - "type": "string" - }, - "type": "primitive" - }, - "description": { - "value": { - "value": "Wristwatches", - "type": "string" - }, - "type": "primitive" - }, - "description_for_export_customs": { - "value": { - "value": "手表", - "type": "string" - }, - "type": "primitive" - }, - "description_for_export_customs_locale": { - "value": { - "value": "zh_CN", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "trucking_booking": { - "properties": { - "_object": { - "value": { - "value": "/trucking/booking", - "type": "string" - }, - "type": "primitive" - }, - "is_ftl": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - }, - "payment_terms": { - "value": "collect", - "type": "enum" - }, - "description_of_products": { - "value": { - "value": "Wristwatches", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, "origin_address": { "properties": { "_object": { @@ -11236,13 +10883,6 @@ }, "type": "primitive" }, - "next": { - "value": { - "value": "https://api.flexport.com/commercial_invoices?page=3&per=10", - "type": "string" - }, - "type": "primitive" - }, "data": { "value": [ { @@ -15504,13 +15144,6 @@ }, "type": "primitive" }, - "next": { - "value": { - "value": "https://api.flexport.com/customs_entries?page=3&per=10", - "type": "string" - }, - "type": "primitive" - }, "data": { "value": [ { @@ -16754,13 +16387,6 @@ }, "type": "primitive" }, - "next": { - "value": { - "value": "https://api.flexport.com/documents?page=3&per=10", - "type": "string" - }, - "type": "primitive" - }, "total_count": { "value": { "value": 121, @@ -17762,13 +17388,6 @@ }, "type": "primitive" }, - "memo": { - "value": { - "value": "memo", - "type": "string" - }, - "type": "primitive" - }, "file_link": { "value": { "value": "https://api.flexport.com/documents/ABC123/download", @@ -17776,13 +17395,6 @@ }, "type": "primitive" }, - "archived_at": { - "value": { - "value": "2024-01-15T09:30:00Z", - "type": "datetime" - }, - "type": "primitive" - }, "file_metadata": { "properties": { "_object": { @@ -20775,13 +20387,6 @@ }, "type": "primitive" }, - "prev": { - "value": { - "value": "https://api.flexport.com/invoices?page=1&per=10", - "type": "string" - }, - "type": "primitive" - }, "next": { "value": { "value": "https://api.flexport.com/invoices?page=2&per=10", @@ -24287,13 +23892,6 @@ }, "type": "primitive" }, - "next": { - "value": { - "value": "https://api.flexport.com/network/companies?page=3&per=10", - "type": "string" - }, - "type": "primitive" - }, "total_count": { "value": { "value": 121, @@ -27138,13 +26736,6 @@ }, "type": "primitive" }, - "next": { - "value": { - "value": "https://api.flexport.com/network/company_entities?page=3&per=10", - "type": "string" - }, - "type": "primitive" - }, "total_count": { "value": { "value": 121, @@ -29575,13 +29166,6 @@ }, "type": "primitive" }, - "next": { - "value": { - "value": "https://api.flexport.com/network/contacts?page=3&per=10", - "type": "string" - }, - "type": "primitive" - }, "total_count": { "value": { "value": 121, @@ -31868,13 +31452,6 @@ }, "type": "primitive" }, - "next": { - "value": { - "value": "https://api.flexport.com/network/locations?page=3&per=10", - "type": "string" - }, - "type": "primitive" - }, "total_count": { "value": { "value": 11, @@ -33785,13 +33362,6 @@ }, "type": "primitive" }, - "street_address2": { - "value": { - "value": "STE 2918", - "type": "string" - }, - "type": "primitive" - }, "city": { "value": { "value": "Los Angeles", @@ -41921,13 +41491,6 @@ }, "type": "primitive" }, - "next": { - "value": { - "value": "https://api.flexport.com/purchase_order_line_items?page=3&per=10", - "type": "string" - }, - "type": "primitive" - }, "data": { "value": [ { @@ -42368,13 +41931,6 @@ }, "type": "primitive" }, - "ref": { - "value": { - "value": "address_ref_x", - "type": "string" - }, - "type": "primitive" - }, "unlocode": { "value": { "value": "US AL2", @@ -43198,124 +42754,6 @@ }, "type": "primitive" }, - "origin_port": { - "properties": { - "_object": { - "value": { - "value": "/place", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "ORD - Chicago - IL", - "type": "string" - }, - "type": "primitive" - }, - "address": { - "properties": { - "_object": { - "value": { - "value": "/address", - "type": "string" - }, - "type": "primitive" - }, - "street_address": { - "value": { - "value": "1641 Settlers Lane", - "type": "string" - }, - "type": "primitive" - }, - "city": { - "value": { - "value": "Albany", - "type": "string" - }, - "type": "primitive" - }, - "country": { - "value": { - "value": "United States of America", - "type": "string" - }, - "type": "primitive" - }, - "country_code": { - "value": { - "value": "US", - "type": "string" - }, - "type": "primitive" - }, - "timezone": { - "value": { - "value": "America/Los_Angeles", - "type": "string" - }, - "type": "primitive" - }, - "ref": { - "value": { - "value": "address_ref_x", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "details": { - "value": [ - { - "properties": { - "_object": { - "value": { - "value": "/air/port", - "type": "string" - }, - "type": "primitive" - }, - "port_code": { - "value": { - "value": "3901", - "type": "string" - }, - "type": "primitive" - }, - "country_code": { - "value": { - "value": "US", - "type": "string" - }, - "type": "primitive" - }, - "iata_code": { - "value": { - "value": "LAX", - "type": "string" - }, - "type": "primitive" - }, - "icao_code": { - "value": { - "value": "KLAX", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, "origin_location": { "properties": { "_object": { @@ -43332,13 +42770,6 @@ }, "type": "primitive" }, - "street_address2": { - "value": { - "value": "STE 2918", - "type": "string" - }, - "type": "primitive" - }, "city": { "value": { "value": "Shenzhen", @@ -43367,13 +42798,6 @@ }, "type": "primitive" }, - "zip": { - "value": { - "value": "56307", - "type": "string" - }, - "type": "primitive" - }, "timezone": { "value": { "value": "China/Shenzhen", @@ -43387,131 +42811,6 @@ "type": "string" }, "type": "primitive" - }, - "unlocode": { - "value": { - "value": "US AL2", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "destination_port": { - "properties": { - "_object": { - "value": { - "value": "/place", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "ORD - Chicago - IL", - "type": "string" - }, - "type": "primitive" - }, - "address": { - "properties": { - "_object": { - "value": { - "value": "/address", - "type": "string" - }, - "type": "primitive" - }, - "street_address": { - "value": { - "value": "1641 Settlers Lane", - "type": "string" - }, - "type": "primitive" - }, - "city": { - "value": { - "value": "Albany", - "type": "string" - }, - "type": "primitive" - }, - "country": { - "value": { - "value": "United States of America", - "type": "string" - }, - "type": "primitive" - }, - "country_code": { - "value": { - "value": "US", - "type": "string" - }, - "type": "primitive" - }, - "timezone": { - "value": { - "value": "America/Los_Angeles", - "type": "string" - }, - "type": "primitive" - }, - "ref": { - "value": { - "value": "address_ref_x", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "details": { - "value": [ - { - "properties": { - "_object": { - "value": { - "value": "/air/port", - "type": "string" - }, - "type": "primitive" - }, - "port_code": { - "value": { - "value": "3901", - "type": "string" - }, - "type": "primitive" - }, - "country_code": { - "value": { - "value": "US", - "type": "string" - }, - "type": "primitive" - }, - "iata_code": { - "value": { - "value": "LAX", - "type": "string" - }, - "type": "primitive" - }, - "icao_code": { - "value": { - "value": "KLAX", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" } }, "type": "object" @@ -43571,13 +42870,6 @@ ], "type": "array" }, - "parent_line_key": { - "value": { - "value": "parent_line_key", - "type": "string" - }, - "type": "primitive" - }, "assigned_party": { "properties": { "_object": { @@ -43673,13 +42965,6 @@ }, "type": "primitive" }, - "ref": { - "value": { - "value": "address_ref_x", - "type": "string" - }, - "type": "primitive" - }, "unlocode": { "value": { "value": "US AL2", @@ -44983,13 +44268,6 @@ }, "type": "primitive" }, - "next": { - "value": { - "value": "https://api.flexport.com/purchase_orders?page=3&per=10", - "type": "string" - }, - "type": "primitive" - }, "data": { "value": [ { @@ -45084,13 +44362,6 @@ }, "type": "primitive" }, - "street_address": { - "value": { - "value": "1641 Settlers Lane", - "type": "string" - }, - "type": "primitive" - }, "city": { "value": { "value": "Fairburn", @@ -45150,13 +44421,6 @@ "_object": { "value": "/ocean/railport", "type": "enum" - }, - "port_code": { - "value": { - "value": "3901", - "type": "string" - }, - "type": "primitive" } }, "type": "object" @@ -45166,13 +44430,6 @@ "_object": { "value": "/trucking/port", "type": "enum" - }, - "port_code": { - "value": { - "value": "3901", - "type": "string" - }, - "type": "primitive" } }, "type": "object" @@ -45182,13 +44439,6 @@ "_object": { "value": "/ocean/port", "type": "enum" - }, - "port_code": { - "value": { - "value": "3901", - "type": "string" - }, - "type": "primitive" } }, "type": "object" @@ -45285,13 +44535,6 @@ }, "type": "primitive" }, - "street_address": { - "value": { - "value": "1641 Settlers Lane", - "type": "string" - }, - "type": "primitive" - }, "city": { "value": { "value": "Fairburn", @@ -45351,13 +44594,6 @@ "_object": { "value": "/ocean/railport", "type": "enum" - }, - "port_code": { - "value": { - "value": "3901", - "type": "string" - }, - "type": "primitive" } }, "type": "object" @@ -45367,13 +44603,6 @@ "_object": { "value": "/trucking/port", "type": "enum" - }, - "port_code": { - "value": { - "value": "3901", - "type": "string" - }, - "type": "primitive" } }, "type": "object" @@ -45383,13 +44612,6 @@ "_object": { "value": "/ocean/port", "type": "enum" - }, - "port_code": { - "value": { - "value": "3901", - "type": "string" - }, - "type": "primitive" } }, "type": "object" @@ -45561,13 +44783,6 @@ "type": "string" }, "type": "primitive" - }, - "ref": { - "value": { - "value": "address_ref_x", - "type": "string" - }, - "type": "primitive" } }, "type": "object" @@ -45858,13 +45073,6 @@ "type": "string" }, "type": "primitive" - }, - "ref": { - "value": { - "value": "address_ref_x", - "type": "string" - }, - "type": "primitive" } }, "type": "object" @@ -53302,32 +52510,6 @@ } }, "type": "object" - }, - "terminal": { - "properties": { - "_object": { - "value": { - "value": "/shipment_node/terminal", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "Terminal 3", - "type": "string" - }, - "type": "primitive" - }, - "firms_code": { - "value": { - "value": "I092", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" } }, "type": "object" @@ -53343,39 +52525,6 @@ }, "type": "primitive" }, - "air_leg": { - "properties": { - "_object": { - "value": { - "value": "/air/shipment_leg", - "type": "string" - }, - "type": "primitive" - }, - "iata_code": { - "value": { - "value": "2Q", - "type": "string" - }, - "type": "primitive" - }, - "icao_code": { - "value": { - "value": "SNC", - "type": "string" - }, - "type": "primitive" - }, - "flight_number": { - "value": { - "value": "Y8 1234", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, "ocean_leg": { "properties": { "_object": { @@ -53442,107 +52591,6 @@ }, "type": "object" }, - "trucking_leg": { - "properties": { - "_object": { - "value": { - "value": "/trucking/shipment_leg", - "type": "string" - }, - "type": "primitive" - }, - "tracking_number": { - "value": { - "value": "FBA123456789", - "type": "string" - }, - "type": "primitive" - }, - "service_type": { - "value": "ltl", - "type": "enum" - }, - "pieces": { - "value": { - "value": 32, - "type": "int" - }, - "type": "primitive" - }, - "scac_code": { - "value": { - "value": "ABCD", - "type": "string" - }, - "type": "primitive" - }, - "container_legs": { - "properties": { - "_object": { - "value": { - "value": "/api/refs/collection", - "type": "string" - }, - "type": "primitive" - }, - "ref_type": { - "value": { - "value": "/ocean/shipment_container_leg", - "type": "string" - }, - "type": "primitive" - }, - "link": { - "value": { - "value": "https://api.flexport.com/ocean/shipment_container_legs?f.shipment_container.id=123", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - }, - "type": "object" - }, - "rail_leg": { - "properties": { - "_object": { - "value": { - "value": "/rail/shipment_leg", - "type": "string" - }, - "type": "primitive" - }, - "container_legs": { - "properties": { - "_object": { - "value": { - "value": "/api/refs/collection", - "type": "string" - }, - "type": "primitive" - }, - "ref_type": { - "value": { - "value": "/ocean/shipment_container_leg", - "type": "string" - }, - "type": "primitive" - }, - "link": { - "value": { - "value": "https://api.flexport.com/ocean/shipment_container_legs?f.shipment_container.id=123", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - }, - "type": "object" - }, "cargo_ready_date": { "value": { "value": "cargo_ready_date", @@ -55024,20 +54072,6 @@ }, "type": "primitive" }, - "prev": { - "value": { - "value": "prev", - "type": "string" - }, - "type": "primitive" - }, - "next": { - "value": { - "value": "next", - "type": "string" - }, - "type": "primitive" - }, "data": { "value": [ { @@ -57389,77 +56423,6 @@ }, "type": "primitive" }, - "child_shipments": { - "value": [ - { - "properties": { - "_object": { - "value": { - "value": "/api/refs/object", - "type": "string" - }, - "type": "primitive" - }, - "ref_type": { - "value": { - "value": "/shipment", - "type": "string" - }, - "type": "primitive" - }, - "link": { - "value": { - "value": "https://api.flexport.com/shipments/123", - "type": "string" - }, - "type": "primitive" - }, - "id": { - "value": { - "value": 123, - "type": "int" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "parent_shipment": { - "properties": { - "_object": { - "value": { - "value": "/api/refs/object", - "type": "string" - }, - "type": "primitive" - }, - "ref_type": { - "value": { - "value": "/shipment", - "type": "string" - }, - "type": "primitive" - }, - "link": { - "value": { - "value": "https://api.flexport.com/shipments/123", - "type": "string" - }, - "type": "primitive" - }, - "id": { - "value": { - "value": 123, - "type": "int" - }, - "type": "primitive" - } - }, - "type": "object" - }, "estimated_picked_up_in_full_date": { "value": { "value": "2019-02-06T19:28:25+00:00", @@ -57582,70 +56545,6 @@ }, "type": "object" }, - "air_shipment": { - "properties": { - "_object": { - "value": { - "value": "/air/shipment", - "type": "string" - }, - "type": "primitive" - }, - "house_airway_bill": { - "value": { - "value": "HWXJKE67732", - "type": "string" - }, - "type": "primitive" - }, - "master_airway_bill": { - "value": { - "value": "22831046871", - "type": "string" - }, - "type": "primitive" - }, - "chargeable_weight": { - "properties": { - "value": { - "value": { - "value": 2300.4, - "type": "double" - }, - "type": "primitive" - }, - "_object": { - "value": { - "value": "/quantity/weight", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "chargeable_volume": { - "properties": { - "value": { - "value": { - "value": 472.62, - "type": "double" - }, - "type": "primitive" - }, - "_object": { - "value": { - "value": "/quantity/volume", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - }, - "type": "object" - }, "dangerous_goods": { "properties": { "_object": { @@ -59826,70 +58725,6 @@ }, "type": "object" }, - "air_shipment": { - "properties": { - "_object": { - "value": { - "value": "/air/shipment", - "type": "string" - }, - "type": "primitive" - }, - "house_airway_bill": { - "value": { - "value": "HWXJKE67732", - "type": "string" - }, - "type": "primitive" - }, - "master_airway_bill": { - "value": { - "value": "22831046871", - "type": "string" - }, - "type": "primitive" - }, - "chargeable_weight": { - "properties": { - "value": { - "value": { - "value": 2300.4, - "type": "double" - }, - "type": "primitive" - }, - "_object": { - "value": { - "value": "/quantity/weight", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "chargeable_volume": { - "properties": { - "value": { - "value": { - "value": 472.62, - "type": "double" - }, - "type": "primitive" - }, - "_object": { - "value": { - "value": "/quantity/volume", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - }, - "type": "object" - }, "dangerous_goods": { "properties": { "_object": { diff --git a/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi-ir/intercom.json b/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi-ir/intercom.json index e721eefc875..4c43c812008 100644 --- a/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi-ir/intercom.json +++ b/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi-ir/intercom.json @@ -1493,25 +1493,6 @@ }, "type": "primitive" }, - "next": { - "properties": { - "per_page": { - "value": { - "value": 2, - "type": "int" - }, - "type": "primitive" - }, - "starting_after": { - "value": { - "value": "your-cursor-from-response", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, "per_page": { "value": { "value": 20, @@ -18126,13 +18107,6 @@ }, "type": "primitive" }, - "parent_id": { - "value": { - "value": "6871118", - "type": "string" - }, - "type": "primitive" - }, "help_center_id": { "value": { "value": 79, @@ -18166,13 +18140,6 @@ }, "type": "primitive" }, - "description": { - "value": { - "value": "Default language description", - "type": "string" - }, - "type": "primitive" - }, "created_at": { "value": { "value": 1719492720, @@ -18221,13 +18188,6 @@ "type": "string" }, "type": "primitive" - }, - "help_center_id": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" } }, "type": "object" @@ -19610,13 +19570,6 @@ }, "type": "object" }, - "parent_id": { - "value": { - "value": "6871118", - "type": "string" - }, - "type": "primitive" - }, "help_center_id": { "value": { "value": 81, @@ -20703,13 +20656,6 @@ }, "type": "object" }, - "parent_id": { - "value": { - "value": "6871118", - "type": "string" - }, - "type": "primitive" - }, "help_center_id": { "value": { "value": 81, @@ -22076,13 +22022,6 @@ }, "type": "object" }, - "parent_id": { - "value": { - "value": "6871118", - "type": "string" - }, - "type": "primitive" - }, "help_center_id": { "value": { "value": 84, @@ -23493,13 +23432,6 @@ }, "type": "object" }, - "parent_id": { - "value": { - "value": "6871118", - "type": "string" - }, - "type": "primitive" - }, "help_center_id": { "value": { "value": 87, @@ -24590,13 +24522,6 @@ }, "type": "object" }, - "parent_id": { - "value": { - "value": "6871118", - "type": "string" - }, - "type": "primitive" - }, "help_center_id": { "value": { "value": 87, @@ -26046,25 +25971,6 @@ }, "type": "primitive" }, - "next": { - "properties": { - "per_page": { - "value": { - "value": 2, - "type": "int" - }, - "type": "primitive" - }, - "starting_after": { - "value": { - "value": "your-cursor-from-response", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, "per_page": { "value": { "value": 15, @@ -29798,25 +29704,6 @@ }, "type": "primitive" }, - "next": { - "properties": { - "per_page": { - "value": { - "value": 2, - "type": "int" - }, - "type": "primitive" - }, - "starting_after": { - "value": { - "value": "your-cursor-from-response", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, "per_page": { "value": { "value": 15, @@ -30522,65 +30409,6 @@ ], "type": "array" }, - "pages": { - "properties": { - "type": { - "value": { - "value": "pages", - "type": "string" - }, - "type": "literal" - }, - "page": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - }, - "next": { - "properties": { - "per_page": { - "value": { - "value": 2, - "type": "int" - }, - "type": "primitive" - }, - "starting_after": { - "value": { - "value": "your-cursor-from-response", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "per_page": { - "value": { - "value": 2, - "type": "int" - }, - "type": "primitive" - }, - "total_pages": { - "value": { - "value": 13, - "type": "int" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "total_count": { - "value": { - "value": 100, - "type": "int" - }, - "type": "primitive" - }, "scroll_param": { "value": { "value": "12d403b5-dc79-47b5-8ea1-01a5ac8cb6cc", @@ -31144,13 +30972,6 @@ }, "type": "primitive" }, - "next": { - "value": { - "value": "next", - "type": "string" - }, - "type": "primitive" - }, "per_page": { "value": { "value": 50, @@ -33752,25 +33573,6 @@ }, "type": "primitive" }, - "next": { - "properties": { - "per_page": { - "value": { - "value": 2, - "type": "int" - }, - "type": "primitive" - }, - "starting_after": { - "value": { - "value": "your-cursor-from-response", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, "per_page": { "value": { "value": 50, @@ -38952,13 +38754,6 @@ }, "type": "primitive" }, - "phone": { - "value": { - "value": "+1123456789", - "type": "string" - }, - "type": "primitive" - }, "formatted_phone": { "value": { "value": "+1123456789", @@ -38973,13 +38768,6 @@ }, "type": "primitive" }, - "owner_id": { - "value": { - "value": 123, - "type": "int" - }, - "type": "primitive" - }, "has_hard_bounced": { "value": { "value": false, @@ -39022,160 +38810,6 @@ }, "type": "primitive" }, - "last_seen_at": { - "value": { - "value": 1571672154, - "type": "int" - }, - "type": "primitive" - }, - "last_replied_at": { - "value": { - "value": 1571672154, - "type": "int" - }, - "type": "primitive" - }, - "last_contacted_at": { - "value": { - "value": 1571672154, - "type": "int" - }, - "type": "primitive" - }, - "last_email_opened_at": { - "value": { - "value": 1571672154, - "type": "int" - }, - "type": "primitive" - }, - "last_email_clicked_at": { - "value": { - "value": 1571672154, - "type": "int" - }, - "type": "primitive" - }, - "language_override": { - "value": { - "value": "en", - "type": "string" - }, - "type": "primitive" - }, - "browser": { - "value": { - "value": "Chrome", - "type": "string" - }, - "type": "primitive" - }, - "browser_version": { - "value": { - "value": "80.0.3987.132", - "type": "string" - }, - "type": "primitive" - }, - "browser_language": { - "value": { - "value": "en-US", - "type": "string" - }, - "type": "primitive" - }, - "os": { - "value": { - "value": "Mac OS X", - "type": "string" - }, - "type": "primitive" - }, - "android_app_name": { - "value": { - "value": "Intercom", - "type": "string" - }, - "type": "primitive" - }, - "android_app_version": { - "value": { - "value": "5.0.0", - "type": "string" - }, - "type": "primitive" - }, - "android_device": { - "value": { - "value": "Pixel 3", - "type": "string" - }, - "type": "primitive" - }, - "android_os_version": { - "value": { - "value": "10", - "type": "string" - }, - "type": "primitive" - }, - "android_sdk_version": { - "value": { - "value": "28", - "type": "string" - }, - "type": "primitive" - }, - "android_last_seen_at": { - "value": { - "value": 1571672154, - "type": "int" - }, - "type": "primitive" - }, - "ios_app_name": { - "value": { - "value": "Intercom", - "type": "string" - }, - "type": "primitive" - }, - "ios_app_version": { - "value": { - "value": "5.0.0", - "type": "string" - }, - "type": "primitive" - }, - "ios_device": { - "value": { - "value": "iPhone 11", - "type": "string" - }, - "type": "primitive" - }, - "ios_os_version": { - "value": { - "value": "13.3.1", - "type": "string" - }, - "type": "primitive" - }, - "ios_sdk_version": { - "value": { - "value": "13.3.1", - "type": "string" - }, - "type": "primitive" - }, - "ios_last_seen_at": { - "value": { - "value": 1571672154, - "type": "int" - }, - "type": "primitive" - }, "custom_attributes": { "value": [ { @@ -39197,25 +38831,6 @@ ], "type": "map" }, - "avatar": { - "properties": { - "type": { - "value": { - "value": "avatar", - "type": "string" - }, - "type": "primitive" - }, - "image_url": { - "value": { - "value": "https://example.org/128Wash.jpg", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, "tags": { "properties": { "data": { @@ -39364,27 +38979,6 @@ "type": "string" }, "type": "primitive" - }, - "country": { - "value": { - "value": "Ireland", - "type": "string" - }, - "type": "primitive" - }, - "region": { - "value": { - "value": "Dublin", - "type": "string" - }, - "type": "primitive" - }, - "city": { - "value": { - "value": "Dublin", - "type": "string" - }, - "type": "primitive" } }, "type": "object" @@ -39823,13 +39417,6 @@ }, "type": "primitive" }, - "phone": { - "value": { - "value": "+1123456789", - "type": "string" - }, - "type": "primitive" - }, "formatted_phone": { "value": { "value": "+1123456789", @@ -39844,13 +39431,6 @@ }, "type": "primitive" }, - "owner_id": { - "value": { - "value": 123, - "type": "int" - }, - "type": "primitive" - }, "has_hard_bounced": { "value": { "value": false, @@ -39893,160 +39473,6 @@ }, "type": "primitive" }, - "last_seen_at": { - "value": { - "value": 1571672154, - "type": "int" - }, - "type": "primitive" - }, - "last_replied_at": { - "value": { - "value": 1571672154, - "type": "int" - }, - "type": "primitive" - }, - "last_contacted_at": { - "value": { - "value": 1571672154, - "type": "int" - }, - "type": "primitive" - }, - "last_email_opened_at": { - "value": { - "value": 1571672154, - "type": "int" - }, - "type": "primitive" - }, - "last_email_clicked_at": { - "value": { - "value": 1571672154, - "type": "int" - }, - "type": "primitive" - }, - "language_override": { - "value": { - "value": "en", - "type": "string" - }, - "type": "primitive" - }, - "browser": { - "value": { - "value": "Chrome", - "type": "string" - }, - "type": "primitive" - }, - "browser_version": { - "value": { - "value": "80.0.3987.132", - "type": "string" - }, - "type": "primitive" - }, - "browser_language": { - "value": { - "value": "en-US", - "type": "string" - }, - "type": "primitive" - }, - "os": { - "value": { - "value": "Mac OS X", - "type": "string" - }, - "type": "primitive" - }, - "android_app_name": { - "value": { - "value": "Intercom", - "type": "string" - }, - "type": "primitive" - }, - "android_app_version": { - "value": { - "value": "5.0.0", - "type": "string" - }, - "type": "primitive" - }, - "android_device": { - "value": { - "value": "Pixel 3", - "type": "string" - }, - "type": "primitive" - }, - "android_os_version": { - "value": { - "value": "10", - "type": "string" - }, - "type": "primitive" - }, - "android_sdk_version": { - "value": { - "value": "28", - "type": "string" - }, - "type": "primitive" - }, - "android_last_seen_at": { - "value": { - "value": 1571672154, - "type": "int" - }, - "type": "primitive" - }, - "ios_app_name": { - "value": { - "value": "Intercom", - "type": "string" - }, - "type": "primitive" - }, - "ios_app_version": { - "value": { - "value": "5.0.0", - "type": "string" - }, - "type": "primitive" - }, - "ios_device": { - "value": { - "value": "iPhone 11", - "type": "string" - }, - "type": "primitive" - }, - "ios_os_version": { - "value": { - "value": "13.3.1", - "type": "string" - }, - "type": "primitive" - }, - "ios_sdk_version": { - "value": { - "value": "13.3.1", - "type": "string" - }, - "type": "primitive" - }, - "ios_last_seen_at": { - "value": { - "value": 1571672154, - "type": "int" - }, - "type": "primitive" - }, "custom_attributes": { "value": [ { @@ -40068,25 +39494,6 @@ ], "type": "map" }, - "avatar": { - "properties": { - "type": { - "value": { - "value": "avatar", - "type": "string" - }, - "type": "primitive" - }, - "image_url": { - "value": { - "value": "https://example.org/128Wash.jpg", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, "tags": { "properties": { "data": { @@ -40235,27 +39642,6 @@ "type": "string" }, "type": "primitive" - }, - "country": { - "value": { - "value": "Ireland", - "type": "string" - }, - "type": "primitive" - }, - "region": { - "value": { - "value": "Dublin", - "type": "string" - }, - "type": "primitive" - }, - "city": { - "value": { - "value": "Dublin", - "type": "string" - }, - "type": "primitive" } }, "type": "object" @@ -40905,13 +40291,6 @@ }, "type": "primitive" }, - "phone": { - "value": { - "value": "+1123456789", - "type": "string" - }, - "type": "primitive" - }, "formatted_phone": { "value": { "value": "+1123456789", @@ -40926,13 +40305,6 @@ }, "type": "primitive" }, - "owner_id": { - "value": { - "value": 123, - "type": "int" - }, - "type": "primitive" - }, "has_hard_bounced": { "value": { "value": false, @@ -40975,160 +40347,6 @@ }, "type": "primitive" }, - "last_seen_at": { - "value": { - "value": 1571672154, - "type": "int" - }, - "type": "primitive" - }, - "last_replied_at": { - "value": { - "value": 1571672154, - "type": "int" - }, - "type": "primitive" - }, - "last_contacted_at": { - "value": { - "value": 1571672154, - "type": "int" - }, - "type": "primitive" - }, - "last_email_opened_at": { - "value": { - "value": 1571672154, - "type": "int" - }, - "type": "primitive" - }, - "last_email_clicked_at": { - "value": { - "value": 1571672154, - "type": "int" - }, - "type": "primitive" - }, - "language_override": { - "value": { - "value": "en", - "type": "string" - }, - "type": "primitive" - }, - "browser": { - "value": { - "value": "Chrome", - "type": "string" - }, - "type": "primitive" - }, - "browser_version": { - "value": { - "value": "80.0.3987.132", - "type": "string" - }, - "type": "primitive" - }, - "browser_language": { - "value": { - "value": "en-US", - "type": "string" - }, - "type": "primitive" - }, - "os": { - "value": { - "value": "Mac OS X", - "type": "string" - }, - "type": "primitive" - }, - "android_app_name": { - "value": { - "value": "Intercom", - "type": "string" - }, - "type": "primitive" - }, - "android_app_version": { - "value": { - "value": "5.0.0", - "type": "string" - }, - "type": "primitive" - }, - "android_device": { - "value": { - "value": "Pixel 3", - "type": "string" - }, - "type": "primitive" - }, - "android_os_version": { - "value": { - "value": "10", - "type": "string" - }, - "type": "primitive" - }, - "android_sdk_version": { - "value": { - "value": "28", - "type": "string" - }, - "type": "primitive" - }, - "android_last_seen_at": { - "value": { - "value": 1571672154, - "type": "int" - }, - "type": "primitive" - }, - "ios_app_name": { - "value": { - "value": "Intercom", - "type": "string" - }, - "type": "primitive" - }, - "ios_app_version": { - "value": { - "value": "5.0.0", - "type": "string" - }, - "type": "primitive" - }, - "ios_device": { - "value": { - "value": "iPhone 11", - "type": "string" - }, - "type": "primitive" - }, - "ios_os_version": { - "value": { - "value": "13.3.1", - "type": "string" - }, - "type": "primitive" - }, - "ios_sdk_version": { - "value": { - "value": "13.3.1", - "type": "string" - }, - "type": "primitive" - }, - "ios_last_seen_at": { - "value": { - "value": 1571672154, - "type": "int" - }, - "type": "primitive" - }, "custom_attributes": { "value": [ { @@ -41150,25 +40368,6 @@ ], "type": "map" }, - "avatar": { - "properties": { - "type": { - "value": { - "value": "avatar", - "type": "string" - }, - "type": "primitive" - }, - "image_url": { - "value": { - "value": "https://example.org/128Wash.jpg", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, "tags": { "properties": { "data": { @@ -41317,27 +40516,6 @@ "type": "string" }, "type": "primitive" - }, - "country": { - "value": { - "value": "Ireland", - "type": "string" - }, - "type": "primitive" - }, - "region": { - "value": { - "value": "Dublin", - "type": "string" - }, - "type": "primitive" - }, - "city": { - "value": { - "value": "Dublin", - "type": "string" - }, - "type": "primitive" } }, "type": "object" @@ -43105,13 +42283,6 @@ }, "type": "primitive" }, - "external_id": { - "value": { - "value": "f3b87a2e09d514c6c2e79b9a", - "type": "string" - }, - "type": "primitive" - }, "workspace_id": { "value": { "value": "this_is_an_id272_that_should_be_at_least_", @@ -43140,13 +42311,6 @@ }, "type": "primitive" }, - "phone": { - "value": { - "value": "+1123456789", - "type": "string" - }, - "type": "primitive" - }, "formatted_phone": { "value": { "value": "+1123456789", @@ -43154,20 +42318,6 @@ }, "type": "primitive" }, - "name": { - "value": { - "value": "John Doe", - "type": "string" - }, - "type": "primitive" - }, - "owner_id": { - "value": { - "value": 123, - "type": "int" - }, - "type": "primitive" - }, "has_hard_bounced": { "value": { "value": false, @@ -43203,167 +42353,6 @@ }, "type": "primitive" }, - "signed_up_at": { - "value": { - "value": 1571672154, - "type": "int" - }, - "type": "primitive" - }, - "last_seen_at": { - "value": { - "value": 1571672154, - "type": "int" - }, - "type": "primitive" - }, - "last_replied_at": { - "value": { - "value": 1571672154, - "type": "int" - }, - "type": "primitive" - }, - "last_contacted_at": { - "value": { - "value": 1571672154, - "type": "int" - }, - "type": "primitive" - }, - "last_email_opened_at": { - "value": { - "value": 1571672154, - "type": "int" - }, - "type": "primitive" - }, - "last_email_clicked_at": { - "value": { - "value": 1571672154, - "type": "int" - }, - "type": "primitive" - }, - "language_override": { - "value": { - "value": "en", - "type": "string" - }, - "type": "primitive" - }, - "browser": { - "value": { - "value": "Chrome", - "type": "string" - }, - "type": "primitive" - }, - "browser_version": { - "value": { - "value": "80.0.3987.132", - "type": "string" - }, - "type": "primitive" - }, - "browser_language": { - "value": { - "value": "en-US", - "type": "string" - }, - "type": "primitive" - }, - "os": { - "value": { - "value": "Mac OS X", - "type": "string" - }, - "type": "primitive" - }, - "android_app_name": { - "value": { - "value": "Intercom", - "type": "string" - }, - "type": "primitive" - }, - "android_app_version": { - "value": { - "value": "5.0.0", - "type": "string" - }, - "type": "primitive" - }, - "android_device": { - "value": { - "value": "Pixel 3", - "type": "string" - }, - "type": "primitive" - }, - "android_os_version": { - "value": { - "value": "10", - "type": "string" - }, - "type": "primitive" - }, - "android_sdk_version": { - "value": { - "value": "28", - "type": "string" - }, - "type": "primitive" - }, - "android_last_seen_at": { - "value": { - "value": 1571672154, - "type": "int" - }, - "type": "primitive" - }, - "ios_app_name": { - "value": { - "value": "Intercom", - "type": "string" - }, - "type": "primitive" - }, - "ios_app_version": { - "value": { - "value": "5.0.0", - "type": "string" - }, - "type": "primitive" - }, - "ios_device": { - "value": { - "value": "iPhone 11", - "type": "string" - }, - "type": "primitive" - }, - "ios_os_version": { - "value": { - "value": "13.3.1", - "type": "string" - }, - "type": "primitive" - }, - "ios_sdk_version": { - "value": { - "value": "13.3.1", - "type": "string" - }, - "type": "primitive" - }, - "ios_last_seen_at": { - "value": { - "value": 1571672154, - "type": "int" - }, - "type": "primitive" - }, "custom_attributes": { "value": [ { @@ -43385,25 +42374,6 @@ ], "type": "map" }, - "avatar": { - "properties": { - "type": { - "value": { - "value": "avatar", - "type": "string" - }, - "type": "primitive" - }, - "image_url": { - "value": { - "value": "https://example.org/128Wash.jpg", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, "tags": { "properties": { "data": { @@ -43552,27 +42522,6 @@ "type": "string" }, "type": "primitive" - }, - "country": { - "value": { - "value": "Ireland", - "type": "string" - }, - "type": "primitive" - }, - "region": { - "value": { - "value": "Dublin", - "type": "string" - }, - "type": "primitive" - }, - "city": { - "value": { - "value": "Dublin", - "type": "string" - }, - "type": "primitive" } }, "type": "object" @@ -46761,13 +45710,6 @@ }, "type": "primitive" }, - "title": { - "value": { - "value": "Conversation Title", - "type": "string" - }, - "type": "primitive" - }, "created_at": { "value": { "value": 1719492825, @@ -46782,20 +45724,6 @@ }, "type": "primitive" }, - "waiting_since": { - "value": { - "value": 1663597260, - "type": "int" - }, - "type": "primitive" - }, - "snoozed_until": { - "value": { - "value": 1663597260, - "type": "int" - }, - "type": "primitive" - }, "open": { "value": { "value": false, @@ -46818,20 +45746,6 @@ "value": "not_priority", "type": "enum" }, - "admin_assignee_id": { - "value": { - "value": 0, - "type": "int" - }, - "type": "primitive" - }, - "team_assignee_id": { - "value": { - "value": "5017691", - "type": "string" - }, - "type": "primitive" - }, "tags": { "properties": { "type": { @@ -46882,77 +45796,6 @@ }, "type": "object" }, - "conversation_rating": { - "properties": { - "rating": { - "value": { - "value": 5, - "type": "int" - }, - "type": "primitive" - }, - "remark": { - "value": { - "value": "", - "type": "string" - }, - "type": "primitive" - }, - "created_at": { - "value": { - "value": 1671028894, - "type": "int" - }, - "type": "primitive" - }, - "contact": { - "properties": { - "type": { - "value": { - "value": "contact", - "type": "string" - }, - "type": "literal" - }, - "id": { - "value": { - "value": "5ba682d23d7cf92bef87bfd4", - "type": "string" - }, - "type": "primitive" - }, - "external_id": { - "value": { - "value": "f3b87a2e09d514c6c2e79b9a", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "teammate": { - "properties": { - "type": { - "value": { - "value": "contact", - "type": "string" - }, - "type": "primitive" - }, - "id": { - "value": { - "value": "1a2b3c", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - }, - "type": "object" - }, "source": { "properties": { "type": { @@ -47082,13 +45925,6 @@ ], "type": "array" }, - "url": { - "value": { - "value": "url", - "type": "string" - }, - "type": "primitive" - }, "redacted": { "value": { "value": false, @@ -47142,35 +45978,6 @@ }, "type": "object" }, - "teammates": { - "properties": { - "type": { - "value": { - "value": "admin.list", - "type": "string" - }, - "type": "primitive" - }, - "teammates": { - "value": [ - { - "properties": { - "type": { - "value": { - "value": "contact", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, "custom_attributes": { "value": [ { @@ -47189,193 +45996,6 @@ ], "type": "map" }, - "first_contact_reply": { - "properties": { - "created_at": { - "value": { - "value": 1663597223, - "type": "int" - }, - "type": "primitive" - }, - "type": { - "value": { - "value": "conversation", - "type": "string" - }, - "type": "primitive" - }, - "url": { - "value": { - "value": "https://developers.intercom.com/", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "sla_applied": { - "properties": { - "type": { - "value": { - "value": "conversation_sla_summary", - "type": "string" - }, - "type": "primitive" - }, - "sla_name": { - "value": { - "value": "", - "type": "string" - }, - "type": "primitive" - }, - "sla_status": { - "value": "hit", - "type": "enum" - } - }, - "type": "object" - }, - "statistics": { - "properties": { - "type": { - "value": { - "value": "conversation_statistics", - "type": "string" - }, - "type": "primitive" - }, - "time_to_assignment": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "time_to_admin_reply": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "time_to_first_close": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "time_to_last_close": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "median_time_to_reply": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "first_contact_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "first_assignment_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "first_admin_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "first_close_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_assignment_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_assignment_admin_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_contact_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_admin_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_close_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_closed_by_id": { - "value": { - "value": "c3po", - "type": "string" - }, - "type": "primitive" - }, - "count_reopens": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - }, - "count_assignments": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - }, - "count_conversation_parts": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - } - }, - "type": "object" - }, "conversation_parts": { "properties": { "type": { @@ -47503,100 +46123,6 @@ "type": "boolean" }, "type": "primitive" - }, - "ai_agent": { - "properties": { - "source_type": { - "value": "essentials_plan_setup", - "type": "enum" - }, - "source_title": { - "value": { - "value": "My AI Workflow", - "type": "string" - }, - "type": "primitive" - }, - "last_answer_type": { - "value": { - "value": "ai_answer", - "type": "string" - }, - "type": "primitive" - }, - "resolution_state": { - "value": { - "value": "assumed_resolution", - "type": "string" - }, - "type": "primitive" - }, - "rating": { - "value": { - "value": 4, - "type": "int" - }, - "type": "primitive" - }, - "rating_remark": { - "value": { - "value": "Very helpful!", - "type": "string" - }, - "type": "primitive" - }, - "content_sources": { - "properties": { - "type": { - "value": { - "value": "content_source.list", - "type": "string" - }, - "type": "literal" - }, - "total_count": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - }, - "content_sources": { - "value": [ - { - "properties": { - "url": { - "value": { - "value": "/fin-ai-agent/content?content=content_snippet&id=3234924", - "type": "string" - }, - "type": "primitive" - }, - "title": { - "value": { - "value": "My internal content snippet", - "type": "string" - }, - "type": "primitive" - }, - "locale": { - "value": { - "value": "en", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - } - }, - "type": "object" } }, "type": "object" @@ -48234,13 +46760,6 @@ }, "type": "primitive" }, - "title": { - "value": { - "value": "Conversation Title", - "type": "string" - }, - "type": "primitive" - }, "created_at": { "value": { "value": 1719492832, @@ -48255,20 +46774,6 @@ }, "type": "primitive" }, - "waiting_since": { - "value": { - "value": 1663597260, - "type": "int" - }, - "type": "primitive" - }, - "snoozed_until": { - "value": { - "value": 1663597260, - "type": "int" - }, - "type": "primitive" - }, "open": { "value": { "value": false, @@ -48291,20 +46796,6 @@ "value": "not_priority", "type": "enum" }, - "admin_assignee_id": { - "value": { - "value": 0, - "type": "int" - }, - "type": "primitive" - }, - "team_assignee_id": { - "value": { - "value": "5017691", - "type": "string" - }, - "type": "primitive" - }, "tags": { "properties": { "type": { @@ -48355,77 +46846,6 @@ }, "type": "object" }, - "conversation_rating": { - "properties": { - "rating": { - "value": { - "value": 5, - "type": "int" - }, - "type": "primitive" - }, - "remark": { - "value": { - "value": "", - "type": "string" - }, - "type": "primitive" - }, - "created_at": { - "value": { - "value": 1671028894, - "type": "int" - }, - "type": "primitive" - }, - "contact": { - "properties": { - "type": { - "value": { - "value": "contact", - "type": "string" - }, - "type": "literal" - }, - "id": { - "value": { - "value": "5ba682d23d7cf92bef87bfd4", - "type": "string" - }, - "type": "primitive" - }, - "external_id": { - "value": { - "value": "f3b87a2e09d514c6c2e79b9a", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "teammate": { - "properties": { - "type": { - "value": { - "value": "contact", - "type": "string" - }, - "type": "primitive" - }, - "id": { - "value": { - "value": "1a2b3c", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - }, - "type": "object" - }, "source": { "properties": { "type": { @@ -48555,13 +46975,6 @@ ], "type": "array" }, - "url": { - "value": { - "value": "url", - "type": "string" - }, - "type": "primitive" - }, "redacted": { "value": { "value": false, @@ -48615,35 +47028,6 @@ }, "type": "object" }, - "teammates": { - "properties": { - "type": { - "value": { - "value": "admin.list", - "type": "string" - }, - "type": "primitive" - }, - "teammates": { - "value": [ - { - "properties": { - "type": { - "value": { - "value": "contact", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, "custom_attributes": { "value": [ { @@ -48675,193 +47059,6 @@ ], "type": "map" }, - "first_contact_reply": { - "properties": { - "created_at": { - "value": { - "value": 1663597223, - "type": "int" - }, - "type": "primitive" - }, - "type": { - "value": { - "value": "conversation", - "type": "string" - }, - "type": "primitive" - }, - "url": { - "value": { - "value": "https://developers.intercom.com/", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "sla_applied": { - "properties": { - "type": { - "value": { - "value": "conversation_sla_summary", - "type": "string" - }, - "type": "primitive" - }, - "sla_name": { - "value": { - "value": "", - "type": "string" - }, - "type": "primitive" - }, - "sla_status": { - "value": "hit", - "type": "enum" - } - }, - "type": "object" - }, - "statistics": { - "properties": { - "type": { - "value": { - "value": "conversation_statistics", - "type": "string" - }, - "type": "primitive" - }, - "time_to_assignment": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "time_to_admin_reply": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "time_to_first_close": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "time_to_last_close": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "median_time_to_reply": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "first_contact_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "first_assignment_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "first_admin_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "first_close_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_assignment_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_assignment_admin_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_contact_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_admin_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_close_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_closed_by_id": { - "value": { - "value": "c3po", - "type": "string" - }, - "type": "primitive" - }, - "count_reopens": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - }, - "count_assignments": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - }, - "count_conversation_parts": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - } - }, - "type": "object" - }, "conversation_parts": { "properties": { "type": { @@ -49227,100 +47424,6 @@ "type": "boolean" }, "type": "primitive" - }, - "ai_agent": { - "properties": { - "source_type": { - "value": "essentials_plan_setup", - "type": "enum" - }, - "source_title": { - "value": { - "value": "My AI Workflow", - "type": "string" - }, - "type": "primitive" - }, - "last_answer_type": { - "value": { - "value": "ai_answer", - "type": "string" - }, - "type": "primitive" - }, - "resolution_state": { - "value": { - "value": "assumed_resolution", - "type": "string" - }, - "type": "primitive" - }, - "rating": { - "value": { - "value": 4, - "type": "int" - }, - "type": "primitive" - }, - "rating_remark": { - "value": { - "value": "Very helpful!", - "type": "string" - }, - "type": "primitive" - }, - "content_sources": { - "properties": { - "type": { - "value": { - "value": "content_source.list", - "type": "string" - }, - "type": "literal" - }, - "total_count": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - }, - "content_sources": { - "value": [ - { - "properties": { - "url": { - "value": { - "value": "/fin-ai-agent/content?content=content_snippet&id=3234924", - "type": "string" - }, - "type": "primitive" - }, - "title": { - "value": { - "value": "My internal content snippet", - "type": "string" - }, - "type": "primitive" - }, - "locale": { - "value": { - "value": "en", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - } - }, - "type": "object" } }, "type": "object" @@ -49417,13 +47520,6 @@ }, "type": "primitive" }, - "title": { - "value": { - "value": "Conversation Title", - "type": "string" - }, - "type": "primitive" - }, "created_at": { "value": { "value": 1719492832, @@ -49438,20 +47534,6 @@ }, "type": "primitive" }, - "waiting_since": { - "value": { - "value": 1663597260, - "type": "int" - }, - "type": "primitive" - }, - "snoozed_until": { - "value": { - "value": 1663597260, - "type": "int" - }, - "type": "primitive" - }, "open": { "value": { "value": false, @@ -49474,20 +47556,6 @@ "value": "not_priority", "type": "enum" }, - "admin_assignee_id": { - "value": { - "value": 0, - "type": "int" - }, - "type": "primitive" - }, - "team_assignee_id": { - "value": { - "value": "5017691", - "type": "string" - }, - "type": "primitive" - }, "tags": { "properties": { "type": { @@ -49538,77 +47606,6 @@ }, "type": "object" }, - "conversation_rating": { - "properties": { - "rating": { - "value": { - "value": 5, - "type": "int" - }, - "type": "primitive" - }, - "remark": { - "value": { - "value": "", - "type": "string" - }, - "type": "primitive" - }, - "created_at": { - "value": { - "value": 1671028894, - "type": "int" - }, - "type": "primitive" - }, - "contact": { - "properties": { - "type": { - "value": { - "value": "contact", - "type": "string" - }, - "type": "literal" - }, - "id": { - "value": { - "value": "5ba682d23d7cf92bef87bfd4", - "type": "string" - }, - "type": "primitive" - }, - "external_id": { - "value": { - "value": "f3b87a2e09d514c6c2e79b9a", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "teammate": { - "properties": { - "type": { - "value": { - "value": "contact", - "type": "string" - }, - "type": "primitive" - }, - "id": { - "value": { - "value": "1a2b3c", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - }, - "type": "object" - }, "source": { "properties": { "type": { @@ -49738,13 +47735,6 @@ ], "type": "array" }, - "url": { - "value": { - "value": "url", - "type": "string" - }, - "type": "primitive" - }, "redacted": { "value": { "value": false, @@ -49798,35 +47788,6 @@ }, "type": "object" }, - "teammates": { - "properties": { - "type": { - "value": { - "value": "admin.list", - "type": "string" - }, - "type": "primitive" - }, - "teammates": { - "value": [ - { - "properties": { - "type": { - "value": { - "value": "contact", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, "custom_attributes": { "value": [ { @@ -49858,193 +47819,6 @@ ], "type": "map" }, - "first_contact_reply": { - "properties": { - "created_at": { - "value": { - "value": 1663597223, - "type": "int" - }, - "type": "primitive" - }, - "type": { - "value": { - "value": "conversation", - "type": "string" - }, - "type": "primitive" - }, - "url": { - "value": { - "value": "https://developers.intercom.com/", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "sla_applied": { - "properties": { - "type": { - "value": { - "value": "conversation_sla_summary", - "type": "string" - }, - "type": "primitive" - }, - "sla_name": { - "value": { - "value": "", - "type": "string" - }, - "type": "primitive" - }, - "sla_status": { - "value": "hit", - "type": "enum" - } - }, - "type": "object" - }, - "statistics": { - "properties": { - "type": { - "value": { - "value": "conversation_statistics", - "type": "string" - }, - "type": "primitive" - }, - "time_to_assignment": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "time_to_admin_reply": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "time_to_first_close": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "time_to_last_close": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "median_time_to_reply": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "first_contact_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "first_assignment_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "first_admin_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "first_close_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_assignment_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_assignment_admin_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_contact_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_admin_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_close_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_closed_by_id": { - "value": { - "value": "c3po", - "type": "string" - }, - "type": "primitive" - }, - "count_reopens": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - }, - "count_assignments": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - }, - "count_conversation_parts": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - } - }, - "type": "object" - }, "conversation_parts": { "properties": { "type": { @@ -50410,100 +48184,6 @@ "type": "boolean" }, "type": "primitive" - }, - "ai_agent": { - "properties": { - "source_type": { - "value": "essentials_plan_setup", - "type": "enum" - }, - "source_title": { - "value": { - "value": "My AI Workflow", - "type": "string" - }, - "type": "primitive" - }, - "last_answer_type": { - "value": { - "value": "ai_answer", - "type": "string" - }, - "type": "primitive" - }, - "resolution_state": { - "value": { - "value": "assumed_resolution", - "type": "string" - }, - "type": "primitive" - }, - "rating": { - "value": { - "value": 4, - "type": "int" - }, - "type": "primitive" - }, - "rating_remark": { - "value": { - "value": "Very helpful!", - "type": "string" - }, - "type": "primitive" - }, - "content_sources": { - "properties": { - "type": { - "value": { - "value": "content_source.list", - "type": "string" - }, - "type": "literal" - }, - "total_count": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - }, - "content_sources": { - "value": [ - { - "properties": { - "url": { - "value": { - "value": "/fin-ai-agent/content?content=content_snippet&id=3234924", - "type": "string" - }, - "type": "primitive" - }, - "title": { - "value": { - "value": "My internal content snippet", - "type": "string" - }, - "type": "primitive" - }, - "locale": { - "value": { - "value": "en", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - } - }, - "type": "object" } }, "type": "object" @@ -50778,13 +48458,6 @@ }, "type": "primitive" }, - "title": { - "value": { - "value": "Conversation Title", - "type": "string" - }, - "type": "primitive" - }, "created_at": { "value": { "value": 1719492843, @@ -50799,20 +48472,6 @@ }, "type": "primitive" }, - "waiting_since": { - "value": { - "value": 1663597260, - "type": "int" - }, - "type": "primitive" - }, - "snoozed_until": { - "value": { - "value": 1663597260, - "type": "int" - }, - "type": "primitive" - }, "open": { "value": { "value": false, @@ -50835,20 +48494,6 @@ "value": "not_priority", "type": "enum" }, - "admin_assignee_id": { - "value": { - "value": 0, - "type": "int" - }, - "type": "primitive" - }, - "team_assignee_id": { - "value": { - "value": "5017691", - "type": "string" - }, - "type": "primitive" - }, "tags": { "properties": { "type": { @@ -50899,32 +48544,6 @@ }, "type": "object" }, - "conversation_rating": { - "properties": { - "rating": { - "value": { - "value": 5, - "type": "int" - }, - "type": "primitive" - }, - "remark": { - "value": { - "value": "", - "type": "string" - }, - "type": "primitive" - }, - "created_at": { - "value": { - "value": 1671028894, - "type": "int" - }, - "type": "primitive" - } - }, - "type": "object" - }, "source": { "properties": { "type": { @@ -51107,18 +48726,6 @@ }, "type": "object" }, - "teammates": { - "properties": { - "type": { - "value": { - "value": "admin.list", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, "custom_attributes": { "value": [ { @@ -51137,182 +48744,6 @@ ], "type": "map" }, - "first_contact_reply": { - "properties": { - "created_at": { - "value": { - "value": 1663597223, - "type": "int" - }, - "type": "primitive" - }, - "type": { - "value": { - "value": "conversation", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "sla_applied": { - "properties": { - "type": { - "value": { - "value": "conversation_sla_summary", - "type": "string" - }, - "type": "primitive" - }, - "sla_name": { - "value": { - "value": "", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "statistics": { - "properties": { - "type": { - "value": { - "value": "conversation_statistics", - "type": "string" - }, - "type": "primitive" - }, - "time_to_assignment": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "time_to_admin_reply": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "time_to_first_close": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "time_to_last_close": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "median_time_to_reply": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "first_contact_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "first_assignment_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "first_admin_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "first_close_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_assignment_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_assignment_admin_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_contact_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_admin_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_close_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_closed_by_id": { - "value": { - "value": "c3po", - "type": "string" - }, - "type": "primitive" - }, - "count_reopens": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - }, - "count_assignments": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - }, - "count_conversation_parts": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - } - }, - "type": "object" - }, "conversation_parts": { "properties": { "total_count": { @@ -52213,13 +49644,6 @@ }, "type": "primitive" }, - "title": { - "value": { - "value": "Conversation Title", - "type": "string" - }, - "type": "primitive" - }, "created_at": { "value": { "value": 1719492849, @@ -52241,13 +49665,6 @@ }, "type": "primitive" }, - "snoozed_until": { - "value": { - "value": 1663597260, - "type": "int" - }, - "type": "primitive" - }, "open": { "value": { "value": true, @@ -52270,20 +49687,6 @@ "value": "not_priority", "type": "enum" }, - "admin_assignee_id": { - "value": { - "value": 0, - "type": "int" - }, - "type": "primitive" - }, - "team_assignee_id": { - "value": { - "value": "5017691", - "type": "string" - }, - "type": "primitive" - }, "tags": { "properties": { "type": { @@ -52334,77 +49737,6 @@ }, "type": "object" }, - "conversation_rating": { - "properties": { - "rating": { - "value": { - "value": 5, - "type": "int" - }, - "type": "primitive" - }, - "remark": { - "value": { - "value": "", - "type": "string" - }, - "type": "primitive" - }, - "created_at": { - "value": { - "value": 1671028894, - "type": "int" - }, - "type": "primitive" - }, - "contact": { - "properties": { - "type": { - "value": { - "value": "contact", - "type": "string" - }, - "type": "literal" - }, - "id": { - "value": { - "value": "5ba682d23d7cf92bef87bfd4", - "type": "string" - }, - "type": "primitive" - }, - "external_id": { - "value": { - "value": "f3b87a2e09d514c6c2e79b9a", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "teammate": { - "properties": { - "type": { - "value": { - "value": "contact", - "type": "string" - }, - "type": "primitive" - }, - "id": { - "value": { - "value": "1a2b3c", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - }, - "type": "object" - }, "source": { "properties": { "type": { @@ -52534,13 +49866,6 @@ ], "type": "array" }, - "url": { - "value": { - "value": "url", - "type": "string" - }, - "type": "primitive" - }, "redacted": { "value": { "value": false, @@ -52594,35 +49919,6 @@ }, "type": "object" }, - "teammates": { - "properties": { - "type": { - "value": { - "value": "admin.list", - "type": "string" - }, - "type": "primitive" - }, - "teammates": { - "value": [ - { - "properties": { - "type": { - "value": { - "value": "contact", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, "custom_attributes": { "value": [ { @@ -52656,174 +49952,6 @@ "type": "string" }, "type": "primitive" - }, - "url": { - "value": { - "value": "https://developers.intercom.com/", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "sla_applied": { - "properties": { - "type": { - "value": { - "value": "conversation_sla_summary", - "type": "string" - }, - "type": "primitive" - }, - "sla_name": { - "value": { - "value": "", - "type": "string" - }, - "type": "primitive" - }, - "sla_status": { - "value": "hit", - "type": "enum" - } - }, - "type": "object" - }, - "statistics": { - "properties": { - "type": { - "value": { - "value": "conversation_statistics", - "type": "string" - }, - "type": "primitive" - }, - "time_to_assignment": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "time_to_admin_reply": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "time_to_first_close": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "time_to_last_close": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "median_time_to_reply": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "first_contact_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "first_assignment_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "first_admin_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "first_close_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_assignment_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_assignment_admin_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_contact_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_admin_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_close_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_closed_by_id": { - "value": { - "value": "c3po", - "type": "string" - }, - "type": "primitive" - }, - "count_reopens": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - }, - "count_assignments": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - }, - "count_conversation_parts": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" } }, "type": "object" @@ -53054,100 +50182,6 @@ "type": "boolean" }, "type": "primitive" - }, - "ai_agent": { - "properties": { - "source_type": { - "value": "essentials_plan_setup", - "type": "enum" - }, - "source_title": { - "value": { - "value": "My AI Workflow", - "type": "string" - }, - "type": "primitive" - }, - "last_answer_type": { - "value": { - "value": "ai_answer", - "type": "string" - }, - "type": "primitive" - }, - "resolution_state": { - "value": { - "value": "assumed_resolution", - "type": "string" - }, - "type": "primitive" - }, - "rating": { - "value": { - "value": 4, - "type": "int" - }, - "type": "primitive" - }, - "rating_remark": { - "value": { - "value": "Very helpful!", - "type": "string" - }, - "type": "primitive" - }, - "content_sources": { - "properties": { - "type": { - "value": { - "value": "content_source.list", - "type": "string" - }, - "type": "literal" - }, - "total_count": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - }, - "content_sources": { - "value": [ - { - "properties": { - "url": { - "value": { - "value": "/fin-ai-agent/content?content=content_snippet&id=3234924", - "type": "string" - }, - "type": "primitive" - }, - "title": { - "value": { - "value": "My internal content snippet", - "type": "string" - }, - "type": "primitive" - }, - "locale": { - "value": { - "value": "en", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - } - }, - "type": "object" } }, "type": "object" @@ -53220,13 +50254,6 @@ }, "type": "primitive" }, - "title": { - "value": { - "value": "Conversation Title", - "type": "string" - }, - "type": "primitive" - }, "created_at": { "value": { "value": 1719492852, @@ -53241,20 +50268,6 @@ }, "type": "primitive" }, - "waiting_since": { - "value": { - "value": 1663597260, - "type": "int" - }, - "type": "primitive" - }, - "snoozed_until": { - "value": { - "value": 1663597260, - "type": "int" - }, - "type": "primitive" - }, "open": { "value": { "value": false, @@ -53277,20 +50290,6 @@ "value": "not_priority", "type": "enum" }, - "admin_assignee_id": { - "value": { - "value": 0, - "type": "int" - }, - "type": "primitive" - }, - "team_assignee_id": { - "value": { - "value": "5017691", - "type": "string" - }, - "type": "primitive" - }, "tags": { "properties": { "type": { @@ -53341,77 +50340,6 @@ }, "type": "object" }, - "conversation_rating": { - "properties": { - "rating": { - "value": { - "value": 5, - "type": "int" - }, - "type": "primitive" - }, - "remark": { - "value": { - "value": "", - "type": "string" - }, - "type": "primitive" - }, - "created_at": { - "value": { - "value": 1671028894, - "type": "int" - }, - "type": "primitive" - }, - "contact": { - "properties": { - "type": { - "value": { - "value": "contact", - "type": "string" - }, - "type": "literal" - }, - "id": { - "value": { - "value": "5ba682d23d7cf92bef87bfd4", - "type": "string" - }, - "type": "primitive" - }, - "external_id": { - "value": { - "value": "f3b87a2e09d514c6c2e79b9a", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "teammate": { - "properties": { - "type": { - "value": { - "value": "contact", - "type": "string" - }, - "type": "primitive" - }, - "id": { - "value": { - "value": "1a2b3c", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - }, - "type": "object" - }, "source": { "properties": { "type": { @@ -53541,13 +50469,6 @@ ], "type": "array" }, - "url": { - "value": { - "value": "url", - "type": "string" - }, - "type": "primitive" - }, "redacted": { "value": { "value": false, @@ -53601,35 +50522,6 @@ }, "type": "object" }, - "teammates": { - "properties": { - "type": { - "value": { - "value": "admin.list", - "type": "string" - }, - "type": "primitive" - }, - "teammates": { - "value": [ - { - "properties": { - "type": { - "value": { - "value": "contact", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, "custom_attributes": { "value": [ { @@ -53648,201 +50540,14 @@ ], "type": "map" }, - "first_contact_reply": { - "properties": { - "created_at": { - "value": { - "value": 1663597223, - "type": "int" - }, - "type": "primitive" - }, - "type": { - "value": { - "value": "conversation", - "type": "string" - }, - "type": "primitive" - }, - "url": { - "value": { - "value": "https://developers.intercom.com/", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "sla_applied": { - "properties": { - "type": { - "value": { - "value": "conversation_sla_summary", - "type": "string" - }, - "type": "primitive" - }, - "sla_name": { - "value": { - "value": "", - "type": "string" - }, - "type": "primitive" - }, - "sla_status": { - "value": "hit", - "type": "enum" - } - }, - "type": "object" - }, - "statistics": { + "conversation_parts": { "properties": { "type": { "value": { - "value": "conversation_statistics", + "value": "conversation_part.list", "type": "string" }, - "type": "primitive" - }, - "time_to_assignment": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "time_to_admin_reply": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "time_to_first_close": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "time_to_last_close": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "median_time_to_reply": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "first_contact_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "first_assignment_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "first_admin_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "first_close_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_assignment_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_assignment_admin_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_contact_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_admin_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_close_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_closed_by_id": { - "value": { - "value": "c3po", - "type": "string" - }, - "type": "primitive" - }, - "count_reopens": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - }, - "count_assignments": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - }, - "count_conversation_parts": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "conversation_parts": { - "properties": { - "type": { - "value": { - "value": "conversation_part.list", - "type": "string" - }, - "type": "literal" + "type": "literal" }, "conversation_parts": { "value": [ @@ -54061,100 +50766,6 @@ "type": "boolean" }, "type": "primitive" - }, - "ai_agent": { - "properties": { - "source_type": { - "value": "essentials_plan_setup", - "type": "enum" - }, - "source_title": { - "value": { - "value": "My AI Workflow", - "type": "string" - }, - "type": "primitive" - }, - "last_answer_type": { - "value": { - "value": "ai_answer", - "type": "string" - }, - "type": "primitive" - }, - "resolution_state": { - "value": { - "value": "assumed_resolution", - "type": "string" - }, - "type": "primitive" - }, - "rating": { - "value": { - "value": 4, - "type": "int" - }, - "type": "primitive" - }, - "rating_remark": { - "value": { - "value": "Very helpful!", - "type": "string" - }, - "type": "primitive" - }, - "content_sources": { - "properties": { - "type": { - "value": { - "value": "content_source.list", - "type": "string" - }, - "type": "literal" - }, - "total_count": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - }, - "content_sources": { - "value": [ - { - "properties": { - "url": { - "value": { - "value": "/fin-ai-agent/content?content=content_snippet&id=3234924", - "type": "string" - }, - "type": "primitive" - }, - "title": { - "value": { - "value": "My internal content snippet", - "type": "string" - }, - "type": "primitive" - }, - "locale": { - "value": { - "value": "en", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - } - }, - "type": "object" } }, "type": "object" @@ -54230,13 +50841,6 @@ }, "type": "primitive" }, - "title": { - "value": { - "value": "Conversation Title", - "type": "string" - }, - "type": "primitive" - }, "created_at": { "value": { "value": 1719492855, @@ -54258,13 +50862,6 @@ }, "type": "primitive" }, - "snoozed_until": { - "value": { - "value": 1663597260, - "type": "int" - }, - "type": "primitive" - }, "open": { "value": { "value": true, @@ -54287,20 +50884,6 @@ "value": "not_priority", "type": "enum" }, - "admin_assignee_id": { - "value": { - "value": 0, - "type": "int" - }, - "type": "primitive" - }, - "team_assignee_id": { - "value": { - "value": "5017691", - "type": "string" - }, - "type": "primitive" - }, "tags": { "properties": { "type": { @@ -54351,77 +50934,6 @@ }, "type": "object" }, - "conversation_rating": { - "properties": { - "rating": { - "value": { - "value": 5, - "type": "int" - }, - "type": "primitive" - }, - "remark": { - "value": { - "value": "", - "type": "string" - }, - "type": "primitive" - }, - "created_at": { - "value": { - "value": 1671028894, - "type": "int" - }, - "type": "primitive" - }, - "contact": { - "properties": { - "type": { - "value": { - "value": "contact", - "type": "string" - }, - "type": "literal" - }, - "id": { - "value": { - "value": "5ba682d23d7cf92bef87bfd4", - "type": "string" - }, - "type": "primitive" - }, - "external_id": { - "value": { - "value": "f3b87a2e09d514c6c2e79b9a", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "teammate": { - "properties": { - "type": { - "value": { - "value": "contact", - "type": "string" - }, - "type": "primitive" - }, - "id": { - "value": { - "value": "1a2b3c", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - }, - "type": "object" - }, "source": { "properties": { "type": { @@ -54551,13 +51063,6 @@ ], "type": "array" }, - "url": { - "value": { - "value": "url", - "type": "string" - }, - "type": "primitive" - }, "redacted": { "value": { "value": false, @@ -54611,35 +51116,6 @@ }, "type": "object" }, - "teammates": { - "properties": { - "type": { - "value": { - "value": "admin.list", - "type": "string" - }, - "type": "primitive" - }, - "teammates": { - "value": [ - { - "properties": { - "type": { - "value": { - "value": "contact", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, "custom_attributes": { "value": [ { @@ -54673,186 +51149,18 @@ "type": "string" }, "type": "primitive" - }, - "url": { - "value": { - "value": "https://developers.intercom.com/", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "sla_applied": { - "properties": { - "type": { - "value": { - "value": "conversation_sla_summary", - "type": "string" - }, - "type": "primitive" - }, - "sla_name": { - "value": { - "value": "", - "type": "string" - }, - "type": "primitive" - }, - "sla_status": { - "value": "hit", - "type": "enum" } }, "type": "object" }, - "statistics": { + "conversation_parts": { "properties": { "type": { "value": { - "value": "conversation_statistics", - "type": "string" - }, - "type": "primitive" - }, - "time_to_assignment": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "time_to_admin_reply": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "time_to_first_close": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "time_to_last_close": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "median_time_to_reply": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "first_contact_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "first_assignment_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "first_admin_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "first_close_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_assignment_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_assignment_admin_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_contact_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_admin_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_close_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_closed_by_id": { - "value": { - "value": "c3po", + "value": "conversation_part.list", "type": "string" }, - "type": "primitive" - }, - "count_reopens": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - }, - "count_assignments": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - }, - "count_conversation_parts": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "conversation_parts": { - "properties": { - "type": { - "value": { - "value": "conversation_part.list", - "type": "string" - }, - "type": "literal" + "type": "literal" }, "conversation_parts": { "value": [ @@ -55071,100 +51379,6 @@ "type": "boolean" }, "type": "primitive" - }, - "ai_agent": { - "properties": { - "source_type": { - "value": "essentials_plan_setup", - "type": "enum" - }, - "source_title": { - "value": { - "value": "My AI Workflow", - "type": "string" - }, - "type": "primitive" - }, - "last_answer_type": { - "value": { - "value": "ai_answer", - "type": "string" - }, - "type": "primitive" - }, - "resolution_state": { - "value": { - "value": "assumed_resolution", - "type": "string" - }, - "type": "primitive" - }, - "rating": { - "value": { - "value": 4, - "type": "int" - }, - "type": "primitive" - }, - "rating_remark": { - "value": { - "value": "Very helpful!", - "type": "string" - }, - "type": "primitive" - }, - "content_sources": { - "properties": { - "type": { - "value": { - "value": "content_source.list", - "type": "string" - }, - "type": "literal" - }, - "total_count": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - }, - "content_sources": { - "value": [ - { - "properties": { - "url": { - "value": { - "value": "/fin-ai-agent/content?content=content_snippet&id=3234924", - "type": "string" - }, - "type": "primitive" - }, - "title": { - "value": { - "value": "My internal content snippet", - "type": "string" - }, - "type": "primitive" - }, - "locale": { - "value": { - "value": "en", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - } - }, - "type": "object" } }, "type": "object" @@ -55240,13 +51454,6 @@ }, "type": "primitive" }, - "title": { - "value": { - "value": "Conversation Title", - "type": "string" - }, - "type": "primitive" - }, "created_at": { "value": { "value": 1719492849, @@ -55268,13 +51475,6 @@ }, "type": "primitive" }, - "snoozed_until": { - "value": { - "value": 1663597260, - "type": "int" - }, - "type": "primitive" - }, "open": { "value": { "value": true, @@ -55297,20 +51497,6 @@ "value": "not_priority", "type": "enum" }, - "admin_assignee_id": { - "value": { - "value": 0, - "type": "int" - }, - "type": "primitive" - }, - "team_assignee_id": { - "value": { - "value": "5017691", - "type": "string" - }, - "type": "primitive" - }, "tags": { "properties": { "type": { @@ -55361,77 +51547,6 @@ }, "type": "object" }, - "conversation_rating": { - "properties": { - "rating": { - "value": { - "value": 5, - "type": "int" - }, - "type": "primitive" - }, - "remark": { - "value": { - "value": "", - "type": "string" - }, - "type": "primitive" - }, - "created_at": { - "value": { - "value": 1671028894, - "type": "int" - }, - "type": "primitive" - }, - "contact": { - "properties": { - "type": { - "value": { - "value": "contact", - "type": "string" - }, - "type": "literal" - }, - "id": { - "value": { - "value": "5ba682d23d7cf92bef87bfd4", - "type": "string" - }, - "type": "primitive" - }, - "external_id": { - "value": { - "value": "f3b87a2e09d514c6c2e79b9a", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "teammate": { - "properties": { - "type": { - "value": { - "value": "contact", - "type": "string" - }, - "type": "primitive" - }, - "id": { - "value": { - "value": "1a2b3c", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - }, - "type": "object" - }, "source": { "properties": { "type": { @@ -55561,13 +51676,6 @@ ], "type": "array" }, - "url": { - "value": { - "value": "url", - "type": "string" - }, - "type": "primitive" - }, "redacted": { "value": { "value": false, @@ -55621,35 +51729,6 @@ }, "type": "object" }, - "teammates": { - "properties": { - "type": { - "value": { - "value": "admin.list", - "type": "string" - }, - "type": "primitive" - }, - "teammates": { - "value": [ - { - "properties": { - "type": { - "value": { - "value": "contact", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, "custom_attributes": { "value": [ { @@ -55683,174 +51762,6 @@ "type": "string" }, "type": "primitive" - }, - "url": { - "value": { - "value": "https://developers.intercom.com/", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "sla_applied": { - "properties": { - "type": { - "value": { - "value": "conversation_sla_summary", - "type": "string" - }, - "type": "primitive" - }, - "sla_name": { - "value": { - "value": "", - "type": "string" - }, - "type": "primitive" - }, - "sla_status": { - "value": "hit", - "type": "enum" - } - }, - "type": "object" - }, - "statistics": { - "properties": { - "type": { - "value": { - "value": "conversation_statistics", - "type": "string" - }, - "type": "primitive" - }, - "time_to_assignment": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "time_to_admin_reply": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "time_to_first_close": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "time_to_last_close": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "median_time_to_reply": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "first_contact_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "first_assignment_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "first_admin_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "first_close_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_assignment_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_assignment_admin_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_contact_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_admin_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_close_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_closed_by_id": { - "value": { - "value": "c3po", - "type": "string" - }, - "type": "primitive" - }, - "count_reopens": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - }, - "count_assignments": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - }, - "count_conversation_parts": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" } }, "type": "object" @@ -56081,100 +51992,6 @@ "type": "boolean" }, "type": "primitive" - }, - "ai_agent": { - "properties": { - "source_type": { - "value": "essentials_plan_setup", - "type": "enum" - }, - "source_title": { - "value": { - "value": "My AI Workflow", - "type": "string" - }, - "type": "primitive" - }, - "last_answer_type": { - "value": { - "value": "ai_answer", - "type": "string" - }, - "type": "primitive" - }, - "resolution_state": { - "value": { - "value": "assumed_resolution", - "type": "string" - }, - "type": "primitive" - }, - "rating": { - "value": { - "value": 4, - "type": "int" - }, - "type": "primitive" - }, - "rating_remark": { - "value": { - "value": "Very helpful!", - "type": "string" - }, - "type": "primitive" - }, - "content_sources": { - "properties": { - "type": { - "value": { - "value": "content_source.list", - "type": "string" - }, - "type": "literal" - }, - "total_count": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - }, - "content_sources": { - "value": [ - { - "properties": { - "url": { - "value": { - "value": "/fin-ai-agent/content?content=content_snippet&id=3234924", - "type": "string" - }, - "type": "primitive" - }, - "title": { - "value": { - "value": "My internal content snippet", - "type": "string" - }, - "type": "primitive" - }, - "locale": { - "value": { - "value": "en", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - } - }, - "type": "object" } }, "type": "object" @@ -57089,13 +52906,6 @@ }, "type": "primitive" }, - "title": { - "value": { - "value": "Conversation Title", - "type": "string" - }, - "type": "primitive" - }, "created_at": { "value": { "value": 1719492862, @@ -57110,20 +52920,6 @@ }, "type": "primitive" }, - "waiting_since": { - "value": { - "value": 1663597260, - "type": "int" - }, - "type": "primitive" - }, - "snoozed_until": { - "value": { - "value": 1663597260, - "type": "int" - }, - "type": "primitive" - }, "open": { "value": { "value": false, @@ -57146,20 +52942,6 @@ "value": "not_priority", "type": "enum" }, - "admin_assignee_id": { - "value": { - "value": 0, - "type": "int" - }, - "type": "primitive" - }, - "team_assignee_id": { - "value": { - "value": "5017691", - "type": "string" - }, - "type": "primitive" - }, "tags": { "properties": { "type": { @@ -57210,77 +52992,6 @@ }, "type": "object" }, - "conversation_rating": { - "properties": { - "rating": { - "value": { - "value": 5, - "type": "int" - }, - "type": "primitive" - }, - "remark": { - "value": { - "value": "", - "type": "string" - }, - "type": "primitive" - }, - "created_at": { - "value": { - "value": 1671028894, - "type": "int" - }, - "type": "primitive" - }, - "contact": { - "properties": { - "type": { - "value": { - "value": "contact", - "type": "string" - }, - "type": "literal" - }, - "id": { - "value": { - "value": "5ba682d23d7cf92bef87bfd4", - "type": "string" - }, - "type": "primitive" - }, - "external_id": { - "value": { - "value": "f3b87a2e09d514c6c2e79b9a", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "teammate": { - "properties": { - "type": { - "value": { - "value": "contact", - "type": "string" - }, - "type": "primitive" - }, - "id": { - "value": { - "value": "1a2b3c", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - }, - "type": "object" - }, "source": { "properties": { "type": { @@ -57410,13 +53121,6 @@ ], "type": "array" }, - "url": { - "value": { - "value": "url", - "type": "string" - }, - "type": "primitive" - }, "redacted": { "value": { "value": false, @@ -57470,35 +53174,6 @@ }, "type": "object" }, - "teammates": { - "properties": { - "type": { - "value": { - "value": "admin.list", - "type": "string" - }, - "type": "primitive" - }, - "teammates": { - "value": [ - { - "properties": { - "type": { - "value": { - "value": "contact", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, "custom_attributes": { "value": [ { @@ -57517,193 +53192,6 @@ ], "type": "map" }, - "first_contact_reply": { - "properties": { - "created_at": { - "value": { - "value": 1663597223, - "type": "int" - }, - "type": "primitive" - }, - "type": { - "value": { - "value": "conversation", - "type": "string" - }, - "type": "primitive" - }, - "url": { - "value": { - "value": "https://developers.intercom.com/", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "sla_applied": { - "properties": { - "type": { - "value": { - "value": "conversation_sla_summary", - "type": "string" - }, - "type": "primitive" - }, - "sla_name": { - "value": { - "value": "", - "type": "string" - }, - "type": "primitive" - }, - "sla_status": { - "value": "hit", - "type": "enum" - } - }, - "type": "object" - }, - "statistics": { - "properties": { - "type": { - "value": { - "value": "conversation_statistics", - "type": "string" - }, - "type": "primitive" - }, - "time_to_assignment": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "time_to_admin_reply": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "time_to_first_close": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "time_to_last_close": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "median_time_to_reply": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "first_contact_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "first_assignment_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "first_admin_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "first_close_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_assignment_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_assignment_admin_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_contact_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_admin_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_close_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_closed_by_id": { - "value": { - "value": "c3po", - "type": "string" - }, - "type": "primitive" - }, - "count_reopens": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - }, - "count_assignments": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - }, - "count_conversation_parts": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - } - }, - "type": "object" - }, "conversation_parts": { "properties": { "type": { @@ -57930,100 +53418,6 @@ "type": "boolean" }, "type": "primitive" - }, - "ai_agent": { - "properties": { - "source_type": { - "value": "essentials_plan_setup", - "type": "enum" - }, - "source_title": { - "value": { - "value": "My AI Workflow", - "type": "string" - }, - "type": "primitive" - }, - "last_answer_type": { - "value": { - "value": "ai_answer", - "type": "string" - }, - "type": "primitive" - }, - "resolution_state": { - "value": { - "value": "assumed_resolution", - "type": "string" - }, - "type": "primitive" - }, - "rating": { - "value": { - "value": 4, - "type": "int" - }, - "type": "primitive" - }, - "rating_remark": { - "value": { - "value": "Very helpful!", - "type": "string" - }, - "type": "primitive" - }, - "content_sources": { - "properties": { - "type": { - "value": { - "value": "content_source.list", - "type": "string" - }, - "type": "literal" - }, - "total_count": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - }, - "content_sources": { - "value": [ - { - "properties": { - "url": { - "value": { - "value": "/fin-ai-agent/content?content=content_snippet&id=3234924", - "type": "string" - }, - "type": "primitive" - }, - "title": { - "value": { - "value": "My internal content snippet", - "type": "string" - }, - "type": "primitive" - }, - "locale": { - "value": { - "value": "en", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - } - }, - "type": "object" } }, "type": "object" @@ -58106,13 +53500,6 @@ }, "type": "primitive" }, - "title": { - "value": { - "value": "Conversation Title", - "type": "string" - }, - "type": "primitive" - }, "created_at": { "value": { "value": 1719492864, @@ -58127,13 +53514,6 @@ }, "type": "primitive" }, - "waiting_since": { - "value": { - "value": 1663597260, - "type": "int" - }, - "type": "primitive" - }, "snoozed_until": { "value": { "value": 1719496464, @@ -58163,20 +53543,6 @@ "value": "not_priority", "type": "enum" }, - "admin_assignee_id": { - "value": { - "value": 0, - "type": "int" - }, - "type": "primitive" - }, - "team_assignee_id": { - "value": { - "value": "5017691", - "type": "string" - }, - "type": "primitive" - }, "tags": { "properties": { "type": { @@ -58227,77 +53593,6 @@ }, "type": "object" }, - "conversation_rating": { - "properties": { - "rating": { - "value": { - "value": 5, - "type": "int" - }, - "type": "primitive" - }, - "remark": { - "value": { - "value": "", - "type": "string" - }, - "type": "primitive" - }, - "created_at": { - "value": { - "value": 1671028894, - "type": "int" - }, - "type": "primitive" - }, - "contact": { - "properties": { - "type": { - "value": { - "value": "contact", - "type": "string" - }, - "type": "literal" - }, - "id": { - "value": { - "value": "5ba682d23d7cf92bef87bfd4", - "type": "string" - }, - "type": "primitive" - }, - "external_id": { - "value": { - "value": "f3b87a2e09d514c6c2e79b9a", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "teammate": { - "properties": { - "type": { - "value": { - "value": "contact", - "type": "string" - }, - "type": "primitive" - }, - "id": { - "value": { - "value": "1a2b3c", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - }, - "type": "object" - }, "source": { "properties": { "type": { @@ -58427,13 +53722,6 @@ ], "type": "array" }, - "url": { - "value": { - "value": "url", - "type": "string" - }, - "type": "primitive" - }, "redacted": { "value": { "value": false, @@ -58487,35 +53775,6 @@ }, "type": "object" }, - "teammates": { - "properties": { - "type": { - "value": { - "value": "admin.list", - "type": "string" - }, - "type": "primitive" - }, - "teammates": { - "value": [ - { - "properties": { - "type": { - "value": { - "value": "contact", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, "custom_attributes": { "value": [ { @@ -58534,193 +53793,6 @@ ], "type": "map" }, - "first_contact_reply": { - "properties": { - "created_at": { - "value": { - "value": 1663597223, - "type": "int" - }, - "type": "primitive" - }, - "type": { - "value": { - "value": "conversation", - "type": "string" - }, - "type": "primitive" - }, - "url": { - "value": { - "value": "https://developers.intercom.com/", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "sla_applied": { - "properties": { - "type": { - "value": { - "value": "conversation_sla_summary", - "type": "string" - }, - "type": "primitive" - }, - "sla_name": { - "value": { - "value": "", - "type": "string" - }, - "type": "primitive" - }, - "sla_status": { - "value": "hit", - "type": "enum" - } - }, - "type": "object" - }, - "statistics": { - "properties": { - "type": { - "value": { - "value": "conversation_statistics", - "type": "string" - }, - "type": "primitive" - }, - "time_to_assignment": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "time_to_admin_reply": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "time_to_first_close": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "time_to_last_close": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "median_time_to_reply": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "first_contact_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "first_assignment_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "first_admin_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "first_close_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_assignment_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_assignment_admin_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_contact_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_admin_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_close_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_closed_by_id": { - "value": { - "value": "c3po", - "type": "string" - }, - "type": "primitive" - }, - "count_reopens": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - }, - "count_assignments": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - }, - "count_conversation_parts": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - } - }, - "type": "object" - }, "conversation_parts": { "properties": { "type": { @@ -58940,100 +54012,6 @@ "type": "boolean" }, "type": "primitive" - }, - "ai_agent": { - "properties": { - "source_type": { - "value": "essentials_plan_setup", - "type": "enum" - }, - "source_title": { - "value": { - "value": "My AI Workflow", - "type": "string" - }, - "type": "primitive" - }, - "last_answer_type": { - "value": { - "value": "ai_answer", - "type": "string" - }, - "type": "primitive" - }, - "resolution_state": { - "value": { - "value": "assumed_resolution", - "type": "string" - }, - "type": "primitive" - }, - "rating": { - "value": { - "value": 4, - "type": "int" - }, - "type": "primitive" - }, - "rating_remark": { - "value": { - "value": "Very helpful!", - "type": "string" - }, - "type": "primitive" - }, - "content_sources": { - "properties": { - "type": { - "value": { - "value": "content_source.list", - "type": "string" - }, - "type": "literal" - }, - "total_count": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - }, - "content_sources": { - "value": [ - { - "properties": { - "url": { - "value": { - "value": "/fin-ai-agent/content?content=content_snippet&id=3234924", - "type": "string" - }, - "type": "primitive" - }, - "title": { - "value": { - "value": "My internal content snippet", - "type": "string" - }, - "type": "primitive" - }, - "locale": { - "value": { - "value": "en", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - } - }, - "type": "object" } }, "type": "object" @@ -59137,20 +54115,6 @@ }, "type": "primitive" }, - "waiting_since": { - "value": { - "value": 1663597260, - "type": "int" - }, - "type": "primitive" - }, - "snoozed_until": { - "value": { - "value": 1663597260, - "type": "int" - }, - "type": "primitive" - }, "open": { "value": { "value": true, @@ -59173,20 +54137,6 @@ "value": "not_priority", "type": "enum" }, - "admin_assignee_id": { - "value": { - "value": 0, - "type": "int" - }, - "type": "primitive" - }, - "team_assignee_id": { - "value": { - "value": "5017691", - "type": "string" - }, - "type": "primitive" - }, "tags": { "properties": { "type": { @@ -59237,77 +54187,6 @@ }, "type": "object" }, - "conversation_rating": { - "properties": { - "rating": { - "value": { - "value": 5, - "type": "int" - }, - "type": "primitive" - }, - "remark": { - "value": { - "value": "", - "type": "string" - }, - "type": "primitive" - }, - "created_at": { - "value": { - "value": 1671028894, - "type": "int" - }, - "type": "primitive" - }, - "contact": { - "properties": { - "type": { - "value": { - "value": "contact", - "type": "string" - }, - "type": "literal" - }, - "id": { - "value": { - "value": "5ba682d23d7cf92bef87bfd4", - "type": "string" - }, - "type": "primitive" - }, - "external_id": { - "value": { - "value": "f3b87a2e09d514c6c2e79b9a", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "teammate": { - "properties": { - "type": { - "value": { - "value": "contact", - "type": "string" - }, - "type": "primitive" - }, - "id": { - "value": { - "value": "1a2b3c", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - }, - "type": "object" - }, "source": { "properties": { "type": { @@ -59437,13 +54316,6 @@ ], "type": "array" }, - "url": { - "value": { - "value": "url", - "type": "string" - }, - "type": "primitive" - }, "redacted": { "value": { "value": false, @@ -59488,249 +54360,33 @@ }, "type": "primitive" } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "teammates": { - "properties": { - "type": { - "value": { - "value": "admin.list", - "type": "string" - }, - "type": "primitive" - }, - "teammates": { - "value": [ - { - "properties": { - "type": { - "value": { - "value": "contact", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "custom_attributes": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - } - } - ], - "type": "map" - }, - "first_contact_reply": { - "properties": { - "created_at": { - "value": { - "value": 1663597223, - "type": "int" - }, - "type": "primitive" - }, - "type": { - "value": { - "value": "conversation", - "type": "string" - }, - "type": "primitive" - }, - "url": { - "value": { - "value": "https://developers.intercom.com/", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "sla_applied": { - "properties": { - "type": { - "value": { - "value": "conversation_sla_summary", - "type": "string" - }, - "type": "primitive" - }, - "sla_name": { - "value": { - "value": "", - "type": "string" - }, - "type": "primitive" - }, - "sla_status": { - "value": "hit", - "type": "enum" - } - }, - "type": "object" - }, - "statistics": { - "properties": { - "type": { - "value": { - "value": "conversation_statistics", - "type": "string" - }, - "type": "primitive" - }, - "time_to_assignment": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "time_to_admin_reply": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "time_to_first_close": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "time_to_last_close": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "median_time_to_reply": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "first_contact_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "first_assignment_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "first_admin_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "first_close_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_assignment_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_assignment_admin_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_contact_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_admin_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_close_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_closed_by_id": { - "value": { - "value": "c3po", - "type": "string" - }, - "type": "primitive" - }, - "count_reopens": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - }, - "count_assignments": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - }, - "count_conversation_parts": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" + }, + "type": "object" + } + ], + "type": "array" } }, "type": "object" }, + "custom_attributes": { + "value": [ + { + "key": { + "value": "key", + "type": "string" + }, + "value": { + "value": { + "value": "value", + "type": "string" + }, + "type": "primitive" + } + } + ], + "type": "map" + }, "conversation_parts": { "properties": { "type": { @@ -59950,100 +54606,6 @@ "type": "boolean" }, "type": "primitive" - }, - "ai_agent": { - "properties": { - "source_type": { - "value": "essentials_plan_setup", - "type": "enum" - }, - "source_title": { - "value": { - "value": "My AI Workflow", - "type": "string" - }, - "type": "primitive" - }, - "last_answer_type": { - "value": { - "value": "ai_answer", - "type": "string" - }, - "type": "primitive" - }, - "resolution_state": { - "value": { - "value": "assumed_resolution", - "type": "string" - }, - "type": "primitive" - }, - "rating": { - "value": { - "value": 4, - "type": "int" - }, - "type": "primitive" - }, - "rating_remark": { - "value": { - "value": "Very helpful!", - "type": "string" - }, - "type": "primitive" - }, - "content_sources": { - "properties": { - "type": { - "value": { - "value": "content_source.list", - "type": "string" - }, - "type": "literal" - }, - "total_count": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - }, - "content_sources": { - "value": [ - { - "properties": { - "url": { - "value": { - "value": "/fin-ai-agent/content?content=content_snippet&id=3234924", - "type": "string" - }, - "type": "primitive" - }, - "title": { - "value": { - "value": "My internal content snippet", - "type": "string" - }, - "type": "primitive" - }, - "locale": { - "value": { - "value": "en", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - } - }, - "type": "object" } }, "type": "object" @@ -60126,13 +54688,6 @@ }, "type": "primitive" }, - "title": { - "value": { - "value": "Conversation Title", - "type": "string" - }, - "type": "primitive" - }, "created_at": { "value": { "value": 1719492874, @@ -60147,20 +54702,6 @@ }, "type": "primitive" }, - "waiting_since": { - "value": { - "value": 1663597260, - "type": "int" - }, - "type": "primitive" - }, - "snoozed_until": { - "value": { - "value": 1663597260, - "type": "int" - }, - "type": "primitive" - }, "open": { "value": { "value": true, @@ -60190,13 +54731,6 @@ }, "type": "primitive" }, - "team_assignee_id": { - "value": { - "value": "5017691", - "type": "string" - }, - "type": "primitive" - }, "tags": { "properties": { "type": { @@ -60247,77 +54781,6 @@ }, "type": "object" }, - "conversation_rating": { - "properties": { - "rating": { - "value": { - "value": 5, - "type": "int" - }, - "type": "primitive" - }, - "remark": { - "value": { - "value": "", - "type": "string" - }, - "type": "primitive" - }, - "created_at": { - "value": { - "value": 1671028894, - "type": "int" - }, - "type": "primitive" - }, - "contact": { - "properties": { - "type": { - "value": { - "value": "contact", - "type": "string" - }, - "type": "literal" - }, - "id": { - "value": { - "value": "5ba682d23d7cf92bef87bfd4", - "type": "string" - }, - "type": "primitive" - }, - "external_id": { - "value": { - "value": "f3b87a2e09d514c6c2e79b9a", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "teammate": { - "properties": { - "type": { - "value": { - "value": "contact", - "type": "string" - }, - "type": "primitive" - }, - "id": { - "value": { - "value": "1a2b3c", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - }, - "type": "object" - }, "source": { "properties": { "type": { @@ -60447,13 +54910,6 @@ ], "type": "array" }, - "url": { - "value": { - "value": "url", - "type": "string" - }, - "type": "primitive" - }, "redacted": { "value": { "value": false, @@ -60507,35 +54963,6 @@ }, "type": "object" }, - "teammates": { - "properties": { - "type": { - "value": { - "value": "admin.list", - "type": "string" - }, - "type": "primitive" - }, - "teammates": { - "value": [ - { - "properties": { - "type": { - "value": { - "value": "contact", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, "custom_attributes": { "value": [ { @@ -60554,193 +54981,6 @@ ], "type": "map" }, - "first_contact_reply": { - "properties": { - "created_at": { - "value": { - "value": 1663597223, - "type": "int" - }, - "type": "primitive" - }, - "type": { - "value": { - "value": "conversation", - "type": "string" - }, - "type": "primitive" - }, - "url": { - "value": { - "value": "https://developers.intercom.com/", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "sla_applied": { - "properties": { - "type": { - "value": { - "value": "conversation_sla_summary", - "type": "string" - }, - "type": "primitive" - }, - "sla_name": { - "value": { - "value": "", - "type": "string" - }, - "type": "primitive" - }, - "sla_status": { - "value": "hit", - "type": "enum" - } - }, - "type": "object" - }, - "statistics": { - "properties": { - "type": { - "value": { - "value": "conversation_statistics", - "type": "string" - }, - "type": "primitive" - }, - "time_to_assignment": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "time_to_admin_reply": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "time_to_first_close": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "time_to_last_close": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "median_time_to_reply": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "first_contact_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "first_assignment_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "first_admin_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "first_close_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_assignment_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_assignment_admin_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_contact_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_admin_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_close_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_closed_by_id": { - "value": { - "value": "c3po", - "type": "string" - }, - "type": "primitive" - }, - "count_reopens": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - }, - "count_assignments": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - }, - "count_conversation_parts": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - } - }, - "type": "object" - }, "conversation_parts": { "properties": { "type": { @@ -60926,153 +55166,59 @@ "type": "int" }, "type": "primitive" - } - }, - "type": "object" - }, - "linked_objects": { - "properties": { - "type": { - "value": { - "value": "list", - "type": "string" - }, - "type": "literal" - }, - "total_count": { - "value": { - "value": 0, - "type": "int" - }, - "type": "primitive" - }, - "has_more": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - }, - "data": { - "value": [ - { - "properties": { - "id": { - "value": { - "value": "7583", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "ai_agent_participated": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - }, - "ai_agent": { - "properties": { - "source_type": { - "value": "essentials_plan_setup", - "type": "enum" - }, - "source_title": { - "value": { - "value": "My AI Workflow", - "type": "string" - }, - "type": "primitive" - }, - "last_answer_type": { - "value": { - "value": "ai_answer", - "type": "string" - }, - "type": "primitive" - }, - "resolution_state": { + } + }, + "type": "object" + }, + "linked_objects": { + "properties": { + "type": { "value": { - "value": "assumed_resolution", + "value": "list", "type": "string" }, - "type": "primitive" + "type": "literal" }, - "rating": { + "total_count": { "value": { - "value": 4, + "value": 0, "type": "int" }, "type": "primitive" }, - "rating_remark": { + "has_more": { "value": { - "value": "Very helpful!", - "type": "string" + "value": false, + "type": "boolean" }, "type": "primitive" }, - "content_sources": { - "properties": { - "type": { - "value": { - "value": "content_source.list", - "type": "string" - }, - "type": "literal" - }, - "total_count": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - }, - "content_sources": { - "value": [ - { - "properties": { - "url": { - "value": { - "value": "/fin-ai-agent/content?content=content_snippet&id=3234924", - "type": "string" - }, - "type": "primitive" - }, - "title": { - "value": { - "value": "My internal content snippet", - "type": "string" - }, - "type": "primitive" - }, - "locale": { - "value": { - "value": "en", - "type": "string" - }, - "type": "primitive" - } + "data": { + "value": [ + { + "properties": { + "id": { + "value": { + "value": "7583", + "type": "string" }, - "type": "object" + "type": "primitive" } - ], - "type": "array" + }, + "type": "object" } - }, - "type": "object" + ], + "type": "array" } }, "type": "object" + }, + "ai_agent_participated": { + "value": { + "value": false, + "type": "boolean" + }, + "type": "primitive" } }, "type": "object" @@ -61155,13 +55301,6 @@ }, "type": "primitive" }, - "title": { - "value": { - "value": "Conversation Title", - "type": "string" - }, - "type": "primitive" - }, "created_at": { "value": { "value": 1719492862, @@ -61176,20 +55315,6 @@ }, "type": "primitive" }, - "waiting_since": { - "value": { - "value": 1663597260, - "type": "int" - }, - "type": "primitive" - }, - "snoozed_until": { - "value": { - "value": 1663597260, - "type": "int" - }, - "type": "primitive" - }, "open": { "value": { "value": false, @@ -61212,20 +55337,6 @@ "value": "not_priority", "type": "enum" }, - "admin_assignee_id": { - "value": { - "value": 0, - "type": "int" - }, - "type": "primitive" - }, - "team_assignee_id": { - "value": { - "value": "5017691", - "type": "string" - }, - "type": "primitive" - }, "tags": { "properties": { "type": { @@ -61276,77 +55387,6 @@ }, "type": "object" }, - "conversation_rating": { - "properties": { - "rating": { - "value": { - "value": 5, - "type": "int" - }, - "type": "primitive" - }, - "remark": { - "value": { - "value": "", - "type": "string" - }, - "type": "primitive" - }, - "created_at": { - "value": { - "value": 1671028894, - "type": "int" - }, - "type": "primitive" - }, - "contact": { - "properties": { - "type": { - "value": { - "value": "contact", - "type": "string" - }, - "type": "literal" - }, - "id": { - "value": { - "value": "5ba682d23d7cf92bef87bfd4", - "type": "string" - }, - "type": "primitive" - }, - "external_id": { - "value": { - "value": "f3b87a2e09d514c6c2e79b9a", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "teammate": { - "properties": { - "type": { - "value": { - "value": "contact", - "type": "string" - }, - "type": "primitive" - }, - "id": { - "value": { - "value": "1a2b3c", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - }, - "type": "object" - }, "source": { "properties": { "type": { @@ -61476,13 +55516,6 @@ ], "type": "array" }, - "url": { - "value": { - "value": "url", - "type": "string" - }, - "type": "primitive" - }, "redacted": { "value": { "value": false, @@ -61536,35 +55569,6 @@ }, "type": "object" }, - "teammates": { - "properties": { - "type": { - "value": { - "value": "admin.list", - "type": "string" - }, - "type": "primitive" - }, - "teammates": { - "value": [ - { - "properties": { - "type": { - "value": { - "value": "contact", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, "custom_attributes": { "value": [ { @@ -61583,193 +55587,6 @@ ], "type": "map" }, - "first_contact_reply": { - "properties": { - "created_at": { - "value": { - "value": 1663597223, - "type": "int" - }, - "type": "primitive" - }, - "type": { - "value": { - "value": "conversation", - "type": "string" - }, - "type": "primitive" - }, - "url": { - "value": { - "value": "https://developers.intercom.com/", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "sla_applied": { - "properties": { - "type": { - "value": { - "value": "conversation_sla_summary", - "type": "string" - }, - "type": "primitive" - }, - "sla_name": { - "value": { - "value": "", - "type": "string" - }, - "type": "primitive" - }, - "sla_status": { - "value": "hit", - "type": "enum" - } - }, - "type": "object" - }, - "statistics": { - "properties": { - "type": { - "value": { - "value": "conversation_statistics", - "type": "string" - }, - "type": "primitive" - }, - "time_to_assignment": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "time_to_admin_reply": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "time_to_first_close": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "time_to_last_close": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "median_time_to_reply": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "first_contact_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "first_assignment_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "first_admin_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "first_close_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_assignment_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_assignment_admin_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_contact_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_admin_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_close_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_closed_by_id": { - "value": { - "value": "c3po", - "type": "string" - }, - "type": "primitive" - }, - "count_reopens": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - }, - "count_assignments": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - }, - "count_conversation_parts": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - } - }, - "type": "object" - }, "conversation_parts": { "properties": { "type": { @@ -61996,100 +55813,6 @@ "type": "boolean" }, "type": "primitive" - }, - "ai_agent": { - "properties": { - "source_type": { - "value": "essentials_plan_setup", - "type": "enum" - }, - "source_title": { - "value": { - "value": "My AI Workflow", - "type": "string" - }, - "type": "primitive" - }, - "last_answer_type": { - "value": { - "value": "ai_answer", - "type": "string" - }, - "type": "primitive" - }, - "resolution_state": { - "value": { - "value": "assumed_resolution", - "type": "string" - }, - "type": "primitive" - }, - "rating": { - "value": { - "value": 4, - "type": "int" - }, - "type": "primitive" - }, - "rating_remark": { - "value": { - "value": "Very helpful!", - "type": "string" - }, - "type": "primitive" - }, - "content_sources": { - "properties": { - "type": { - "value": { - "value": "content_source.list", - "type": "string" - }, - "type": "literal" - }, - "total_count": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - }, - "content_sources": { - "value": [ - { - "properties": { - "url": { - "value": { - "value": "/fin-ai-agent/content?content=content_snippet&id=3234924", - "type": "string" - }, - "type": "primitive" - }, - "title": { - "value": { - "value": "My internal content snippet", - "type": "string" - }, - "type": "primitive" - }, - "locale": { - "value": { - "value": "en", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - } - }, - "type": "object" } }, "type": "object" @@ -62592,13 +56315,6 @@ }, "type": "primitive" }, - "title": { - "value": { - "value": "Conversation Title", - "type": "string" - }, - "type": "primitive" - }, "created_at": { "value": { "value": 1719492880, @@ -62613,20 +56329,6 @@ }, "type": "primitive" }, - "waiting_since": { - "value": { - "value": 1663597260, - "type": "int" - }, - "type": "primitive" - }, - "snoozed_until": { - "value": { - "value": 1663597260, - "type": "int" - }, - "type": "primitive" - }, "open": { "value": { "value": false, @@ -62649,20 +56351,6 @@ "value": "not_priority", "type": "enum" }, - "admin_assignee_id": { - "value": { - "value": 0, - "type": "int" - }, - "type": "primitive" - }, - "team_assignee_id": { - "value": { - "value": "5017691", - "type": "string" - }, - "type": "primitive" - }, "tags": { "properties": { "type": { @@ -62713,77 +56401,6 @@ }, "type": "object" }, - "conversation_rating": { - "properties": { - "rating": { - "value": { - "value": 5, - "type": "int" - }, - "type": "primitive" - }, - "remark": { - "value": { - "value": "", - "type": "string" - }, - "type": "primitive" - }, - "created_at": { - "value": { - "value": 1671028894, - "type": "int" - }, - "type": "primitive" - }, - "contact": { - "properties": { - "type": { - "value": { - "value": "contact", - "type": "string" - }, - "type": "literal" - }, - "id": { - "value": { - "value": "5ba682d23d7cf92bef87bfd4", - "type": "string" - }, - "type": "primitive" - }, - "external_id": { - "value": { - "value": "f3b87a2e09d514c6c2e79b9a", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "teammate": { - "properties": { - "type": { - "value": { - "value": "contact", - "type": "string" - }, - "type": "primitive" - }, - "id": { - "value": { - "value": "1a2b3c", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - }, - "type": "object" - }, "source": { "properties": { "type": { @@ -62913,13 +56530,6 @@ ], "type": "array" }, - "url": { - "value": { - "value": "url", - "type": "string" - }, - "type": "primitive" - }, "redacted": { "value": { "value": false, @@ -62973,35 +56583,6 @@ }, "type": "object" }, - "teammates": { - "properties": { - "type": { - "value": { - "value": "admin.list", - "type": "string" - }, - "type": "primitive" - }, - "teammates": { - "value": [ - { - "properties": { - "type": { - "value": { - "value": "contact", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, "custom_attributes": { "value": [ { @@ -63020,193 +56601,6 @@ ], "type": "map" }, - "first_contact_reply": { - "properties": { - "created_at": { - "value": { - "value": 1663597223, - "type": "int" - }, - "type": "primitive" - }, - "type": { - "value": { - "value": "conversation", - "type": "string" - }, - "type": "primitive" - }, - "url": { - "value": { - "value": "https://developers.intercom.com/", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "sla_applied": { - "properties": { - "type": { - "value": { - "value": "conversation_sla_summary", - "type": "string" - }, - "type": "primitive" - }, - "sla_name": { - "value": { - "value": "", - "type": "string" - }, - "type": "primitive" - }, - "sla_status": { - "value": "hit", - "type": "enum" - } - }, - "type": "object" - }, - "statistics": { - "properties": { - "type": { - "value": { - "value": "conversation_statistics", - "type": "string" - }, - "type": "primitive" - }, - "time_to_assignment": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "time_to_admin_reply": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "time_to_first_close": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "time_to_last_close": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "median_time_to_reply": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "first_contact_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "first_assignment_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "first_admin_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "first_close_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_assignment_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_assignment_admin_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_contact_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_admin_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_close_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_closed_by_id": { - "value": { - "value": "c3po", - "type": "string" - }, - "type": "primitive" - }, - "count_reopens": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - }, - "count_assignments": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - }, - "count_conversation_parts": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - } - }, - "type": "object" - }, "conversation_parts": { "properties": { "type": { @@ -63438,100 +56832,6 @@ "type": "boolean" }, "type": "primitive" - }, - "ai_agent": { - "properties": { - "source_type": { - "value": "essentials_plan_setup", - "type": "enum" - }, - "source_title": { - "value": { - "value": "My AI Workflow", - "type": "string" - }, - "type": "primitive" - }, - "last_answer_type": { - "value": { - "value": "ai_answer", - "type": "string" - }, - "type": "primitive" - }, - "resolution_state": { - "value": { - "value": "assumed_resolution", - "type": "string" - }, - "type": "primitive" - }, - "rating": { - "value": { - "value": 4, - "type": "int" - }, - "type": "primitive" - }, - "rating_remark": { - "value": { - "value": "Very helpful!", - "type": "string" - }, - "type": "primitive" - }, - "content_sources": { - "properties": { - "type": { - "value": { - "value": "content_source.list", - "type": "string" - }, - "type": "literal" - }, - "total_count": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - }, - "content_sources": { - "value": [ - { - "properties": { - "url": { - "value": { - "value": "/fin-ai-agent/content?content=content_snippet&id=3234924", - "type": "string" - }, - "type": "primitive" - }, - "title": { - "value": { - "value": "My internal content snippet", - "type": "string" - }, - "type": "primitive" - }, - "locale": { - "value": { - "value": "en", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - } - }, - "type": "object" } }, "type": "object" @@ -70336,13 +63636,6 @@ }, "type": "primitive" }, - "title": { - "value": { - "value": "Conversation Title", - "type": "string" - }, - "type": "primitive" - }, "created_at": { "value": { "value": 1719492938, @@ -70364,13 +63657,6 @@ }, "type": "primitive" }, - "snoozed_until": { - "value": { - "value": 1663597260, - "type": "int" - }, - "type": "primitive" - }, "open": { "value": { "value": true, @@ -70393,20 +63679,6 @@ "value": "not_priority", "type": "enum" }, - "admin_assignee_id": { - "value": { - "value": 0, - "type": "int" - }, - "type": "primitive" - }, - "team_assignee_id": { - "value": { - "value": "5017691", - "type": "string" - }, - "type": "primitive" - }, "tags": { "properties": { "type": { @@ -70457,77 +63729,6 @@ }, "type": "object" }, - "conversation_rating": { - "properties": { - "rating": { - "value": { - "value": 5, - "type": "int" - }, - "type": "primitive" - }, - "remark": { - "value": { - "value": "", - "type": "string" - }, - "type": "primitive" - }, - "created_at": { - "value": { - "value": 1671028894, - "type": "int" - }, - "type": "primitive" - }, - "contact": { - "properties": { - "type": { - "value": { - "value": "contact", - "type": "string" - }, - "type": "literal" - }, - "id": { - "value": { - "value": "5ba682d23d7cf92bef87bfd4", - "type": "string" - }, - "type": "primitive" - }, - "external_id": { - "value": { - "value": "f3b87a2e09d514c6c2e79b9a", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "teammate": { - "properties": { - "type": { - "value": { - "value": "contact", - "type": "string" - }, - "type": "primitive" - }, - "id": { - "value": { - "value": "1a2b3c", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - }, - "type": "object" - }, "source": { "properties": { "type": { @@ -70634,317 +63835,113 @@ "value": { "value": 100, "type": "int" - }, - "type": "primitive" - }, - "width": { - "value": { - "value": 100, - "type": "int" - }, - "type": "primitive" - }, - "height": { - "value": { - "value": 100, - "type": "int" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "url": { - "value": { - "value": "url", - "type": "string" - }, - "type": "primitive" - }, - "redacted": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "contacts": { - "properties": { - "type": { - "value": { - "value": "contact.list", - "type": "string" - }, - "type": "literal" - }, - "contacts": { - "value": [ - { - "properties": { - "type": { - "value": { - "value": "contact", - "type": "string" - }, - "type": "literal" - }, - "id": { - "value": { - "value": "667d614a8a68186f43bafe42", - "type": "string" - }, - "type": "primitive" - }, - "external_id": { - "value": { - "value": "70", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "teammates": { - "properties": { - "type": { - "value": { - "value": "admin.list", - "type": "string" - }, - "type": "primitive" - }, - "teammates": { - "value": [ - { - "properties": { - "type": { - "value": { - "value": "contact", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "custom_attributes": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - } - } - ], - "type": "map" - }, - "first_contact_reply": { - "properties": { - "created_at": { - "value": { - "value": 1719492939, - "type": "int" - }, - "type": "primitive" - }, - "type": { - "value": { - "value": "conversation", - "type": "string" - }, - "type": "primitive" - }, - "url": { - "value": { - "value": "https://developers.intercom.com/", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "sla_applied": { - "properties": { - "type": { - "value": { - "value": "conversation_sla_summary", - "type": "string" - }, - "type": "primitive" - }, - "sla_name": { - "value": { - "value": "", - "type": "string" - }, - "type": "primitive" - }, - "sla_status": { - "value": "hit", - "type": "enum" - } - }, - "type": "object" - }, - "statistics": { - "properties": { - "type": { - "value": { - "value": "conversation_statistics", - "type": "string" - }, - "type": "primitive" - }, - "time_to_assignment": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "time_to_admin_reply": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "time_to_first_close": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "time_to_last_close": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "median_time_to_reply": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "first_contact_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "first_assignment_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "first_admin_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "first_close_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_assignment_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_assignment_admin_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_contact_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" + }, + "type": "primitive" + }, + "width": { + "value": { + "value": 100, + "type": "int" + }, + "type": "primitive" + }, + "height": { + "value": { + "value": 100, + "type": "int" + }, + "type": "primitive" + } + }, + "type": "object" + } + ], + "type": "array" }, - "last_admin_reply_at": { + "redacted": { "value": { - "value": 1663597233, - "type": "int" + "value": false, + "type": "boolean" }, "type": "primitive" - }, - "last_close_at": { + } + }, + "type": "object" + }, + "contacts": { + "properties": { + "type": { "value": { - "value": 1663597233, - "type": "int" + "value": "contact.list", + "type": "string" }, - "type": "primitive" + "type": "literal" }, - "last_closed_by_id": { - "value": { - "value": "c3po", + "contacts": { + "value": [ + { + "properties": { + "type": { + "value": { + "value": "contact", + "type": "string" + }, + "type": "literal" + }, + "id": { + "value": { + "value": "667d614a8a68186f43bafe42", + "type": "string" + }, + "type": "primitive" + }, + "external_id": { + "value": { + "value": "70", + "type": "string" + }, + "type": "primitive" + } + }, + "type": "object" + } + ], + "type": "array" + } + }, + "type": "object" + }, + "custom_attributes": { + "value": [ + { + "key": { + "value": "key", "type": "string" }, - "type": "primitive" - }, - "count_reopens": { "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - }, - "count_assignments": { + "value": { + "value": "value", + "type": "string" + }, + "type": "primitive" + } + } + ], + "type": "map" + }, + "first_contact_reply": { + "properties": { + "created_at": { "value": { - "value": 1, + "value": 1719492939, "type": "int" }, "type": "primitive" }, - "count_conversation_parts": { + "type": { "value": { - "value": 1, - "type": "int" + "value": "conversation", + "type": "string" }, "type": "primitive" } @@ -71177,100 +64174,6 @@ "type": "boolean" }, "type": "primitive" - }, - "ai_agent": { - "properties": { - "source_type": { - "value": "essentials_plan_setup", - "type": "enum" - }, - "source_title": { - "value": { - "value": "My AI Workflow", - "type": "string" - }, - "type": "primitive" - }, - "last_answer_type": { - "value": { - "value": "ai_answer", - "type": "string" - }, - "type": "primitive" - }, - "resolution_state": { - "value": { - "value": "assumed_resolution", - "type": "string" - }, - "type": "primitive" - }, - "rating": { - "value": { - "value": 4, - "type": "int" - }, - "type": "primitive" - }, - "rating_remark": { - "value": { - "value": "Very helpful!", - "type": "string" - }, - "type": "primitive" - }, - "content_sources": { - "properties": { - "type": { - "value": { - "value": "content_source.list", - "type": "string" - }, - "type": "literal" - }, - "total_count": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - }, - "content_sources": { - "value": [ - { - "properties": { - "url": { - "value": { - "value": "/fin-ai-agent/content?content=content_snippet&id=3234924", - "type": "string" - }, - "type": "primitive" - }, - "title": { - "value": { - "value": "My internal content snippet", - "type": "string" - }, - "type": "primitive" - }, - "locale": { - "value": { - "value": "en", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - } - }, - "type": "object" } }, "type": "object" @@ -71331,13 +64234,6 @@ }, "type": "primitive" }, - "title": { - "value": { - "value": "Conversation Title", - "type": "string" - }, - "type": "primitive" - }, "created_at": { "value": { "value": 1719492938, @@ -71359,13 +64255,6 @@ }, "type": "primitive" }, - "snoozed_until": { - "value": { - "value": 1663597260, - "type": "int" - }, - "type": "primitive" - }, "open": { "value": { "value": true, @@ -71388,20 +64277,6 @@ "value": "not_priority", "type": "enum" }, - "admin_assignee_id": { - "value": { - "value": 0, - "type": "int" - }, - "type": "primitive" - }, - "team_assignee_id": { - "value": { - "value": "5017691", - "type": "string" - }, - "type": "primitive" - }, "tags": { "properties": { "type": { @@ -71452,77 +64327,6 @@ }, "type": "object" }, - "conversation_rating": { - "properties": { - "rating": { - "value": { - "value": 5, - "type": "int" - }, - "type": "primitive" - }, - "remark": { - "value": { - "value": "", - "type": "string" - }, - "type": "primitive" - }, - "created_at": { - "value": { - "value": 1671028894, - "type": "int" - }, - "type": "primitive" - }, - "contact": { - "properties": { - "type": { - "value": { - "value": "contact", - "type": "string" - }, - "type": "literal" - }, - "id": { - "value": { - "value": "5ba682d23d7cf92bef87bfd4", - "type": "string" - }, - "type": "primitive" - }, - "external_id": { - "value": { - "value": "f3b87a2e09d514c6c2e79b9a", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "teammate": { - "properties": { - "type": { - "value": { - "value": "contact", - "type": "string" - }, - "type": "primitive" - }, - "id": { - "value": { - "value": "1a2b3c", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - }, - "type": "object" - }, "source": { "properties": { "type": { @@ -71652,13 +64456,6 @@ ], "type": "array" }, - "url": { - "value": { - "value": "url", - "type": "string" - }, - "type": "primitive" - }, "redacted": { "value": { "value": false, @@ -71712,35 +64509,6 @@ }, "type": "object" }, - "teammates": { - "properties": { - "type": { - "value": { - "value": "admin.list", - "type": "string" - }, - "type": "primitive" - }, - "teammates": { - "value": [ - { - "properties": { - "type": { - "value": { - "value": "contact", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, "custom_attributes": { "value": [ { @@ -71774,174 +64542,6 @@ "type": "string" }, "type": "primitive" - }, - "url": { - "value": { - "value": "https://developers.intercom.com/", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "sla_applied": { - "properties": { - "type": { - "value": { - "value": "conversation_sla_summary", - "type": "string" - }, - "type": "primitive" - }, - "sla_name": { - "value": { - "value": "", - "type": "string" - }, - "type": "primitive" - }, - "sla_status": { - "value": "hit", - "type": "enum" - } - }, - "type": "object" - }, - "statistics": { - "properties": { - "type": { - "value": { - "value": "conversation_statistics", - "type": "string" - }, - "type": "primitive" - }, - "time_to_assignment": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "time_to_admin_reply": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "time_to_first_close": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "time_to_last_close": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "median_time_to_reply": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "first_contact_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "first_assignment_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "first_admin_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "first_close_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_assignment_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_assignment_admin_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_contact_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_admin_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_close_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_closed_by_id": { - "value": { - "value": "c3po", - "type": "string" - }, - "type": "primitive" - }, - "count_reopens": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - }, - "count_assignments": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - }, - "count_conversation_parts": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" } }, "type": "object" @@ -72172,100 +64772,6 @@ "type": "boolean" }, "type": "primitive" - }, - "ai_agent": { - "properties": { - "source_type": { - "value": "essentials_plan_setup", - "type": "enum" - }, - "source_title": { - "value": { - "value": "My AI Workflow", - "type": "string" - }, - "type": "primitive" - }, - "last_answer_type": { - "value": { - "value": "ai_answer", - "type": "string" - }, - "type": "primitive" - }, - "resolution_state": { - "value": { - "value": "assumed_resolution", - "type": "string" - }, - "type": "primitive" - }, - "rating": { - "value": { - "value": 4, - "type": "int" - }, - "type": "primitive" - }, - "rating_remark": { - "value": { - "value": "Very helpful!", - "type": "string" - }, - "type": "primitive" - }, - "content_sources": { - "properties": { - "type": { - "value": { - "value": "content_source.list", - "type": "string" - }, - "type": "literal" - }, - "total_count": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - }, - "content_sources": { - "value": [ - { - "properties": { - "url": { - "value": { - "value": "/fin-ai-agent/content?content=content_snippet&id=3234924", - "type": "string" - }, - "type": "primitive" - }, - "title": { - "value": { - "value": "My internal content snippet", - "type": "string" - }, - "type": "primitive" - }, - "locale": { - "value": { - "value": "en", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - } - }, - "type": "object" } }, "type": "object" @@ -83085,13 +75591,6 @@ ], "type": "array" }, - "cover_image_url": { - "value": { - "value": "https://example.com/cover.jpg", - "type": "string" - }, - "type": "primitive" - }, "reactions": { "value": [ { @@ -83535,13 +76034,6 @@ ], "type": "array" }, - "cover_image_url": { - "value": { - "value": "https://example.com/cover.jpg", - "type": "string" - }, - "type": "primitive" - }, "reactions": { "value": [ { @@ -84080,207 +76572,193 @@ ], "type": "array" }, - "cover_image_url": { - "value": { - "value": "https://example.com/cover.jpg", - "type": "string" - }, - "type": "primitive" - }, - "reactions": { - "value": [ - { - "value": { - "value": "😝", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "😂", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "deliver_silently": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - }, - "created_at": { - "value": { - "value": 1719492982, - "type": "int" - }, - "type": "primitive" - }, - "updated_at": { - "value": { - "value": 1719492982, - "type": "int" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "type": "withoutStreaming" - }, - "codeSamples": [], - "type": "full" - }, - { - "name": "News Item Not Found", - "pathParameters": [ - { - "name": "id", - "value": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - } - } - ], - "queryParameters": [], - "headers": [], - "request": { - "properties": { - "title": { - "value": { - "value": "Christmas is here!", - "type": "string" - }, - "type": "primitive" - }, - "body": { - "value": { - "value": "

New gifts in store for the jolly season

", - "type": "string" - }, - "type": "primitive" - }, - "sender_id": { - "value": { - "value": 991267748, - "type": "int" - }, - "type": "primitive" - }, - "reactions": { - "value": [ - { - "value": { - "value": "😝", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "😂", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "response": { - "value": { - "properties": { - "id": { - "value": { - "value": "37", - "type": "string" - }, - "type": "primitive" - }, - "workspace_id": { - "value": { - "value": "this_is_an_id508_that_should_be_at_least_", - "type": "string" - }, - "type": "primitive" - }, - "title": { - "value": { - "value": "Christmas is here!", - "type": "string" - }, - "type": "primitive" - }, - "body": { - "value": { - "value": "

New gifts in store for the jolly season

", - "type": "string" - }, - "type": "primitive" - }, - "sender_id": { - "value": { - "value": 991267745, - "type": "int" - }, - "type": "primitive" - }, - "state": { - "value": "live", - "type": "enum" - }, - "newsfeed_assignments": { - "value": [ - { - "properties": { - "newsfeed_id": { - "value": { - "value": 198313, - "type": "int" - }, - "type": "primitive" - }, - "published_at": { - "value": { - "value": 1674917488, - "type": "int" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "labels": { - "value": [ - { - "value": { - "value": "Product Update", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "cover_image_url": { + "reactions": { + "value": [ + { + "value": { + "value": "😝", + "type": "string" + }, + "type": "primitive" + }, + { + "value": { + "value": "😂", + "type": "string" + }, + "type": "primitive" + } + ], + "type": "array" + }, + "deliver_silently": { + "value": { + "value": false, + "type": "boolean" + }, + "type": "primitive" + }, + "created_at": { + "value": { + "value": 1719492982, + "type": "int" + }, + "type": "primitive" + }, + "updated_at": { + "value": { + "value": 1719492982, + "type": "int" + }, + "type": "primitive" + } + }, + "type": "object" + }, + "type": "withoutStreaming" + }, + "codeSamples": [], + "type": "full" + }, + { + "name": "News Item Not Found", + "pathParameters": [ + { + "name": "id", + "value": { + "value": { + "value": 1, + "type": "int" + }, + "type": "primitive" + } + } + ], + "queryParameters": [], + "headers": [], + "request": { + "properties": { + "title": { + "value": { + "value": "Christmas is here!", + "type": "string" + }, + "type": "primitive" + }, + "body": { + "value": { + "value": "

New gifts in store for the jolly season

", + "type": "string" + }, + "type": "primitive" + }, + "sender_id": { + "value": { + "value": 991267748, + "type": "int" + }, + "type": "primitive" + }, + "reactions": { + "value": [ + { + "value": { + "value": "😝", + "type": "string" + }, + "type": "primitive" + }, + { + "value": { + "value": "😂", + "type": "string" + }, + "type": "primitive" + } + ], + "type": "array" + } + }, + "type": "object" + }, + "response": { + "value": { + "properties": { + "id": { + "value": { + "value": "37", + "type": "string" + }, + "type": "primitive" + }, + "workspace_id": { + "value": { + "value": "this_is_an_id508_that_should_be_at_least_", + "type": "string" + }, + "type": "primitive" + }, + "title": { "value": { - "value": "https://example.com/cover.jpg", + "value": "Christmas is here!", "type": "string" }, "type": "primitive" }, + "body": { + "value": { + "value": "

New gifts in store for the jolly season

", + "type": "string" + }, + "type": "primitive" + }, + "sender_id": { + "value": { + "value": 991267745, + "type": "int" + }, + "type": "primitive" + }, + "state": { + "value": "live", + "type": "enum" + }, + "newsfeed_assignments": { + "value": [ + { + "properties": { + "newsfeed_id": { + "value": { + "value": 198313, + "type": "int" + }, + "type": "primitive" + }, + "published_at": { + "value": { + "value": 1674917488, + "type": "int" + }, + "type": "primitive" + } + }, + "type": "object" + } + ], + "type": "array" + }, + "labels": { + "value": [ + { + "value": { + "value": "Product Update", + "type": "string" + }, + "type": "primitive" + } + ], + "type": "array" + }, "reactions": { "value": [ { @@ -102681,27 +95159,6 @@ }, "type": "primitive" }, - "phone": { - "value": { - "value": "555-555-5555", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "Jane Doe", - "type": "string" - }, - "type": "primitive" - }, - "pseudonym": { - "value": { - "value": "Red Duck from Dublin", - "type": "string" - }, - "type": "primitive" - }, "avatar": { "properties": { "type": { @@ -102710,13 +95167,6 @@ "type": "string" }, "type": "primitive" - }, - "image_url": { - "value": { - "value": "https://example.com/avatar.png", - "type": "string" - }, - "type": "primitive" } }, "type": "object" @@ -103019,13 +95469,6 @@ }, "type": "object" }, - "owner_id": { - "value": { - "value": "5169261", - "type": "string" - }, - "type": "primitive" - }, "unsubscribed_from_emails": { "value": { "value": false, @@ -103124,55 +95567,6 @@ } ], "type": "map" - }, - "referrer": { - "value": { - "value": "https://www.google.com/", - "type": "string" - }, - "type": "primitive" - }, - "utm_campaign": { - "value": { - "value": "intercom-link", - "type": "string" - }, - "type": "primitive" - }, - "utm_content": { - "value": { - "value": "banner", - "type": "string" - }, - "type": "primitive" - }, - "utm_medium": { - "value": { - "value": "email", - "type": "string" - }, - "type": "primitive" - }, - "utm_source": { - "value": { - "value": "Intercom", - "type": "string" - }, - "type": "primitive" - }, - "utm_term": { - "value": { - "value": "messenger", - "type": "string" - }, - "type": "primitive" - }, - "do_not_track": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" } }, "type": "object" @@ -103601,13 +95995,6 @@ }, "type": "primitive" }, - "phone": { - "value": { - "value": "555-555-5555", - "type": "string" - }, - "type": "primitive" - }, "name": { "value": { "value": "Gareth Bale", @@ -103939,13 +96326,6 @@ }, "type": "object" }, - "owner_id": { - "value": { - "value": "5169261", - "type": "string" - }, - "type": "primitive" - }, "unsubscribed_from_emails": { "value": { "value": false, @@ -104044,55 +96424,6 @@ } ], "type": "map" - }, - "referrer": { - "value": { - "value": "https://www.google.com/", - "type": "string" - }, - "type": "primitive" - }, - "utm_campaign": { - "value": { - "value": "intercom-link", - "type": "string" - }, - "type": "primitive" - }, - "utm_content": { - "value": { - "value": "banner", - "type": "string" - }, - "type": "primitive" - }, - "utm_medium": { - "value": { - "value": "email", - "type": "string" - }, - "type": "primitive" - }, - "utm_source": { - "value": { - "value": "Intercom", - "type": "string" - }, - "type": "primitive" - }, - "utm_term": { - "value": { - "value": "messenger", - "type": "string" - }, - "type": "primitive" - }, - "do_not_track": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" } }, "type": "object" @@ -104179,13 +96510,6 @@ }, "type": "primitive" }, - "phone": { - "value": { - "value": "555-555-5555", - "type": "string" - }, - "type": "primitive" - }, "name": { "value": { "value": "Gareth Bale", @@ -104517,13 +96841,6 @@ }, "type": "object" }, - "owner_id": { - "value": { - "value": "5169261", - "type": "string" - }, - "type": "primitive" - }, "unsubscribed_from_emails": { "value": { "value": false, @@ -104622,55 +96939,6 @@ } ], "type": "map" - }, - "referrer": { - "value": { - "value": "https://www.google.com/", - "type": "string" - }, - "type": "primitive" - }, - "utm_campaign": { - "value": { - "value": "intercom-link", - "type": "string" - }, - "type": "primitive" - }, - "utm_content": { - "value": { - "value": "banner", - "type": "string" - }, - "type": "primitive" - }, - "utm_medium": { - "value": { - "value": "email", - "type": "string" - }, - "type": "primitive" - }, - "utm_source": { - "value": { - "value": "Intercom", - "type": "string" - }, - "type": "primitive" - }, - "utm_term": { - "value": { - "value": "messenger", - "type": "string" - }, - "type": "primitive" - }, - "do_not_track": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" } }, "type": "object" @@ -105045,13 +97313,6 @@ }, "type": "primitive" }, - "external_id": { - "value": { - "value": "f3b87a2e09d514c6c2e79b9a", - "type": "string" - }, - "type": "primitive" - }, "workspace_id": { "value": { "value": "this_is_an_id683_that_should_be_at_least_", @@ -105080,13 +97341,6 @@ }, "type": "primitive" }, - "phone": { - "value": { - "value": "+1123456789", - "type": "string" - }, - "type": "primitive" - }, "formatted_phone": { "value": { "value": "+1123456789", @@ -105094,20 +97348,6 @@ }, "type": "primitive" }, - "name": { - "value": { - "value": "John Doe", - "type": "string" - }, - "type": "primitive" - }, - "owner_id": { - "value": { - "value": 123, - "type": "int" - }, - "type": "primitive" - }, "has_hard_bounced": { "value": { "value": false, @@ -105150,160 +97390,6 @@ }, "type": "primitive" }, - "last_seen_at": { - "value": { - "value": 1571672154, - "type": "int" - }, - "type": "primitive" - }, - "last_replied_at": { - "value": { - "value": 1571672154, - "type": "int" - }, - "type": "primitive" - }, - "last_contacted_at": { - "value": { - "value": 1571672154, - "type": "int" - }, - "type": "primitive" - }, - "last_email_opened_at": { - "value": { - "value": 1571672154, - "type": "int" - }, - "type": "primitive" - }, - "last_email_clicked_at": { - "value": { - "value": 1571672154, - "type": "int" - }, - "type": "primitive" - }, - "language_override": { - "value": { - "value": "en", - "type": "string" - }, - "type": "primitive" - }, - "browser": { - "value": { - "value": "Chrome", - "type": "string" - }, - "type": "primitive" - }, - "browser_version": { - "value": { - "value": "80.0.3987.132", - "type": "string" - }, - "type": "primitive" - }, - "browser_language": { - "value": { - "value": "en-US", - "type": "string" - }, - "type": "primitive" - }, - "os": { - "value": { - "value": "Mac OS X", - "type": "string" - }, - "type": "primitive" - }, - "android_app_name": { - "value": { - "value": "Intercom", - "type": "string" - }, - "type": "primitive" - }, - "android_app_version": { - "value": { - "value": "5.0.0", - "type": "string" - }, - "type": "primitive" - }, - "android_device": { - "value": { - "value": "Pixel 3", - "type": "string" - }, - "type": "primitive" - }, - "android_os_version": { - "value": { - "value": "10", - "type": "string" - }, - "type": "primitive" - }, - "android_sdk_version": { - "value": { - "value": "28", - "type": "string" - }, - "type": "primitive" - }, - "android_last_seen_at": { - "value": { - "value": 1571672154, - "type": "int" - }, - "type": "primitive" - }, - "ios_app_name": { - "value": { - "value": "Intercom", - "type": "string" - }, - "type": "primitive" - }, - "ios_app_version": { - "value": { - "value": "5.0.0", - "type": "string" - }, - "type": "primitive" - }, - "ios_device": { - "value": { - "value": "iPhone 11", - "type": "string" - }, - "type": "primitive" - }, - "ios_os_version": { - "value": { - "value": "13.3.1", - "type": "string" - }, - "type": "primitive" - }, - "ios_sdk_version": { - "value": { - "value": "13.3.1", - "type": "string" - }, - "type": "primitive" - }, - "ios_last_seen_at": { - "value": { - "value": 1571672154, - "type": "int" - }, - "type": "primitive" - }, "custom_attributes": { "value": [ { @@ -105325,25 +97411,6 @@ ], "type": "map" }, - "avatar": { - "properties": { - "type": { - "value": { - "value": "avatar", - "type": "string" - }, - "type": "primitive" - }, - "image_url": { - "value": { - "value": "https://example.org/128Wash.jpg", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, "tags": { "properties": { "data": { @@ -105492,27 +97559,6 @@ "type": "string" }, "type": "primitive" - }, - "country": { - "value": { - "value": "Ireland", - "type": "string" - }, - "type": "primitive" - }, - "region": { - "value": { - "value": "Dublin", - "type": "string" - }, - "type": "primitive" - }, - "city": { - "value": { - "value": "Dublin", - "type": "string" - }, - "type": "primitive" } }, "type": "object" diff --git a/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi-ir/ntropy.json b/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi-ir/ntropy.json index 0babf21c358..14eae22c673 100644 --- a/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi-ir/ntropy.json +++ b/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi-ir/ntropy.json @@ -1488,22 +1488,6 @@ }, "type": "object" }, - "error": { - "properties": { - "code": { - "value": "account_holder_not_found", - "type": "enum" - }, - "message": { - "value": { - "value": "message", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, "created_at": { "value": { "value": "2024-03-30T00:00:00", diff --git a/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi-ir/only-include-referenced-schemas.json b/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi-ir/only-include-referenced-schemas.json index e721eefc875..4c43c812008 100644 --- a/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi-ir/only-include-referenced-schemas.json +++ b/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi-ir/only-include-referenced-schemas.json @@ -1493,25 +1493,6 @@ }, "type": "primitive" }, - "next": { - "properties": { - "per_page": { - "value": { - "value": 2, - "type": "int" - }, - "type": "primitive" - }, - "starting_after": { - "value": { - "value": "your-cursor-from-response", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, "per_page": { "value": { "value": 20, @@ -18126,13 +18107,6 @@ }, "type": "primitive" }, - "parent_id": { - "value": { - "value": "6871118", - "type": "string" - }, - "type": "primitive" - }, "help_center_id": { "value": { "value": 79, @@ -18166,13 +18140,6 @@ }, "type": "primitive" }, - "description": { - "value": { - "value": "Default language description", - "type": "string" - }, - "type": "primitive" - }, "created_at": { "value": { "value": 1719492720, @@ -18221,13 +18188,6 @@ "type": "string" }, "type": "primitive" - }, - "help_center_id": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" } }, "type": "object" @@ -19610,13 +19570,6 @@ }, "type": "object" }, - "parent_id": { - "value": { - "value": "6871118", - "type": "string" - }, - "type": "primitive" - }, "help_center_id": { "value": { "value": 81, @@ -20703,13 +20656,6 @@ }, "type": "object" }, - "parent_id": { - "value": { - "value": "6871118", - "type": "string" - }, - "type": "primitive" - }, "help_center_id": { "value": { "value": 81, @@ -22076,13 +22022,6 @@ }, "type": "object" }, - "parent_id": { - "value": { - "value": "6871118", - "type": "string" - }, - "type": "primitive" - }, "help_center_id": { "value": { "value": 84, @@ -23493,13 +23432,6 @@ }, "type": "object" }, - "parent_id": { - "value": { - "value": "6871118", - "type": "string" - }, - "type": "primitive" - }, "help_center_id": { "value": { "value": 87, @@ -24590,13 +24522,6 @@ }, "type": "object" }, - "parent_id": { - "value": { - "value": "6871118", - "type": "string" - }, - "type": "primitive" - }, "help_center_id": { "value": { "value": 87, @@ -26046,25 +25971,6 @@ }, "type": "primitive" }, - "next": { - "properties": { - "per_page": { - "value": { - "value": 2, - "type": "int" - }, - "type": "primitive" - }, - "starting_after": { - "value": { - "value": "your-cursor-from-response", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, "per_page": { "value": { "value": 15, @@ -29798,25 +29704,6 @@ }, "type": "primitive" }, - "next": { - "properties": { - "per_page": { - "value": { - "value": 2, - "type": "int" - }, - "type": "primitive" - }, - "starting_after": { - "value": { - "value": "your-cursor-from-response", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, "per_page": { "value": { "value": 15, @@ -30522,65 +30409,6 @@ ], "type": "array" }, - "pages": { - "properties": { - "type": { - "value": { - "value": "pages", - "type": "string" - }, - "type": "literal" - }, - "page": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - }, - "next": { - "properties": { - "per_page": { - "value": { - "value": 2, - "type": "int" - }, - "type": "primitive" - }, - "starting_after": { - "value": { - "value": "your-cursor-from-response", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "per_page": { - "value": { - "value": 2, - "type": "int" - }, - "type": "primitive" - }, - "total_pages": { - "value": { - "value": 13, - "type": "int" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "total_count": { - "value": { - "value": 100, - "type": "int" - }, - "type": "primitive" - }, "scroll_param": { "value": { "value": "12d403b5-dc79-47b5-8ea1-01a5ac8cb6cc", @@ -31144,13 +30972,6 @@ }, "type": "primitive" }, - "next": { - "value": { - "value": "next", - "type": "string" - }, - "type": "primitive" - }, "per_page": { "value": { "value": 50, @@ -33752,25 +33573,6 @@ }, "type": "primitive" }, - "next": { - "properties": { - "per_page": { - "value": { - "value": 2, - "type": "int" - }, - "type": "primitive" - }, - "starting_after": { - "value": { - "value": "your-cursor-from-response", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, "per_page": { "value": { "value": 50, @@ -38952,13 +38754,6 @@ }, "type": "primitive" }, - "phone": { - "value": { - "value": "+1123456789", - "type": "string" - }, - "type": "primitive" - }, "formatted_phone": { "value": { "value": "+1123456789", @@ -38973,13 +38768,6 @@ }, "type": "primitive" }, - "owner_id": { - "value": { - "value": 123, - "type": "int" - }, - "type": "primitive" - }, "has_hard_bounced": { "value": { "value": false, @@ -39022,160 +38810,6 @@ }, "type": "primitive" }, - "last_seen_at": { - "value": { - "value": 1571672154, - "type": "int" - }, - "type": "primitive" - }, - "last_replied_at": { - "value": { - "value": 1571672154, - "type": "int" - }, - "type": "primitive" - }, - "last_contacted_at": { - "value": { - "value": 1571672154, - "type": "int" - }, - "type": "primitive" - }, - "last_email_opened_at": { - "value": { - "value": 1571672154, - "type": "int" - }, - "type": "primitive" - }, - "last_email_clicked_at": { - "value": { - "value": 1571672154, - "type": "int" - }, - "type": "primitive" - }, - "language_override": { - "value": { - "value": "en", - "type": "string" - }, - "type": "primitive" - }, - "browser": { - "value": { - "value": "Chrome", - "type": "string" - }, - "type": "primitive" - }, - "browser_version": { - "value": { - "value": "80.0.3987.132", - "type": "string" - }, - "type": "primitive" - }, - "browser_language": { - "value": { - "value": "en-US", - "type": "string" - }, - "type": "primitive" - }, - "os": { - "value": { - "value": "Mac OS X", - "type": "string" - }, - "type": "primitive" - }, - "android_app_name": { - "value": { - "value": "Intercom", - "type": "string" - }, - "type": "primitive" - }, - "android_app_version": { - "value": { - "value": "5.0.0", - "type": "string" - }, - "type": "primitive" - }, - "android_device": { - "value": { - "value": "Pixel 3", - "type": "string" - }, - "type": "primitive" - }, - "android_os_version": { - "value": { - "value": "10", - "type": "string" - }, - "type": "primitive" - }, - "android_sdk_version": { - "value": { - "value": "28", - "type": "string" - }, - "type": "primitive" - }, - "android_last_seen_at": { - "value": { - "value": 1571672154, - "type": "int" - }, - "type": "primitive" - }, - "ios_app_name": { - "value": { - "value": "Intercom", - "type": "string" - }, - "type": "primitive" - }, - "ios_app_version": { - "value": { - "value": "5.0.0", - "type": "string" - }, - "type": "primitive" - }, - "ios_device": { - "value": { - "value": "iPhone 11", - "type": "string" - }, - "type": "primitive" - }, - "ios_os_version": { - "value": { - "value": "13.3.1", - "type": "string" - }, - "type": "primitive" - }, - "ios_sdk_version": { - "value": { - "value": "13.3.1", - "type": "string" - }, - "type": "primitive" - }, - "ios_last_seen_at": { - "value": { - "value": 1571672154, - "type": "int" - }, - "type": "primitive" - }, "custom_attributes": { "value": [ { @@ -39197,25 +38831,6 @@ ], "type": "map" }, - "avatar": { - "properties": { - "type": { - "value": { - "value": "avatar", - "type": "string" - }, - "type": "primitive" - }, - "image_url": { - "value": { - "value": "https://example.org/128Wash.jpg", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, "tags": { "properties": { "data": { @@ -39364,27 +38979,6 @@ "type": "string" }, "type": "primitive" - }, - "country": { - "value": { - "value": "Ireland", - "type": "string" - }, - "type": "primitive" - }, - "region": { - "value": { - "value": "Dublin", - "type": "string" - }, - "type": "primitive" - }, - "city": { - "value": { - "value": "Dublin", - "type": "string" - }, - "type": "primitive" } }, "type": "object" @@ -39823,13 +39417,6 @@ }, "type": "primitive" }, - "phone": { - "value": { - "value": "+1123456789", - "type": "string" - }, - "type": "primitive" - }, "formatted_phone": { "value": { "value": "+1123456789", @@ -39844,13 +39431,6 @@ }, "type": "primitive" }, - "owner_id": { - "value": { - "value": 123, - "type": "int" - }, - "type": "primitive" - }, "has_hard_bounced": { "value": { "value": false, @@ -39893,160 +39473,6 @@ }, "type": "primitive" }, - "last_seen_at": { - "value": { - "value": 1571672154, - "type": "int" - }, - "type": "primitive" - }, - "last_replied_at": { - "value": { - "value": 1571672154, - "type": "int" - }, - "type": "primitive" - }, - "last_contacted_at": { - "value": { - "value": 1571672154, - "type": "int" - }, - "type": "primitive" - }, - "last_email_opened_at": { - "value": { - "value": 1571672154, - "type": "int" - }, - "type": "primitive" - }, - "last_email_clicked_at": { - "value": { - "value": 1571672154, - "type": "int" - }, - "type": "primitive" - }, - "language_override": { - "value": { - "value": "en", - "type": "string" - }, - "type": "primitive" - }, - "browser": { - "value": { - "value": "Chrome", - "type": "string" - }, - "type": "primitive" - }, - "browser_version": { - "value": { - "value": "80.0.3987.132", - "type": "string" - }, - "type": "primitive" - }, - "browser_language": { - "value": { - "value": "en-US", - "type": "string" - }, - "type": "primitive" - }, - "os": { - "value": { - "value": "Mac OS X", - "type": "string" - }, - "type": "primitive" - }, - "android_app_name": { - "value": { - "value": "Intercom", - "type": "string" - }, - "type": "primitive" - }, - "android_app_version": { - "value": { - "value": "5.0.0", - "type": "string" - }, - "type": "primitive" - }, - "android_device": { - "value": { - "value": "Pixel 3", - "type": "string" - }, - "type": "primitive" - }, - "android_os_version": { - "value": { - "value": "10", - "type": "string" - }, - "type": "primitive" - }, - "android_sdk_version": { - "value": { - "value": "28", - "type": "string" - }, - "type": "primitive" - }, - "android_last_seen_at": { - "value": { - "value": 1571672154, - "type": "int" - }, - "type": "primitive" - }, - "ios_app_name": { - "value": { - "value": "Intercom", - "type": "string" - }, - "type": "primitive" - }, - "ios_app_version": { - "value": { - "value": "5.0.0", - "type": "string" - }, - "type": "primitive" - }, - "ios_device": { - "value": { - "value": "iPhone 11", - "type": "string" - }, - "type": "primitive" - }, - "ios_os_version": { - "value": { - "value": "13.3.1", - "type": "string" - }, - "type": "primitive" - }, - "ios_sdk_version": { - "value": { - "value": "13.3.1", - "type": "string" - }, - "type": "primitive" - }, - "ios_last_seen_at": { - "value": { - "value": 1571672154, - "type": "int" - }, - "type": "primitive" - }, "custom_attributes": { "value": [ { @@ -40068,25 +39494,6 @@ ], "type": "map" }, - "avatar": { - "properties": { - "type": { - "value": { - "value": "avatar", - "type": "string" - }, - "type": "primitive" - }, - "image_url": { - "value": { - "value": "https://example.org/128Wash.jpg", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, "tags": { "properties": { "data": { @@ -40235,27 +39642,6 @@ "type": "string" }, "type": "primitive" - }, - "country": { - "value": { - "value": "Ireland", - "type": "string" - }, - "type": "primitive" - }, - "region": { - "value": { - "value": "Dublin", - "type": "string" - }, - "type": "primitive" - }, - "city": { - "value": { - "value": "Dublin", - "type": "string" - }, - "type": "primitive" } }, "type": "object" @@ -40905,13 +40291,6 @@ }, "type": "primitive" }, - "phone": { - "value": { - "value": "+1123456789", - "type": "string" - }, - "type": "primitive" - }, "formatted_phone": { "value": { "value": "+1123456789", @@ -40926,13 +40305,6 @@ }, "type": "primitive" }, - "owner_id": { - "value": { - "value": 123, - "type": "int" - }, - "type": "primitive" - }, "has_hard_bounced": { "value": { "value": false, @@ -40975,160 +40347,6 @@ }, "type": "primitive" }, - "last_seen_at": { - "value": { - "value": 1571672154, - "type": "int" - }, - "type": "primitive" - }, - "last_replied_at": { - "value": { - "value": 1571672154, - "type": "int" - }, - "type": "primitive" - }, - "last_contacted_at": { - "value": { - "value": 1571672154, - "type": "int" - }, - "type": "primitive" - }, - "last_email_opened_at": { - "value": { - "value": 1571672154, - "type": "int" - }, - "type": "primitive" - }, - "last_email_clicked_at": { - "value": { - "value": 1571672154, - "type": "int" - }, - "type": "primitive" - }, - "language_override": { - "value": { - "value": "en", - "type": "string" - }, - "type": "primitive" - }, - "browser": { - "value": { - "value": "Chrome", - "type": "string" - }, - "type": "primitive" - }, - "browser_version": { - "value": { - "value": "80.0.3987.132", - "type": "string" - }, - "type": "primitive" - }, - "browser_language": { - "value": { - "value": "en-US", - "type": "string" - }, - "type": "primitive" - }, - "os": { - "value": { - "value": "Mac OS X", - "type": "string" - }, - "type": "primitive" - }, - "android_app_name": { - "value": { - "value": "Intercom", - "type": "string" - }, - "type": "primitive" - }, - "android_app_version": { - "value": { - "value": "5.0.0", - "type": "string" - }, - "type": "primitive" - }, - "android_device": { - "value": { - "value": "Pixel 3", - "type": "string" - }, - "type": "primitive" - }, - "android_os_version": { - "value": { - "value": "10", - "type": "string" - }, - "type": "primitive" - }, - "android_sdk_version": { - "value": { - "value": "28", - "type": "string" - }, - "type": "primitive" - }, - "android_last_seen_at": { - "value": { - "value": 1571672154, - "type": "int" - }, - "type": "primitive" - }, - "ios_app_name": { - "value": { - "value": "Intercom", - "type": "string" - }, - "type": "primitive" - }, - "ios_app_version": { - "value": { - "value": "5.0.0", - "type": "string" - }, - "type": "primitive" - }, - "ios_device": { - "value": { - "value": "iPhone 11", - "type": "string" - }, - "type": "primitive" - }, - "ios_os_version": { - "value": { - "value": "13.3.1", - "type": "string" - }, - "type": "primitive" - }, - "ios_sdk_version": { - "value": { - "value": "13.3.1", - "type": "string" - }, - "type": "primitive" - }, - "ios_last_seen_at": { - "value": { - "value": 1571672154, - "type": "int" - }, - "type": "primitive" - }, "custom_attributes": { "value": [ { @@ -41150,25 +40368,6 @@ ], "type": "map" }, - "avatar": { - "properties": { - "type": { - "value": { - "value": "avatar", - "type": "string" - }, - "type": "primitive" - }, - "image_url": { - "value": { - "value": "https://example.org/128Wash.jpg", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, "tags": { "properties": { "data": { @@ -41317,27 +40516,6 @@ "type": "string" }, "type": "primitive" - }, - "country": { - "value": { - "value": "Ireland", - "type": "string" - }, - "type": "primitive" - }, - "region": { - "value": { - "value": "Dublin", - "type": "string" - }, - "type": "primitive" - }, - "city": { - "value": { - "value": "Dublin", - "type": "string" - }, - "type": "primitive" } }, "type": "object" @@ -43105,13 +42283,6 @@ }, "type": "primitive" }, - "external_id": { - "value": { - "value": "f3b87a2e09d514c6c2e79b9a", - "type": "string" - }, - "type": "primitive" - }, "workspace_id": { "value": { "value": "this_is_an_id272_that_should_be_at_least_", @@ -43140,13 +42311,6 @@ }, "type": "primitive" }, - "phone": { - "value": { - "value": "+1123456789", - "type": "string" - }, - "type": "primitive" - }, "formatted_phone": { "value": { "value": "+1123456789", @@ -43154,20 +42318,6 @@ }, "type": "primitive" }, - "name": { - "value": { - "value": "John Doe", - "type": "string" - }, - "type": "primitive" - }, - "owner_id": { - "value": { - "value": 123, - "type": "int" - }, - "type": "primitive" - }, "has_hard_bounced": { "value": { "value": false, @@ -43203,167 +42353,6 @@ }, "type": "primitive" }, - "signed_up_at": { - "value": { - "value": 1571672154, - "type": "int" - }, - "type": "primitive" - }, - "last_seen_at": { - "value": { - "value": 1571672154, - "type": "int" - }, - "type": "primitive" - }, - "last_replied_at": { - "value": { - "value": 1571672154, - "type": "int" - }, - "type": "primitive" - }, - "last_contacted_at": { - "value": { - "value": 1571672154, - "type": "int" - }, - "type": "primitive" - }, - "last_email_opened_at": { - "value": { - "value": 1571672154, - "type": "int" - }, - "type": "primitive" - }, - "last_email_clicked_at": { - "value": { - "value": 1571672154, - "type": "int" - }, - "type": "primitive" - }, - "language_override": { - "value": { - "value": "en", - "type": "string" - }, - "type": "primitive" - }, - "browser": { - "value": { - "value": "Chrome", - "type": "string" - }, - "type": "primitive" - }, - "browser_version": { - "value": { - "value": "80.0.3987.132", - "type": "string" - }, - "type": "primitive" - }, - "browser_language": { - "value": { - "value": "en-US", - "type": "string" - }, - "type": "primitive" - }, - "os": { - "value": { - "value": "Mac OS X", - "type": "string" - }, - "type": "primitive" - }, - "android_app_name": { - "value": { - "value": "Intercom", - "type": "string" - }, - "type": "primitive" - }, - "android_app_version": { - "value": { - "value": "5.0.0", - "type": "string" - }, - "type": "primitive" - }, - "android_device": { - "value": { - "value": "Pixel 3", - "type": "string" - }, - "type": "primitive" - }, - "android_os_version": { - "value": { - "value": "10", - "type": "string" - }, - "type": "primitive" - }, - "android_sdk_version": { - "value": { - "value": "28", - "type": "string" - }, - "type": "primitive" - }, - "android_last_seen_at": { - "value": { - "value": 1571672154, - "type": "int" - }, - "type": "primitive" - }, - "ios_app_name": { - "value": { - "value": "Intercom", - "type": "string" - }, - "type": "primitive" - }, - "ios_app_version": { - "value": { - "value": "5.0.0", - "type": "string" - }, - "type": "primitive" - }, - "ios_device": { - "value": { - "value": "iPhone 11", - "type": "string" - }, - "type": "primitive" - }, - "ios_os_version": { - "value": { - "value": "13.3.1", - "type": "string" - }, - "type": "primitive" - }, - "ios_sdk_version": { - "value": { - "value": "13.3.1", - "type": "string" - }, - "type": "primitive" - }, - "ios_last_seen_at": { - "value": { - "value": 1571672154, - "type": "int" - }, - "type": "primitive" - }, "custom_attributes": { "value": [ { @@ -43385,25 +42374,6 @@ ], "type": "map" }, - "avatar": { - "properties": { - "type": { - "value": { - "value": "avatar", - "type": "string" - }, - "type": "primitive" - }, - "image_url": { - "value": { - "value": "https://example.org/128Wash.jpg", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, "tags": { "properties": { "data": { @@ -43552,27 +42522,6 @@ "type": "string" }, "type": "primitive" - }, - "country": { - "value": { - "value": "Ireland", - "type": "string" - }, - "type": "primitive" - }, - "region": { - "value": { - "value": "Dublin", - "type": "string" - }, - "type": "primitive" - }, - "city": { - "value": { - "value": "Dublin", - "type": "string" - }, - "type": "primitive" } }, "type": "object" @@ -46761,13 +45710,6 @@ }, "type": "primitive" }, - "title": { - "value": { - "value": "Conversation Title", - "type": "string" - }, - "type": "primitive" - }, "created_at": { "value": { "value": 1719492825, @@ -46782,20 +45724,6 @@ }, "type": "primitive" }, - "waiting_since": { - "value": { - "value": 1663597260, - "type": "int" - }, - "type": "primitive" - }, - "snoozed_until": { - "value": { - "value": 1663597260, - "type": "int" - }, - "type": "primitive" - }, "open": { "value": { "value": false, @@ -46818,20 +45746,6 @@ "value": "not_priority", "type": "enum" }, - "admin_assignee_id": { - "value": { - "value": 0, - "type": "int" - }, - "type": "primitive" - }, - "team_assignee_id": { - "value": { - "value": "5017691", - "type": "string" - }, - "type": "primitive" - }, "tags": { "properties": { "type": { @@ -46882,77 +45796,6 @@ }, "type": "object" }, - "conversation_rating": { - "properties": { - "rating": { - "value": { - "value": 5, - "type": "int" - }, - "type": "primitive" - }, - "remark": { - "value": { - "value": "", - "type": "string" - }, - "type": "primitive" - }, - "created_at": { - "value": { - "value": 1671028894, - "type": "int" - }, - "type": "primitive" - }, - "contact": { - "properties": { - "type": { - "value": { - "value": "contact", - "type": "string" - }, - "type": "literal" - }, - "id": { - "value": { - "value": "5ba682d23d7cf92bef87bfd4", - "type": "string" - }, - "type": "primitive" - }, - "external_id": { - "value": { - "value": "f3b87a2e09d514c6c2e79b9a", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "teammate": { - "properties": { - "type": { - "value": { - "value": "contact", - "type": "string" - }, - "type": "primitive" - }, - "id": { - "value": { - "value": "1a2b3c", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - }, - "type": "object" - }, "source": { "properties": { "type": { @@ -47082,13 +45925,6 @@ ], "type": "array" }, - "url": { - "value": { - "value": "url", - "type": "string" - }, - "type": "primitive" - }, "redacted": { "value": { "value": false, @@ -47142,35 +45978,6 @@ }, "type": "object" }, - "teammates": { - "properties": { - "type": { - "value": { - "value": "admin.list", - "type": "string" - }, - "type": "primitive" - }, - "teammates": { - "value": [ - { - "properties": { - "type": { - "value": { - "value": "contact", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, "custom_attributes": { "value": [ { @@ -47189,193 +45996,6 @@ ], "type": "map" }, - "first_contact_reply": { - "properties": { - "created_at": { - "value": { - "value": 1663597223, - "type": "int" - }, - "type": "primitive" - }, - "type": { - "value": { - "value": "conversation", - "type": "string" - }, - "type": "primitive" - }, - "url": { - "value": { - "value": "https://developers.intercom.com/", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "sla_applied": { - "properties": { - "type": { - "value": { - "value": "conversation_sla_summary", - "type": "string" - }, - "type": "primitive" - }, - "sla_name": { - "value": { - "value": "", - "type": "string" - }, - "type": "primitive" - }, - "sla_status": { - "value": "hit", - "type": "enum" - } - }, - "type": "object" - }, - "statistics": { - "properties": { - "type": { - "value": { - "value": "conversation_statistics", - "type": "string" - }, - "type": "primitive" - }, - "time_to_assignment": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "time_to_admin_reply": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "time_to_first_close": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "time_to_last_close": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "median_time_to_reply": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "first_contact_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "first_assignment_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "first_admin_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "first_close_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_assignment_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_assignment_admin_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_contact_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_admin_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_close_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_closed_by_id": { - "value": { - "value": "c3po", - "type": "string" - }, - "type": "primitive" - }, - "count_reopens": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - }, - "count_assignments": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - }, - "count_conversation_parts": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - } - }, - "type": "object" - }, "conversation_parts": { "properties": { "type": { @@ -47503,100 +46123,6 @@ "type": "boolean" }, "type": "primitive" - }, - "ai_agent": { - "properties": { - "source_type": { - "value": "essentials_plan_setup", - "type": "enum" - }, - "source_title": { - "value": { - "value": "My AI Workflow", - "type": "string" - }, - "type": "primitive" - }, - "last_answer_type": { - "value": { - "value": "ai_answer", - "type": "string" - }, - "type": "primitive" - }, - "resolution_state": { - "value": { - "value": "assumed_resolution", - "type": "string" - }, - "type": "primitive" - }, - "rating": { - "value": { - "value": 4, - "type": "int" - }, - "type": "primitive" - }, - "rating_remark": { - "value": { - "value": "Very helpful!", - "type": "string" - }, - "type": "primitive" - }, - "content_sources": { - "properties": { - "type": { - "value": { - "value": "content_source.list", - "type": "string" - }, - "type": "literal" - }, - "total_count": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - }, - "content_sources": { - "value": [ - { - "properties": { - "url": { - "value": { - "value": "/fin-ai-agent/content?content=content_snippet&id=3234924", - "type": "string" - }, - "type": "primitive" - }, - "title": { - "value": { - "value": "My internal content snippet", - "type": "string" - }, - "type": "primitive" - }, - "locale": { - "value": { - "value": "en", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - } - }, - "type": "object" } }, "type": "object" @@ -48234,13 +46760,6 @@ }, "type": "primitive" }, - "title": { - "value": { - "value": "Conversation Title", - "type": "string" - }, - "type": "primitive" - }, "created_at": { "value": { "value": 1719492832, @@ -48255,20 +46774,6 @@ }, "type": "primitive" }, - "waiting_since": { - "value": { - "value": 1663597260, - "type": "int" - }, - "type": "primitive" - }, - "snoozed_until": { - "value": { - "value": 1663597260, - "type": "int" - }, - "type": "primitive" - }, "open": { "value": { "value": false, @@ -48291,20 +46796,6 @@ "value": "not_priority", "type": "enum" }, - "admin_assignee_id": { - "value": { - "value": 0, - "type": "int" - }, - "type": "primitive" - }, - "team_assignee_id": { - "value": { - "value": "5017691", - "type": "string" - }, - "type": "primitive" - }, "tags": { "properties": { "type": { @@ -48355,77 +46846,6 @@ }, "type": "object" }, - "conversation_rating": { - "properties": { - "rating": { - "value": { - "value": 5, - "type": "int" - }, - "type": "primitive" - }, - "remark": { - "value": { - "value": "", - "type": "string" - }, - "type": "primitive" - }, - "created_at": { - "value": { - "value": 1671028894, - "type": "int" - }, - "type": "primitive" - }, - "contact": { - "properties": { - "type": { - "value": { - "value": "contact", - "type": "string" - }, - "type": "literal" - }, - "id": { - "value": { - "value": "5ba682d23d7cf92bef87bfd4", - "type": "string" - }, - "type": "primitive" - }, - "external_id": { - "value": { - "value": "f3b87a2e09d514c6c2e79b9a", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "teammate": { - "properties": { - "type": { - "value": { - "value": "contact", - "type": "string" - }, - "type": "primitive" - }, - "id": { - "value": { - "value": "1a2b3c", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - }, - "type": "object" - }, "source": { "properties": { "type": { @@ -48555,13 +46975,6 @@ ], "type": "array" }, - "url": { - "value": { - "value": "url", - "type": "string" - }, - "type": "primitive" - }, "redacted": { "value": { "value": false, @@ -48615,35 +47028,6 @@ }, "type": "object" }, - "teammates": { - "properties": { - "type": { - "value": { - "value": "admin.list", - "type": "string" - }, - "type": "primitive" - }, - "teammates": { - "value": [ - { - "properties": { - "type": { - "value": { - "value": "contact", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, "custom_attributes": { "value": [ { @@ -48675,193 +47059,6 @@ ], "type": "map" }, - "first_contact_reply": { - "properties": { - "created_at": { - "value": { - "value": 1663597223, - "type": "int" - }, - "type": "primitive" - }, - "type": { - "value": { - "value": "conversation", - "type": "string" - }, - "type": "primitive" - }, - "url": { - "value": { - "value": "https://developers.intercom.com/", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "sla_applied": { - "properties": { - "type": { - "value": { - "value": "conversation_sla_summary", - "type": "string" - }, - "type": "primitive" - }, - "sla_name": { - "value": { - "value": "", - "type": "string" - }, - "type": "primitive" - }, - "sla_status": { - "value": "hit", - "type": "enum" - } - }, - "type": "object" - }, - "statistics": { - "properties": { - "type": { - "value": { - "value": "conversation_statistics", - "type": "string" - }, - "type": "primitive" - }, - "time_to_assignment": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "time_to_admin_reply": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "time_to_first_close": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "time_to_last_close": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "median_time_to_reply": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "first_contact_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "first_assignment_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "first_admin_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "first_close_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_assignment_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_assignment_admin_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_contact_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_admin_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_close_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_closed_by_id": { - "value": { - "value": "c3po", - "type": "string" - }, - "type": "primitive" - }, - "count_reopens": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - }, - "count_assignments": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - }, - "count_conversation_parts": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - } - }, - "type": "object" - }, "conversation_parts": { "properties": { "type": { @@ -49227,100 +47424,6 @@ "type": "boolean" }, "type": "primitive" - }, - "ai_agent": { - "properties": { - "source_type": { - "value": "essentials_plan_setup", - "type": "enum" - }, - "source_title": { - "value": { - "value": "My AI Workflow", - "type": "string" - }, - "type": "primitive" - }, - "last_answer_type": { - "value": { - "value": "ai_answer", - "type": "string" - }, - "type": "primitive" - }, - "resolution_state": { - "value": { - "value": "assumed_resolution", - "type": "string" - }, - "type": "primitive" - }, - "rating": { - "value": { - "value": 4, - "type": "int" - }, - "type": "primitive" - }, - "rating_remark": { - "value": { - "value": "Very helpful!", - "type": "string" - }, - "type": "primitive" - }, - "content_sources": { - "properties": { - "type": { - "value": { - "value": "content_source.list", - "type": "string" - }, - "type": "literal" - }, - "total_count": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - }, - "content_sources": { - "value": [ - { - "properties": { - "url": { - "value": { - "value": "/fin-ai-agent/content?content=content_snippet&id=3234924", - "type": "string" - }, - "type": "primitive" - }, - "title": { - "value": { - "value": "My internal content snippet", - "type": "string" - }, - "type": "primitive" - }, - "locale": { - "value": { - "value": "en", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - } - }, - "type": "object" } }, "type": "object" @@ -49417,13 +47520,6 @@ }, "type": "primitive" }, - "title": { - "value": { - "value": "Conversation Title", - "type": "string" - }, - "type": "primitive" - }, "created_at": { "value": { "value": 1719492832, @@ -49438,20 +47534,6 @@ }, "type": "primitive" }, - "waiting_since": { - "value": { - "value": 1663597260, - "type": "int" - }, - "type": "primitive" - }, - "snoozed_until": { - "value": { - "value": 1663597260, - "type": "int" - }, - "type": "primitive" - }, "open": { "value": { "value": false, @@ -49474,20 +47556,6 @@ "value": "not_priority", "type": "enum" }, - "admin_assignee_id": { - "value": { - "value": 0, - "type": "int" - }, - "type": "primitive" - }, - "team_assignee_id": { - "value": { - "value": "5017691", - "type": "string" - }, - "type": "primitive" - }, "tags": { "properties": { "type": { @@ -49538,77 +47606,6 @@ }, "type": "object" }, - "conversation_rating": { - "properties": { - "rating": { - "value": { - "value": 5, - "type": "int" - }, - "type": "primitive" - }, - "remark": { - "value": { - "value": "", - "type": "string" - }, - "type": "primitive" - }, - "created_at": { - "value": { - "value": 1671028894, - "type": "int" - }, - "type": "primitive" - }, - "contact": { - "properties": { - "type": { - "value": { - "value": "contact", - "type": "string" - }, - "type": "literal" - }, - "id": { - "value": { - "value": "5ba682d23d7cf92bef87bfd4", - "type": "string" - }, - "type": "primitive" - }, - "external_id": { - "value": { - "value": "f3b87a2e09d514c6c2e79b9a", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "teammate": { - "properties": { - "type": { - "value": { - "value": "contact", - "type": "string" - }, - "type": "primitive" - }, - "id": { - "value": { - "value": "1a2b3c", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - }, - "type": "object" - }, "source": { "properties": { "type": { @@ -49738,13 +47735,6 @@ ], "type": "array" }, - "url": { - "value": { - "value": "url", - "type": "string" - }, - "type": "primitive" - }, "redacted": { "value": { "value": false, @@ -49798,35 +47788,6 @@ }, "type": "object" }, - "teammates": { - "properties": { - "type": { - "value": { - "value": "admin.list", - "type": "string" - }, - "type": "primitive" - }, - "teammates": { - "value": [ - { - "properties": { - "type": { - "value": { - "value": "contact", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, "custom_attributes": { "value": [ { @@ -49858,193 +47819,6 @@ ], "type": "map" }, - "first_contact_reply": { - "properties": { - "created_at": { - "value": { - "value": 1663597223, - "type": "int" - }, - "type": "primitive" - }, - "type": { - "value": { - "value": "conversation", - "type": "string" - }, - "type": "primitive" - }, - "url": { - "value": { - "value": "https://developers.intercom.com/", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "sla_applied": { - "properties": { - "type": { - "value": { - "value": "conversation_sla_summary", - "type": "string" - }, - "type": "primitive" - }, - "sla_name": { - "value": { - "value": "", - "type": "string" - }, - "type": "primitive" - }, - "sla_status": { - "value": "hit", - "type": "enum" - } - }, - "type": "object" - }, - "statistics": { - "properties": { - "type": { - "value": { - "value": "conversation_statistics", - "type": "string" - }, - "type": "primitive" - }, - "time_to_assignment": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "time_to_admin_reply": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "time_to_first_close": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "time_to_last_close": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "median_time_to_reply": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "first_contact_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "first_assignment_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "first_admin_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "first_close_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_assignment_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_assignment_admin_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_contact_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_admin_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_close_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_closed_by_id": { - "value": { - "value": "c3po", - "type": "string" - }, - "type": "primitive" - }, - "count_reopens": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - }, - "count_assignments": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - }, - "count_conversation_parts": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - } - }, - "type": "object" - }, "conversation_parts": { "properties": { "type": { @@ -50410,100 +48184,6 @@ "type": "boolean" }, "type": "primitive" - }, - "ai_agent": { - "properties": { - "source_type": { - "value": "essentials_plan_setup", - "type": "enum" - }, - "source_title": { - "value": { - "value": "My AI Workflow", - "type": "string" - }, - "type": "primitive" - }, - "last_answer_type": { - "value": { - "value": "ai_answer", - "type": "string" - }, - "type": "primitive" - }, - "resolution_state": { - "value": { - "value": "assumed_resolution", - "type": "string" - }, - "type": "primitive" - }, - "rating": { - "value": { - "value": 4, - "type": "int" - }, - "type": "primitive" - }, - "rating_remark": { - "value": { - "value": "Very helpful!", - "type": "string" - }, - "type": "primitive" - }, - "content_sources": { - "properties": { - "type": { - "value": { - "value": "content_source.list", - "type": "string" - }, - "type": "literal" - }, - "total_count": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - }, - "content_sources": { - "value": [ - { - "properties": { - "url": { - "value": { - "value": "/fin-ai-agent/content?content=content_snippet&id=3234924", - "type": "string" - }, - "type": "primitive" - }, - "title": { - "value": { - "value": "My internal content snippet", - "type": "string" - }, - "type": "primitive" - }, - "locale": { - "value": { - "value": "en", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - } - }, - "type": "object" } }, "type": "object" @@ -50778,13 +48458,6 @@ }, "type": "primitive" }, - "title": { - "value": { - "value": "Conversation Title", - "type": "string" - }, - "type": "primitive" - }, "created_at": { "value": { "value": 1719492843, @@ -50799,20 +48472,6 @@ }, "type": "primitive" }, - "waiting_since": { - "value": { - "value": 1663597260, - "type": "int" - }, - "type": "primitive" - }, - "snoozed_until": { - "value": { - "value": 1663597260, - "type": "int" - }, - "type": "primitive" - }, "open": { "value": { "value": false, @@ -50835,20 +48494,6 @@ "value": "not_priority", "type": "enum" }, - "admin_assignee_id": { - "value": { - "value": 0, - "type": "int" - }, - "type": "primitive" - }, - "team_assignee_id": { - "value": { - "value": "5017691", - "type": "string" - }, - "type": "primitive" - }, "tags": { "properties": { "type": { @@ -50899,32 +48544,6 @@ }, "type": "object" }, - "conversation_rating": { - "properties": { - "rating": { - "value": { - "value": 5, - "type": "int" - }, - "type": "primitive" - }, - "remark": { - "value": { - "value": "", - "type": "string" - }, - "type": "primitive" - }, - "created_at": { - "value": { - "value": 1671028894, - "type": "int" - }, - "type": "primitive" - } - }, - "type": "object" - }, "source": { "properties": { "type": { @@ -51107,18 +48726,6 @@ }, "type": "object" }, - "teammates": { - "properties": { - "type": { - "value": { - "value": "admin.list", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, "custom_attributes": { "value": [ { @@ -51137,182 +48744,6 @@ ], "type": "map" }, - "first_contact_reply": { - "properties": { - "created_at": { - "value": { - "value": 1663597223, - "type": "int" - }, - "type": "primitive" - }, - "type": { - "value": { - "value": "conversation", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "sla_applied": { - "properties": { - "type": { - "value": { - "value": "conversation_sla_summary", - "type": "string" - }, - "type": "primitive" - }, - "sla_name": { - "value": { - "value": "", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "statistics": { - "properties": { - "type": { - "value": { - "value": "conversation_statistics", - "type": "string" - }, - "type": "primitive" - }, - "time_to_assignment": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "time_to_admin_reply": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "time_to_first_close": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "time_to_last_close": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "median_time_to_reply": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "first_contact_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "first_assignment_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "first_admin_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "first_close_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_assignment_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_assignment_admin_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_contact_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_admin_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_close_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_closed_by_id": { - "value": { - "value": "c3po", - "type": "string" - }, - "type": "primitive" - }, - "count_reopens": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - }, - "count_assignments": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - }, - "count_conversation_parts": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - } - }, - "type": "object" - }, "conversation_parts": { "properties": { "total_count": { @@ -52213,13 +49644,6 @@ }, "type": "primitive" }, - "title": { - "value": { - "value": "Conversation Title", - "type": "string" - }, - "type": "primitive" - }, "created_at": { "value": { "value": 1719492849, @@ -52241,13 +49665,6 @@ }, "type": "primitive" }, - "snoozed_until": { - "value": { - "value": 1663597260, - "type": "int" - }, - "type": "primitive" - }, "open": { "value": { "value": true, @@ -52270,20 +49687,6 @@ "value": "not_priority", "type": "enum" }, - "admin_assignee_id": { - "value": { - "value": 0, - "type": "int" - }, - "type": "primitive" - }, - "team_assignee_id": { - "value": { - "value": "5017691", - "type": "string" - }, - "type": "primitive" - }, "tags": { "properties": { "type": { @@ -52334,77 +49737,6 @@ }, "type": "object" }, - "conversation_rating": { - "properties": { - "rating": { - "value": { - "value": 5, - "type": "int" - }, - "type": "primitive" - }, - "remark": { - "value": { - "value": "", - "type": "string" - }, - "type": "primitive" - }, - "created_at": { - "value": { - "value": 1671028894, - "type": "int" - }, - "type": "primitive" - }, - "contact": { - "properties": { - "type": { - "value": { - "value": "contact", - "type": "string" - }, - "type": "literal" - }, - "id": { - "value": { - "value": "5ba682d23d7cf92bef87bfd4", - "type": "string" - }, - "type": "primitive" - }, - "external_id": { - "value": { - "value": "f3b87a2e09d514c6c2e79b9a", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "teammate": { - "properties": { - "type": { - "value": { - "value": "contact", - "type": "string" - }, - "type": "primitive" - }, - "id": { - "value": { - "value": "1a2b3c", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - }, - "type": "object" - }, "source": { "properties": { "type": { @@ -52534,13 +49866,6 @@ ], "type": "array" }, - "url": { - "value": { - "value": "url", - "type": "string" - }, - "type": "primitive" - }, "redacted": { "value": { "value": false, @@ -52594,35 +49919,6 @@ }, "type": "object" }, - "teammates": { - "properties": { - "type": { - "value": { - "value": "admin.list", - "type": "string" - }, - "type": "primitive" - }, - "teammates": { - "value": [ - { - "properties": { - "type": { - "value": { - "value": "contact", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, "custom_attributes": { "value": [ { @@ -52656,174 +49952,6 @@ "type": "string" }, "type": "primitive" - }, - "url": { - "value": { - "value": "https://developers.intercom.com/", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "sla_applied": { - "properties": { - "type": { - "value": { - "value": "conversation_sla_summary", - "type": "string" - }, - "type": "primitive" - }, - "sla_name": { - "value": { - "value": "", - "type": "string" - }, - "type": "primitive" - }, - "sla_status": { - "value": "hit", - "type": "enum" - } - }, - "type": "object" - }, - "statistics": { - "properties": { - "type": { - "value": { - "value": "conversation_statistics", - "type": "string" - }, - "type": "primitive" - }, - "time_to_assignment": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "time_to_admin_reply": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "time_to_first_close": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "time_to_last_close": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "median_time_to_reply": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "first_contact_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "first_assignment_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "first_admin_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "first_close_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_assignment_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_assignment_admin_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_contact_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_admin_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_close_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_closed_by_id": { - "value": { - "value": "c3po", - "type": "string" - }, - "type": "primitive" - }, - "count_reopens": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - }, - "count_assignments": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - }, - "count_conversation_parts": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" } }, "type": "object" @@ -53054,100 +50182,6 @@ "type": "boolean" }, "type": "primitive" - }, - "ai_agent": { - "properties": { - "source_type": { - "value": "essentials_plan_setup", - "type": "enum" - }, - "source_title": { - "value": { - "value": "My AI Workflow", - "type": "string" - }, - "type": "primitive" - }, - "last_answer_type": { - "value": { - "value": "ai_answer", - "type": "string" - }, - "type": "primitive" - }, - "resolution_state": { - "value": { - "value": "assumed_resolution", - "type": "string" - }, - "type": "primitive" - }, - "rating": { - "value": { - "value": 4, - "type": "int" - }, - "type": "primitive" - }, - "rating_remark": { - "value": { - "value": "Very helpful!", - "type": "string" - }, - "type": "primitive" - }, - "content_sources": { - "properties": { - "type": { - "value": { - "value": "content_source.list", - "type": "string" - }, - "type": "literal" - }, - "total_count": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - }, - "content_sources": { - "value": [ - { - "properties": { - "url": { - "value": { - "value": "/fin-ai-agent/content?content=content_snippet&id=3234924", - "type": "string" - }, - "type": "primitive" - }, - "title": { - "value": { - "value": "My internal content snippet", - "type": "string" - }, - "type": "primitive" - }, - "locale": { - "value": { - "value": "en", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - } - }, - "type": "object" } }, "type": "object" @@ -53220,13 +50254,6 @@ }, "type": "primitive" }, - "title": { - "value": { - "value": "Conversation Title", - "type": "string" - }, - "type": "primitive" - }, "created_at": { "value": { "value": 1719492852, @@ -53241,20 +50268,6 @@ }, "type": "primitive" }, - "waiting_since": { - "value": { - "value": 1663597260, - "type": "int" - }, - "type": "primitive" - }, - "snoozed_until": { - "value": { - "value": 1663597260, - "type": "int" - }, - "type": "primitive" - }, "open": { "value": { "value": false, @@ -53277,20 +50290,6 @@ "value": "not_priority", "type": "enum" }, - "admin_assignee_id": { - "value": { - "value": 0, - "type": "int" - }, - "type": "primitive" - }, - "team_assignee_id": { - "value": { - "value": "5017691", - "type": "string" - }, - "type": "primitive" - }, "tags": { "properties": { "type": { @@ -53341,77 +50340,6 @@ }, "type": "object" }, - "conversation_rating": { - "properties": { - "rating": { - "value": { - "value": 5, - "type": "int" - }, - "type": "primitive" - }, - "remark": { - "value": { - "value": "", - "type": "string" - }, - "type": "primitive" - }, - "created_at": { - "value": { - "value": 1671028894, - "type": "int" - }, - "type": "primitive" - }, - "contact": { - "properties": { - "type": { - "value": { - "value": "contact", - "type": "string" - }, - "type": "literal" - }, - "id": { - "value": { - "value": "5ba682d23d7cf92bef87bfd4", - "type": "string" - }, - "type": "primitive" - }, - "external_id": { - "value": { - "value": "f3b87a2e09d514c6c2e79b9a", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "teammate": { - "properties": { - "type": { - "value": { - "value": "contact", - "type": "string" - }, - "type": "primitive" - }, - "id": { - "value": { - "value": "1a2b3c", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - }, - "type": "object" - }, "source": { "properties": { "type": { @@ -53541,13 +50469,6 @@ ], "type": "array" }, - "url": { - "value": { - "value": "url", - "type": "string" - }, - "type": "primitive" - }, "redacted": { "value": { "value": false, @@ -53601,35 +50522,6 @@ }, "type": "object" }, - "teammates": { - "properties": { - "type": { - "value": { - "value": "admin.list", - "type": "string" - }, - "type": "primitive" - }, - "teammates": { - "value": [ - { - "properties": { - "type": { - "value": { - "value": "contact", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, "custom_attributes": { "value": [ { @@ -53648,201 +50540,14 @@ ], "type": "map" }, - "first_contact_reply": { - "properties": { - "created_at": { - "value": { - "value": 1663597223, - "type": "int" - }, - "type": "primitive" - }, - "type": { - "value": { - "value": "conversation", - "type": "string" - }, - "type": "primitive" - }, - "url": { - "value": { - "value": "https://developers.intercom.com/", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "sla_applied": { - "properties": { - "type": { - "value": { - "value": "conversation_sla_summary", - "type": "string" - }, - "type": "primitive" - }, - "sla_name": { - "value": { - "value": "", - "type": "string" - }, - "type": "primitive" - }, - "sla_status": { - "value": "hit", - "type": "enum" - } - }, - "type": "object" - }, - "statistics": { + "conversation_parts": { "properties": { "type": { "value": { - "value": "conversation_statistics", + "value": "conversation_part.list", "type": "string" }, - "type": "primitive" - }, - "time_to_assignment": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "time_to_admin_reply": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "time_to_first_close": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "time_to_last_close": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "median_time_to_reply": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "first_contact_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "first_assignment_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "first_admin_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "first_close_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_assignment_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_assignment_admin_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_contact_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_admin_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_close_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_closed_by_id": { - "value": { - "value": "c3po", - "type": "string" - }, - "type": "primitive" - }, - "count_reopens": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - }, - "count_assignments": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - }, - "count_conversation_parts": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "conversation_parts": { - "properties": { - "type": { - "value": { - "value": "conversation_part.list", - "type": "string" - }, - "type": "literal" + "type": "literal" }, "conversation_parts": { "value": [ @@ -54061,100 +50766,6 @@ "type": "boolean" }, "type": "primitive" - }, - "ai_agent": { - "properties": { - "source_type": { - "value": "essentials_plan_setup", - "type": "enum" - }, - "source_title": { - "value": { - "value": "My AI Workflow", - "type": "string" - }, - "type": "primitive" - }, - "last_answer_type": { - "value": { - "value": "ai_answer", - "type": "string" - }, - "type": "primitive" - }, - "resolution_state": { - "value": { - "value": "assumed_resolution", - "type": "string" - }, - "type": "primitive" - }, - "rating": { - "value": { - "value": 4, - "type": "int" - }, - "type": "primitive" - }, - "rating_remark": { - "value": { - "value": "Very helpful!", - "type": "string" - }, - "type": "primitive" - }, - "content_sources": { - "properties": { - "type": { - "value": { - "value": "content_source.list", - "type": "string" - }, - "type": "literal" - }, - "total_count": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - }, - "content_sources": { - "value": [ - { - "properties": { - "url": { - "value": { - "value": "/fin-ai-agent/content?content=content_snippet&id=3234924", - "type": "string" - }, - "type": "primitive" - }, - "title": { - "value": { - "value": "My internal content snippet", - "type": "string" - }, - "type": "primitive" - }, - "locale": { - "value": { - "value": "en", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - } - }, - "type": "object" } }, "type": "object" @@ -54230,13 +50841,6 @@ }, "type": "primitive" }, - "title": { - "value": { - "value": "Conversation Title", - "type": "string" - }, - "type": "primitive" - }, "created_at": { "value": { "value": 1719492855, @@ -54258,13 +50862,6 @@ }, "type": "primitive" }, - "snoozed_until": { - "value": { - "value": 1663597260, - "type": "int" - }, - "type": "primitive" - }, "open": { "value": { "value": true, @@ -54287,20 +50884,6 @@ "value": "not_priority", "type": "enum" }, - "admin_assignee_id": { - "value": { - "value": 0, - "type": "int" - }, - "type": "primitive" - }, - "team_assignee_id": { - "value": { - "value": "5017691", - "type": "string" - }, - "type": "primitive" - }, "tags": { "properties": { "type": { @@ -54351,77 +50934,6 @@ }, "type": "object" }, - "conversation_rating": { - "properties": { - "rating": { - "value": { - "value": 5, - "type": "int" - }, - "type": "primitive" - }, - "remark": { - "value": { - "value": "", - "type": "string" - }, - "type": "primitive" - }, - "created_at": { - "value": { - "value": 1671028894, - "type": "int" - }, - "type": "primitive" - }, - "contact": { - "properties": { - "type": { - "value": { - "value": "contact", - "type": "string" - }, - "type": "literal" - }, - "id": { - "value": { - "value": "5ba682d23d7cf92bef87bfd4", - "type": "string" - }, - "type": "primitive" - }, - "external_id": { - "value": { - "value": "f3b87a2e09d514c6c2e79b9a", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "teammate": { - "properties": { - "type": { - "value": { - "value": "contact", - "type": "string" - }, - "type": "primitive" - }, - "id": { - "value": { - "value": "1a2b3c", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - }, - "type": "object" - }, "source": { "properties": { "type": { @@ -54551,13 +51063,6 @@ ], "type": "array" }, - "url": { - "value": { - "value": "url", - "type": "string" - }, - "type": "primitive" - }, "redacted": { "value": { "value": false, @@ -54611,35 +51116,6 @@ }, "type": "object" }, - "teammates": { - "properties": { - "type": { - "value": { - "value": "admin.list", - "type": "string" - }, - "type": "primitive" - }, - "teammates": { - "value": [ - { - "properties": { - "type": { - "value": { - "value": "contact", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, "custom_attributes": { "value": [ { @@ -54673,186 +51149,18 @@ "type": "string" }, "type": "primitive" - }, - "url": { - "value": { - "value": "https://developers.intercom.com/", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "sla_applied": { - "properties": { - "type": { - "value": { - "value": "conversation_sla_summary", - "type": "string" - }, - "type": "primitive" - }, - "sla_name": { - "value": { - "value": "", - "type": "string" - }, - "type": "primitive" - }, - "sla_status": { - "value": "hit", - "type": "enum" } }, "type": "object" }, - "statistics": { + "conversation_parts": { "properties": { "type": { "value": { - "value": "conversation_statistics", - "type": "string" - }, - "type": "primitive" - }, - "time_to_assignment": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "time_to_admin_reply": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "time_to_first_close": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "time_to_last_close": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "median_time_to_reply": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "first_contact_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "first_assignment_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "first_admin_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "first_close_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_assignment_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_assignment_admin_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_contact_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_admin_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_close_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_closed_by_id": { - "value": { - "value": "c3po", + "value": "conversation_part.list", "type": "string" }, - "type": "primitive" - }, - "count_reopens": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - }, - "count_assignments": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - }, - "count_conversation_parts": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "conversation_parts": { - "properties": { - "type": { - "value": { - "value": "conversation_part.list", - "type": "string" - }, - "type": "literal" + "type": "literal" }, "conversation_parts": { "value": [ @@ -55071,100 +51379,6 @@ "type": "boolean" }, "type": "primitive" - }, - "ai_agent": { - "properties": { - "source_type": { - "value": "essentials_plan_setup", - "type": "enum" - }, - "source_title": { - "value": { - "value": "My AI Workflow", - "type": "string" - }, - "type": "primitive" - }, - "last_answer_type": { - "value": { - "value": "ai_answer", - "type": "string" - }, - "type": "primitive" - }, - "resolution_state": { - "value": { - "value": "assumed_resolution", - "type": "string" - }, - "type": "primitive" - }, - "rating": { - "value": { - "value": 4, - "type": "int" - }, - "type": "primitive" - }, - "rating_remark": { - "value": { - "value": "Very helpful!", - "type": "string" - }, - "type": "primitive" - }, - "content_sources": { - "properties": { - "type": { - "value": { - "value": "content_source.list", - "type": "string" - }, - "type": "literal" - }, - "total_count": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - }, - "content_sources": { - "value": [ - { - "properties": { - "url": { - "value": { - "value": "/fin-ai-agent/content?content=content_snippet&id=3234924", - "type": "string" - }, - "type": "primitive" - }, - "title": { - "value": { - "value": "My internal content snippet", - "type": "string" - }, - "type": "primitive" - }, - "locale": { - "value": { - "value": "en", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - } - }, - "type": "object" } }, "type": "object" @@ -55240,13 +51454,6 @@ }, "type": "primitive" }, - "title": { - "value": { - "value": "Conversation Title", - "type": "string" - }, - "type": "primitive" - }, "created_at": { "value": { "value": 1719492849, @@ -55268,13 +51475,6 @@ }, "type": "primitive" }, - "snoozed_until": { - "value": { - "value": 1663597260, - "type": "int" - }, - "type": "primitive" - }, "open": { "value": { "value": true, @@ -55297,20 +51497,6 @@ "value": "not_priority", "type": "enum" }, - "admin_assignee_id": { - "value": { - "value": 0, - "type": "int" - }, - "type": "primitive" - }, - "team_assignee_id": { - "value": { - "value": "5017691", - "type": "string" - }, - "type": "primitive" - }, "tags": { "properties": { "type": { @@ -55361,77 +51547,6 @@ }, "type": "object" }, - "conversation_rating": { - "properties": { - "rating": { - "value": { - "value": 5, - "type": "int" - }, - "type": "primitive" - }, - "remark": { - "value": { - "value": "", - "type": "string" - }, - "type": "primitive" - }, - "created_at": { - "value": { - "value": 1671028894, - "type": "int" - }, - "type": "primitive" - }, - "contact": { - "properties": { - "type": { - "value": { - "value": "contact", - "type": "string" - }, - "type": "literal" - }, - "id": { - "value": { - "value": "5ba682d23d7cf92bef87bfd4", - "type": "string" - }, - "type": "primitive" - }, - "external_id": { - "value": { - "value": "f3b87a2e09d514c6c2e79b9a", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "teammate": { - "properties": { - "type": { - "value": { - "value": "contact", - "type": "string" - }, - "type": "primitive" - }, - "id": { - "value": { - "value": "1a2b3c", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - }, - "type": "object" - }, "source": { "properties": { "type": { @@ -55561,13 +51676,6 @@ ], "type": "array" }, - "url": { - "value": { - "value": "url", - "type": "string" - }, - "type": "primitive" - }, "redacted": { "value": { "value": false, @@ -55621,35 +51729,6 @@ }, "type": "object" }, - "teammates": { - "properties": { - "type": { - "value": { - "value": "admin.list", - "type": "string" - }, - "type": "primitive" - }, - "teammates": { - "value": [ - { - "properties": { - "type": { - "value": { - "value": "contact", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, "custom_attributes": { "value": [ { @@ -55683,174 +51762,6 @@ "type": "string" }, "type": "primitive" - }, - "url": { - "value": { - "value": "https://developers.intercom.com/", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "sla_applied": { - "properties": { - "type": { - "value": { - "value": "conversation_sla_summary", - "type": "string" - }, - "type": "primitive" - }, - "sla_name": { - "value": { - "value": "", - "type": "string" - }, - "type": "primitive" - }, - "sla_status": { - "value": "hit", - "type": "enum" - } - }, - "type": "object" - }, - "statistics": { - "properties": { - "type": { - "value": { - "value": "conversation_statistics", - "type": "string" - }, - "type": "primitive" - }, - "time_to_assignment": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "time_to_admin_reply": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "time_to_first_close": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "time_to_last_close": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "median_time_to_reply": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "first_contact_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "first_assignment_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "first_admin_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "first_close_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_assignment_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_assignment_admin_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_contact_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_admin_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_close_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_closed_by_id": { - "value": { - "value": "c3po", - "type": "string" - }, - "type": "primitive" - }, - "count_reopens": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - }, - "count_assignments": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - }, - "count_conversation_parts": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" } }, "type": "object" @@ -56081,100 +51992,6 @@ "type": "boolean" }, "type": "primitive" - }, - "ai_agent": { - "properties": { - "source_type": { - "value": "essentials_plan_setup", - "type": "enum" - }, - "source_title": { - "value": { - "value": "My AI Workflow", - "type": "string" - }, - "type": "primitive" - }, - "last_answer_type": { - "value": { - "value": "ai_answer", - "type": "string" - }, - "type": "primitive" - }, - "resolution_state": { - "value": { - "value": "assumed_resolution", - "type": "string" - }, - "type": "primitive" - }, - "rating": { - "value": { - "value": 4, - "type": "int" - }, - "type": "primitive" - }, - "rating_remark": { - "value": { - "value": "Very helpful!", - "type": "string" - }, - "type": "primitive" - }, - "content_sources": { - "properties": { - "type": { - "value": { - "value": "content_source.list", - "type": "string" - }, - "type": "literal" - }, - "total_count": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - }, - "content_sources": { - "value": [ - { - "properties": { - "url": { - "value": { - "value": "/fin-ai-agent/content?content=content_snippet&id=3234924", - "type": "string" - }, - "type": "primitive" - }, - "title": { - "value": { - "value": "My internal content snippet", - "type": "string" - }, - "type": "primitive" - }, - "locale": { - "value": { - "value": "en", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - } - }, - "type": "object" } }, "type": "object" @@ -57089,13 +52906,6 @@ }, "type": "primitive" }, - "title": { - "value": { - "value": "Conversation Title", - "type": "string" - }, - "type": "primitive" - }, "created_at": { "value": { "value": 1719492862, @@ -57110,20 +52920,6 @@ }, "type": "primitive" }, - "waiting_since": { - "value": { - "value": 1663597260, - "type": "int" - }, - "type": "primitive" - }, - "snoozed_until": { - "value": { - "value": 1663597260, - "type": "int" - }, - "type": "primitive" - }, "open": { "value": { "value": false, @@ -57146,20 +52942,6 @@ "value": "not_priority", "type": "enum" }, - "admin_assignee_id": { - "value": { - "value": 0, - "type": "int" - }, - "type": "primitive" - }, - "team_assignee_id": { - "value": { - "value": "5017691", - "type": "string" - }, - "type": "primitive" - }, "tags": { "properties": { "type": { @@ -57210,77 +52992,6 @@ }, "type": "object" }, - "conversation_rating": { - "properties": { - "rating": { - "value": { - "value": 5, - "type": "int" - }, - "type": "primitive" - }, - "remark": { - "value": { - "value": "", - "type": "string" - }, - "type": "primitive" - }, - "created_at": { - "value": { - "value": 1671028894, - "type": "int" - }, - "type": "primitive" - }, - "contact": { - "properties": { - "type": { - "value": { - "value": "contact", - "type": "string" - }, - "type": "literal" - }, - "id": { - "value": { - "value": "5ba682d23d7cf92bef87bfd4", - "type": "string" - }, - "type": "primitive" - }, - "external_id": { - "value": { - "value": "f3b87a2e09d514c6c2e79b9a", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "teammate": { - "properties": { - "type": { - "value": { - "value": "contact", - "type": "string" - }, - "type": "primitive" - }, - "id": { - "value": { - "value": "1a2b3c", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - }, - "type": "object" - }, "source": { "properties": { "type": { @@ -57410,13 +53121,6 @@ ], "type": "array" }, - "url": { - "value": { - "value": "url", - "type": "string" - }, - "type": "primitive" - }, "redacted": { "value": { "value": false, @@ -57470,35 +53174,6 @@ }, "type": "object" }, - "teammates": { - "properties": { - "type": { - "value": { - "value": "admin.list", - "type": "string" - }, - "type": "primitive" - }, - "teammates": { - "value": [ - { - "properties": { - "type": { - "value": { - "value": "contact", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, "custom_attributes": { "value": [ { @@ -57517,193 +53192,6 @@ ], "type": "map" }, - "first_contact_reply": { - "properties": { - "created_at": { - "value": { - "value": 1663597223, - "type": "int" - }, - "type": "primitive" - }, - "type": { - "value": { - "value": "conversation", - "type": "string" - }, - "type": "primitive" - }, - "url": { - "value": { - "value": "https://developers.intercom.com/", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "sla_applied": { - "properties": { - "type": { - "value": { - "value": "conversation_sla_summary", - "type": "string" - }, - "type": "primitive" - }, - "sla_name": { - "value": { - "value": "", - "type": "string" - }, - "type": "primitive" - }, - "sla_status": { - "value": "hit", - "type": "enum" - } - }, - "type": "object" - }, - "statistics": { - "properties": { - "type": { - "value": { - "value": "conversation_statistics", - "type": "string" - }, - "type": "primitive" - }, - "time_to_assignment": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "time_to_admin_reply": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "time_to_first_close": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "time_to_last_close": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "median_time_to_reply": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "first_contact_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "first_assignment_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "first_admin_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "first_close_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_assignment_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_assignment_admin_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_contact_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_admin_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_close_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_closed_by_id": { - "value": { - "value": "c3po", - "type": "string" - }, - "type": "primitive" - }, - "count_reopens": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - }, - "count_assignments": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - }, - "count_conversation_parts": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - } - }, - "type": "object" - }, "conversation_parts": { "properties": { "type": { @@ -57930,100 +53418,6 @@ "type": "boolean" }, "type": "primitive" - }, - "ai_agent": { - "properties": { - "source_type": { - "value": "essentials_plan_setup", - "type": "enum" - }, - "source_title": { - "value": { - "value": "My AI Workflow", - "type": "string" - }, - "type": "primitive" - }, - "last_answer_type": { - "value": { - "value": "ai_answer", - "type": "string" - }, - "type": "primitive" - }, - "resolution_state": { - "value": { - "value": "assumed_resolution", - "type": "string" - }, - "type": "primitive" - }, - "rating": { - "value": { - "value": 4, - "type": "int" - }, - "type": "primitive" - }, - "rating_remark": { - "value": { - "value": "Very helpful!", - "type": "string" - }, - "type": "primitive" - }, - "content_sources": { - "properties": { - "type": { - "value": { - "value": "content_source.list", - "type": "string" - }, - "type": "literal" - }, - "total_count": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - }, - "content_sources": { - "value": [ - { - "properties": { - "url": { - "value": { - "value": "/fin-ai-agent/content?content=content_snippet&id=3234924", - "type": "string" - }, - "type": "primitive" - }, - "title": { - "value": { - "value": "My internal content snippet", - "type": "string" - }, - "type": "primitive" - }, - "locale": { - "value": { - "value": "en", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - } - }, - "type": "object" } }, "type": "object" @@ -58106,13 +53500,6 @@ }, "type": "primitive" }, - "title": { - "value": { - "value": "Conversation Title", - "type": "string" - }, - "type": "primitive" - }, "created_at": { "value": { "value": 1719492864, @@ -58127,13 +53514,6 @@ }, "type": "primitive" }, - "waiting_since": { - "value": { - "value": 1663597260, - "type": "int" - }, - "type": "primitive" - }, "snoozed_until": { "value": { "value": 1719496464, @@ -58163,20 +53543,6 @@ "value": "not_priority", "type": "enum" }, - "admin_assignee_id": { - "value": { - "value": 0, - "type": "int" - }, - "type": "primitive" - }, - "team_assignee_id": { - "value": { - "value": "5017691", - "type": "string" - }, - "type": "primitive" - }, "tags": { "properties": { "type": { @@ -58227,77 +53593,6 @@ }, "type": "object" }, - "conversation_rating": { - "properties": { - "rating": { - "value": { - "value": 5, - "type": "int" - }, - "type": "primitive" - }, - "remark": { - "value": { - "value": "", - "type": "string" - }, - "type": "primitive" - }, - "created_at": { - "value": { - "value": 1671028894, - "type": "int" - }, - "type": "primitive" - }, - "contact": { - "properties": { - "type": { - "value": { - "value": "contact", - "type": "string" - }, - "type": "literal" - }, - "id": { - "value": { - "value": "5ba682d23d7cf92bef87bfd4", - "type": "string" - }, - "type": "primitive" - }, - "external_id": { - "value": { - "value": "f3b87a2e09d514c6c2e79b9a", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "teammate": { - "properties": { - "type": { - "value": { - "value": "contact", - "type": "string" - }, - "type": "primitive" - }, - "id": { - "value": { - "value": "1a2b3c", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - }, - "type": "object" - }, "source": { "properties": { "type": { @@ -58427,13 +53722,6 @@ ], "type": "array" }, - "url": { - "value": { - "value": "url", - "type": "string" - }, - "type": "primitive" - }, "redacted": { "value": { "value": false, @@ -58487,35 +53775,6 @@ }, "type": "object" }, - "teammates": { - "properties": { - "type": { - "value": { - "value": "admin.list", - "type": "string" - }, - "type": "primitive" - }, - "teammates": { - "value": [ - { - "properties": { - "type": { - "value": { - "value": "contact", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, "custom_attributes": { "value": [ { @@ -58534,193 +53793,6 @@ ], "type": "map" }, - "first_contact_reply": { - "properties": { - "created_at": { - "value": { - "value": 1663597223, - "type": "int" - }, - "type": "primitive" - }, - "type": { - "value": { - "value": "conversation", - "type": "string" - }, - "type": "primitive" - }, - "url": { - "value": { - "value": "https://developers.intercom.com/", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "sla_applied": { - "properties": { - "type": { - "value": { - "value": "conversation_sla_summary", - "type": "string" - }, - "type": "primitive" - }, - "sla_name": { - "value": { - "value": "", - "type": "string" - }, - "type": "primitive" - }, - "sla_status": { - "value": "hit", - "type": "enum" - } - }, - "type": "object" - }, - "statistics": { - "properties": { - "type": { - "value": { - "value": "conversation_statistics", - "type": "string" - }, - "type": "primitive" - }, - "time_to_assignment": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "time_to_admin_reply": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "time_to_first_close": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "time_to_last_close": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "median_time_to_reply": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "first_contact_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "first_assignment_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "first_admin_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "first_close_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_assignment_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_assignment_admin_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_contact_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_admin_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_close_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_closed_by_id": { - "value": { - "value": "c3po", - "type": "string" - }, - "type": "primitive" - }, - "count_reopens": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - }, - "count_assignments": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - }, - "count_conversation_parts": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - } - }, - "type": "object" - }, "conversation_parts": { "properties": { "type": { @@ -58940,100 +54012,6 @@ "type": "boolean" }, "type": "primitive" - }, - "ai_agent": { - "properties": { - "source_type": { - "value": "essentials_plan_setup", - "type": "enum" - }, - "source_title": { - "value": { - "value": "My AI Workflow", - "type": "string" - }, - "type": "primitive" - }, - "last_answer_type": { - "value": { - "value": "ai_answer", - "type": "string" - }, - "type": "primitive" - }, - "resolution_state": { - "value": { - "value": "assumed_resolution", - "type": "string" - }, - "type": "primitive" - }, - "rating": { - "value": { - "value": 4, - "type": "int" - }, - "type": "primitive" - }, - "rating_remark": { - "value": { - "value": "Very helpful!", - "type": "string" - }, - "type": "primitive" - }, - "content_sources": { - "properties": { - "type": { - "value": { - "value": "content_source.list", - "type": "string" - }, - "type": "literal" - }, - "total_count": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - }, - "content_sources": { - "value": [ - { - "properties": { - "url": { - "value": { - "value": "/fin-ai-agent/content?content=content_snippet&id=3234924", - "type": "string" - }, - "type": "primitive" - }, - "title": { - "value": { - "value": "My internal content snippet", - "type": "string" - }, - "type": "primitive" - }, - "locale": { - "value": { - "value": "en", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - } - }, - "type": "object" } }, "type": "object" @@ -59137,20 +54115,6 @@ }, "type": "primitive" }, - "waiting_since": { - "value": { - "value": 1663597260, - "type": "int" - }, - "type": "primitive" - }, - "snoozed_until": { - "value": { - "value": 1663597260, - "type": "int" - }, - "type": "primitive" - }, "open": { "value": { "value": true, @@ -59173,20 +54137,6 @@ "value": "not_priority", "type": "enum" }, - "admin_assignee_id": { - "value": { - "value": 0, - "type": "int" - }, - "type": "primitive" - }, - "team_assignee_id": { - "value": { - "value": "5017691", - "type": "string" - }, - "type": "primitive" - }, "tags": { "properties": { "type": { @@ -59237,77 +54187,6 @@ }, "type": "object" }, - "conversation_rating": { - "properties": { - "rating": { - "value": { - "value": 5, - "type": "int" - }, - "type": "primitive" - }, - "remark": { - "value": { - "value": "", - "type": "string" - }, - "type": "primitive" - }, - "created_at": { - "value": { - "value": 1671028894, - "type": "int" - }, - "type": "primitive" - }, - "contact": { - "properties": { - "type": { - "value": { - "value": "contact", - "type": "string" - }, - "type": "literal" - }, - "id": { - "value": { - "value": "5ba682d23d7cf92bef87bfd4", - "type": "string" - }, - "type": "primitive" - }, - "external_id": { - "value": { - "value": "f3b87a2e09d514c6c2e79b9a", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "teammate": { - "properties": { - "type": { - "value": { - "value": "contact", - "type": "string" - }, - "type": "primitive" - }, - "id": { - "value": { - "value": "1a2b3c", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - }, - "type": "object" - }, "source": { "properties": { "type": { @@ -59437,13 +54316,6 @@ ], "type": "array" }, - "url": { - "value": { - "value": "url", - "type": "string" - }, - "type": "primitive" - }, "redacted": { "value": { "value": false, @@ -59488,249 +54360,33 @@ }, "type": "primitive" } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "teammates": { - "properties": { - "type": { - "value": { - "value": "admin.list", - "type": "string" - }, - "type": "primitive" - }, - "teammates": { - "value": [ - { - "properties": { - "type": { - "value": { - "value": "contact", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "custom_attributes": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - } - } - ], - "type": "map" - }, - "first_contact_reply": { - "properties": { - "created_at": { - "value": { - "value": 1663597223, - "type": "int" - }, - "type": "primitive" - }, - "type": { - "value": { - "value": "conversation", - "type": "string" - }, - "type": "primitive" - }, - "url": { - "value": { - "value": "https://developers.intercom.com/", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "sla_applied": { - "properties": { - "type": { - "value": { - "value": "conversation_sla_summary", - "type": "string" - }, - "type": "primitive" - }, - "sla_name": { - "value": { - "value": "", - "type": "string" - }, - "type": "primitive" - }, - "sla_status": { - "value": "hit", - "type": "enum" - } - }, - "type": "object" - }, - "statistics": { - "properties": { - "type": { - "value": { - "value": "conversation_statistics", - "type": "string" - }, - "type": "primitive" - }, - "time_to_assignment": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "time_to_admin_reply": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "time_to_first_close": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "time_to_last_close": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "median_time_to_reply": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "first_contact_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "first_assignment_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "first_admin_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "first_close_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_assignment_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_assignment_admin_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_contact_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_admin_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_close_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_closed_by_id": { - "value": { - "value": "c3po", - "type": "string" - }, - "type": "primitive" - }, - "count_reopens": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - }, - "count_assignments": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - }, - "count_conversation_parts": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" + }, + "type": "object" + } + ], + "type": "array" } }, "type": "object" }, + "custom_attributes": { + "value": [ + { + "key": { + "value": "key", + "type": "string" + }, + "value": { + "value": { + "value": "value", + "type": "string" + }, + "type": "primitive" + } + } + ], + "type": "map" + }, "conversation_parts": { "properties": { "type": { @@ -59950,100 +54606,6 @@ "type": "boolean" }, "type": "primitive" - }, - "ai_agent": { - "properties": { - "source_type": { - "value": "essentials_plan_setup", - "type": "enum" - }, - "source_title": { - "value": { - "value": "My AI Workflow", - "type": "string" - }, - "type": "primitive" - }, - "last_answer_type": { - "value": { - "value": "ai_answer", - "type": "string" - }, - "type": "primitive" - }, - "resolution_state": { - "value": { - "value": "assumed_resolution", - "type": "string" - }, - "type": "primitive" - }, - "rating": { - "value": { - "value": 4, - "type": "int" - }, - "type": "primitive" - }, - "rating_remark": { - "value": { - "value": "Very helpful!", - "type": "string" - }, - "type": "primitive" - }, - "content_sources": { - "properties": { - "type": { - "value": { - "value": "content_source.list", - "type": "string" - }, - "type": "literal" - }, - "total_count": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - }, - "content_sources": { - "value": [ - { - "properties": { - "url": { - "value": { - "value": "/fin-ai-agent/content?content=content_snippet&id=3234924", - "type": "string" - }, - "type": "primitive" - }, - "title": { - "value": { - "value": "My internal content snippet", - "type": "string" - }, - "type": "primitive" - }, - "locale": { - "value": { - "value": "en", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - } - }, - "type": "object" } }, "type": "object" @@ -60126,13 +54688,6 @@ }, "type": "primitive" }, - "title": { - "value": { - "value": "Conversation Title", - "type": "string" - }, - "type": "primitive" - }, "created_at": { "value": { "value": 1719492874, @@ -60147,20 +54702,6 @@ }, "type": "primitive" }, - "waiting_since": { - "value": { - "value": 1663597260, - "type": "int" - }, - "type": "primitive" - }, - "snoozed_until": { - "value": { - "value": 1663597260, - "type": "int" - }, - "type": "primitive" - }, "open": { "value": { "value": true, @@ -60190,13 +54731,6 @@ }, "type": "primitive" }, - "team_assignee_id": { - "value": { - "value": "5017691", - "type": "string" - }, - "type": "primitive" - }, "tags": { "properties": { "type": { @@ -60247,77 +54781,6 @@ }, "type": "object" }, - "conversation_rating": { - "properties": { - "rating": { - "value": { - "value": 5, - "type": "int" - }, - "type": "primitive" - }, - "remark": { - "value": { - "value": "", - "type": "string" - }, - "type": "primitive" - }, - "created_at": { - "value": { - "value": 1671028894, - "type": "int" - }, - "type": "primitive" - }, - "contact": { - "properties": { - "type": { - "value": { - "value": "contact", - "type": "string" - }, - "type": "literal" - }, - "id": { - "value": { - "value": "5ba682d23d7cf92bef87bfd4", - "type": "string" - }, - "type": "primitive" - }, - "external_id": { - "value": { - "value": "f3b87a2e09d514c6c2e79b9a", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "teammate": { - "properties": { - "type": { - "value": { - "value": "contact", - "type": "string" - }, - "type": "primitive" - }, - "id": { - "value": { - "value": "1a2b3c", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - }, - "type": "object" - }, "source": { "properties": { "type": { @@ -60447,13 +54910,6 @@ ], "type": "array" }, - "url": { - "value": { - "value": "url", - "type": "string" - }, - "type": "primitive" - }, "redacted": { "value": { "value": false, @@ -60507,35 +54963,6 @@ }, "type": "object" }, - "teammates": { - "properties": { - "type": { - "value": { - "value": "admin.list", - "type": "string" - }, - "type": "primitive" - }, - "teammates": { - "value": [ - { - "properties": { - "type": { - "value": { - "value": "contact", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, "custom_attributes": { "value": [ { @@ -60554,193 +54981,6 @@ ], "type": "map" }, - "first_contact_reply": { - "properties": { - "created_at": { - "value": { - "value": 1663597223, - "type": "int" - }, - "type": "primitive" - }, - "type": { - "value": { - "value": "conversation", - "type": "string" - }, - "type": "primitive" - }, - "url": { - "value": { - "value": "https://developers.intercom.com/", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "sla_applied": { - "properties": { - "type": { - "value": { - "value": "conversation_sla_summary", - "type": "string" - }, - "type": "primitive" - }, - "sla_name": { - "value": { - "value": "", - "type": "string" - }, - "type": "primitive" - }, - "sla_status": { - "value": "hit", - "type": "enum" - } - }, - "type": "object" - }, - "statistics": { - "properties": { - "type": { - "value": { - "value": "conversation_statistics", - "type": "string" - }, - "type": "primitive" - }, - "time_to_assignment": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "time_to_admin_reply": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "time_to_first_close": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "time_to_last_close": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "median_time_to_reply": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "first_contact_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "first_assignment_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "first_admin_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "first_close_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_assignment_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_assignment_admin_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_contact_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_admin_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_close_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_closed_by_id": { - "value": { - "value": "c3po", - "type": "string" - }, - "type": "primitive" - }, - "count_reopens": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - }, - "count_assignments": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - }, - "count_conversation_parts": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - } - }, - "type": "object" - }, "conversation_parts": { "properties": { "type": { @@ -60926,153 +55166,59 @@ "type": "int" }, "type": "primitive" - } - }, - "type": "object" - }, - "linked_objects": { - "properties": { - "type": { - "value": { - "value": "list", - "type": "string" - }, - "type": "literal" - }, - "total_count": { - "value": { - "value": 0, - "type": "int" - }, - "type": "primitive" - }, - "has_more": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - }, - "data": { - "value": [ - { - "properties": { - "id": { - "value": { - "value": "7583", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "ai_agent_participated": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - }, - "ai_agent": { - "properties": { - "source_type": { - "value": "essentials_plan_setup", - "type": "enum" - }, - "source_title": { - "value": { - "value": "My AI Workflow", - "type": "string" - }, - "type": "primitive" - }, - "last_answer_type": { - "value": { - "value": "ai_answer", - "type": "string" - }, - "type": "primitive" - }, - "resolution_state": { + } + }, + "type": "object" + }, + "linked_objects": { + "properties": { + "type": { "value": { - "value": "assumed_resolution", + "value": "list", "type": "string" }, - "type": "primitive" + "type": "literal" }, - "rating": { + "total_count": { "value": { - "value": 4, + "value": 0, "type": "int" }, "type": "primitive" }, - "rating_remark": { + "has_more": { "value": { - "value": "Very helpful!", - "type": "string" + "value": false, + "type": "boolean" }, "type": "primitive" }, - "content_sources": { - "properties": { - "type": { - "value": { - "value": "content_source.list", - "type": "string" - }, - "type": "literal" - }, - "total_count": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - }, - "content_sources": { - "value": [ - { - "properties": { - "url": { - "value": { - "value": "/fin-ai-agent/content?content=content_snippet&id=3234924", - "type": "string" - }, - "type": "primitive" - }, - "title": { - "value": { - "value": "My internal content snippet", - "type": "string" - }, - "type": "primitive" - }, - "locale": { - "value": { - "value": "en", - "type": "string" - }, - "type": "primitive" - } + "data": { + "value": [ + { + "properties": { + "id": { + "value": { + "value": "7583", + "type": "string" }, - "type": "object" + "type": "primitive" } - ], - "type": "array" + }, + "type": "object" } - }, - "type": "object" + ], + "type": "array" } }, "type": "object" + }, + "ai_agent_participated": { + "value": { + "value": false, + "type": "boolean" + }, + "type": "primitive" } }, "type": "object" @@ -61155,13 +55301,6 @@ }, "type": "primitive" }, - "title": { - "value": { - "value": "Conversation Title", - "type": "string" - }, - "type": "primitive" - }, "created_at": { "value": { "value": 1719492862, @@ -61176,20 +55315,6 @@ }, "type": "primitive" }, - "waiting_since": { - "value": { - "value": 1663597260, - "type": "int" - }, - "type": "primitive" - }, - "snoozed_until": { - "value": { - "value": 1663597260, - "type": "int" - }, - "type": "primitive" - }, "open": { "value": { "value": false, @@ -61212,20 +55337,6 @@ "value": "not_priority", "type": "enum" }, - "admin_assignee_id": { - "value": { - "value": 0, - "type": "int" - }, - "type": "primitive" - }, - "team_assignee_id": { - "value": { - "value": "5017691", - "type": "string" - }, - "type": "primitive" - }, "tags": { "properties": { "type": { @@ -61276,77 +55387,6 @@ }, "type": "object" }, - "conversation_rating": { - "properties": { - "rating": { - "value": { - "value": 5, - "type": "int" - }, - "type": "primitive" - }, - "remark": { - "value": { - "value": "", - "type": "string" - }, - "type": "primitive" - }, - "created_at": { - "value": { - "value": 1671028894, - "type": "int" - }, - "type": "primitive" - }, - "contact": { - "properties": { - "type": { - "value": { - "value": "contact", - "type": "string" - }, - "type": "literal" - }, - "id": { - "value": { - "value": "5ba682d23d7cf92bef87bfd4", - "type": "string" - }, - "type": "primitive" - }, - "external_id": { - "value": { - "value": "f3b87a2e09d514c6c2e79b9a", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "teammate": { - "properties": { - "type": { - "value": { - "value": "contact", - "type": "string" - }, - "type": "primitive" - }, - "id": { - "value": { - "value": "1a2b3c", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - }, - "type": "object" - }, "source": { "properties": { "type": { @@ -61476,13 +55516,6 @@ ], "type": "array" }, - "url": { - "value": { - "value": "url", - "type": "string" - }, - "type": "primitive" - }, "redacted": { "value": { "value": false, @@ -61536,35 +55569,6 @@ }, "type": "object" }, - "teammates": { - "properties": { - "type": { - "value": { - "value": "admin.list", - "type": "string" - }, - "type": "primitive" - }, - "teammates": { - "value": [ - { - "properties": { - "type": { - "value": { - "value": "contact", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, "custom_attributes": { "value": [ { @@ -61583,193 +55587,6 @@ ], "type": "map" }, - "first_contact_reply": { - "properties": { - "created_at": { - "value": { - "value": 1663597223, - "type": "int" - }, - "type": "primitive" - }, - "type": { - "value": { - "value": "conversation", - "type": "string" - }, - "type": "primitive" - }, - "url": { - "value": { - "value": "https://developers.intercom.com/", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "sla_applied": { - "properties": { - "type": { - "value": { - "value": "conversation_sla_summary", - "type": "string" - }, - "type": "primitive" - }, - "sla_name": { - "value": { - "value": "", - "type": "string" - }, - "type": "primitive" - }, - "sla_status": { - "value": "hit", - "type": "enum" - } - }, - "type": "object" - }, - "statistics": { - "properties": { - "type": { - "value": { - "value": "conversation_statistics", - "type": "string" - }, - "type": "primitive" - }, - "time_to_assignment": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "time_to_admin_reply": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "time_to_first_close": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "time_to_last_close": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "median_time_to_reply": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "first_contact_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "first_assignment_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "first_admin_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "first_close_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_assignment_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_assignment_admin_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_contact_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_admin_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_close_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_closed_by_id": { - "value": { - "value": "c3po", - "type": "string" - }, - "type": "primitive" - }, - "count_reopens": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - }, - "count_assignments": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - }, - "count_conversation_parts": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - } - }, - "type": "object" - }, "conversation_parts": { "properties": { "type": { @@ -61996,100 +55813,6 @@ "type": "boolean" }, "type": "primitive" - }, - "ai_agent": { - "properties": { - "source_type": { - "value": "essentials_plan_setup", - "type": "enum" - }, - "source_title": { - "value": { - "value": "My AI Workflow", - "type": "string" - }, - "type": "primitive" - }, - "last_answer_type": { - "value": { - "value": "ai_answer", - "type": "string" - }, - "type": "primitive" - }, - "resolution_state": { - "value": { - "value": "assumed_resolution", - "type": "string" - }, - "type": "primitive" - }, - "rating": { - "value": { - "value": 4, - "type": "int" - }, - "type": "primitive" - }, - "rating_remark": { - "value": { - "value": "Very helpful!", - "type": "string" - }, - "type": "primitive" - }, - "content_sources": { - "properties": { - "type": { - "value": { - "value": "content_source.list", - "type": "string" - }, - "type": "literal" - }, - "total_count": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - }, - "content_sources": { - "value": [ - { - "properties": { - "url": { - "value": { - "value": "/fin-ai-agent/content?content=content_snippet&id=3234924", - "type": "string" - }, - "type": "primitive" - }, - "title": { - "value": { - "value": "My internal content snippet", - "type": "string" - }, - "type": "primitive" - }, - "locale": { - "value": { - "value": "en", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - } - }, - "type": "object" } }, "type": "object" @@ -62592,13 +56315,6 @@ }, "type": "primitive" }, - "title": { - "value": { - "value": "Conversation Title", - "type": "string" - }, - "type": "primitive" - }, "created_at": { "value": { "value": 1719492880, @@ -62613,20 +56329,6 @@ }, "type": "primitive" }, - "waiting_since": { - "value": { - "value": 1663597260, - "type": "int" - }, - "type": "primitive" - }, - "snoozed_until": { - "value": { - "value": 1663597260, - "type": "int" - }, - "type": "primitive" - }, "open": { "value": { "value": false, @@ -62649,20 +56351,6 @@ "value": "not_priority", "type": "enum" }, - "admin_assignee_id": { - "value": { - "value": 0, - "type": "int" - }, - "type": "primitive" - }, - "team_assignee_id": { - "value": { - "value": "5017691", - "type": "string" - }, - "type": "primitive" - }, "tags": { "properties": { "type": { @@ -62713,77 +56401,6 @@ }, "type": "object" }, - "conversation_rating": { - "properties": { - "rating": { - "value": { - "value": 5, - "type": "int" - }, - "type": "primitive" - }, - "remark": { - "value": { - "value": "", - "type": "string" - }, - "type": "primitive" - }, - "created_at": { - "value": { - "value": 1671028894, - "type": "int" - }, - "type": "primitive" - }, - "contact": { - "properties": { - "type": { - "value": { - "value": "contact", - "type": "string" - }, - "type": "literal" - }, - "id": { - "value": { - "value": "5ba682d23d7cf92bef87bfd4", - "type": "string" - }, - "type": "primitive" - }, - "external_id": { - "value": { - "value": "f3b87a2e09d514c6c2e79b9a", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "teammate": { - "properties": { - "type": { - "value": { - "value": "contact", - "type": "string" - }, - "type": "primitive" - }, - "id": { - "value": { - "value": "1a2b3c", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - }, - "type": "object" - }, "source": { "properties": { "type": { @@ -62913,13 +56530,6 @@ ], "type": "array" }, - "url": { - "value": { - "value": "url", - "type": "string" - }, - "type": "primitive" - }, "redacted": { "value": { "value": false, @@ -62973,35 +56583,6 @@ }, "type": "object" }, - "teammates": { - "properties": { - "type": { - "value": { - "value": "admin.list", - "type": "string" - }, - "type": "primitive" - }, - "teammates": { - "value": [ - { - "properties": { - "type": { - "value": { - "value": "contact", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, "custom_attributes": { "value": [ { @@ -63020,193 +56601,6 @@ ], "type": "map" }, - "first_contact_reply": { - "properties": { - "created_at": { - "value": { - "value": 1663597223, - "type": "int" - }, - "type": "primitive" - }, - "type": { - "value": { - "value": "conversation", - "type": "string" - }, - "type": "primitive" - }, - "url": { - "value": { - "value": "https://developers.intercom.com/", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "sla_applied": { - "properties": { - "type": { - "value": { - "value": "conversation_sla_summary", - "type": "string" - }, - "type": "primitive" - }, - "sla_name": { - "value": { - "value": "", - "type": "string" - }, - "type": "primitive" - }, - "sla_status": { - "value": "hit", - "type": "enum" - } - }, - "type": "object" - }, - "statistics": { - "properties": { - "type": { - "value": { - "value": "conversation_statistics", - "type": "string" - }, - "type": "primitive" - }, - "time_to_assignment": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "time_to_admin_reply": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "time_to_first_close": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "time_to_last_close": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "median_time_to_reply": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "first_contact_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "first_assignment_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "first_admin_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "first_close_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_assignment_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_assignment_admin_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_contact_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_admin_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_close_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_closed_by_id": { - "value": { - "value": "c3po", - "type": "string" - }, - "type": "primitive" - }, - "count_reopens": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - }, - "count_assignments": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - }, - "count_conversation_parts": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - } - }, - "type": "object" - }, "conversation_parts": { "properties": { "type": { @@ -63438,100 +56832,6 @@ "type": "boolean" }, "type": "primitive" - }, - "ai_agent": { - "properties": { - "source_type": { - "value": "essentials_plan_setup", - "type": "enum" - }, - "source_title": { - "value": { - "value": "My AI Workflow", - "type": "string" - }, - "type": "primitive" - }, - "last_answer_type": { - "value": { - "value": "ai_answer", - "type": "string" - }, - "type": "primitive" - }, - "resolution_state": { - "value": { - "value": "assumed_resolution", - "type": "string" - }, - "type": "primitive" - }, - "rating": { - "value": { - "value": 4, - "type": "int" - }, - "type": "primitive" - }, - "rating_remark": { - "value": { - "value": "Very helpful!", - "type": "string" - }, - "type": "primitive" - }, - "content_sources": { - "properties": { - "type": { - "value": { - "value": "content_source.list", - "type": "string" - }, - "type": "literal" - }, - "total_count": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - }, - "content_sources": { - "value": [ - { - "properties": { - "url": { - "value": { - "value": "/fin-ai-agent/content?content=content_snippet&id=3234924", - "type": "string" - }, - "type": "primitive" - }, - "title": { - "value": { - "value": "My internal content snippet", - "type": "string" - }, - "type": "primitive" - }, - "locale": { - "value": { - "value": "en", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - } - }, - "type": "object" } }, "type": "object" @@ -70336,13 +63636,6 @@ }, "type": "primitive" }, - "title": { - "value": { - "value": "Conversation Title", - "type": "string" - }, - "type": "primitive" - }, "created_at": { "value": { "value": 1719492938, @@ -70364,13 +63657,6 @@ }, "type": "primitive" }, - "snoozed_until": { - "value": { - "value": 1663597260, - "type": "int" - }, - "type": "primitive" - }, "open": { "value": { "value": true, @@ -70393,20 +63679,6 @@ "value": "not_priority", "type": "enum" }, - "admin_assignee_id": { - "value": { - "value": 0, - "type": "int" - }, - "type": "primitive" - }, - "team_assignee_id": { - "value": { - "value": "5017691", - "type": "string" - }, - "type": "primitive" - }, "tags": { "properties": { "type": { @@ -70457,77 +63729,6 @@ }, "type": "object" }, - "conversation_rating": { - "properties": { - "rating": { - "value": { - "value": 5, - "type": "int" - }, - "type": "primitive" - }, - "remark": { - "value": { - "value": "", - "type": "string" - }, - "type": "primitive" - }, - "created_at": { - "value": { - "value": 1671028894, - "type": "int" - }, - "type": "primitive" - }, - "contact": { - "properties": { - "type": { - "value": { - "value": "contact", - "type": "string" - }, - "type": "literal" - }, - "id": { - "value": { - "value": "5ba682d23d7cf92bef87bfd4", - "type": "string" - }, - "type": "primitive" - }, - "external_id": { - "value": { - "value": "f3b87a2e09d514c6c2e79b9a", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "teammate": { - "properties": { - "type": { - "value": { - "value": "contact", - "type": "string" - }, - "type": "primitive" - }, - "id": { - "value": { - "value": "1a2b3c", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - }, - "type": "object" - }, "source": { "properties": { "type": { @@ -70634,317 +63835,113 @@ "value": { "value": 100, "type": "int" - }, - "type": "primitive" - }, - "width": { - "value": { - "value": 100, - "type": "int" - }, - "type": "primitive" - }, - "height": { - "value": { - "value": 100, - "type": "int" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "url": { - "value": { - "value": "url", - "type": "string" - }, - "type": "primitive" - }, - "redacted": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "contacts": { - "properties": { - "type": { - "value": { - "value": "contact.list", - "type": "string" - }, - "type": "literal" - }, - "contacts": { - "value": [ - { - "properties": { - "type": { - "value": { - "value": "contact", - "type": "string" - }, - "type": "literal" - }, - "id": { - "value": { - "value": "667d614a8a68186f43bafe42", - "type": "string" - }, - "type": "primitive" - }, - "external_id": { - "value": { - "value": "70", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "teammates": { - "properties": { - "type": { - "value": { - "value": "admin.list", - "type": "string" - }, - "type": "primitive" - }, - "teammates": { - "value": [ - { - "properties": { - "type": { - "value": { - "value": "contact", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "custom_attributes": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - } - } - ], - "type": "map" - }, - "first_contact_reply": { - "properties": { - "created_at": { - "value": { - "value": 1719492939, - "type": "int" - }, - "type": "primitive" - }, - "type": { - "value": { - "value": "conversation", - "type": "string" - }, - "type": "primitive" - }, - "url": { - "value": { - "value": "https://developers.intercom.com/", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "sla_applied": { - "properties": { - "type": { - "value": { - "value": "conversation_sla_summary", - "type": "string" - }, - "type": "primitive" - }, - "sla_name": { - "value": { - "value": "", - "type": "string" - }, - "type": "primitive" - }, - "sla_status": { - "value": "hit", - "type": "enum" - } - }, - "type": "object" - }, - "statistics": { - "properties": { - "type": { - "value": { - "value": "conversation_statistics", - "type": "string" - }, - "type": "primitive" - }, - "time_to_assignment": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "time_to_admin_reply": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "time_to_first_close": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "time_to_last_close": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "median_time_to_reply": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "first_contact_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "first_assignment_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "first_admin_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "first_close_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_assignment_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_assignment_admin_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_contact_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" + }, + "type": "primitive" + }, + "width": { + "value": { + "value": 100, + "type": "int" + }, + "type": "primitive" + }, + "height": { + "value": { + "value": 100, + "type": "int" + }, + "type": "primitive" + } + }, + "type": "object" + } + ], + "type": "array" }, - "last_admin_reply_at": { + "redacted": { "value": { - "value": 1663597233, - "type": "int" + "value": false, + "type": "boolean" }, "type": "primitive" - }, - "last_close_at": { + } + }, + "type": "object" + }, + "contacts": { + "properties": { + "type": { "value": { - "value": 1663597233, - "type": "int" + "value": "contact.list", + "type": "string" }, - "type": "primitive" + "type": "literal" }, - "last_closed_by_id": { - "value": { - "value": "c3po", + "contacts": { + "value": [ + { + "properties": { + "type": { + "value": { + "value": "contact", + "type": "string" + }, + "type": "literal" + }, + "id": { + "value": { + "value": "667d614a8a68186f43bafe42", + "type": "string" + }, + "type": "primitive" + }, + "external_id": { + "value": { + "value": "70", + "type": "string" + }, + "type": "primitive" + } + }, + "type": "object" + } + ], + "type": "array" + } + }, + "type": "object" + }, + "custom_attributes": { + "value": [ + { + "key": { + "value": "key", "type": "string" }, - "type": "primitive" - }, - "count_reopens": { "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - }, - "count_assignments": { + "value": { + "value": "value", + "type": "string" + }, + "type": "primitive" + } + } + ], + "type": "map" + }, + "first_contact_reply": { + "properties": { + "created_at": { "value": { - "value": 1, + "value": 1719492939, "type": "int" }, "type": "primitive" }, - "count_conversation_parts": { + "type": { "value": { - "value": 1, - "type": "int" + "value": "conversation", + "type": "string" }, "type": "primitive" } @@ -71177,100 +64174,6 @@ "type": "boolean" }, "type": "primitive" - }, - "ai_agent": { - "properties": { - "source_type": { - "value": "essentials_plan_setup", - "type": "enum" - }, - "source_title": { - "value": { - "value": "My AI Workflow", - "type": "string" - }, - "type": "primitive" - }, - "last_answer_type": { - "value": { - "value": "ai_answer", - "type": "string" - }, - "type": "primitive" - }, - "resolution_state": { - "value": { - "value": "assumed_resolution", - "type": "string" - }, - "type": "primitive" - }, - "rating": { - "value": { - "value": 4, - "type": "int" - }, - "type": "primitive" - }, - "rating_remark": { - "value": { - "value": "Very helpful!", - "type": "string" - }, - "type": "primitive" - }, - "content_sources": { - "properties": { - "type": { - "value": { - "value": "content_source.list", - "type": "string" - }, - "type": "literal" - }, - "total_count": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - }, - "content_sources": { - "value": [ - { - "properties": { - "url": { - "value": { - "value": "/fin-ai-agent/content?content=content_snippet&id=3234924", - "type": "string" - }, - "type": "primitive" - }, - "title": { - "value": { - "value": "My internal content snippet", - "type": "string" - }, - "type": "primitive" - }, - "locale": { - "value": { - "value": "en", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - } - }, - "type": "object" } }, "type": "object" @@ -71331,13 +64234,6 @@ }, "type": "primitive" }, - "title": { - "value": { - "value": "Conversation Title", - "type": "string" - }, - "type": "primitive" - }, "created_at": { "value": { "value": 1719492938, @@ -71359,13 +64255,6 @@ }, "type": "primitive" }, - "snoozed_until": { - "value": { - "value": 1663597260, - "type": "int" - }, - "type": "primitive" - }, "open": { "value": { "value": true, @@ -71388,20 +64277,6 @@ "value": "not_priority", "type": "enum" }, - "admin_assignee_id": { - "value": { - "value": 0, - "type": "int" - }, - "type": "primitive" - }, - "team_assignee_id": { - "value": { - "value": "5017691", - "type": "string" - }, - "type": "primitive" - }, "tags": { "properties": { "type": { @@ -71452,77 +64327,6 @@ }, "type": "object" }, - "conversation_rating": { - "properties": { - "rating": { - "value": { - "value": 5, - "type": "int" - }, - "type": "primitive" - }, - "remark": { - "value": { - "value": "", - "type": "string" - }, - "type": "primitive" - }, - "created_at": { - "value": { - "value": 1671028894, - "type": "int" - }, - "type": "primitive" - }, - "contact": { - "properties": { - "type": { - "value": { - "value": "contact", - "type": "string" - }, - "type": "literal" - }, - "id": { - "value": { - "value": "5ba682d23d7cf92bef87bfd4", - "type": "string" - }, - "type": "primitive" - }, - "external_id": { - "value": { - "value": "f3b87a2e09d514c6c2e79b9a", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "teammate": { - "properties": { - "type": { - "value": { - "value": "contact", - "type": "string" - }, - "type": "primitive" - }, - "id": { - "value": { - "value": "1a2b3c", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - }, - "type": "object" - }, "source": { "properties": { "type": { @@ -71652,13 +64456,6 @@ ], "type": "array" }, - "url": { - "value": { - "value": "url", - "type": "string" - }, - "type": "primitive" - }, "redacted": { "value": { "value": false, @@ -71712,35 +64509,6 @@ }, "type": "object" }, - "teammates": { - "properties": { - "type": { - "value": { - "value": "admin.list", - "type": "string" - }, - "type": "primitive" - }, - "teammates": { - "value": [ - { - "properties": { - "type": { - "value": { - "value": "contact", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - }, "custom_attributes": { "value": [ { @@ -71774,174 +64542,6 @@ "type": "string" }, "type": "primitive" - }, - "url": { - "value": { - "value": "https://developers.intercom.com/", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "sla_applied": { - "properties": { - "type": { - "value": { - "value": "conversation_sla_summary", - "type": "string" - }, - "type": "primitive" - }, - "sla_name": { - "value": { - "value": "", - "type": "string" - }, - "type": "primitive" - }, - "sla_status": { - "value": "hit", - "type": "enum" - } - }, - "type": "object" - }, - "statistics": { - "properties": { - "type": { - "value": { - "value": "conversation_statistics", - "type": "string" - }, - "type": "primitive" - }, - "time_to_assignment": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "time_to_admin_reply": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "time_to_first_close": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "time_to_last_close": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "median_time_to_reply": { - "value": { - "value": 2310, - "type": "int" - }, - "type": "primitive" - }, - "first_contact_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "first_assignment_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "first_admin_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "first_close_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_assignment_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_assignment_admin_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_contact_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_admin_reply_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_close_at": { - "value": { - "value": 1663597233, - "type": "int" - }, - "type": "primitive" - }, - "last_closed_by_id": { - "value": { - "value": "c3po", - "type": "string" - }, - "type": "primitive" - }, - "count_reopens": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - }, - "count_assignments": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - }, - "count_conversation_parts": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" } }, "type": "object" @@ -72172,100 +64772,6 @@ "type": "boolean" }, "type": "primitive" - }, - "ai_agent": { - "properties": { - "source_type": { - "value": "essentials_plan_setup", - "type": "enum" - }, - "source_title": { - "value": { - "value": "My AI Workflow", - "type": "string" - }, - "type": "primitive" - }, - "last_answer_type": { - "value": { - "value": "ai_answer", - "type": "string" - }, - "type": "primitive" - }, - "resolution_state": { - "value": { - "value": "assumed_resolution", - "type": "string" - }, - "type": "primitive" - }, - "rating": { - "value": { - "value": 4, - "type": "int" - }, - "type": "primitive" - }, - "rating_remark": { - "value": { - "value": "Very helpful!", - "type": "string" - }, - "type": "primitive" - }, - "content_sources": { - "properties": { - "type": { - "value": { - "value": "content_source.list", - "type": "string" - }, - "type": "literal" - }, - "total_count": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - }, - "content_sources": { - "value": [ - { - "properties": { - "url": { - "value": { - "value": "/fin-ai-agent/content?content=content_snippet&id=3234924", - "type": "string" - }, - "type": "primitive" - }, - "title": { - "value": { - "value": "My internal content snippet", - "type": "string" - }, - "type": "primitive" - }, - "locale": { - "value": { - "value": "en", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - } - }, - "type": "object" - } - }, - "type": "object" } }, "type": "object" @@ -83085,13 +75591,6 @@ ], "type": "array" }, - "cover_image_url": { - "value": { - "value": "https://example.com/cover.jpg", - "type": "string" - }, - "type": "primitive" - }, "reactions": { "value": [ { @@ -83535,13 +76034,6 @@ ], "type": "array" }, - "cover_image_url": { - "value": { - "value": "https://example.com/cover.jpg", - "type": "string" - }, - "type": "primitive" - }, "reactions": { "value": [ { @@ -84080,207 +76572,193 @@ ], "type": "array" }, - "cover_image_url": { - "value": { - "value": "https://example.com/cover.jpg", - "type": "string" - }, - "type": "primitive" - }, - "reactions": { - "value": [ - { - "value": { - "value": "😝", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "😂", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "deliver_silently": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" - }, - "created_at": { - "value": { - "value": 1719492982, - "type": "int" - }, - "type": "primitive" - }, - "updated_at": { - "value": { - "value": 1719492982, - "type": "int" - }, - "type": "primitive" - } - }, - "type": "object" - }, - "type": "withoutStreaming" - }, - "codeSamples": [], - "type": "full" - }, - { - "name": "News Item Not Found", - "pathParameters": [ - { - "name": "id", - "value": { - "value": { - "value": 1, - "type": "int" - }, - "type": "primitive" - } - } - ], - "queryParameters": [], - "headers": [], - "request": { - "properties": { - "title": { - "value": { - "value": "Christmas is here!", - "type": "string" - }, - "type": "primitive" - }, - "body": { - "value": { - "value": "

New gifts in store for the jolly season

", - "type": "string" - }, - "type": "primitive" - }, - "sender_id": { - "value": { - "value": 991267748, - "type": "int" - }, - "type": "primitive" - }, - "reactions": { - "value": [ - { - "value": { - "value": "😝", - "type": "string" - }, - "type": "primitive" - }, - { - "value": { - "value": "😂", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - } - }, - "type": "object" - }, - "response": { - "value": { - "properties": { - "id": { - "value": { - "value": "37", - "type": "string" - }, - "type": "primitive" - }, - "workspace_id": { - "value": { - "value": "this_is_an_id508_that_should_be_at_least_", - "type": "string" - }, - "type": "primitive" - }, - "title": { - "value": { - "value": "Christmas is here!", - "type": "string" - }, - "type": "primitive" - }, - "body": { - "value": { - "value": "

New gifts in store for the jolly season

", - "type": "string" - }, - "type": "primitive" - }, - "sender_id": { - "value": { - "value": 991267745, - "type": "int" - }, - "type": "primitive" - }, - "state": { - "value": "live", - "type": "enum" - }, - "newsfeed_assignments": { - "value": [ - { - "properties": { - "newsfeed_id": { - "value": { - "value": 198313, - "type": "int" - }, - "type": "primitive" - }, - "published_at": { - "value": { - "value": 1674917488, - "type": "int" - }, - "type": "primitive" - } - }, - "type": "object" - } - ], - "type": "array" - }, - "labels": { - "value": [ - { - "value": { - "value": "Product Update", - "type": "string" - }, - "type": "primitive" - } - ], - "type": "array" - }, - "cover_image_url": { + "reactions": { + "value": [ + { + "value": { + "value": "😝", + "type": "string" + }, + "type": "primitive" + }, + { + "value": { + "value": "😂", + "type": "string" + }, + "type": "primitive" + } + ], + "type": "array" + }, + "deliver_silently": { + "value": { + "value": false, + "type": "boolean" + }, + "type": "primitive" + }, + "created_at": { + "value": { + "value": 1719492982, + "type": "int" + }, + "type": "primitive" + }, + "updated_at": { + "value": { + "value": 1719492982, + "type": "int" + }, + "type": "primitive" + } + }, + "type": "object" + }, + "type": "withoutStreaming" + }, + "codeSamples": [], + "type": "full" + }, + { + "name": "News Item Not Found", + "pathParameters": [ + { + "name": "id", + "value": { + "value": { + "value": 1, + "type": "int" + }, + "type": "primitive" + } + } + ], + "queryParameters": [], + "headers": [], + "request": { + "properties": { + "title": { + "value": { + "value": "Christmas is here!", + "type": "string" + }, + "type": "primitive" + }, + "body": { + "value": { + "value": "

New gifts in store for the jolly season

", + "type": "string" + }, + "type": "primitive" + }, + "sender_id": { + "value": { + "value": 991267748, + "type": "int" + }, + "type": "primitive" + }, + "reactions": { + "value": [ + { + "value": { + "value": "😝", + "type": "string" + }, + "type": "primitive" + }, + { + "value": { + "value": "😂", + "type": "string" + }, + "type": "primitive" + } + ], + "type": "array" + } + }, + "type": "object" + }, + "response": { + "value": { + "properties": { + "id": { + "value": { + "value": "37", + "type": "string" + }, + "type": "primitive" + }, + "workspace_id": { + "value": { + "value": "this_is_an_id508_that_should_be_at_least_", + "type": "string" + }, + "type": "primitive" + }, + "title": { "value": { - "value": "https://example.com/cover.jpg", + "value": "Christmas is here!", "type": "string" }, "type": "primitive" }, + "body": { + "value": { + "value": "

New gifts in store for the jolly season

", + "type": "string" + }, + "type": "primitive" + }, + "sender_id": { + "value": { + "value": 991267745, + "type": "int" + }, + "type": "primitive" + }, + "state": { + "value": "live", + "type": "enum" + }, + "newsfeed_assignments": { + "value": [ + { + "properties": { + "newsfeed_id": { + "value": { + "value": 198313, + "type": "int" + }, + "type": "primitive" + }, + "published_at": { + "value": { + "value": 1674917488, + "type": "int" + }, + "type": "primitive" + } + }, + "type": "object" + } + ], + "type": "array" + }, + "labels": { + "value": [ + { + "value": { + "value": "Product Update", + "type": "string" + }, + "type": "primitive" + } + ], + "type": "array" + }, "reactions": { "value": [ { @@ -102681,27 +95159,6 @@ }, "type": "primitive" }, - "phone": { - "value": { - "value": "555-555-5555", - "type": "string" - }, - "type": "primitive" - }, - "name": { - "value": { - "value": "Jane Doe", - "type": "string" - }, - "type": "primitive" - }, - "pseudonym": { - "value": { - "value": "Red Duck from Dublin", - "type": "string" - }, - "type": "primitive" - }, "avatar": { "properties": { "type": { @@ -102710,13 +95167,6 @@ "type": "string" }, "type": "primitive" - }, - "image_url": { - "value": { - "value": "https://example.com/avatar.png", - "type": "string" - }, - "type": "primitive" } }, "type": "object" @@ -103019,13 +95469,6 @@ }, "type": "object" }, - "owner_id": { - "value": { - "value": "5169261", - "type": "string" - }, - "type": "primitive" - }, "unsubscribed_from_emails": { "value": { "value": false, @@ -103124,55 +95567,6 @@ } ], "type": "map" - }, - "referrer": { - "value": { - "value": "https://www.google.com/", - "type": "string" - }, - "type": "primitive" - }, - "utm_campaign": { - "value": { - "value": "intercom-link", - "type": "string" - }, - "type": "primitive" - }, - "utm_content": { - "value": { - "value": "banner", - "type": "string" - }, - "type": "primitive" - }, - "utm_medium": { - "value": { - "value": "email", - "type": "string" - }, - "type": "primitive" - }, - "utm_source": { - "value": { - "value": "Intercom", - "type": "string" - }, - "type": "primitive" - }, - "utm_term": { - "value": { - "value": "messenger", - "type": "string" - }, - "type": "primitive" - }, - "do_not_track": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" } }, "type": "object" @@ -103601,13 +95995,6 @@ }, "type": "primitive" }, - "phone": { - "value": { - "value": "555-555-5555", - "type": "string" - }, - "type": "primitive" - }, "name": { "value": { "value": "Gareth Bale", @@ -103939,13 +96326,6 @@ }, "type": "object" }, - "owner_id": { - "value": { - "value": "5169261", - "type": "string" - }, - "type": "primitive" - }, "unsubscribed_from_emails": { "value": { "value": false, @@ -104044,55 +96424,6 @@ } ], "type": "map" - }, - "referrer": { - "value": { - "value": "https://www.google.com/", - "type": "string" - }, - "type": "primitive" - }, - "utm_campaign": { - "value": { - "value": "intercom-link", - "type": "string" - }, - "type": "primitive" - }, - "utm_content": { - "value": { - "value": "banner", - "type": "string" - }, - "type": "primitive" - }, - "utm_medium": { - "value": { - "value": "email", - "type": "string" - }, - "type": "primitive" - }, - "utm_source": { - "value": { - "value": "Intercom", - "type": "string" - }, - "type": "primitive" - }, - "utm_term": { - "value": { - "value": "messenger", - "type": "string" - }, - "type": "primitive" - }, - "do_not_track": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" } }, "type": "object" @@ -104179,13 +96510,6 @@ }, "type": "primitive" }, - "phone": { - "value": { - "value": "555-555-5555", - "type": "string" - }, - "type": "primitive" - }, "name": { "value": { "value": "Gareth Bale", @@ -104517,13 +96841,6 @@ }, "type": "object" }, - "owner_id": { - "value": { - "value": "5169261", - "type": "string" - }, - "type": "primitive" - }, "unsubscribed_from_emails": { "value": { "value": false, @@ -104622,55 +96939,6 @@ } ], "type": "map" - }, - "referrer": { - "value": { - "value": "https://www.google.com/", - "type": "string" - }, - "type": "primitive" - }, - "utm_campaign": { - "value": { - "value": "intercom-link", - "type": "string" - }, - "type": "primitive" - }, - "utm_content": { - "value": { - "value": "banner", - "type": "string" - }, - "type": "primitive" - }, - "utm_medium": { - "value": { - "value": "email", - "type": "string" - }, - "type": "primitive" - }, - "utm_source": { - "value": { - "value": "Intercom", - "type": "string" - }, - "type": "primitive" - }, - "utm_term": { - "value": { - "value": "messenger", - "type": "string" - }, - "type": "primitive" - }, - "do_not_track": { - "value": { - "value": false, - "type": "boolean" - }, - "type": "primitive" } }, "type": "object" @@ -105045,13 +97313,6 @@ }, "type": "primitive" }, - "external_id": { - "value": { - "value": "f3b87a2e09d514c6c2e79b9a", - "type": "string" - }, - "type": "primitive" - }, "workspace_id": { "value": { "value": "this_is_an_id683_that_should_be_at_least_", @@ -105080,13 +97341,6 @@ }, "type": "primitive" }, - "phone": { - "value": { - "value": "+1123456789", - "type": "string" - }, - "type": "primitive" - }, "formatted_phone": { "value": { "value": "+1123456789", @@ -105094,20 +97348,6 @@ }, "type": "primitive" }, - "name": { - "value": { - "value": "John Doe", - "type": "string" - }, - "type": "primitive" - }, - "owner_id": { - "value": { - "value": 123, - "type": "int" - }, - "type": "primitive" - }, "has_hard_bounced": { "value": { "value": false, @@ -105150,160 +97390,6 @@ }, "type": "primitive" }, - "last_seen_at": { - "value": { - "value": 1571672154, - "type": "int" - }, - "type": "primitive" - }, - "last_replied_at": { - "value": { - "value": 1571672154, - "type": "int" - }, - "type": "primitive" - }, - "last_contacted_at": { - "value": { - "value": 1571672154, - "type": "int" - }, - "type": "primitive" - }, - "last_email_opened_at": { - "value": { - "value": 1571672154, - "type": "int" - }, - "type": "primitive" - }, - "last_email_clicked_at": { - "value": { - "value": 1571672154, - "type": "int" - }, - "type": "primitive" - }, - "language_override": { - "value": { - "value": "en", - "type": "string" - }, - "type": "primitive" - }, - "browser": { - "value": { - "value": "Chrome", - "type": "string" - }, - "type": "primitive" - }, - "browser_version": { - "value": { - "value": "80.0.3987.132", - "type": "string" - }, - "type": "primitive" - }, - "browser_language": { - "value": { - "value": "en-US", - "type": "string" - }, - "type": "primitive" - }, - "os": { - "value": { - "value": "Mac OS X", - "type": "string" - }, - "type": "primitive" - }, - "android_app_name": { - "value": { - "value": "Intercom", - "type": "string" - }, - "type": "primitive" - }, - "android_app_version": { - "value": { - "value": "5.0.0", - "type": "string" - }, - "type": "primitive" - }, - "android_device": { - "value": { - "value": "Pixel 3", - "type": "string" - }, - "type": "primitive" - }, - "android_os_version": { - "value": { - "value": "10", - "type": "string" - }, - "type": "primitive" - }, - "android_sdk_version": { - "value": { - "value": "28", - "type": "string" - }, - "type": "primitive" - }, - "android_last_seen_at": { - "value": { - "value": 1571672154, - "type": "int" - }, - "type": "primitive" - }, - "ios_app_name": { - "value": { - "value": "Intercom", - "type": "string" - }, - "type": "primitive" - }, - "ios_app_version": { - "value": { - "value": "5.0.0", - "type": "string" - }, - "type": "primitive" - }, - "ios_device": { - "value": { - "value": "iPhone 11", - "type": "string" - }, - "type": "primitive" - }, - "ios_os_version": { - "value": { - "value": "13.3.1", - "type": "string" - }, - "type": "primitive" - }, - "ios_sdk_version": { - "value": { - "value": "13.3.1", - "type": "string" - }, - "type": "primitive" - }, - "ios_last_seen_at": { - "value": { - "value": 1571672154, - "type": "int" - }, - "type": "primitive" - }, "custom_attributes": { "value": [ { @@ -105325,25 +97411,6 @@ ], "type": "map" }, - "avatar": { - "properties": { - "type": { - "value": { - "value": "avatar", - "type": "string" - }, - "type": "primitive" - }, - "image_url": { - "value": { - "value": "https://example.org/128Wash.jpg", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, "tags": { "properties": { "data": { @@ -105492,27 +97559,6 @@ "type": "string" }, "type": "primitive" - }, - "country": { - "value": { - "value": "Ireland", - "type": "string" - }, - "type": "primitive" - }, - "region": { - "value": { - "value": "Dublin", - "type": "string" - }, - "type": "primitive" - }, - "city": { - "value": { - "value": "Dublin", - "type": "string" - }, - "type": "primitive" } }, "type": "object" diff --git a/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi-ir/uploadcare.json b/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi-ir/uploadcare.json index b3a1535c918..fdbe19513d1 100644 --- a/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi-ir/uploadcare.json +++ b/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi-ir/uploadcare.json @@ -7394,13 +7394,6 @@ }, "type": "primitive" }, - "datetime_stored": { - "value": { - "value": "2024-01-15T09:30:00Z", - "type": "datetime" - }, - "type": "primitive" - }, "files_count": { "value": { "value": 1, @@ -8308,13 +8301,6 @@ }, "type": "primitive" }, - "datetime_stored": { - "value": { - "value": "2024-01-15T09:30:00Z", - "type": "datetime" - }, - "type": "primitive" - }, "files_count": { "value": { "value": 1, diff --git a/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi-ir/valtown.json b/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi-ir/valtown.json index 32ddbd6aa94..1e4f165c4ee 100644 --- a/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi-ir/valtown.json +++ b/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi-ir/valtown.json @@ -4562,13 +4562,6 @@ "type": "double" }, "type": "primitive" - }, - "lastInsertRowid": { - "value": { - "value": "lastInsertRowid", - "type": "string" - }, - "type": "primitive" } }, "type": "object" diff --git a/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi-ir/webflow.json b/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi-ir/webflow.json index e932e71b8f7..e6ea03c7a64 100644 --- a/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi-ir/webflow.json +++ b/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi-ir/webflow.json @@ -2189,13 +2189,6 @@ }, "type": "primitive" }, - "parentFolderId": { - "value": { - "value": "1as2d3f4g5h6j7k8l9z0x1c2v3b4n5m6", - "type": "string" - }, - "type": "primitive" - }, "customDomains": { "value": [ { @@ -2406,13 +2399,6 @@ }, "type": "primitive" }, - "parentFolderId": { - "value": { - "value": "1as2d3f4g5h6j7k8l9z0x1c2v3b4n5m6", - "type": "string" - }, - "type": "primitive" - }, "customDomains": { "value": [ { @@ -5797,41 +5783,6 @@ "type": "string" }, "type": "primitive" - }, - "newValue": { - "value": { - "value": "newValue", - "type": "string" - }, - "type": "primitive" - }, - "previousValue": { - "value": { - "value": "previousValue", - "type": "string" - }, - "type": "primitive" - }, - "payload": { - "value": [ - { - "key": { - "value": "key", - "type": "string" - }, - "value": { - "value": { - "value": { - "value": "value", - "type": "string" - }, - "type": "primitive" - }, - "type": "unknown" - } - } - ], - "type": "map" } }, "type": "object" @@ -7245,13 +7196,6 @@ "type": "string" }, "type": "primitive" - }, - "helpText": { - "value": { - "value": "helpText", - "type": "string" - }, - "type": "primitive" } }, "type": "object" @@ -7958,13 +7902,6 @@ "type": "string" }, "type": "primitive" - }, - "helpText": { - "value": { - "value": "helpText", - "type": "string" - }, - "type": "primitive" } }, "type": "object" @@ -19425,20 +19362,6 @@ }, "type": "primitive" }, - "parentId": { - "value": { - "value": "6419db964a9c435aa3af6251", - "type": "string" - }, - "type": "primitive" - }, - "collectionId": { - "value": { - "value": "6390c49774a71f12831a08e3", - "type": "string" - }, - "type": "primitive" - }, "createdOn": { "value": { "value": "2024-03-11T10:42:00.000Z", @@ -19580,20 +19503,6 @@ }, "type": "primitive" }, - "parentId": { - "value": { - "value": "6419db964a9c435aa3af6251", - "type": "string" - }, - "type": "primitive" - }, - "collectionId": { - "value": { - "value": "6390c49774a71f12831a08e3", - "type": "string" - }, - "type": "primitive" - }, "createdOn": { "value": { "value": "2024-05-25T09:00:00.000Z", @@ -20562,20 +20471,6 @@ }, "type": "primitive" }, - "parentId": { - "value": { - "value": "6419db964a9c435aa3af6251", - "type": "string" - }, - "type": "primitive" - }, - "collectionId": { - "value": { - "value": "6390c49774a71f12831a08e3", - "type": "string" - }, - "type": "primitive" - }, "createdOn": { "value": { "value": "2024-03-11T10:42:00.000Z", @@ -22096,20 +21991,6 @@ }, "type": "primitive" }, - "parentId": { - "value": { - "value": "6419db964a9c435aa3af6251", - "type": "string" - }, - "type": "primitive" - }, - "collectionId": { - "value": { - "value": "6390c49774a71f12831a08e3", - "type": "string" - }, - "type": "primitive" - }, "createdOn": { "value": { "value": "2024-03-11T10:42:00.000Z", @@ -27388,13 +27269,6 @@ }, "type": "primitive" }, - "integrityHash": { - "value": { - "value": "integrityHash", - "type": "string" - }, - "type": "primitive" - }, "createdOn": { "value": { "value": "2022-10-26T00:28:54.191Z", @@ -27449,13 +27323,6 @@ }, "type": "primitive" }, - "integrityHash": { - "value": { - "value": "integrityHash", - "type": "string" - }, - "type": "primitive" - }, "createdOn": { "value": { "value": "2022-10-26T00:28:54.191Z", @@ -28794,13 +28661,6 @@ }, "type": "primitive" }, - "integrityHash": { - "value": { - "value": "integrityHash", - "type": "string" - }, - "type": "primitive" - }, "createdOn": { "value": { "value": "2022-10-26T00:28:54.191Z", @@ -29520,13 +29380,6 @@ }, "type": "primitive" }, - "pageId": { - "value": { - "value": "pageId", - "type": "string" - }, - "type": "primitive" - }, "type": { "value": "site", "type": "enum" @@ -30572,13 +30425,6 @@ }, "type": "primitive" }, - "height": { - "value": { - "value": 900, - "type": "int" - }, - "type": "primitive" - }, "quality": { "value": { "value": 100, @@ -34041,13 +33887,6 @@ }, "type": "primitive" }, - "parentFolder": { - "value": { - "value": "6390c49774a71f99f21a08eb", - "type": "string" - }, - "type": "primitive" - }, "assets": { "value": [ { @@ -36949,18 +36788,6 @@ }, "type": "primitive" }, - "filter": { - "properties": { - "name": { - "value": { - "value": "My Form", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, "lastTriggered": { "value": { "value": "2023-02-08T23:59:28.572Z", @@ -37555,18 +37382,6 @@ }, "type": "primitive" }, - "filter": { - "properties": { - "name": { - "value": { - "value": "My Form", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, "lastTriggered": { "value": { "value": "2023-02-08T23:59:28.572Z", @@ -39919,13 +39734,6 @@ "value": "Plain", "type": "enum" }, - "placeholder": { - "value": { - "value": "Enter your email", - "type": "string" - }, - "type": "primitive" - }, "userVisible": { "value": { "value": true, @@ -39992,13 +39800,6 @@ }, "type": "primitive" }, - "redirectAction": { - "value": { - "value": "POST https://example.com", - "type": "string" - }, - "type": "primitive" - }, "sendEmailConfirmation": { "value": { "value": true, @@ -69583,38 +69384,6 @@ }, "type": "primitive" }, - "fulfilledOn": { - "value": { - "value": "2018-12-03T22:06:15.761Z", - "type": "datetime" - }, - "type": "primitive" - }, - "refundedOn": { - "value": { - "value": "2018-12-03T22:06:15.761Z", - "type": "datetime" - }, - "type": "primitive" - }, - "disputedOn": { - "value": { - "value": "2018-12-03T22:06:15.761Z", - "type": "datetime" - }, - "type": "primitive" - }, - "disputeUpdatedOn": { - "value": { - "value": "2018-12-03T22:06:15.761Z", - "type": "datetime" - }, - "type": "primitive" - }, - "disputeLastStatus": { - "value": "warning_needs_response", - "type": "enum" - }, "customerPaid": { "properties": { "unit": { @@ -70360,53 +70129,6 @@ }, "type": "object" }, - "paypalDetails": { - "properties": { - "orderId": { - "value": { - "value": "1a2b3c4d5e6f7g8h9i0j", - "type": "string" - }, - "type": "primitive" - }, - "payerId": { - "value": { - "value": "9k8j7i6h5g4f3e2d1c0b", - "type": "string" - }, - "type": "primitive" - }, - "captureId": { - "value": { - "value": "qwe123rty456uio789p", - "type": "string" - }, - "type": "primitive" - }, - "refundId": { - "value": { - "value": "abcde12345fghij67890", - "type": "string" - }, - "type": "primitive" - }, - "refundReason": { - "value": { - "value": "Customer requested refund", - "type": "string" - }, - "type": "primitive" - }, - "disputeId": { - "value": { - "value": "zxcvbnm987poiuytrewq", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, "customData": { "value": [ { @@ -70600,13 +70322,6 @@ }, "type": "primitive" }, - "fulfilledOn": { - "value": { - "value": "2018-12-03T22:06:15.761Z", - "type": "datetime" - }, - "type": "primitive" - }, "refundedOn": { "value": { "value": "2024-04-08T18:25:04.238Z", @@ -70614,24 +70329,6 @@ }, "type": "primitive" }, - "disputedOn": { - "value": { - "value": "2018-12-03T22:06:15.761Z", - "type": "datetime" - }, - "type": "primitive" - }, - "disputeUpdatedOn": { - "value": { - "value": "2018-12-03T22:06:15.761Z", - "type": "datetime" - }, - "type": "primitive" - }, - "disputeLastStatus": { - "value": "warning_needs_response", - "type": "enum" - }, "customerPaid": { "properties": { "unit": { @@ -71394,53 +71091,6 @@ }, "type": "object" }, - "paypalDetails": { - "properties": { - "orderId": { - "value": { - "value": "1a2b3c4d5e6f7g8h9i0j", - "type": "string" - }, - "type": "primitive" - }, - "payerId": { - "value": { - "value": "9k8j7i6h5g4f3e2d1c0b", - "type": "string" - }, - "type": "primitive" - }, - "captureId": { - "value": { - "value": "qwe123rty456uio789p", - "type": "string" - }, - "type": "primitive" - }, - "refundId": { - "value": { - "value": "abcde12345fghij67890", - "type": "string" - }, - "type": "primitive" - }, - "refundReason": { - "value": { - "value": "Customer requested refund", - "type": "string" - }, - "type": "primitive" - }, - "disputeId": { - "value": { - "value": "zxcvbnm987poiuytrewq", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, "customData": { "value": [ { @@ -76731,13 +76381,6 @@ }, "stripeDetails": { "properties": { - "subscriptionId": { - "value": { - "value": "sub_1J6xwG2eZvKYlo2CXu9Zt0Tn", - "type": "string" - }, - "type": "primitive" - }, "paymentMethod": { "value": { "value": "pm_1OzmzBJYFi4lcbXWHKNdXU7j", @@ -76766,13 +76409,6 @@ }, "type": "primitive" }, - "disputeId": { - "value": { - "value": "disputeId", - "type": "string" - }, - "type": "primitive" - }, "refundId": { "value": { "value": "re_3OzmzDJYFi4lcbXW1kFAmlBk", @@ -76832,53 +76468,6 @@ }, "type": "object" }, - "paypalDetails": { - "properties": { - "orderId": { - "value": { - "value": "1a2b3c4d5e6f7g8h9i0j", - "type": "string" - }, - "type": "primitive" - }, - "payerId": { - "value": { - "value": "9k8j7i6h5g4f3e2d1c0b", - "type": "string" - }, - "type": "primitive" - }, - "captureId": { - "value": { - "value": "qwe123rty456uio789p", - "type": "string" - }, - "type": "primitive" - }, - "refundId": { - "value": { - "value": "abcde12345fghij67890", - "type": "string" - }, - "type": "primitive" - }, - "refundReason": { - "value": { - "value": "Customer requested refund", - "type": "string" - }, - "type": "primitive" - }, - "disputeId": { - "value": { - "value": "zxcvbnm987poiuytrewq", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, "customData": { "value": [ { @@ -82250,13 +81839,6 @@ }, "stripeDetails": { "properties": { - "subscriptionId": { - "value": { - "value": "sub_1J6xwG2eZvKYlo2CXu9Zt0Tn", - "type": "string" - }, - "type": "primitive" - }, "paymentMethod": { "value": { "value": "pm_1OzmzBJYFi4lcbXWHKNdXU7j", @@ -82285,13 +81867,6 @@ }, "type": "primitive" }, - "disputeId": { - "value": { - "value": "disputeId", - "type": "string" - }, - "type": "primitive" - }, "refundId": { "value": { "value": "re_3OzmzDJYFi4lcbXW1kFAmlBk", @@ -82351,53 +81926,6 @@ }, "type": "object" }, - "paypalDetails": { - "properties": { - "orderId": { - "value": { - "value": "1a2b3c4d5e6f7g8h9i0j", - "type": "string" - }, - "type": "primitive" - }, - "payerId": { - "value": { - "value": "9k8j7i6h5g4f3e2d1c0b", - "type": "string" - }, - "type": "primitive" - }, - "captureId": { - "value": { - "value": "qwe123rty456uio789p", - "type": "string" - }, - "type": "primitive" - }, - "refundId": { - "value": { - "value": "abcde12345fghij67890", - "type": "string" - }, - "type": "primitive" - }, - "refundReason": { - "value": { - "value": "Customer requested refund", - "type": "string" - }, - "type": "primitive" - }, - "disputeId": { - "value": { - "value": "zxcvbnm987poiuytrewq", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, "customData": { "value": [ { @@ -87706,13 +87234,6 @@ }, "stripeDetails": { "properties": { - "subscriptionId": { - "value": { - "value": "sub_1J6xwG2eZvKYlo2CXu9Zt0Tn", - "type": "string" - }, - "type": "primitive" - }, "paymentMethod": { "value": { "value": "pm_1OzmzBJYFi4lcbXWHKNdXU7j", @@ -87741,13 +87262,6 @@ }, "type": "primitive" }, - "disputeId": { - "value": { - "value": "disputeId", - "type": "string" - }, - "type": "primitive" - }, "refundId": { "value": { "value": "re_3OzmzDJYFi4lcbXW1kFAmlBk", @@ -87807,53 +87321,6 @@ }, "type": "object" }, - "paypalDetails": { - "properties": { - "orderId": { - "value": { - "value": "1a2b3c4d5e6f7g8h9i0j", - "type": "string" - }, - "type": "primitive" - }, - "payerId": { - "value": { - "value": "9k8j7i6h5g4f3e2d1c0b", - "type": "string" - }, - "type": "primitive" - }, - "captureId": { - "value": { - "value": "qwe123rty456uio789p", - "type": "string" - }, - "type": "primitive" - }, - "refundId": { - "value": { - "value": "abcde12345fghij67890", - "type": "string" - }, - "type": "primitive" - }, - "refundReason": { - "value": { - "value": "Customer requested refund", - "type": "string" - }, - "type": "primitive" - }, - "disputeId": { - "value": { - "value": "zxcvbnm987poiuytrewq", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, "customData": { "value": [ { @@ -93112,13 +92579,6 @@ }, "stripeDetails": { "properties": { - "subscriptionId": { - "value": { - "value": "sub_1J6xwG2eZvKYlo2CXu9Zt0Tn", - "type": "string" - }, - "type": "primitive" - }, "paymentMethod": { "value": { "value": "pm_1OzmzBJYFi4lcbXWHKNdXU7j", @@ -93147,13 +92607,6 @@ }, "type": "primitive" }, - "disputeId": { - "value": { - "value": "disputeId", - "type": "string" - }, - "type": "primitive" - }, "refundId": { "value": { "value": "re_3OzmzDJYFi4lcbXW1kFAmlBk", @@ -93213,53 +92666,6 @@ }, "type": "object" }, - "paypalDetails": { - "properties": { - "orderId": { - "value": { - "value": "1a2b3c4d5e6f7g8h9i0j", - "type": "string" - }, - "type": "primitive" - }, - "payerId": { - "value": { - "value": "9k8j7i6h5g4f3e2d1c0b", - "type": "string" - }, - "type": "primitive" - }, - "captureId": { - "value": { - "value": "qwe123rty456uio789p", - "type": "string" - }, - "type": "primitive" - }, - "refundId": { - "value": { - "value": "abcde12345fghij67890", - "type": "string" - }, - "type": "primitive" - }, - "refundReason": { - "value": { - "value": "Customer requested refund", - "type": "string" - }, - "type": "primitive" - }, - "disputeId": { - "value": { - "value": "zxcvbnm987poiuytrewq", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, "customData": { "value": [ { @@ -98585,13 +97991,6 @@ }, "stripeDetails": { "properties": { - "subscriptionId": { - "value": { - "value": "sub_1J6xwG2eZvKYlo2CXu9Zt0Tn", - "type": "string" - }, - "type": "primitive" - }, "paymentMethod": { "value": { "value": "pm_1OzmzBJYFi4lcbXWHKNdXU7j", @@ -98620,13 +98019,6 @@ }, "type": "primitive" }, - "disputeId": { - "value": { - "value": "disputeId", - "type": "string" - }, - "type": "primitive" - }, "refundId": { "value": { "value": "re_3OzmzDJYFi4lcbXW1kFAmlBk", @@ -98686,53 +98078,6 @@ }, "type": "object" }, - "paypalDetails": { - "properties": { - "orderId": { - "value": { - "value": "1a2b3c4d5e6f7g8h9i0j", - "type": "string" - }, - "type": "primitive" - }, - "payerId": { - "value": { - "value": "9k8j7i6h5g4f3e2d1c0b", - "type": "string" - }, - "type": "primitive" - }, - "captureId": { - "value": { - "value": "qwe123rty456uio789p", - "type": "string" - }, - "type": "primitive" - }, - "refundId": { - "value": { - "value": "abcde12345fghij67890", - "type": "string" - }, - "type": "primitive" - }, - "refundReason": { - "value": { - "value": "Customer requested refund", - "type": "string" - }, - "type": "primitive" - }, - "disputeId": { - "value": { - "value": "zxcvbnm987poiuytrewq", - "type": "string" - }, - "type": "primitive" - } - }, - "type": "object" - }, "customData": { "value": [ { diff --git a/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi/aries.json b/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi/aries.json index ce5781685ec..931c7890e17 100644 --- a/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi/aries.json +++ b/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi/aries.json @@ -11681,23 +11681,7 @@ types: "conn_id": "conn_id", }, "response": { - "body": { - "result": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "description": "This menu presents options", - "errormsg": "Error: item not found", - "options": [ - { - "description": "Window display preferences", - "disabled": false, - "name": "window_prefs", - "title": "Window Preferences", - }, - ], - "title": "My Menu", - }, - }, + "body": {}, }, }, ], @@ -11914,18 +11898,7 @@ service: - path-parameters: conn_id: conn_id response: - body: - result: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - description: This menu presents options - errormsg: 'Error: item not found' - options: - - description: Window display preferences - disabled: false - name: window_prefs - title: Window Preferences - title: My Menu + body: {} perform_action_by_conn_id: path: /action-menu/{conn_id}/perform method: POST @@ -13881,27 +13854,6 @@ docs: Connection management "type": { "key": "value", }, - "value": { - "primary": { - "n": "0", - "rctxt": "0", - "s": "0", - "z": "0", - }, - "revocation": { - "g": "1 1F14F&ECB578F 2 095E45DDF417D", - "g_dash": "1 1D64716fCDC00C 1 0C781960FA66E3D3 2 095E45DDF417D", - "h": "1 16675DAE54BFAE8 2 095E45DD417D", - "h0": "1 21E5EF9476EAF18 2 095E45DDF417D", - "h1": "1 236D1D99236090 2 095E45DDF417D", - "h2": "1 1C3AE8D1F1E277 2 095E45DDF417D", - "h_cap": "1 1B2A32CF3167 1 2490FEBF6EE55 1 0000000000000000", - "htilde": "1 1D8549E8C0F8 2 095E45DDF417D", - "pk": "1 142CD5E5A7DC 1 153885BD903312 2 095E45DDF417D", - "u": "1 0C430AAB2B4710 1 1CB3A0932EE7E 1 0000000000000000", - "y": "1 153558BD903312 2 095E45DDF417D 1 0000000000000000", - }, - }, "ver": "1.0", }, }, @@ -13942,39 +13894,6 @@ docs: Connection management "sent": { "credential_definition_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", }, - "txn": { - "_type": "101", - "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "created_at": "2021-12-31 23:59:59+00:00", - "endorser_write_txn": true, - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "dif/endorse-transaction/request@v1.0", - }, - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "dif/endorse-transaction/request@v1.0", - }, - ], - "messages_attach": [ - {}, - {}, - ], - "signature_request": [ - {}, - {}, - ], - "signature_response": [ - {}, - {}, - ], - "state": "active", - "thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "trace": true, - "transaction_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "updated_at": "2021-12-31 23:59:59+00:00", - }, }, }, }, @@ -14057,27 +13976,6 @@ docs: Connection management "type": { "key": "value", }, - "value": { - "primary": { - "n": "0", - "rctxt": "0", - "s": "0", - "z": "0", - }, - "revocation": { - "g": "1 1F14F&ECB578F 2 095E45DDF417D", - "g_dash": "1 1D64716fCDC00C 1 0C781960FA66E3D3 2 095E45DDF417D", - "h": "1 16675DAE54BFAE8 2 095E45DD417D", - "h0": "1 21E5EF9476EAF18 2 095E45DDF417D", - "h1": "1 236D1D99236090 2 095E45DDF417D", - "h2": "1 1C3AE8D1F1E277 2 095E45DDF417D", - "h_cap": "1 1B2A32CF3167 1 2490FEBF6EE55 1 0000000000000000", - "htilde": "1 1D8549E8C0F8 2 095E45DDF417D", - "pk": "1 142CD5E5A7DC 1 153885BD903312 2 095E45DDF417D", - "u": "1 0C430AAB2B4710 1 1CB3A0932EE7E 1 0000000000000000", - "y": "1 153558BD903312 2 095E45DDF417D 1 0000000000000000", - }, - }, "ver": "1.0", }, }, @@ -14163,30 +14061,6 @@ service: body: sent: credential_definition_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - txn: - _type: '101' - connection_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - created_at: '2021-12-31 23:59:59+00:00' - endorser_write_txn: true - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: dif/endorse-transaction/request@v1.0 - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: dif/endorse-transaction/request@v1.0 - messages_attach: - - {} - - {} - signature_request: - - {} - - {} - signature_response: - - {} - - {} - state: active - thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - trace: true - transaction_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - updated_at: '2021-12-31 23:59:59+00:00' get_created_cred_defs: path: /credential-definitions/created method: GET @@ -14263,24 +14137,6 @@ service: tag: tag type: key: value - value: - primary: - 'n': '0' - rctxt: '0' - s: '0' - z: '0' - revocation: - g: 1 1F14F&ECB578F 2 095E45DDF417D - g_dash: 1 1D64716fCDC00C 1 0C781960FA66E3D3 2 095E45DDF417D - h: 1 16675DAE54BFAE8 2 095E45DD417D - h0: 1 21E5EF9476EAF18 2 095E45DDF417D - h1: 1 236D1D99236090 2 095E45DDF417D - h2: 1 1C3AE8D1F1E277 2 095E45DDF417D - h_cap: 1 1B2A32CF3167 1 2490FEBF6EE55 1 0000000000000000 - htilde: 1 1D8549E8C0F8 2 095E45DDF417D - pk: 1 142CD5E5A7DC 1 153885BD903312 2 095E45DDF417D - u: 1 0C430AAB2B4710 1 1CB3A0932EE7E 1 0000000000000000 - 'y': 1 153558BD903312 2 095E45DDF417D 1 0000000000000000 ver: '1.0' write_credential_definition: path: /credential-definitions/{cred_def_id}/write_record @@ -14307,24 +14163,6 @@ service: tag: tag type: key: value - value: - primary: - 'n': '0' - rctxt: '0' - s: '0' - z: '0' - revocation: - g: 1 1F14F&ECB578F 2 095E45DDF417D - g_dash: 1 1D64716fCDC00C 1 0C781960FA66E3D3 2 095E45DDF417D - h: 1 16675DAE54BFAE8 2 095E45DD417D - h0: 1 21E5EF9476EAF18 2 095E45DDF417D - h1: 1 236D1D99236090 2 095E45DDF417D - h2: 1 1C3AE8D1F1E277 2 095E45DDF417D - h_cap: 1 1B2A32CF3167 1 2490FEBF6EE55 1 0000000000000000 - htilde: 1 1D8549E8C0F8 2 095E45DDF417D - pk: 1 142CD5E5A7DC 1 153885BD903312 2 095E45DDF417D - u: 1 0C430AAB2B4710 1 1CB3A0932EE7E 1 0000000000000000 - 'y': 1 153558BD903312 2 095E45DDF417D 1 0000000000000000 ver: '1.0' source: openapi: ../openapi.yml @@ -15474,25 +15312,6 @@ docs: Holder credential management "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "@type": "https://didcomm.org/my-family/1.0/my-message-type", "did": "WgWxqztrNooG92RXvxSTWv", - "did_doc~attach": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, "label": "Request to connect with Bob", }, "response": { @@ -15723,22 +15542,6 @@ service: '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 '@type': https://didcomm.org/my-family/1.0/my-message-type did: WgWxqztrNooG92RXvxSTWv - did_doc~attach: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png label: Request to connect with Bob response: body: @@ -15897,21 +15700,7 @@ docs: Connection management via DID exchange { "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "created_at": "2021-12-31 23:59:59+00:00", - "disclose": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "protocols": [ - { - "pid": "pid", - }, - ], - }, "discovery_exchange_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "query_msg": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "query": "query", - }, "state": "active", "thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "trace": true, @@ -15920,21 +15709,7 @@ docs: Connection management via DID exchange { "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "created_at": "2021-12-31 23:59:59+00:00", - "disclose": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "protocols": [ - { - "pid": "pid", - }, - ], - }, "discovery_exchange_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "query_msg": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "query": "query", - }, "state": "active", "thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "trace": true, @@ -15975,22 +15750,7 @@ docs: Connection management via DID exchange "body": { "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "created_at": "2021-12-31 23:59:59+00:00", - "disclose": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "protocols": [ - { - "pid": "pid", - }, - ], - }, "discovery_exchange_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "query_msg": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "query": "query", - }, "state": "active", "thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "trace": true, @@ -16068,17 +15828,7 @@ service: body: connection_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 created_at: '2021-12-31 23:59:59+00:00' - disclose: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - protocols: - - pid: pid discovery_exchange_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - query_msg: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - query: query state: active thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 trace: true @@ -16105,32 +15855,14 @@ service: results: - connection_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 created_at: '2021-12-31 23:59:59+00:00' - disclose: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - protocols: - - pid: pid discovery_exchange_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - query_msg: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - query: query state: active thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 trace: true updated_at: '2021-12-31 23:59:59+00:00' - connection_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 created_at: '2021-12-31 23:59:59+00:00' - disclose: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - protocols: - - pid: pid discovery_exchange_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - query_msg: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - query: query state: active thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 trace: true @@ -16238,36 +15970,7 @@ docs: Feature discovery "examples": [ { "response": { - "body": { - "results": { - "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "created_at": "2021-12-31 23:59:59+00:00", - "disclosures": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "disclosures": [ - { - "key": "value", - }, - ], - }, - "discovery_exchange_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "queries_msg": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "queries": [ - { - "feature-type": "protocol", - "match": "match", - }, - ], - }, - "state": "active", - "thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "trace": true, - "updated_at": "2021-12-31 23:59:59+00:00", - }, - }, + "body": {}, }, }, ], @@ -16337,26 +16040,7 @@ service: type: root.V20DiscoveryExchangeResult examples: - response: - body: - results: - connection_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - created_at: '2021-12-31 23:59:59+00:00' - disclosures: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - disclosures: - - key: value - discovery_exchange_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - queries_msg: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - queries: - - feature-type: protocol - match: match - state: active - thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - trace: true - updated_at: '2021-12-31 23:59:59+00:00' + body: {} get_v20_feature_records: path: /discover-features-2.0/records method: GET @@ -17591,123 +17275,12 @@ docs: Introduction of known parties "auto_remove": false, "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "created_at": "2021-12-31 23:59:59+00:00", - "credential": { - "attrs": { - "key": "alice", - }, - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "cred_rev_id": "12345", - "referent": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "rev_reg_id": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - }, "credential_definition_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", "credential_exchange_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "credential_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "credential_offer": { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "key_correctness_proof": { - "c": "0", - "xr_cap": [ - [ - "xr_cap", - ], - ], - "xz_cap": "0", - }, - "nonce": "0", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - }, - "credential_offer_dict": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "credential_preview": { - "@type": "issue-credential/1.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "offers~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, - "credential_proposal_dict": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "credential_proposal": { - "@type": "issue-credential/1.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "issuer_did": "WgWxqztrNooG92RXvxSTWv", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "schema_issuer_did": "WgWxqztrNooG92RXvxSTWv", - "schema_name": "schema_name", - "schema_version": "1.0", - }, - "credential_request": { - "blinded_ms": {}, - "blinded_ms_correctness_proof": {}, - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "nonce": "0", - "prover_did": "WgWxqztrNooG92RXvxSTWv", - }, "error_msg": "Credential definition identifier is not set in proposal", "initiator": "self", "parent_thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "raw_credential": { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "rev_reg_id": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "signature": {}, - "signature_correctness_proof": {}, - "values": { - "key": { - "encoded": "-1", - "raw": "raw", - }, - }, - }, "revoc_reg_id": "revoc_reg_id", "revocation_id": "revocation_id", "role": "issuer", @@ -17846,123 +17419,12 @@ docs: Introduction of known parties "auto_remove": false, "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "created_at": "2021-12-31 23:59:59+00:00", - "credential": { - "attrs": { - "key": "alice", - }, - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "cred_rev_id": "12345", - "referent": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "rev_reg_id": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - }, "credential_definition_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", "credential_exchange_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "credential_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "credential_offer": { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "key_correctness_proof": { - "c": "0", - "xr_cap": [ - [ - "xr_cap", - ], - ], - "xz_cap": "0", - }, - "nonce": "0", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - }, - "credential_offer_dict": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "credential_preview": { - "@type": "issue-credential/1.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "offers~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, - "credential_proposal_dict": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "credential_proposal": { - "@type": "issue-credential/1.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "issuer_did": "WgWxqztrNooG92RXvxSTWv", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "schema_issuer_did": "WgWxqztrNooG92RXvxSTWv", - "schema_name": "schema_name", - "schema_version": "1.0", - }, - "credential_request": { - "blinded_ms": {}, - "blinded_ms_correctness_proof": {}, - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "nonce": "0", - "prover_did": "WgWxqztrNooG92RXvxSTWv", - }, "error_msg": "Credential definition identifier is not set in proposal", "initiator": "self", "parent_thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "raw_credential": { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "rev_reg_id": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "signature": {}, - "signature_correctness_proof": {}, - "values": { - "key": { - "encoded": "-1", - "raw": "raw", - }, - }, - }, "revoc_reg_id": "revoc_reg_id", "revocation_id": "revocation_id", "role": "issuer", @@ -18075,123 +17537,12 @@ docs: Introduction of known parties "auto_remove": false, "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "created_at": "2021-12-31 23:59:59+00:00", - "credential": { - "attrs": { - "key": "alice", - }, - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "cred_rev_id": "12345", - "referent": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "rev_reg_id": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - }, "credential_definition_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", "credential_exchange_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "credential_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "credential_offer": { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "key_correctness_proof": { - "c": "0", - "xr_cap": [ - [ - "xr_cap", - ], - ], - "xz_cap": "0", - }, - "nonce": "0", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - }, - "credential_offer_dict": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "credential_preview": { - "@type": "issue-credential/1.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "offers~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, - "credential_proposal_dict": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "credential_proposal": { - "@type": "issue-credential/1.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "issuer_did": "WgWxqztrNooG92RXvxSTWv", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "schema_issuer_did": "WgWxqztrNooG92RXvxSTWv", - "schema_name": "schema_name", - "schema_version": "1.0", - }, - "credential_request": { - "blinded_ms": {}, - "blinded_ms_correctness_proof": {}, - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "nonce": "0", - "prover_did": "WgWxqztrNooG92RXvxSTWv", - }, "error_msg": "Credential definition identifier is not set in proposal", "initiator": "self", "parent_thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "raw_credential": { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "rev_reg_id": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "signature": {}, - "signature_correctness_proof": {}, - "values": { - "key": { - "encoded": "-1", - "raw": "raw", - }, - }, - }, "revoc_reg_id": "revoc_reg_id", "revocation_id": "revocation_id", "role": "issuer", @@ -18236,119 +17587,12 @@ docs: Introduction of known parties "auto_remove": false, "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "created_at": "2021-12-31 23:59:59+00:00", - "credential": { - "attrs": { - "key": "alice", - }, - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "cred_rev_id": "12345", - "referent": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "rev_reg_id": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - }, "credential_definition_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", "credential_exchange_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "credential_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "credential_offer": { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "key_correctness_proof": { - "c": "0", - "xr_cap": [ - [ - "xr_cap", - ], - ], - "xz_cap": "0", - }, - "nonce": "0", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - }, - "credential_offer_dict": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "credential_preview": { - "@type": "issue-credential/1.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "offers~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, - "credential_proposal_dict": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "credential_proposal": { - "@type": "issue-credential/1.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "issuer_did": "WgWxqztrNooG92RXvxSTWv", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "schema_issuer_did": "WgWxqztrNooG92RXvxSTWv", - "schema_version": "1.0", - }, - "credential_request": { - "blinded_ms": {}, - "blinded_ms_correctness_proof": {}, - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "nonce": "0", - "prover_did": "WgWxqztrNooG92RXvxSTWv", - }, "error_msg": "Credential definition identifier is not set in proposal", "initiator": "self", "parent_thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "raw_credential": { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "signature": {}, - "signature_correctness_proof": {}, - "values": { - "key": { - "encoded": "-1", - "raw": "raw", - }, - }, - }, "revoc_reg_id": "revoc_reg_id", "revocation_id": "revocation_id", "role": "issuer", @@ -18364,119 +17608,12 @@ docs: Introduction of known parties "auto_remove": false, "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "created_at": "2021-12-31 23:59:59+00:00", - "credential": { - "attrs": { - "key": "alice", - }, - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "cred_rev_id": "12345", - "referent": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "rev_reg_id": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - }, "credential_definition_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", "credential_exchange_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "credential_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "credential_offer": { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "key_correctness_proof": { - "c": "0", - "xr_cap": [ - [ - "xr_cap", - ], - ], - "xz_cap": "0", - }, - "nonce": "0", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - }, - "credential_offer_dict": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "credential_preview": { - "@type": "issue-credential/1.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "offers~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, - "credential_proposal_dict": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "credential_proposal": { - "@type": "issue-credential/1.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "issuer_did": "WgWxqztrNooG92RXvxSTWv", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "schema_issuer_did": "WgWxqztrNooG92RXvxSTWv", - "schema_version": "1.0", - }, - "credential_request": { - "blinded_ms": {}, - "blinded_ms_correctness_proof": {}, - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "nonce": "0", - "prover_did": "WgWxqztrNooG92RXvxSTWv", - }, "error_msg": "Credential definition identifier is not set in proposal", "initiator": "self", "parent_thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "raw_credential": { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "signature": {}, - "signature_correctness_proof": {}, - "values": { - "key": { - "encoded": "-1", - "raw": "raw", - }, - }, - }, "revoc_reg_id": "revoc_reg_id", "revocation_id": "revocation_id", "role": "issuer", @@ -18554,123 +17691,12 @@ docs: Introduction of known parties "auto_remove": false, "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "created_at": "2021-12-31 23:59:59+00:00", - "credential": { - "attrs": { - "key": "alice", - }, - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "cred_rev_id": "12345", - "referent": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "rev_reg_id": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - }, "credential_definition_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", "credential_exchange_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "credential_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "credential_offer": { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "key_correctness_proof": { - "c": "0", - "xr_cap": [ - [ - "xr_cap", - ], - ], - "xz_cap": "0", - }, - "nonce": "0", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - }, - "credential_offer_dict": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "credential_preview": { - "@type": "issue-credential/1.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "offers~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, - "credential_proposal_dict": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "credential_proposal": { - "@type": "issue-credential/1.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "issuer_did": "WgWxqztrNooG92RXvxSTWv", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "schema_issuer_did": "WgWxqztrNooG92RXvxSTWv", - "schema_name": "schema_name", - "schema_version": "1.0", - }, - "credential_request": { - "blinded_ms": {}, - "blinded_ms_correctness_proof": {}, - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "nonce": "0", - "prover_did": "WgWxqztrNooG92RXvxSTWv", - }, "error_msg": "Credential definition identifier is not set in proposal", "initiator": "self", "parent_thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "raw_credential": { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "rev_reg_id": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "signature": {}, - "signature_correctness_proof": {}, - "values": { - "key": { - "encoded": "-1", - "raw": "raw", - }, - }, - }, "revoc_reg_id": "revoc_reg_id", "revocation_id": "revocation_id", "role": "issuer", @@ -18780,123 +17806,12 @@ docs: Introduction of known parties "auto_remove": false, "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "created_at": "2021-12-31 23:59:59+00:00", - "credential": { - "attrs": { - "key": "alice", - }, - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "cred_rev_id": "12345", - "referent": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "rev_reg_id": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - }, "credential_definition_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", "credential_exchange_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "credential_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "credential_offer": { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "key_correctness_proof": { - "c": "0", - "xr_cap": [ - [ - "xr_cap", - ], - ], - "xz_cap": "0", - }, - "nonce": "0", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - }, - "credential_offer_dict": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "credential_preview": { - "@type": "issue-credential/1.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "offers~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, - "credential_proposal_dict": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "credential_proposal": { - "@type": "issue-credential/1.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "issuer_did": "WgWxqztrNooG92RXvxSTWv", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "schema_issuer_did": "WgWxqztrNooG92RXvxSTWv", - "schema_name": "schema_name", - "schema_version": "1.0", - }, - "credential_request": { - "blinded_ms": {}, - "blinded_ms_correctness_proof": {}, - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "nonce": "0", - "prover_did": "WgWxqztrNooG92RXvxSTWv", - }, "error_msg": "Credential definition identifier is not set in proposal", "initiator": "self", "parent_thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "raw_credential": { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "rev_reg_id": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "signature": {}, - "signature_correctness_proof": {}, - "values": { - "key": { - "encoded": "-1", - "raw": "raw", - }, - }, - }, "revoc_reg_id": "revoc_reg_id", "revocation_id": "revocation_id", "role": "issuer", @@ -18956,123 +17871,12 @@ docs: Introduction of known parties "auto_remove": false, "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "created_at": "2021-12-31 23:59:59+00:00", - "credential": { - "attrs": { - "key": "alice", - }, - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "cred_rev_id": "12345", - "referent": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "rev_reg_id": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - }, "credential_definition_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", "credential_exchange_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "credential_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "credential_offer": { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "key_correctness_proof": { - "c": "0", - "xr_cap": [ - [ - "xr_cap", - ], - ], - "xz_cap": "0", - }, - "nonce": "0", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - }, - "credential_offer_dict": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "credential_preview": { - "@type": "issue-credential/1.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "offers~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, - "credential_proposal_dict": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "credential_proposal": { - "@type": "issue-credential/1.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "issuer_did": "WgWxqztrNooG92RXvxSTWv", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "schema_issuer_did": "WgWxqztrNooG92RXvxSTWv", - "schema_name": "schema_name", - "schema_version": "1.0", - }, - "credential_request": { - "blinded_ms": {}, - "blinded_ms_correctness_proof": {}, - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "nonce": "0", - "prover_did": "WgWxqztrNooG92RXvxSTWv", - }, "error_msg": "Credential definition identifier is not set in proposal", "initiator": "self", "parent_thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "raw_credential": { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "rev_reg_id": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "signature": {}, - "signature_correctness_proof": {}, - "values": { - "key": { - "encoded": "-1", - "raw": "raw", - }, - }, - }, "revoc_reg_id": "revoc_reg_id", "revocation_id": "revocation_id", "role": "issuer", @@ -19142,123 +17946,12 @@ docs: Introduction of known parties "auto_remove": false, "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "created_at": "2021-12-31 23:59:59+00:00", - "credential": { - "attrs": { - "key": "alice", - }, - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "cred_rev_id": "12345", - "referent": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "rev_reg_id": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - }, "credential_definition_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", "credential_exchange_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "credential_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "credential_offer": { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "key_correctness_proof": { - "c": "0", - "xr_cap": [ - [ - "xr_cap", - ], - ], - "xz_cap": "0", - }, - "nonce": "0", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - }, - "credential_offer_dict": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "credential_preview": { - "@type": "issue-credential/1.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "offers~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, - "credential_proposal_dict": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "credential_proposal": { - "@type": "issue-credential/1.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "issuer_did": "WgWxqztrNooG92RXvxSTWv", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "schema_issuer_did": "WgWxqztrNooG92RXvxSTWv", - "schema_name": "schema_name", - "schema_version": "1.0", - }, - "credential_request": { - "blinded_ms": {}, - "blinded_ms_correctness_proof": {}, - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "nonce": "0", - "prover_did": "WgWxqztrNooG92RXvxSTWv", - }, "error_msg": "Credential definition identifier is not set in proposal", "initiator": "self", "parent_thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "raw_credential": { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "rev_reg_id": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "signature": {}, - "signature_correctness_proof": {}, - "values": { - "key": { - "encoded": "-1", - "raw": "raw", - }, - }, - }, "revoc_reg_id": "revoc_reg_id", "revocation_id": "revocation_id", "role": "issuer", @@ -19408,123 +18101,12 @@ docs: Introduction of known parties "auto_remove": false, "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "created_at": "2021-12-31 23:59:59+00:00", - "credential": { - "attrs": { - "key": "alice", - }, - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "cred_rev_id": "12345", - "referent": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "rev_reg_id": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - }, "credential_definition_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", "credential_exchange_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "credential_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "credential_offer": { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "key_correctness_proof": { - "c": "0", - "xr_cap": [ - [ - "xr_cap", - ], - ], - "xz_cap": "0", - }, - "nonce": "0", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - }, - "credential_offer_dict": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "credential_preview": { - "@type": "issue-credential/1.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "offers~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, - "credential_proposal_dict": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "credential_proposal": { - "@type": "issue-credential/1.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "issuer_did": "WgWxqztrNooG92RXvxSTWv", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "schema_issuer_did": "WgWxqztrNooG92RXvxSTWv", - "schema_name": "schema_name", - "schema_version": "1.0", - }, - "credential_request": { - "blinded_ms": {}, - "blinded_ms_correctness_proof": {}, - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "nonce": "0", - "prover_did": "WgWxqztrNooG92RXvxSTWv", - }, "error_msg": "Credential definition identifier is not set in proposal", "initiator": "self", "parent_thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "raw_credential": { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "rev_reg_id": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "signature": {}, - "signature_correctness_proof": {}, - "values": { - "key": { - "encoded": "-1", - "raw": "raw", - }, - }, - }, "revoc_reg_id": "revoc_reg_id", "revocation_id": "revocation_id", "role": "issuer", @@ -19638,123 +18220,12 @@ docs: Introduction of known parties "auto_remove": false, "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "created_at": "2021-12-31 23:59:59+00:00", - "credential": { - "attrs": { - "key": "alice", - }, - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "cred_rev_id": "12345", - "referent": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "rev_reg_id": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - }, "credential_definition_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", "credential_exchange_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "credential_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "credential_offer": { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "key_correctness_proof": { - "c": "0", - "xr_cap": [ - [ - "xr_cap", - ], - ], - "xz_cap": "0", - }, - "nonce": "0", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - }, - "credential_offer_dict": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "credential_preview": { - "@type": "issue-credential/1.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "offers~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, - "credential_proposal_dict": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "credential_proposal": { - "@type": "issue-credential/1.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "issuer_did": "WgWxqztrNooG92RXvxSTWv", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "schema_issuer_did": "WgWxqztrNooG92RXvxSTWv", - "schema_name": "schema_name", - "schema_version": "1.0", - }, - "credential_request": { - "blinded_ms": {}, - "blinded_ms_correctness_proof": {}, - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "nonce": "0", - "prover_did": "WgWxqztrNooG92RXvxSTWv", - }, "error_msg": "Credential definition identifier is not set in proposal", "initiator": "self", "parent_thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "raw_credential": { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "rev_reg_id": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "signature": {}, - "signature_correctness_proof": {}, - "values": { - "key": { - "encoded": "-1", - "raw": "raw", - }, - }, - }, "revoc_reg_id": "revoc_reg_id", "revocation_id": "revocation_id", "role": "issuer", @@ -19887,123 +18358,12 @@ docs: Introduction of known parties "auto_remove": false, "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "created_at": "2021-12-31 23:59:59+00:00", - "credential": { - "attrs": { - "key": "alice", - }, - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "cred_rev_id": "12345", - "referent": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "rev_reg_id": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - }, "credential_definition_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", "credential_exchange_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "credential_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "credential_offer": { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "key_correctness_proof": { - "c": "0", - "xr_cap": [ - [ - "xr_cap", - ], - ], - "xz_cap": "0", - }, - "nonce": "0", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - }, - "credential_offer_dict": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "credential_preview": { - "@type": "issue-credential/1.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "offers~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, - "credential_proposal_dict": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "credential_proposal": { - "@type": "issue-credential/1.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "issuer_did": "WgWxqztrNooG92RXvxSTWv", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "schema_issuer_did": "WgWxqztrNooG92RXvxSTWv", - "schema_name": "schema_name", - "schema_version": "1.0", - }, - "credential_request": { - "blinded_ms": {}, - "blinded_ms_correctness_proof": {}, - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "nonce": "0", - "prover_did": "WgWxqztrNooG92RXvxSTWv", - }, "error_msg": "Credential definition identifier is not set in proposal", "initiator": "self", "parent_thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "raw_credential": { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "rev_reg_id": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "signature": {}, - "signature_correctness_proof": {}, - "values": { - "key": { - "encoded": "-1", - "raw": "raw", - }, - }, - }, "revoc_reg_id": "revoc_reg_id", "revocation_id": "revocation_id", "role": "issuer", @@ -20177,95 +18537,12 @@ service: auto_remove: false connection_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 created_at: '2021-12-31 23:59:59+00:00' - credential: - attrs: - key: alice - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - cred_rev_id: '12345' - referent: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - rev_reg_id: >- - WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0 - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 credential_definition_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag credential_exchange_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 credential_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - credential_offer: - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - key_correctness_proof: - c: '0' - xr_cap: - - - xr_cap - xz_cap: '0' - nonce: '0' - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 - credential_offer_dict: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - credential_preview: - '@type': issue-credential/1.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - offers~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - credential_proposal_dict: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - credential_proposal: - '@type': issue-credential/1.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - issuer_did: WgWxqztrNooG92RXvxSTWv - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 - schema_issuer_did: WgWxqztrNooG92RXvxSTWv - schema_name: schema_name - schema_version: '1.0' - credential_request: - blinded_ms: {} - blinded_ms_correctness_proof: {} - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - nonce: '0' - prover_did: WgWxqztrNooG92RXvxSTWv error_msg: Credential definition identifier is not set in proposal initiator: self parent_thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - raw_credential: - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - rev_reg_id: >- - WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0 - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 - signature: {} - signature_correctness_proof: {} - values: - key: - encoded: '-1' - raw: raw revoc_reg_id: revoc_reg_id revocation_id: revocation_id role: issuer @@ -20336,95 +18613,12 @@ service: auto_remove: false connection_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 created_at: '2021-12-31 23:59:59+00:00' - credential: - attrs: - key: alice - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - cred_rev_id: '12345' - referent: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - rev_reg_id: >- - WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0 - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 credential_definition_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag credential_exchange_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 credential_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - credential_offer: - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - key_correctness_proof: - c: '0' - xr_cap: - - - xr_cap - xz_cap: '0' - nonce: '0' - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 - credential_offer_dict: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - credential_preview: - '@type': issue-credential/1.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - offers~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - credential_proposal_dict: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - credential_proposal: - '@type': issue-credential/1.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - issuer_did: WgWxqztrNooG92RXvxSTWv - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 - schema_issuer_did: WgWxqztrNooG92RXvxSTWv - schema_name: schema_name - schema_version: '1.0' - credential_request: - blinded_ms: {} - blinded_ms_correctness_proof: {} - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - nonce: '0' - prover_did: WgWxqztrNooG92RXvxSTWv error_msg: Credential definition identifier is not set in proposal initiator: self parent_thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - raw_credential: - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - rev_reg_id: >- - WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0 - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 - signature: {} - signature_correctness_proof: {} - values: - key: - encoded: '-1' - raw: raw revoc_reg_id: revoc_reg_id revocation_id: revocation_id role: issuer @@ -20471,90 +18665,12 @@ service: auto_remove: false connection_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 created_at: '2021-12-31 23:59:59+00:00' - credential: - attrs: - key: alice - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - cred_rev_id: '12345' - referent: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - rev_reg_id: >- - WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0 - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 credential_definition_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag credential_exchange_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 credential_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - credential_offer: - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - key_correctness_proof: - c: '0' - xr_cap: - - - xr_cap - xz_cap: '0' - nonce: '0' - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 - credential_offer_dict: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - credential_preview: - '@type': issue-credential/1.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - offers~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - credential_proposal_dict: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - credential_proposal: - '@type': issue-credential/1.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - issuer_did: WgWxqztrNooG92RXvxSTWv - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 - schema_issuer_did: WgWxqztrNooG92RXvxSTWv - schema_version: '1.0' - credential_request: - blinded_ms: {} - blinded_ms_correctness_proof: {} - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - nonce: '0' - prover_did: WgWxqztrNooG92RXvxSTWv error_msg: Credential definition identifier is not set in proposal initiator: self parent_thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - raw_credential: - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 - signature: {} - signature_correctness_proof: {} - values: - key: - encoded: '-1' - raw: raw revoc_reg_id: revoc_reg_id revocation_id: revocation_id role: issuer @@ -20568,90 +18684,12 @@ service: auto_remove: false connection_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 created_at: '2021-12-31 23:59:59+00:00' - credential: - attrs: - key: alice - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - cred_rev_id: '12345' - referent: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - rev_reg_id: >- - WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0 - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 credential_definition_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag credential_exchange_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 credential_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - credential_offer: - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - key_correctness_proof: - c: '0' - xr_cap: - - - xr_cap - xz_cap: '0' - nonce: '0' - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 - credential_offer_dict: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - credential_preview: - '@type': issue-credential/1.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - offers~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - credential_proposal_dict: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - credential_proposal: - '@type': issue-credential/1.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - issuer_did: WgWxqztrNooG92RXvxSTWv - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 - schema_issuer_did: WgWxqztrNooG92RXvxSTWv - schema_version: '1.0' - credential_request: - blinded_ms: {} - blinded_ms_correctness_proof: {} - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - nonce: '0' - prover_did: WgWxqztrNooG92RXvxSTWv error_msg: Credential definition identifier is not set in proposal initiator: self parent_thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - raw_credential: - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 - signature: {} - signature_correctness_proof: {} - values: - key: - encoded: '-1' - raw: raw revoc_reg_id: revoc_reg_id revocation_id: revocation_id role: issuer @@ -20684,95 +18722,12 @@ service: auto_remove: false connection_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 created_at: '2021-12-31 23:59:59+00:00' - credential: - attrs: - key: alice - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - cred_rev_id: '12345' - referent: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - rev_reg_id: >- - WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0 - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 credential_definition_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag credential_exchange_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 credential_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - credential_offer: - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - key_correctness_proof: - c: '0' - xr_cap: - - - xr_cap - xz_cap: '0' - nonce: '0' - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 - credential_offer_dict: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - credential_preview: - '@type': issue-credential/1.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - offers~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - credential_proposal_dict: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - credential_proposal: - '@type': issue-credential/1.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - issuer_did: WgWxqztrNooG92RXvxSTWv - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 - schema_issuer_did: WgWxqztrNooG92RXvxSTWv - schema_name: schema_name - schema_version: '1.0' - credential_request: - blinded_ms: {} - blinded_ms_correctness_proof: {} - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - nonce: '0' - prover_did: WgWxqztrNooG92RXvxSTWv error_msg: Credential definition identifier is not set in proposal initiator: self parent_thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - raw_credential: - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - rev_reg_id: >- - WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0 - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 - signature: {} - signature_correctness_proof: {} - values: - key: - encoded: '-1' - raw: raw revoc_reg_id: revoc_reg_id revocation_id: revocation_id role: issuer @@ -20835,95 +18790,12 @@ service: auto_remove: false connection_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 created_at: '2021-12-31 23:59:59+00:00' - credential: - attrs: - key: alice - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - cred_rev_id: '12345' - referent: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - rev_reg_id: >- - WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0 - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 credential_definition_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag credential_exchange_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 credential_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - credential_offer: - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - key_correctness_proof: - c: '0' - xr_cap: - - - xr_cap - xz_cap: '0' - nonce: '0' - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 - credential_offer_dict: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - credential_preview: - '@type': issue-credential/1.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - offers~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - credential_proposal_dict: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - credential_proposal: - '@type': issue-credential/1.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - issuer_did: WgWxqztrNooG92RXvxSTWv - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 - schema_issuer_did: WgWxqztrNooG92RXvxSTWv - schema_name: schema_name - schema_version: '1.0' - credential_request: - blinded_ms: {} - blinded_ms_correctness_proof: {} - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - nonce: '0' - prover_did: WgWxqztrNooG92RXvxSTWv error_msg: Credential definition identifier is not set in proposal initiator: self parent_thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - raw_credential: - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - rev_reg_id: >- - WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0 - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 - signature: {} - signature_correctness_proof: {} - values: - key: - encoded: '-1' - raw: raw revoc_reg_id: revoc_reg_id revocation_id: revocation_id role: issuer @@ -20992,95 +18864,12 @@ service: auto_remove: false connection_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 created_at: '2021-12-31 23:59:59+00:00' - credential: - attrs: - key: alice - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - cred_rev_id: '12345' - referent: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - rev_reg_id: >- - WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0 - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 credential_definition_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag credential_exchange_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 credential_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - credential_offer: - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - key_correctness_proof: - c: '0' - xr_cap: - - - xr_cap - xz_cap: '0' - nonce: '0' - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 - credential_offer_dict: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - credential_preview: - '@type': issue-credential/1.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - offers~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - credential_proposal_dict: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - credential_proposal: - '@type': issue-credential/1.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - issuer_did: WgWxqztrNooG92RXvxSTWv - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 - schema_issuer_did: WgWxqztrNooG92RXvxSTWv - schema_name: schema_name - schema_version: '1.0' - credential_request: - blinded_ms: {} - blinded_ms_correctness_proof: {} - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - nonce: '0' - prover_did: WgWxqztrNooG92RXvxSTWv error_msg: Credential definition identifier is not set in proposal initiator: self parent_thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - raw_credential: - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - rev_reg_id: >- - WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0 - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 - signature: {} - signature_correctness_proof: {} - values: - key: - encoded: '-1' - raw: raw revoc_reg_id: revoc_reg_id revocation_id: revocation_id role: issuer @@ -21113,95 +18902,12 @@ service: auto_remove: false connection_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 created_at: '2021-12-31 23:59:59+00:00' - credential: - attrs: - key: alice - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - cred_rev_id: '12345' - referent: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - rev_reg_id: >- - WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0 - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 credential_definition_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag credential_exchange_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 credential_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - credential_offer: - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - key_correctness_proof: - c: '0' - xr_cap: - - - xr_cap - xz_cap: '0' - nonce: '0' - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 - credential_offer_dict: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - credential_preview: - '@type': issue-credential/1.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - offers~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - credential_proposal_dict: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - credential_proposal: - '@type': issue-credential/1.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - issuer_did: WgWxqztrNooG92RXvxSTWv - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 - schema_issuer_did: WgWxqztrNooG92RXvxSTWv - schema_name: schema_name - schema_version: '1.0' - credential_request: - blinded_ms: {} - blinded_ms_correctness_proof: {} - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - nonce: '0' - prover_did: WgWxqztrNooG92RXvxSTWv error_msg: Credential definition identifier is not set in proposal initiator: self parent_thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - raw_credential: - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - rev_reg_id: >- - WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0 - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 - signature: {} - signature_correctness_proof: {} - values: - key: - encoded: '-1' - raw: raw revoc_reg_id: revoc_reg_id revocation_id: revocation_id role: issuer @@ -21243,95 +18949,12 @@ service: auto_remove: false connection_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 created_at: '2021-12-31 23:59:59+00:00' - credential: - attrs: - key: alice - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - cred_rev_id: '12345' - referent: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - rev_reg_id: >- - WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0 - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 credential_definition_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag credential_exchange_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 credential_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - credential_offer: - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - key_correctness_proof: - c: '0' - xr_cap: - - - xr_cap - xz_cap: '0' - nonce: '0' - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 - credential_offer_dict: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - credential_preview: - '@type': issue-credential/1.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - offers~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - credential_proposal_dict: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - credential_proposal: - '@type': issue-credential/1.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - issuer_did: WgWxqztrNooG92RXvxSTWv - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 - schema_issuer_did: WgWxqztrNooG92RXvxSTWv - schema_name: schema_name - schema_version: '1.0' - credential_request: - blinded_ms: {} - blinded_ms_correctness_proof: {} - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - nonce: '0' - prover_did: WgWxqztrNooG92RXvxSTWv error_msg: Credential definition identifier is not set in proposal initiator: self parent_thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - raw_credential: - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - rev_reg_id: >- - WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0 - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 - signature: {} - signature_correctness_proof: {} - values: - key: - encoded: '-1' - raw: raw revoc_reg_id: revoc_reg_id revocation_id: revocation_id role: issuer @@ -21433,95 +19056,12 @@ service: auto_remove: false connection_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 created_at: '2021-12-31 23:59:59+00:00' - credential: - attrs: - key: alice - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - cred_rev_id: '12345' - referent: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - rev_reg_id: >- - WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0 - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 credential_definition_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag credential_exchange_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 credential_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - credential_offer: - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - key_correctness_proof: - c: '0' - xr_cap: - - - xr_cap - xz_cap: '0' - nonce: '0' - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 - credential_offer_dict: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - credential_preview: - '@type': issue-credential/1.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - offers~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - credential_proposal_dict: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - credential_proposal: - '@type': issue-credential/1.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - issuer_did: WgWxqztrNooG92RXvxSTWv - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 - schema_issuer_did: WgWxqztrNooG92RXvxSTWv - schema_name: schema_name - schema_version: '1.0' - credential_request: - blinded_ms: {} - blinded_ms_correctness_proof: {} - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - nonce: '0' - prover_did: WgWxqztrNooG92RXvxSTWv error_msg: Credential definition identifier is not set in proposal initiator: self parent_thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - raw_credential: - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - rev_reg_id: >- - WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0 - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 - signature: {} - signature_correctness_proof: {} - values: - key: - encoded: '-1' - raw: raw revoc_reg_id: revoc_reg_id revocation_id: revocation_id role: issuer @@ -21598,95 +19138,12 @@ service: auto_remove: false connection_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 created_at: '2021-12-31 23:59:59+00:00' - credential: - attrs: - key: alice - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - cred_rev_id: '12345' - referent: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - rev_reg_id: >- - WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0 - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 credential_definition_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag credential_exchange_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 credential_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - credential_offer: - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - key_correctness_proof: - c: '0' - xr_cap: - - - xr_cap - xz_cap: '0' - nonce: '0' - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 - credential_offer_dict: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - credential_preview: - '@type': issue-credential/1.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - offers~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - credential_proposal_dict: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - credential_proposal: - '@type': issue-credential/1.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - issuer_did: WgWxqztrNooG92RXvxSTWv - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 - schema_issuer_did: WgWxqztrNooG92RXvxSTWv - schema_name: schema_name - schema_version: '1.0' - credential_request: - blinded_ms: {} - blinded_ms_correctness_proof: {} - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - nonce: '0' - prover_did: WgWxqztrNooG92RXvxSTWv error_msg: Credential definition identifier is not set in proposal initiator: self parent_thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - raw_credential: - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - rev_reg_id: >- - WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0 - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 - signature: {} - signature_correctness_proof: {} - values: - key: - encoded: '-1' - raw: raw revoc_reg_id: revoc_reg_id revocation_id: revocation_id role: issuer @@ -21788,95 +19245,12 @@ service: auto_remove: false connection_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 created_at: '2021-12-31 23:59:59+00:00' - credential: - attrs: - key: alice - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - cred_rev_id: '12345' - referent: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - rev_reg_id: >- - WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0 - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 credential_definition_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag credential_exchange_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 credential_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - credential_offer: - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - key_correctness_proof: - c: '0' - xr_cap: - - - xr_cap - xz_cap: '0' - nonce: '0' - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 - credential_offer_dict: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - credential_preview: - '@type': issue-credential/1.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - offers~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - credential_proposal_dict: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - credential_proposal: - '@type': issue-credential/1.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - issuer_did: WgWxqztrNooG92RXvxSTWv - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 - schema_issuer_did: WgWxqztrNooG92RXvxSTWv - schema_name: schema_name - schema_version: '1.0' - credential_request: - blinded_ms: {} - blinded_ms_correctness_proof: {} - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - nonce: '0' - prover_did: WgWxqztrNooG92RXvxSTWv error_msg: Credential definition identifier is not set in proposal initiator: self parent_thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - raw_credential: - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - rev_reg_id: >- - WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0 - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 - signature: {} - signature_correctness_proof: {} - values: - key: - encoded: '-1' - raw: raw revoc_reg_id: revoc_reg_id revocation_id: revocation_id role: issuer @@ -21960,181 +19334,6 @@ types: "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "created_at": "2021-12-31 23:59:59+00:00", "cred_ex_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "cred_issue": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "credentials~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - "replacement_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - }, - "cred_offer": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "credential_preview": { - "@type": "issue-credential/2.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - "offers~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - "replacement_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - }, - "cred_preview": { - "@type": "issue-credential/2.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "cred_proposal": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "credential_preview": { - "@type": "issue-credential/2.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "filters~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - }, - "cred_request": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - "requests~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, "error_msg": "The front fell off", "initiator": "self", "parent_thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", @@ -22221,181 +19420,6 @@ types: "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "created_at": "2021-12-31 23:59:59+00:00", "cred_ex_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "cred_issue": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "credentials~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - "replacement_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - }, - "cred_offer": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "credential_preview": { - "@type": "issue-credential/2.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - "offers~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - "replacement_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - }, - "cred_preview": { - "@type": "issue-credential/2.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "cred_proposal": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "credential_preview": { - "@type": "issue-credential/2.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "filters~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - }, - "cred_request": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - "requests~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, "error_msg": "The front fell off", "initiator": "self", "parent_thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", @@ -22494,197 +19518,6 @@ types: }, "response": { "body": { - "cred_ex_record": { - "auto_issue": false, - "auto_offer": false, - "auto_remove": false, - "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "created_at": "2021-12-31 23:59:59+00:00", - "cred_ex_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "cred_issue": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "credentials~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - "replacement_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - }, - "cred_offer": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "credential_preview": { - "@type": "issue-credential/2.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - "offers~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - "replacement_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - }, - "cred_preview": { - "@type": "issue-credential/2.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "cred_proposal": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "credential_preview": { - "@type": "issue-credential/2.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "filters~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - }, - "cred_request": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - "requests~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, - "error_msg": "The front fell off", - "initiator": "self", - "parent_thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "role": "issuer", - "state": "done", - "thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "trace": true, - "updated_at": "2021-12-31 23:59:59+00:00", - }, "indy": { "created_at": "2021-12-31 23:59:59+00:00", "cred_ex_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", @@ -22734,193 +19567,6 @@ types: "body": { "results": [ { - "cred_ex_record": { - "auto_issue": false, - "auto_offer": false, - "auto_remove": false, - "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "created_at": "2021-12-31 23:59:59+00:00", - "cred_ex_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "cred_issue": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "credentials~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - "replacement_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - }, - "cred_offer": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "credential_preview": { - "@type": "issue-credential/2.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - "offers~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - "replacement_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - }, - "cred_preview": { - "@type": "issue-credential/2.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "cred_proposal": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "credential_preview": { - "@type": "issue-credential/2.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "filters~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - }, - "cred_request": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - "requests~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, - "error_msg": "The front fell off", - "initiator": "self", - "parent_thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "role": "issuer", - "state": "done", - "thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "trace": true, - "updated_at": "2021-12-31 23:59:59+00:00", - }, "indy": { "created_at": "2021-12-31 23:59:59+00:00", "cred_ex_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", @@ -22941,193 +19587,6 @@ types: }, }, { - "cred_ex_record": { - "auto_issue": false, - "auto_offer": false, - "auto_remove": false, - "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "created_at": "2021-12-31 23:59:59+00:00", - "cred_ex_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "cred_issue": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "credentials~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - "replacement_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - }, - "cred_offer": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "credential_preview": { - "@type": "issue-credential/2.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - "offers~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - "replacement_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - }, - "cred_preview": { - "@type": "issue-credential/2.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "cred_proposal": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "credential_preview": { - "@type": "issue-credential/2.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "filters~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - }, - "cred_request": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - "requests~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, - "error_msg": "The front fell off", - "initiator": "self", - "parent_thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "role": "issuer", - "state": "done", - "thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "trace": true, - "updated_at": "2021-12-31 23:59:59+00:00", - }, "indy": { "created_at": "2021-12-31 23:59:59+00:00", "cred_ex_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", @@ -23210,197 +19669,6 @@ types: }, "response": { "body": { - "cred_ex_record": { - "auto_issue": false, - "auto_offer": false, - "auto_remove": false, - "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "created_at": "2021-12-31 23:59:59+00:00", - "cred_ex_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "cred_issue": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "credentials~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - "replacement_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - }, - "cred_offer": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "credential_preview": { - "@type": "issue-credential/2.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - "offers~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - "replacement_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - }, - "cred_preview": { - "@type": "issue-credential/2.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "cred_proposal": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "credential_preview": { - "@type": "issue-credential/2.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "filters~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - }, - "cred_request": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - "requests~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, - "error_msg": "The front fell off", - "initiator": "self", - "parent_thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "role": "issuer", - "state": "done", - "thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "trace": true, - "updated_at": "2021-12-31 23:59:59+00:00", - }, "indy": { "created_at": "2021-12-31 23:59:59+00:00", "cred_ex_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", @@ -23512,23 +19780,7 @@ types: "path-parameters": { "cred_ex_id": "cred_ex_id", }, - "request": { - "counter_preview": { - "@type": "issue-credential/2.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - }, + "request": {}, "response": { "body": { "auto_issue": false, @@ -23537,181 +19789,6 @@ types: "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "created_at": "2021-12-31 23:59:59+00:00", "cred_ex_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "cred_issue": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "credentials~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - "replacement_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - }, - "cred_offer": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "credential_preview": { - "@type": "issue-credential/2.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - "offers~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - "replacement_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - }, - "cred_preview": { - "@type": "issue-credential/2.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "cred_proposal": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "credential_preview": { - "@type": "issue-credential/2.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "filters~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - }, - "cred_request": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - "requests~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, "error_msg": "The front fell off", "initiator": "self", "parent_thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", @@ -23778,181 +19855,6 @@ types: "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "created_at": "2021-12-31 23:59:59+00:00", "cred_ex_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "cred_issue": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "credentials~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - "replacement_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - }, - "cred_offer": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "credential_preview": { - "@type": "issue-credential/2.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - "offers~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - "replacement_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - }, - "cred_preview": { - "@type": "issue-credential/2.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "cred_proposal": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "credential_preview": { - "@type": "issue-credential/2.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "filters~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - }, - "cred_request": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - "requests~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, "error_msg": "The front fell off", "initiator": "self", "parent_thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", @@ -24034,181 +19936,6 @@ types: "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "created_at": "2021-12-31 23:59:59+00:00", "cred_ex_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "cred_issue": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "credentials~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - "replacement_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - }, - "cred_offer": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "credential_preview": { - "@type": "issue-credential/2.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - "offers~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - "replacement_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - }, - "cred_preview": { - "@type": "issue-credential/2.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "cred_proposal": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "credential_preview": { - "@type": "issue-credential/2.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "filters~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - }, - "cred_request": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - "requests~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, "error_msg": "The front fell off", "initiator": "self", "parent_thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", @@ -24275,181 +20002,6 @@ types: "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "created_at": "2021-12-31 23:59:59+00:00", "cred_ex_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "cred_issue": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "credentials~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - "replacement_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - }, - "cred_offer": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "credential_preview": { - "@type": "issue-credential/2.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - "offers~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - "replacement_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - }, - "cred_preview": { - "@type": "issue-credential/2.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "cred_proposal": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "credential_preview": { - "@type": "issue-credential/2.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "filters~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - }, - "cred_request": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - "requests~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, "error_msg": "The front fell off", "initiator": "self", "parent_thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", @@ -24551,181 +20103,6 @@ types: "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "created_at": "2021-12-31 23:59:59+00:00", "cred_ex_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "cred_issue": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "credentials~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - "replacement_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - }, - "cred_offer": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "credential_preview": { - "@type": "issue-credential/2.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - "offers~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - "replacement_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - }, - "cred_preview": { - "@type": "issue-credential/2.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "cred_proposal": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "credential_preview": { - "@type": "issue-credential/2.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "filters~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - }, - "cred_request": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - "requests~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, "error_msg": "The front fell off", "initiator": "self", "parent_thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", @@ -24789,196 +20166,21 @@ types: ], }, "options": { - "proofType": "Ed25519Signature2018", - }, - }, - }, - "holder_did": "did:key:ahsdkjahsdkjhaskjdhakjshdkajhsdkjahs", - "trace": false, - }, - "response": { - "body": { - "auto_issue": false, - "auto_offer": false, - "auto_remove": false, - "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "created_at": "2021-12-31 23:59:59+00:00", - "cred_ex_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "cred_issue": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "credentials~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - "replacement_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - }, - "cred_offer": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "credential_preview": { - "@type": "issue-credential/2.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - "offers~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - "replacement_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - }, - "cred_preview": { - "@type": "issue-credential/2.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "cred_proposal": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "credential_preview": { - "@type": "issue-credential/2.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "filters~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - }, - "cred_request": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - "requests~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], + "proofType": "Ed25519Signature2018", + }, }, + }, + "holder_did": "did:key:ahsdkjahsdkjhaskjdhakjshdkajhsdkjahs", + "trace": false, + }, + "response": { + "body": { + "auto_issue": false, + "auto_offer": false, + "auto_remove": false, + "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "created_at": "2021-12-31 23:59:59+00:00", + "cred_ex_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "error_msg": "The front fell off", "initiator": "self", "parent_thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", @@ -25054,197 +20256,6 @@ types: }, "response": { "body": { - "cred_ex_record": { - "auto_issue": false, - "auto_offer": false, - "auto_remove": false, - "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "created_at": "2021-12-31 23:59:59+00:00", - "cred_ex_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "cred_issue": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "credentials~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - "replacement_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - }, - "cred_offer": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "credential_preview": { - "@type": "issue-credential/2.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - "offers~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - "replacement_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - }, - "cred_preview": { - "@type": "issue-credential/2.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "cred_proposal": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "credential_preview": { - "@type": "issue-credential/2.0/credential-preview", - "attributes": [ - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - { - "mime-type": "image/jpeg", - "name": "favourite_drink", - "value": "martini", - }, - ], - }, - "filters~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - }, - "cred_request": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "aries/ld-proof-vc-detail@v1.0", - }, - ], - "requests~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, - "error_msg": "The front fell off", - "initiator": "self", - "parent_thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "role": "issuer", - "state": "done", - "thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "trace": true, - "updated_at": "2021-12-31 23:59:59+00:00", - }, "indy": { "created_at": "2021-12-31 23:59:59+00:00", "cred_ex_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", @@ -25420,127 +20431,6 @@ service: connection_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 created_at: '2021-12-31 23:59:59+00:00' cred_ex_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - cred_issue: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - credentials~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - replacement_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - cred_offer: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - credential_preview: - '@type': issue-credential/2.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - offers~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - replacement_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - cred_preview: - '@type': issue-credential/2.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - cred_proposal: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - credential_preview: - '@type': issue-credential/2.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - filters~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - cred_request: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - requests~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png error_msg: The front fell off initiator: self parent_thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 @@ -25607,127 +20497,6 @@ service: connection_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 created_at: '2021-12-31 23:59:59+00:00' cred_ex_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - cred_issue: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - credentials~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - replacement_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - cred_offer: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - credential_preview: - '@type': issue-credential/2.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - offers~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - replacement_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - cred_preview: - '@type': issue-credential/2.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - cred_proposal: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - credential_preview: - '@type': issue-credential/2.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - filters~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - cred_request: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - requests~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png error_msg: The front fell off initiator: self parent_thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 @@ -25769,139 +20538,7 @@ service: - response: body: results: - - cred_ex_record: - auto_issue: false - auto_offer: false - auto_remove: false - connection_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - created_at: '2021-12-31 23:59:59+00:00' - cred_ex_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - cred_issue: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - credentials~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - replacement_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - cred_offer: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - credential_preview: - '@type': issue-credential/2.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - offers~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - replacement_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - cred_preview: - '@type': issue-credential/2.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - cred_proposal: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - credential_preview: - '@type': issue-credential/2.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - filters~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - cred_request: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - requests~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - error_msg: The front fell off - initiator: self - parent_thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - role: issuer - state: done - thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - trace: true - updated_at: '2021-12-31 23:59:59+00:00' - indy: + - indy: created_at: '2021-12-31 23:59:59+00:00' cred_ex_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 cred_ex_indy_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 @@ -25918,139 +20555,7 @@ service: cred_id_stored: 3fa85f64-5717-4562-b3fc-2c963f66afa6 state: active updated_at: '2021-12-31 23:59:59+00:00' - - cred_ex_record: - auto_issue: false - auto_offer: false - auto_remove: false - connection_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - created_at: '2021-12-31 23:59:59+00:00' - cred_ex_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - cred_issue: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - credentials~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - replacement_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - cred_offer: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - credential_preview: - '@type': issue-credential/2.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - offers~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - replacement_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - cred_preview: - '@type': issue-credential/2.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - cred_proposal: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - credential_preview: - '@type': issue-credential/2.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - filters~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - cred_request: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - requests~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - error_msg: The front fell off - initiator: self - parent_thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - role: issuer - state: done - thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - trace: true - updated_at: '2021-12-31 23:59:59+00:00' - indy: + - indy: created_at: '2021-12-31 23:59:59+00:00' cred_ex_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 cred_ex_indy_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 @@ -26086,142 +20591,6 @@ service: cred_ex_id: cred_ex_id response: body: - cred_ex_record: - auto_issue: false - auto_offer: false - auto_remove: false - connection_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - created_at: '2021-12-31 23:59:59+00:00' - cred_ex_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - cred_issue: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - credentials~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - replacement_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - cred_offer: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - credential_preview: - '@type': issue-credential/2.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - offers~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - replacement_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - cred_preview: - '@type': issue-credential/2.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - cred_proposal: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - credential_preview: - '@type': issue-credential/2.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - filters~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - cred_request: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - requests~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - error_msg: The front fell off - initiator: self - parent_thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - role: issuer - state: done - thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - trace: true - updated_at: '2021-12-31 23:59:59+00:00' indy: created_at: '2021-12-31 23:59:59+00:00' cred_ex_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 @@ -26277,153 +20646,17 @@ service: comment: type: optional docs: Human-readable comment - content-type: application/json - response: - docs: '' - type: root.V20CredExRecordDetail - examples: - - path-parameters: - cred_ex_id: cred_ex_id - request: - comment: comment - response: - body: - cred_ex_record: - auto_issue: false - auto_offer: false - auto_remove: false - connection_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - created_at: '2021-12-31 23:59:59+00:00' - cred_ex_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - cred_issue: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - credentials~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - replacement_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - cred_offer: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - credential_preview: - '@type': issue-credential/2.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - offers~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - replacement_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - cred_preview: - '@type': issue-credential/2.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - cred_proposal: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - credential_preview: - '@type': issue-credential/2.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - filters~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - cred_request: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - requests~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - error_msg: The front fell off - initiator: self - parent_thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - role: issuer - state: done - thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - trace: true - updated_at: '2021-12-31 23:59:59+00:00' + content-type: application/json + response: + docs: '' + type: root.V20CredExRecordDetail + examples: + - path-parameters: + cred_ex_id: cred_ex_id + request: + comment: comment + response: + body: indy: created_at: '2021-12-31 23:59:59+00:00' cred_ex_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 @@ -26495,16 +20728,7 @@ service: examples: - path-parameters: cred_ex_id: cred_ex_id - request: - counter_preview: - '@type': issue-credential/2.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini + request: {} response: body: auto_issue: false @@ -26513,127 +20737,6 @@ service: connection_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 created_at: '2021-12-31 23:59:59+00:00' cred_ex_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - cred_issue: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - credentials~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - replacement_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - cred_offer: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - credential_preview: - '@type': issue-credential/2.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - offers~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - replacement_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - cred_preview: - '@type': issue-credential/2.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - cred_proposal: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - credential_preview: - '@type': issue-credential/2.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - filters~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - cred_request: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - requests~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png error_msg: The front fell off initiator: self parent_thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 @@ -26677,127 +20780,6 @@ service: connection_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 created_at: '2021-12-31 23:59:59+00:00' cred_ex_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - cred_issue: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - credentials~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - replacement_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - cred_offer: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - credential_preview: - '@type': issue-credential/2.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - offers~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - replacement_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - cred_preview: - '@type': issue-credential/2.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - cred_proposal: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - credential_preview: - '@type': issue-credential/2.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - filters~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - cred_request: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - requests~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png error_msg: The front fell off initiator: self parent_thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 @@ -26834,142 +20816,6 @@ service: credential_id: credential_id response: body: - cred_ex_record: - auto_issue: false - auto_offer: false - auto_remove: false - connection_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - created_at: '2021-12-31 23:59:59+00:00' - cred_ex_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - cred_issue: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - credentials~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - replacement_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - cred_offer: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - credential_preview: - '@type': issue-credential/2.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - offers~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - replacement_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - cred_preview: - '@type': issue-credential/2.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - cred_proposal: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - credential_preview: - '@type': issue-credential/2.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - filters~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - cred_request: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - requests~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - error_msg: The front fell off - initiator: self - parent_thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - role: issuer - state: done - thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - trace: true - updated_at: '2021-12-31 23:59:59+00:00' indy: created_at: '2021-12-31 23:59:59+00:00' cred_ex_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 @@ -27011,142 +20857,21 @@ service: attributes: - mime-type: image/jpeg name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - filter: {} - trace: true - verification_method: verification_method - response: - body: - auto_issue: false - auto_offer: false - auto_remove: false - connection_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - created_at: '2021-12-31 23:59:59+00:00' - cred_ex_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - cred_issue: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - credentials~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - replacement_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - cred_offer: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - credential_preview: - '@type': issue-credential/2.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - offers~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - replacement_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - cred_preview: - '@type': issue-credential/2.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - cred_proposal: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - credential_preview: - '@type': issue-credential/2.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - filters~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - cred_request: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - requests~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png + value: martini + - mime-type: image/jpeg + name: favourite_drink + value: martini + filter: {} + trace: true + verification_method: verification_method + response: + body: + auto_issue: false + auto_offer: false + auto_remove: false + connection_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 + created_at: '2021-12-31 23:59:59+00:00' + cred_ex_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 error_msg: The front fell off initiator: self parent_thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 @@ -27219,127 +20944,6 @@ service: connection_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 created_at: '2021-12-31 23:59:59+00:00' cred_ex_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - cred_issue: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - credentials~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - replacement_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - cred_offer: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - credential_preview: - '@type': issue-credential/2.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - offers~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - replacement_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - cred_preview: - '@type': issue-credential/2.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - cred_proposal: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - credential_preview: - '@type': issue-credential/2.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - filters~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - cred_request: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - requests~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png error_msg: The front fell off initiator: self parent_thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 @@ -27387,127 +20991,6 @@ service: connection_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 created_at: '2021-12-31 23:59:59+00:00' cred_ex_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - cred_issue: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - credentials~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - replacement_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - cred_offer: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - credential_preview: - '@type': issue-credential/2.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - offers~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - replacement_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - cred_preview: - '@type': issue-credential/2.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - cred_proposal: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - credential_preview: - '@type': issue-credential/2.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - filters~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - cred_request: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - requests~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png error_msg: The front fell off initiator: self parent_thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 @@ -27550,161 +21033,40 @@ service: type: optional docs: Whether to trace event (default false) content-type: application/json - response: - docs: '' - type: root.V20CredExRecord - examples: - - request: - auto_remove: true - comment: comment - connection_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - filter: - ld_proof: - credential: - '@context': - - key: value - - key: value - credentialSubject: - key: value - issuanceDate: '2010-01-01 19:23:24+00:00' - issuer: - key: value - type: - - VerifiableCredential - - AlumniCredential - options: - proofType: Ed25519Signature2018 - holder_did: did:key:ahsdkjahsdkjhaskjdhakjshdkajhsdkjahs - trace: false - response: - body: - auto_issue: false - auto_offer: false - auto_remove: false - connection_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - created_at: '2021-12-31 23:59:59+00:00' - cred_ex_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - cred_issue: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - credentials~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - replacement_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - cred_offer: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - credential_preview: - '@type': issue-credential/2.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - offers~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - replacement_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - cred_preview: - '@type': issue-credential/2.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - cred_proposal: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - credential_preview: - '@type': issue-credential/2.0/credential-preview - attributes: - - mime-type: image/jpeg - name: favourite_drink - value: martini - - mime-type: image/jpeg - name: favourite_drink - value: martini - filters~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - cred_request: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: aries/ld-proof-vc-detail@v1.0 - requests~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png + response: + docs: '' + type: root.V20CredExRecord + examples: + - request: + auto_remove: true + comment: comment + connection_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 + filter: + ld_proof: + credential: + '@context': + - key: value + - key: value + credentialSubject: + key: value + issuanceDate: '2010-01-01 19:23:24+00:00' + issuer: + key: value + type: + - VerifiableCredential + - AlumniCredential + options: + proofType: Ed25519Signature2018 + holder_did: did:key:ahsdkjahsdkjhaskjdhakjshdkajhsdkjahs + trace: false + response: + body: + auto_issue: false + auto_offer: false + auto_remove: false + connection_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 + created_at: '2021-12-31 23:59:59+00:00' + cred_ex_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 error_msg: The front fell off initiator: self parent_thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 @@ -28252,39 +21614,6 @@ docs: Sign and verify json-ld data "response": { "body": { "success": true, - "txn": { - "_type": "101", - "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "created_at": "2021-12-31 23:59:59+00:00", - "endorser_write_txn": true, - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "dif/endorse-transaction/request@v1.0", - }, - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "dif/endorse-transaction/request@v1.0", - }, - ], - "messages_attach": [ - {}, - {}, - ], - "signature_request": [ - {}, - {}, - ], - "signature_response": [ - {}, - {}, - ], - "state": "active", - "thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "trace": true, - "transaction_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "updated_at": "2021-12-31 23:59:59+00:00", - }, }, }, }, @@ -28578,30 +21907,6 @@ service: response: body: success: true - txn: - _type: '101' - connection_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - created_at: '2021-12-31 23:59:59+00:00' - endorser_write_txn: true - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: dif/endorse-transaction/request@v1.0 - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: dif/endorse-transaction/request@v1.0 - messages_attach: - - {} - - {} - signature_request: - - {} - - {} - signature_response: - - {} - - {} - state: active - thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - trace: true - transaction_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - updated_at: '2021-12-31 23:59:59+00:00' rotate_public_did_keypair: path: /ledger/rotate-public-did-keypair method: PATCH @@ -29240,10 +22545,6 @@ docs: Interaction with ledger "body": { "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "paginate": { - "limit": 30, - "offset": 0, - }, }, }, }, @@ -29658,9 +22959,6 @@ service: body: '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 '@type': https://didcomm.org/my-family/1.0/my-message-type - paginate: - limit: 30 - offset: 0 send_keylist_update_to_mediator: path: /mediation/keylists/{mediation_id}/send-keylist-update method: POST @@ -30818,77 +24116,6 @@ docs: Multitenant wallet management "body": { "created_at": "2021-12-31 23:59:59+00:00", "invi_msg_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "invitation": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "accept": [ - "didcomm/aip1", - "didcomm/aip2;env=rfc19", - ], - "handshake_protocols": [ - "did:sov:BzCbsNYhMrjHiqZDTUASHg;spec/didexchange/1.0", - "did:sov:BzCbsNYhMrjHiqZDTUASHg;spec/didexchange/1.0", - ], - "imageUrl": "http://192.168.56.101/img/logo.jpg", - "label": "Bob", - "requests~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - "services": [ - { - "did": "WgWxqztrNooG92RXvxSTWv", - "id": "string", - "recipientKeys": [ - "did:key:z6MkpTHR8VNsBxYAAWHut2Geadd9jSwuBV8xRoAnwWsdvktH", - ], - "routingKeys": [ - "did:key:z6MkpTHR8VNsBxYAAWHut2Geadd9jSwuBV8xRoAnwWsdvktH", - ], - "serviceEndpoint": "http://192.168.56.101:8020", - "type": "string", - }, - { - "key": "value", - }, - ], - }, "invitation_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "invitation_url": "https://example.com/endpoint?c_i=eyJAdHlwZSI6ICIuLi4iLCAiLi4uIjogIi4uLiJ9XX0=", "oob_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", @@ -31294,58 +24521,6 @@ service: body: created_at: '2021-12-31 23:59:59+00:00' invi_msg_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - invitation: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - accept: - - didcomm/aip1 - - didcomm/aip2;env=rfc19 - handshake_protocols: - - did:sov:BzCbsNYhMrjHiqZDTUASHg;spec/didexchange/1.0 - - did:sov:BzCbsNYhMrjHiqZDTUASHg;spec/didexchange/1.0 - imageUrl: http://192.168.56.101/img/logo.jpg - label: Bob - requests~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - services: - - did: WgWxqztrNooG92RXvxSTWv - id: string - recipientKeys: - - did:key:z6MkpTHR8VNsBxYAAWHut2Geadd9jSwuBV8xRoAnwWsdvktH - routingKeys: - - did:key:z6MkpTHR8VNsBxYAAWHut2Geadd9jSwuBV8xRoAnwWsdvktH - serviceEndpoint: http://192.168.56.101:8020 - type: string - - key: value invitation_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 invitation_url: >- https://example.com/endpoint?c_i=eyJAdHlwZSI6ICIuLi4iLCAiLi4uIjogIi4uLiJ9XX0= @@ -31559,154 +24734,31 @@ docs: Out-of-band connections "requested_predicates": { "key": { "name": "index", - "p_type": ">=", - "p_value": 0, - "restrictions": [ - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - ], - }, - }, - "version": "1.0", - }, - "trace": false, - }, - "response": { - "body": { - "auto_present": false, - "auto_verify": true, - "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "created_at": "2021-12-31 23:59:59+00:00", - "error_msg": "Invalid structure", - "initiator": "self", - "presentation": { - "identifiers": [ - { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - }, - ], - "proof": { - "proofs": [ - {}, - ], - }, - "requested_proof": { - "predicates": { - "key": {}, - }, - }, - }, - "presentation_exchange_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "presentation_proposal_dict": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "presentation_proposal": { - "@type": "did:sov:BzCbsNYhMrjHiqZDTUASHg;spec/present-proof/1.0/presentation-preview", - "attributes": [ - { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "mime-type": "image/jpeg", - "name": "favourite_drink", - "referent": "0", - "value": "martini", - }, - { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "mime-type": "image/jpeg", - "name": "favourite_drink", - "referent": "0", - "value": "martini", - }, - ], - "predicates": [ - { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "name": "high_score", - "predicate": ">=", - "threshold": 0, - }, - { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "name": "high_score", - "predicate": ">=", - "threshold": 0, - }, - ], - }, - }, - "presentation_request": { - "name": "Proof request", - "non_revoked": { - "from": 1640995199, - "to": 1640995199, - }, - "nonce": "1", - "requested_attributes": { - "key": { - "name": "favouriteDrink", - "names": [ - "age", - "age", - ], - "restrictions": [ - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - ], - }, - }, - "requested_predicates": { - "key": { - "name": "index", - "p_type": ">=", - "p_value": 0, - "restrictions": [ - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - ], - }, - }, - "version": "1.0", - }, - "presentation_request_dict": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "request_presentations~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", + "p_type": ">=", + "p_value": 0, + "restrictions": [ + { + "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], + { + "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", + }, + ], + }, }, + "version": "1.0", + }, + "trace": false, + }, + "response": { + "body": { + "auto_present": false, + "auto_verify": true, + "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "created_at": "2021-12-31 23:59:59+00:00", + "error_msg": "Invalid structure", + "initiator": "self", + "presentation_exchange_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "role": "prover", "state": "verified", "thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", @@ -31807,105 +24859,6 @@ docs: Out-of-band connections "error_msg": "Invalid structure", "initiator": "self", "presentation_exchange_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "presentation_proposal_dict": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "presentation_proposal": { - "@type": "did:sov:BzCbsNYhMrjHiqZDTUASHg;spec/present-proof/1.0/presentation-preview", - "attributes": [ - { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "mime-type": "image/jpeg", - "name": "favourite_drink", - "referent": "0", - "value": "martini", - }, - { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "mime-type": "image/jpeg", - "name": "favourite_drink", - "referent": "0", - "value": "martini", - }, - ], - "predicates": [ - { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "name": "high_score", - "predicate": ">=", - "threshold": 0, - }, - { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "name": "high_score", - "predicate": ">=", - "threshold": 0, - }, - ], - }, - }, - "presentation_request": { - "name": "Proof request", - "nonce": "1", - "requested_attributes": { - "key": { - "name": "favouriteDrink", - "names": [ - "age", - "age", - ], - "restrictions": [ - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - ], - }, - }, - "requested_predicates": { - "key": { - "name": "index", - "p_type": ">=", - "p_value": 0, - "restrictions": [ - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - ], - }, - }, - "version": "1.0", - }, - "presentation_request_dict": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "request_presentations~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, "role": "prover", "state": "verified", "thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", @@ -31925,105 +24878,6 @@ docs: Out-of-band connections "error_msg": "Invalid structure", "initiator": "self", "presentation_exchange_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "presentation_proposal_dict": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "presentation_proposal": { - "@type": "did:sov:BzCbsNYhMrjHiqZDTUASHg;spec/present-proof/1.0/presentation-preview", - "attributes": [ - { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "mime-type": "image/jpeg", - "name": "favourite_drink", - "referent": "0", - "value": "martini", - }, - { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "mime-type": "image/jpeg", - "name": "favourite_drink", - "referent": "0", - "value": "martini", - }, - ], - "predicates": [ - { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "name": "high_score", - "predicate": ">=", - "threshold": 0, - }, - { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "name": "high_score", - "predicate": ">=", - "threshold": 0, - }, - ], - }, - }, - "presentation_request": { - "name": "Proof request", - "nonce": "1", - "requested_attributes": { - "key": { - "name": "favouriteDrink", - "names": [ - "age", - "age", - ], - "restrictions": [ - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - ], - }, - }, - "requested_predicates": { - "key": { - "name": "index", - "p_type": ">=", - "p_value": 0, - "restrictions": [ - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - ], - }, - }, - "version": "1.0", - }, - "presentation_request_dict": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "request_presentations~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, "role": "prover", "state": "verified", "thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", @@ -32096,20 +24950,6 @@ docs: Out-of-band connections "response": { "body": [ { - "cred_info": { - "attrs": { - "key": "alice", - }, - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "cred_rev_id": "12345", - "referent": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "rev_reg_id": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - }, - "interval": { - "from": 1640995199, - "to": 1640995199, - }, "presentation_referents": [ "1_age_uuid", "1_age_uuid", @@ -32192,130 +25032,7 @@ docs: Out-of-band connections "created_at": "2021-12-31 23:59:59+00:00", "error_msg": "Invalid structure", "initiator": "self", - "presentation": { - "identifiers": [ - { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - }, - ], - "proof": { - "proofs": [ - {}, - ], - }, - "requested_proof": { - "predicates": { - "key": {}, - }, - }, - }, "presentation_exchange_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "presentation_proposal_dict": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "presentation_proposal": { - "@type": "did:sov:BzCbsNYhMrjHiqZDTUASHg;spec/present-proof/1.0/presentation-preview", - "attributes": [ - { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "mime-type": "image/jpeg", - "name": "favourite_drink", - "referent": "0", - "value": "martini", - }, - { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "mime-type": "image/jpeg", - "name": "favourite_drink", - "referent": "0", - "value": "martini", - }, - ], - "predicates": [ - { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "name": "high_score", - "predicate": ">=", - "threshold": 0, - }, - { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "name": "high_score", - "predicate": ">=", - "threshold": 0, - }, - ], - }, - }, - "presentation_request": { - "name": "Proof request", - "non_revoked": { - "from": 1640995199, - "to": 1640995199, - }, - "nonce": "1", - "requested_attributes": { - "key": { - "name": "favouriteDrink", - "names": [ - "age", - "age", - ], - "restrictions": [ - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - ], - }, - }, - "requested_predicates": { - "key": { - "name": "index", - "p_type": ">=", - "p_value": 0, - "restrictions": [ - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - ], - }, - }, - "version": "1.0", - }, - "presentation_request_dict": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "request_presentations~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, "role": "prover", "state": "verified", "thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", @@ -32452,130 +25169,7 @@ docs: Out-of-band connections "created_at": "2021-12-31 23:59:59+00:00", "error_msg": "Invalid structure", "initiator": "self", - "presentation": { - "identifiers": [ - { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - }, - ], - "proof": { - "proofs": [ - {}, - ], - }, - "requested_proof": { - "predicates": { - "key": {}, - }, - }, - }, "presentation_exchange_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "presentation_proposal_dict": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "presentation_proposal": { - "@type": "did:sov:BzCbsNYhMrjHiqZDTUASHg;spec/present-proof/1.0/presentation-preview", - "attributes": [ - { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "mime-type": "image/jpeg", - "name": "favourite_drink", - "referent": "0", - "value": "martini", - }, - { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "mime-type": "image/jpeg", - "name": "favourite_drink", - "referent": "0", - "value": "martini", - }, - ], - "predicates": [ - { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "name": "high_score", - "predicate": ">=", - "threshold": 0, - }, - { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "name": "high_score", - "predicate": ">=", - "threshold": 0, - }, - ], - }, - }, - "presentation_request": { - "name": "Proof request", - "non_revoked": { - "from": 1640995199, - "to": 1640995199, - }, - "nonce": "1", - "requested_attributes": { - "key": { - "name": "favouriteDrink", - "names": [ - "age", - "age", - ], - "restrictions": [ - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - ], - }, - }, - "requested_predicates": { - "key": { - "name": "index", - "p_type": ">=", - "p_value": 0, - "restrictions": [ - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - ], - }, - }, - "version": "1.0", - }, - "presentation_request_dict": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "request_presentations~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, "role": "prover", "state": "verified", "thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", @@ -32673,146 +25267,23 @@ docs: Out-of-band connections }, { "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "name": "high_score", - "predicate": ">=", - "threshold": 0, - }, - ], - }, - "trace": false, - }, - "response": { - "body": { - "auto_present": false, - "auto_verify": true, - "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "created_at": "2021-12-31 23:59:59+00:00", - "error_msg": "Invalid structure", - "initiator": "self", - "presentation": { - "identifiers": [ - { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - }, - ], - "proof": { - "proofs": [ - {}, - ], - }, - "requested_proof": { - "predicates": { - "key": {}, - }, - }, - }, - "presentation_exchange_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "presentation_proposal_dict": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "presentation_proposal": { - "@type": "did:sov:BzCbsNYhMrjHiqZDTUASHg;spec/present-proof/1.0/presentation-preview", - "attributes": [ - { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "mime-type": "image/jpeg", - "name": "favourite_drink", - "referent": "0", - "value": "martini", - }, - { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "mime-type": "image/jpeg", - "name": "favourite_drink", - "referent": "0", - "value": "martini", - }, - ], - "predicates": [ - { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "name": "high_score", - "predicate": ">=", - "threshold": 0, - }, - { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "name": "high_score", - "predicate": ">=", - "threshold": 0, - }, - ], - }, - }, - "presentation_request": { - "name": "Proof request", - "non_revoked": { - "from": 1640995199, - "to": 1640995199, - }, - "nonce": "1", - "requested_attributes": { - "key": { - "name": "favouriteDrink", - "names": [ - "age", - "age", - ], - "restrictions": [ - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - ], - }, - }, - "requested_predicates": { - "key": { - "name": "index", - "p_type": ">=", - "p_value": 0, - "restrictions": [ - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - ], - }, + "name": "high_score", + "predicate": ">=", + "threshold": 0, }, - "version": "1.0", - }, - "presentation_request_dict": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "request_presentations~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, + ], + }, + "trace": false, + }, + "response": { + "body": { + "auto_present": false, + "auto_verify": true, + "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "created_at": "2021-12-31 23:59:59+00:00", + "error_msg": "Invalid structure", + "initiator": "self", + "presentation_exchange_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "role": "prover", "state": "verified", "thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", @@ -32909,130 +25380,7 @@ docs: Out-of-band connections "created_at": "2021-12-31 23:59:59+00:00", "error_msg": "Invalid structure", "initiator": "self", - "presentation": { - "identifiers": [ - { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - }, - ], - "proof": { - "proofs": [ - {}, - ], - }, - "requested_proof": { - "predicates": { - "key": {}, - }, - }, - }, "presentation_exchange_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "presentation_proposal_dict": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "presentation_proposal": { - "@type": "did:sov:BzCbsNYhMrjHiqZDTUASHg;spec/present-proof/1.0/presentation-preview", - "attributes": [ - { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "mime-type": "image/jpeg", - "name": "favourite_drink", - "referent": "0", - "value": "martini", - }, - { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "mime-type": "image/jpeg", - "name": "favourite_drink", - "referent": "0", - "value": "martini", - }, - ], - "predicates": [ - { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "name": "high_score", - "predicate": ">=", - "threshold": 0, - }, - { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "name": "high_score", - "predicate": ">=", - "threshold": 0, - }, - ], - }, - }, - "presentation_request": { - "name": "Proof request", - "non_revoked": { - "from": 1640995199, - "to": 1640995199, - }, - "nonce": "1", - "requested_attributes": { - "key": { - "name": "favouriteDrink", - "names": [ - "age", - "age", - ], - "restrictions": [ - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - ], - }, - }, - "requested_predicates": { - "key": { - "name": "index", - "p_type": ">=", - "p_value": 0, - "restrictions": [ - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - ], - }, - }, - "version": "1.0", - }, - "presentation_request_dict": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "request_presentations~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, "role": "prover", "state": "verified", "thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", @@ -33091,130 +25439,7 @@ docs: Out-of-band connections "created_at": "2021-12-31 23:59:59+00:00", "error_msg": "Invalid structure", "initiator": "self", - "presentation": { - "identifiers": [ - { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - }, - ], - "proof": { - "proofs": [ - {}, - ], - }, - "requested_proof": { - "predicates": { - "key": {}, - }, - }, - }, "presentation_exchange_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "presentation_proposal_dict": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "presentation_proposal": { - "@type": "did:sov:BzCbsNYhMrjHiqZDTUASHg;spec/present-proof/1.0/presentation-preview", - "attributes": [ - { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "mime-type": "image/jpeg", - "name": "favourite_drink", - "referent": "0", - "value": "martini", - }, - { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "mime-type": "image/jpeg", - "name": "favourite_drink", - "referent": "0", - "value": "martini", - }, - ], - "predicates": [ - { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "name": "high_score", - "predicate": ">=", - "threshold": 0, - }, - { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "name": "high_score", - "predicate": ">=", - "threshold": 0, - }, - ], - }, - }, - "presentation_request": { - "name": "Proof request", - "non_revoked": { - "from": 1640995199, - "to": 1640995199, - }, - "nonce": "1", - "requested_attributes": { - "key": { - "name": "favouriteDrink", - "names": [ - "age", - "age", - ], - "restrictions": [ - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - ], - }, - }, - "requested_predicates": { - "key": { - "name": "index", - "p_type": ">=", - "p_value": 0, - "restrictions": [ - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - ], - }, - }, - "version": "1.0", - }, - "presentation_request_dict": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "request_presentations~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, "role": "prover", "state": "verified", "thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", @@ -33260,152 +25485,29 @@ docs: Out-of-band connections "response": { "docs": "", "type": "root.V10PresentationExchange", - }, - "source": { - "openapi": "../openapi.yml", - }, - }, - "verify_received_presentation": { - "auth": true, - "display-name": "Verify a received presentation", - "docs": undefined, - "examples": [ - { - "path-parameters": { - "pres_ex_id": "pres_ex_id", - }, - "response": { - "body": { - "auto_present": false, - "auto_verify": true, - "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "created_at": "2021-12-31 23:59:59+00:00", - "error_msg": "Invalid structure", - "initiator": "self", - "presentation": { - "identifiers": [ - { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - }, - ], - "proof": { - "proofs": [ - {}, - ], - }, - "requested_proof": { - "predicates": { - "key": {}, - }, - }, - }, - "presentation_exchange_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "presentation_proposal_dict": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "presentation_proposal": { - "@type": "did:sov:BzCbsNYhMrjHiqZDTUASHg;spec/present-proof/1.0/presentation-preview", - "attributes": [ - { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "mime-type": "image/jpeg", - "name": "favourite_drink", - "referent": "0", - "value": "martini", - }, - { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "mime-type": "image/jpeg", - "name": "favourite_drink", - "referent": "0", - "value": "martini", - }, - ], - "predicates": [ - { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "name": "high_score", - "predicate": ">=", - "threshold": 0, - }, - { - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "name": "high_score", - "predicate": ">=", - "threshold": 0, - }, - ], - }, - }, - "presentation_request": { - "name": "Proof request", - "non_revoked": { - "from": 1640995199, - "to": 1640995199, - }, - "nonce": "1", - "requested_attributes": { - "key": { - "name": "favouriteDrink", - "names": [ - "age", - "age", - ], - "restrictions": [ - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - ], - }, - }, - "requested_predicates": { - "key": { - "name": "index", - "p_type": ">=", - "p_value": 0, - "restrictions": [ - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - ], - }, - }, - "version": "1.0", - }, - "presentation_request_dict": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "request_presentations~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, + }, + "source": { + "openapi": "../openapi.yml", + }, + }, + "verify_received_presentation": { + "auth": true, + "display-name": "Verify a received presentation", + "docs": undefined, + "examples": [ + { + "path-parameters": { + "pres_ex_id": "pres_ex_id", + }, + "response": { + "body": { + "auto_present": false, + "auto_verify": true, + "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "created_at": "2021-12-31 23:59:59+00:00", + "error_msg": "Invalid structure", + "initiator": "self", + "presentation_exchange_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "role": "prover", "state": "verified", "thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", @@ -33535,88 +25637,7 @@ service: created_at: '2021-12-31 23:59:59+00:00' error_msg: Invalid structure initiator: self - presentation: - identifiers: - - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 - proof: - proofs: - - {} - requested_proof: - predicates: - key: {} presentation_exchange_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - presentation_proposal_dict: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - presentation_proposal: - '@type': >- - did:sov:BzCbsNYhMrjHiqZDTUASHg;spec/present-proof/1.0/presentation-preview - attributes: - - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - mime-type: image/jpeg - name: favourite_drink - referent: '0' - value: martini - - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - mime-type: image/jpeg - name: favourite_drink - referent: '0' - value: martini - predicates: - - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - name: high_score - predicate: '>=' - threshold: 0 - - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - name: high_score - predicate: '>=' - threshold: 0 - presentation_request: - name: Proof request - non_revoked: - from: 1640995199 - to: 1640995199 - nonce: '1' - requested_attributes: - key: - name: favouriteDrink - names: - - age - - age - restrictions: - - key: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - - key: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - requested_predicates: - key: - name: index - p_type: '>=' - p_value: 0 - restrictions: - - key: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - - key: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - version: '1.0' - presentation_request_dict: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - request_presentations~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png role: prover state: verified thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 @@ -33666,72 +25687,6 @@ service: error_msg: Invalid structure initiator: self presentation_exchange_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - presentation_proposal_dict: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - presentation_proposal: - '@type': >- - did:sov:BzCbsNYhMrjHiqZDTUASHg;spec/present-proof/1.0/presentation-preview - attributes: - - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - mime-type: image/jpeg - name: favourite_drink - referent: '0' - value: martini - - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - mime-type: image/jpeg - name: favourite_drink - referent: '0' - value: martini - predicates: - - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - name: high_score - predicate: '>=' - threshold: 0 - - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - name: high_score - predicate: '>=' - threshold: 0 - presentation_request: - name: Proof request - nonce: '1' - requested_attributes: - key: - name: favouriteDrink - names: - - age - - age - restrictions: - - key: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - - key: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - requested_predicates: - key: - name: index - p_type: '>=' - p_value: 0 - restrictions: - - key: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - - key: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - version: '1.0' - presentation_request_dict: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - request_presentations~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png role: prover state: verified thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 @@ -33748,72 +25703,6 @@ service: error_msg: Invalid structure initiator: self presentation_exchange_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - presentation_proposal_dict: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - presentation_proposal: - '@type': >- - did:sov:BzCbsNYhMrjHiqZDTUASHg;spec/present-proof/1.0/presentation-preview - attributes: - - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - mime-type: image/jpeg - name: favourite_drink - referent: '0' - value: martini - - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - mime-type: image/jpeg - name: favourite_drink - referent: '0' - value: martini - predicates: - - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - name: high_score - predicate: '>=' - threshold: 0 - - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - name: high_score - predicate: '>=' - threshold: 0 - presentation_request: - name: Proof request - nonce: '1' - requested_attributes: - key: - name: favouriteDrink - names: - - age - - age - restrictions: - - key: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - - key: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - requested_predicates: - key: - name: index - p_type: '>=' - p_value: 0 - restrictions: - - key: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - - key: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - version: '1.0' - presentation_request_dict: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - request_presentations~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png role: prover state: verified thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 @@ -33848,88 +25737,7 @@ service: created_at: '2021-12-31 23:59:59+00:00' error_msg: Invalid structure initiator: self - presentation: - identifiers: - - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 - proof: - proofs: - - {} - requested_proof: - predicates: - key: {} presentation_exchange_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - presentation_proposal_dict: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - presentation_proposal: - '@type': >- - did:sov:BzCbsNYhMrjHiqZDTUASHg;spec/present-proof/1.0/presentation-preview - attributes: - - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - mime-type: image/jpeg - name: favourite_drink - referent: '0' - value: martini - - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - mime-type: image/jpeg - name: favourite_drink - referent: '0' - value: martini - predicates: - - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - name: high_score - predicate: '>=' - threshold: 0 - - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - name: high_score - predicate: '>=' - threshold: 0 - presentation_request: - name: Proof request - non_revoked: - from: 1640995199 - to: 1640995199 - nonce: '1' - requested_attributes: - key: - name: favouriteDrink - names: - - age - - age - restrictions: - - key: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - - key: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - requested_predicates: - key: - name: index - p_type: '>=' - p_value: 0 - restrictions: - - key: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - - key: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - version: '1.0' - presentation_request_dict: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - request_presentations~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png role: prover state: verified thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 @@ -33999,19 +25807,7 @@ service: pres_ex_id: pres_ex_id response: body: - - cred_info: - attrs: - key: alice - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - cred_rev_id: '12345' - referent: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - rev_reg_id: >- - WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0 - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 - interval: - from: 1640995199 - to: 1640995199 - presentation_referents: + - presentation_referents: - 1_age_uuid - 1_age_uuid report_pres_ex_problem: @@ -34083,88 +25879,7 @@ service: created_at: '2021-12-31 23:59:59+00:00' error_msg: Invalid structure initiator: self - presentation: - identifiers: - - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 - proof: - proofs: - - {} - requested_proof: - predicates: - key: {} presentation_exchange_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - presentation_proposal_dict: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - presentation_proposal: - '@type': >- - did:sov:BzCbsNYhMrjHiqZDTUASHg;spec/present-proof/1.0/presentation-preview - attributes: - - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - mime-type: image/jpeg - name: favourite_drink - referent: '0' - value: martini - - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - mime-type: image/jpeg - name: favourite_drink - referent: '0' - value: martini - predicates: - - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - name: high_score - predicate: '>=' - threshold: 0 - - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - name: high_score - predicate: '>=' - threshold: 0 - presentation_request: - name: Proof request - non_revoked: - from: 1640995199 - to: 1640995199 - nonce: '1' - requested_attributes: - key: - name: favouriteDrink - names: - - age - - age - restrictions: - - key: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - - key: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - requested_predicates: - key: - name: index - p_type: '>=' - p_value: 0 - restrictions: - - key: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - - key: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - version: '1.0' - presentation_request_dict: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - request_presentations~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png role: prover state: verified thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 @@ -34213,88 +25928,7 @@ service: created_at: '2021-12-31 23:59:59+00:00' error_msg: Invalid structure initiator: self - presentation: - identifiers: - - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 - proof: - proofs: - - {} - requested_proof: - predicates: - key: {} presentation_exchange_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - presentation_proposal_dict: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - presentation_proposal: - '@type': >- - did:sov:BzCbsNYhMrjHiqZDTUASHg;spec/present-proof/1.0/presentation-preview - attributes: - - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - mime-type: image/jpeg - name: favourite_drink - referent: '0' - value: martini - - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - mime-type: image/jpeg - name: favourite_drink - referent: '0' - value: martini - predicates: - - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - name: high_score - predicate: '>=' - threshold: 0 - - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - name: high_score - predicate: '>=' - threshold: 0 - presentation_request: - name: Proof request - non_revoked: - from: 1640995199 - to: 1640995199 - nonce: '1' - requested_attributes: - key: - name: favouriteDrink - names: - - age - - age - restrictions: - - key: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - - key: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - requested_predicates: - key: - name: index - p_type: '>=' - p_value: 0 - restrictions: - - key: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - - key: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - version: '1.0' - presentation_request_dict: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - request_presentations~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png role: prover state: verified thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 @@ -34329,88 +25963,7 @@ service: created_at: '2021-12-31 23:59:59+00:00' error_msg: Invalid structure initiator: self - presentation: - identifiers: - - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 - proof: - proofs: - - {} - requested_proof: - predicates: - key: {} presentation_exchange_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - presentation_proposal_dict: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - presentation_proposal: - '@type': >- - did:sov:BzCbsNYhMrjHiqZDTUASHg;spec/present-proof/1.0/presentation-preview - attributes: - - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - mime-type: image/jpeg - name: favourite_drink - referent: '0' - value: martini - - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - mime-type: image/jpeg - name: favourite_drink - referent: '0' - value: martini - predicates: - - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - name: high_score - predicate: '>=' - threshold: 0 - - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - name: high_score - predicate: '>=' - threshold: 0 - presentation_request: - name: Proof request - non_revoked: - from: 1640995199 - to: 1640995199 - nonce: '1' - requested_attributes: - key: - name: favouriteDrink - names: - - age - - age - restrictions: - - key: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - - key: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - requested_predicates: - key: - name: index - p_type: '>=' - p_value: 0 - restrictions: - - key: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - - key: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - version: '1.0' - presentation_request_dict: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - request_presentations~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png role: prover state: verified thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 @@ -34490,88 +26043,7 @@ service: created_at: '2021-12-31 23:59:59+00:00' error_msg: Invalid structure initiator: self - presentation: - identifiers: - - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 - proof: - proofs: - - {} - requested_proof: - predicates: - key: {} presentation_exchange_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - presentation_proposal_dict: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - presentation_proposal: - '@type': >- - did:sov:BzCbsNYhMrjHiqZDTUASHg;spec/present-proof/1.0/presentation-preview - attributes: - - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - mime-type: image/jpeg - name: favourite_drink - referent: '0' - value: martini - - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - mime-type: image/jpeg - name: favourite_drink - referent: '0' - value: martini - predicates: - - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - name: high_score - predicate: '>=' - threshold: 0 - - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - name: high_score - predicate: '>=' - threshold: 0 - presentation_request: - name: Proof request - non_revoked: - from: 1640995199 - to: 1640995199 - nonce: '1' - requested_attributes: - key: - name: favouriteDrink - names: - - age - - age - restrictions: - - key: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - - key: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - requested_predicates: - key: - name: index - p_type: '>=' - p_value: 0 - restrictions: - - key: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - - key: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - version: '1.0' - presentation_request_dict: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - request_presentations~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png role: prover state: verified thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 @@ -34646,88 +26118,7 @@ service: created_at: '2021-12-31 23:59:59+00:00' error_msg: Invalid structure initiator: self - presentation: - identifiers: - - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 - proof: - proofs: - - {} - requested_proof: - predicates: - key: {} presentation_exchange_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - presentation_proposal_dict: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - presentation_proposal: - '@type': >- - did:sov:BzCbsNYhMrjHiqZDTUASHg;spec/present-proof/1.0/presentation-preview - attributes: - - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - mime-type: image/jpeg - name: favourite_drink - referent: '0' - value: martini - - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - mime-type: image/jpeg - name: favourite_drink - referent: '0' - value: martini - predicates: - - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - name: high_score - predicate: '>=' - threshold: 0 - - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - name: high_score - predicate: '>=' - threshold: 0 - presentation_request: - name: Proof request - non_revoked: - from: 1640995199 - to: 1640995199 - nonce: '1' - requested_attributes: - key: - name: favouriteDrink - names: - - age - - age - restrictions: - - key: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - - key: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - requested_predicates: - key: - name: index - p_type: '>=' - p_value: 0 - restrictions: - - key: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - - key: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - version: '1.0' - presentation_request_dict: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - request_presentations~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png role: prover state: verified thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 @@ -34783,154 +26174,19 @@ types: { "request": { "auto_verify": false, - "comment": "comment", - "presentation_request": { - "indy": { - "name": "Proof request", - "nonce": "1", - "requested_attributes": { - "key": { - "name": "favouriteDrink", - "names": [ - "age", - "age", - ], - "restrictions": [ - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - ], - }, - }, - "requested_predicates": { - "key": { - "name": "index", - "p_type": ">=", - "p_value": 0, - "restrictions": [ - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - ], - }, - }, - "version": "1.0", - }, - }, - "trace": false, - }, - "response": { - "body": { - "auto_present": false, - "auto_verify": true, - "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "created_at": "2021-12-31 23:59:59+00:00", - "error_msg": "Invalid structure", - "initiator": "self", - "pres": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "dif/presentation-exchange/submission@v1.0", - }, - ], - "presentations~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, + "comment": "comment", + "presentation_request": {}, + "trace": false, + }, + "response": { + "body": { + "auto_present": false, + "auto_verify": true, + "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "created_at": "2021-12-31 23:59:59+00:00", + "error_msg": "Invalid structure", + "initiator": "self", "pres_ex_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "pres_proposal": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "dif/presentation-exchange/submission@v1.0", - }, - ], - "proposals~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, - "pres_request": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "dif/presentation-exchange/submission@v1.0", - }, - ], - "request_presentations~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - "will_confirm": true, - }, "role": "prover", "state": "proposal-sent", "thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", @@ -35030,100 +26286,7 @@ types: "created_at": "2021-12-31 23:59:59+00:00", "error_msg": "Invalid structure", "initiator": "self", - "pres": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "dif/presentation-exchange/submission@v1.0", - }, - ], - "presentations~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, "pres_ex_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "pres_proposal": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "dif/presentation-exchange/submission@v1.0", - }, - ], - "proposals~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, - "pres_request": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "dif/presentation-exchange/submission@v1.0", - }, - ], - "request_presentations~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, "role": "prover", "state": "proposal-sent", "thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", @@ -35142,100 +26305,7 @@ types: "created_at": "2021-12-31 23:59:59+00:00", "error_msg": "Invalid structure", "initiator": "self", - "pres": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "dif/presentation-exchange/submission@v1.0", - }, - ], - "presentations~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, "pres_ex_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "pres_proposal": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "dif/presentation-exchange/submission@v1.0", - }, - ], - "proposals~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, - "pres_request": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "dif/presentation-exchange/submission@v1.0", - }, - ], - "request_presentations~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, "role": "prover", "state": "proposal-sent", "thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", @@ -35308,20 +26378,6 @@ types: "response": { "body": [ { - "cred_info": { - "attrs": { - "key": "alice", - }, - "cred_def_id": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "cred_rev_id": "12345", - "referent": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "rev_reg_id": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - }, - "interval": { - "from": 1640995199, - "to": 1640995199, - }, "presentation_referents": [ "1_age_uuid", "1_age_uuid", @@ -35354,154 +26410,57 @@ types: }, }, "extra_query": { - "docs": "(JSON) object mapping referents to extra WQL queries", - "type": "optional", - "validation": { - "format": undefined, - "maxLength": undefined, - "minLength": undefined, - "pattern": "^{\s*".*?"\s*:\s*{.*?}\s*(,\s*".*?"\s*:\s*{.*?}\s*)*\s*}$", - }, - }, - "referent": { - "docs": "Proof request referents of interest, comma-separated", - "type": "optional", - }, - "start": { - "docs": "Start index", - "type": "optional", - "validation": { - "format": undefined, - "maxLength": undefined, - "minLength": undefined, - "pattern": "^[0-9]*$", - }, - }, - }, - }, - "response": { - "docs": "", - "type": "list", - }, - "source": { - "openapi": "../openapi.yml", - }, - }, - "get_pres_ex_record": { - "auth": true, - "display-name": "Fetch a single presentation exchange record", - "docs": undefined, - "examples": [ - { - "path-parameters": { - "pres_ex_id": "pres_ex_id", - }, - "response": { - "body": { - "auto_present": false, - "auto_verify": true, - "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "created_at": "2021-12-31 23:59:59+00:00", - "error_msg": "Invalid structure", - "initiator": "self", - "pres": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "dif/presentation-exchange/submission@v1.0", - }, - ], - "presentations~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, - "pres_ex_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "pres_proposal": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "dif/presentation-exchange/submission@v1.0", - }, - ], - "proposals~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, - "pres_request": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "dif/presentation-exchange/submission@v1.0", - }, - ], - "request_presentations~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - "will_confirm": true, - }, + "docs": "(JSON) object mapping referents to extra WQL queries", + "type": "optional", + "validation": { + "format": undefined, + "maxLength": undefined, + "minLength": undefined, + "pattern": "^{\s*".*?"\s*:\s*{.*?}\s*(,\s*".*?"\s*:\s*{.*?}\s*)*\s*}$", + }, + }, + "referent": { + "docs": "Proof request referents of interest, comma-separated", + "type": "optional", + }, + "start": { + "docs": "Start index", + "type": "optional", + "validation": { + "format": undefined, + "maxLength": undefined, + "minLength": undefined, + "pattern": "^[0-9]*$", + }, + }, + }, + }, + "response": { + "docs": "", + "type": "list", + }, + "source": { + "openapi": "../openapi.yml", + }, + }, + "get_pres_ex_record": { + "auth": true, + "display-name": "Fetch a single presentation exchange record", + "docs": undefined, + "examples": [ + { + "path-parameters": { + "pres_ex_id": "pres_ex_id", + }, + "response": { + "body": { + "auto_present": false, + "auto_verify": true, + "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "created_at": "2021-12-31 23:59:59+00:00", + "error_msg": "Invalid structure", + "initiator": "self", + "pres_ex_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "role": "prover", "state": "proposal-sent", "thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", @@ -35591,45 +26550,7 @@ types: "auto_verify": false, "comment": "comment", "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "presentation_request": { - "indy": { - "name": "Proof request", - "nonce": "1", - "requested_attributes": { - "key": { - "name": "favouriteDrink", - "names": [ - "age", - "age", - ], - "restrictions": [ - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - ], - }, - }, - "requested_predicates": { - "key": { - "name": "index", - "p_type": ">=", - "p_value": 0, - "restrictions": [ - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - ], - }, - }, - "version": "1.0", - }, - }, + "presentation_request": {}, "trace": false, }, "response": { @@ -35640,104 +26561,7 @@ types: "created_at": "2021-12-31 23:59:59+00:00", "error_msg": "Invalid structure", "initiator": "self", - "pres": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "dif/presentation-exchange/submission@v1.0", - }, - ], - "presentations~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, "pres_ex_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "pres_proposal": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "dif/presentation-exchange/submission@v1.0", - }, - ], - "proposals~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, - "pres_request": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "dif/presentation-exchange/submission@v1.0", - }, - ], - "request_presentations~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - "will_confirm": true, - }, "role": "prover", "state": "proposal-sent", "thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", @@ -35808,153 +26632,18 @@ types: "auto_present": true, "comment": "comment", "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "presentation_proposal": { - "indy": { - "name": "Proof request", - "nonce": "1", - "requested_attributes": { - "key": { - "name": "favouriteDrink", - "names": [ - "age", - "age", - ], - "restrictions": [ - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - ], - }, - }, - "requested_predicates": { - "key": { - "name": "index", - "p_type": ">=", - "p_value": 0, - "restrictions": [ - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - { - "key": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - }, - ], - }, - }, - "version": "1.0", - }, - }, + "presentation_proposal": {}, "trace": false, }, - "response": { - "body": { - "auto_present": false, - "auto_verify": true, - "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "created_at": "2021-12-31 23:59:59+00:00", - "error_msg": "Invalid structure", - "initiator": "self", - "pres": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "dif/presentation-exchange/submission@v1.0", - }, - ], - "presentations~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, - "pres_ex_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "pres_proposal": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "dif/presentation-exchange/submission@v1.0", - }, - ], - "proposals~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, - "pres_request": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "dif/presentation-exchange/submission@v1.0", - }, - ], - "request_presentations~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - "will_confirm": true, - }, + "response": { + "body": { + "auto_present": false, + "auto_verify": true, + "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", + "created_at": "2021-12-31 23:59:59+00:00", + "error_msg": "Invalid structure", + "initiator": "self", + "pres_ex_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "role": "prover", "state": "proposal-sent", "thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", @@ -36026,24 +26715,6 @@ types: "pres_ex_id": "pres_ex_id", }, "request": { - "indy": { - "requested_attributes": { - "key": { - "cred_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "revealed": true, - }, - }, - "requested_predicates": { - "key": { - "cred_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "timestamp": 1640995199, - }, - }, - "self_attested_attributes": { - "key": "self_attested_value", - }, - "trace": false, - }, "trace": true, }, "response": { @@ -36054,104 +26725,7 @@ types: "created_at": "2021-12-31 23:59:59+00:00", "error_msg": "Invalid structure", "initiator": "self", - "pres": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "dif/presentation-exchange/submission@v1.0", - }, - ], - "presentations~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, "pres_ex_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "pres_proposal": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "dif/presentation-exchange/submission@v1.0", - }, - ], - "proposals~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, - "pres_request": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "dif/presentation-exchange/submission@v1.0", - }, - ], - "request_presentations~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - "will_confirm": true, - }, "role": "prover", "state": "proposal-sent", "thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", @@ -36225,104 +26799,7 @@ types: "created_at": "2021-12-31 23:59:59+00:00", "error_msg": "Invalid structure", "initiator": "self", - "pres": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "dif/presentation-exchange/submission@v1.0", - }, - ], - "presentations~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, "pres_ex_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "pres_proposal": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "dif/presentation-exchange/submission@v1.0", - }, - ], - "proposals~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, - "pres_request": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "dif/presentation-exchange/submission@v1.0", - }, - ], - "request_presentations~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - "will_confirm": true, - }, "role": "prover", "state": "proposal-sent", "thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", @@ -36389,105 +26866,8 @@ types: "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "created_at": "2021-12-31 23:59:59+00:00", "error_msg": "Invalid structure", - "initiator": "self", - "pres": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "dif/presentation-exchange/submission@v1.0", - }, - ], - "presentations~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, - "pres_ex_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "pres_proposal": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "dif/presentation-exchange/submission@v1.0", - }, - ], - "proposals~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - }, - "pres_request": { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "@type": "https://didcomm.org/my-family/1.0/my-message-type", - "comment": "comment", - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "dif/presentation-exchange/submission@v1.0", - }, - ], - "request_presentations~attach": [ - { - "@id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "byte_count": 1234, - "data": { - "base64": "ey4uLn0=", - "json": { - "key": "value", - }, - "links": [ - "https://link.to/data", - "https://link.to/data", - ], - "sha256": "617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb", - }, - "description": "view from doorway, facing east, with lights off", - "filename": "IMG1092348.png", - "lastmod_time": "2021-12-31 23:59:59+00:00", - "mime-type": "image/png", - }, - ], - "will_confirm": true, - }, + "initiator": "self", + "pres_ex_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "role": "prover", "state": "proposal-sent", "thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", @@ -36604,28 +26984,7 @@ service: - request: auto_verify: false comment: comment - presentation_request: - indy: - name: Proof request - nonce: '1' - requested_attributes: - key: - name: favouriteDrink - names: - - age - - age - restrictions: - - key: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - - key: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - requested_predicates: - key: - name: index - p_type: '>=' - p_value: 0 - restrictions: - - key: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - - key: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - version: '1.0' + presentation_request: {} trace: false response: body: @@ -36635,77 +26994,7 @@ service: created_at: '2021-12-31 23:59:59+00:00' error_msg: Invalid structure initiator: self - pres: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: dif/presentation-exchange/submission@v1.0 - presentations~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png pres_ex_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - pres_proposal: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: dif/presentation-exchange/submission@v1.0 - proposals~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - pres_request: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: dif/presentation-exchange/submission@v1.0 - request_presentations~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - will_confirm: true role: prover state: proposal-sent thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 @@ -36754,73 +27043,7 @@ service: created_at: '2021-12-31 23:59:59+00:00' error_msg: Invalid structure initiator: self - pres: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: dif/presentation-exchange/submission@v1.0 - presentations~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png pres_ex_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - pres_proposal: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: dif/presentation-exchange/submission@v1.0 - proposals~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - pres_request: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: dif/presentation-exchange/submission@v1.0 - request_presentations~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png role: prover state: proposal-sent thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 @@ -36836,73 +27059,7 @@ service: created_at: '2021-12-31 23:59:59+00:00' error_msg: Invalid structure initiator: self - pres: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: dif/presentation-exchange/submission@v1.0 - presentations~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png pres_ex_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - pres_proposal: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: dif/presentation-exchange/submission@v1.0 - proposals~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - pres_request: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: dif/presentation-exchange/submission@v1.0 - request_presentations~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png role: prover state: proposal-sent thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 @@ -36937,77 +27094,7 @@ service: created_at: '2021-12-31 23:59:59+00:00' error_msg: Invalid structure initiator: self - pres: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: dif/presentation-exchange/submission@v1.0 - presentations~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png pres_ex_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - pres_proposal: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: dif/presentation-exchange/submission@v1.0 - proposals~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - pres_request: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: dif/presentation-exchange/submission@v1.0 - request_presentations~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - will_confirm: true role: prover state: proposal-sent thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 @@ -37077,19 +27164,7 @@ service: pres_ex_id: pres_ex_id response: body: - - cred_info: - attrs: - key: alice - cred_def_id: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - cred_rev_id: '12345' - referent: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - rev_reg_id: >- - WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0 - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 - interval: - from: 1640995199 - to: 1640995199 - presentation_referents: + - presentation_referents: - 1_age_uuid - 1_age_uuid report_pres_ex_problem: @@ -37150,18 +27225,6 @@ service: - path-parameters: pres_ex_id: pres_ex_id request: - indy: - requested_attributes: - key: - cred_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - revealed: true - requested_predicates: - key: - cred_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - timestamp: 1640995199 - self_attested_attributes: - key: self_attested_value - trace: false trace: true response: body: @@ -37171,77 +27234,7 @@ service: created_at: '2021-12-31 23:59:59+00:00' error_msg: Invalid structure initiator: self - pres: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: dif/presentation-exchange/submission@v1.0 - presentations~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png pres_ex_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - pres_proposal: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: dif/presentation-exchange/submission@v1.0 - proposals~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - pres_request: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: dif/presentation-exchange/submission@v1.0 - request_presentations~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - will_confirm: true role: prover state: proposal-sent thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 @@ -37290,77 +27283,7 @@ service: created_at: '2021-12-31 23:59:59+00:00' error_msg: Invalid structure initiator: self - pres: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: dif/presentation-exchange/submission@v1.0 - presentations~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png pres_ex_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - pres_proposal: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: dif/presentation-exchange/submission@v1.0 - proposals~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - pres_request: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: dif/presentation-exchange/submission@v1.0 - request_presentations~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - will_confirm: true role: prover state: proposal-sent thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 @@ -37391,81 +27314,11 @@ service: body: auto_present: false auto_verify: true - connection_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - created_at: '2021-12-31 23:59:59+00:00' - error_msg: Invalid structure - initiator: self - pres: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: dif/presentation-exchange/submission@v1.0 - presentations~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png + connection_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 + created_at: '2021-12-31 23:59:59+00:00' + error_msg: Invalid structure + initiator: self pres_ex_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - pres_proposal: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: dif/presentation-exchange/submission@v1.0 - proposals~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - pres_request: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: dif/presentation-exchange/submission@v1.0 - request_presentations~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - will_confirm: true role: prover state: proposal-sent thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 @@ -37513,28 +27366,7 @@ service: auto_present: true comment: comment connection_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - presentation_proposal: - indy: - name: Proof request - nonce: '1' - requested_attributes: - key: - name: favouriteDrink - names: - - age - - age - restrictions: - - key: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - - key: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - requested_predicates: - key: - name: index - p_type: '>=' - p_value: 0 - restrictions: - - key: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - - key: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - version: '1.0' + presentation_proposal: {} trace: false response: body: @@ -37544,77 +27376,7 @@ service: created_at: '2021-12-31 23:59:59+00:00' error_msg: Invalid structure initiator: self - pres: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: dif/presentation-exchange/submission@v1.0 - presentations~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png pres_ex_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - pres_proposal: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: dif/presentation-exchange/submission@v1.0 - proposals~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - pres_request: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: dif/presentation-exchange/submission@v1.0 - request_presentations~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - will_confirm: true role: prover state: proposal-sent thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 @@ -37659,28 +27421,7 @@ service: auto_verify: false comment: comment connection_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - presentation_request: - indy: - name: Proof request - nonce: '1' - requested_attributes: - key: - name: favouriteDrink - names: - - age - - age - restrictions: - - key: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - - key: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - requested_predicates: - key: - name: index - p_type: '>=' - p_value: 0 - restrictions: - - key: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - - key: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - version: '1.0' + presentation_request: {} trace: false response: body: @@ -37690,77 +27431,7 @@ service: created_at: '2021-12-31 23:59:59+00:00' error_msg: Invalid structure initiator: self - pres: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: dif/presentation-exchange/submission@v1.0 - presentations~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png pres_ex_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - pres_proposal: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: dif/presentation-exchange/submission@v1.0 - proposals~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - pres_request: - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - '@type': https://didcomm.org/my-family/1.0/my-message-type - comment: comment - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: dif/presentation-exchange/submission@v1.0 - request_presentations~attach: - - '@id': 3fa85f64-5717-4562-b3fc-2c963f66afa6 - byte_count: 1234 - data: - base64: ey4uLn0= - json: - key: value - links: - - https://link.to/data - - https://link.to/data - sha256: >- - 617a48c7c8afe0521efdc03e5bb0ad9e655893e6b4b51f0e794d70fba132aacb - description: view from doorway, facing east, with lights off - filename: IMG1092348.png - lastmod_time: '2021-12-31 23:59:59+00:00' - mime-type: image/png - will_confirm: true role: prover state: proposal-sent thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 @@ -37974,24 +27645,6 @@ docs: did resolver interface. ], "record_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "revoc_def_type": "CL_ACCUM", - "revoc_reg_def": { - "credDefId": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "id": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "revocDefType": "CL_ACCUM", - "tag": "tag", - "value": { - "maxCredNum": 10, - "tailsHash": "H3C2AVvLMv6gmMNam3uVAjZpfkcJCwDwnZn6z3wXmqPV", - }, - "ver": "1.0", - }, - "revoc_reg_entry": { - "value": { - "accum": "21 11792B036AED0AAA12A4 4 298B2571FFC63A737", - "prevAccum": "21 137AC810975E4 6 76F0384B6F23", - }, - "ver": "1.0", - }, "revoc_reg_id": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", "state": "active", "tag": "tag", @@ -38161,24 +27814,6 @@ docs: did resolver interface. ], "record_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "revoc_def_type": "CL_ACCUM", - "revoc_reg_def": { - "credDefId": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "id": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "revocDefType": "CL_ACCUM", - "tag": "tag", - "value": { - "maxCredNum": 10, - "tailsHash": "H3C2AVvLMv6gmMNam3uVAjZpfkcJCwDwnZn6z3wXmqPV", - }, - "ver": "1.0", - }, - "revoc_reg_entry": { - "value": { - "accum": "21 11792B036AED0AAA12A4 4 298B2571FFC63A737", - "prevAccum": "21 137AC810975E4 6 76F0384B6F23", - }, - "ver": "1.0", - }, "revoc_reg_id": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", "state": "active", "tag": "tag", @@ -38466,24 +28101,6 @@ docs: did resolver interface. ], "record_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "revoc_def_type": "CL_ACCUM", - "revoc_reg_def": { - "credDefId": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "id": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "revocDefType": "CL_ACCUM", - "tag": "tag", - "value": { - "maxCredNum": 10, - "tailsHash": "H3C2AVvLMv6gmMNam3uVAjZpfkcJCwDwnZn6z3wXmqPV", - }, - "ver": "1.0", - }, - "revoc_reg_entry": { - "value": { - "accum": "21 11792B036AED0AAA12A4 4 298B2571FFC63A737", - "prevAccum": "21 137AC810975E4 6 76F0384B6F23", - }, - "ver": "1.0", - }, "revoc_reg_id": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", "state": "active", "tag": "tag", @@ -38537,14 +28154,6 @@ docs: did resolver interface. ], "record_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "revoc_def_type": "CL_ACCUM", - "revoc_reg_def": { - "credDefId": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "id": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "ver": "1.0", - }, - "revoc_reg_entry": { - "ver": "1.0", - }, "revoc_reg_id": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", "state": "active", "tag": "tag", @@ -38554,39 +28163,6 @@ docs: did resolver interface. "updated_at": "2021-12-31 23:59:59+00:00", }, }, - "txn": { - "_type": "101", - "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "created_at": "2021-12-31 23:59:59+00:00", - "endorser_write_txn": true, - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "dif/endorse-transaction/request@v1.0", - }, - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "dif/endorse-transaction/request@v1.0", - }, - ], - "messages_attach": [ - {}, - {}, - ], - "signature_request": [ - {}, - {}, - ], - "signature_response": [ - {}, - {}, - ], - "state": "active", - "thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "trace": true, - "transaction_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "updated_at": "2021-12-31 23:59:59+00:00", - }, }, }, }, @@ -38644,24 +28220,6 @@ docs: did resolver interface. ], "record_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "revoc_def_type": "CL_ACCUM", - "revoc_reg_def": { - "credDefId": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "id": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "revocDefType": "CL_ACCUM", - "tag": "tag", - "value": { - "maxCredNum": 10, - "tailsHash": "H3C2AVvLMv6gmMNam3uVAjZpfkcJCwDwnZn6z3wXmqPV", - }, - "ver": "1.0", - }, - "revoc_reg_entry": { - "value": { - "accum": "21 11792B036AED0AAA12A4 4 298B2571FFC63A737", - "prevAccum": "21 137AC810975E4 6 76F0384B6F23", - }, - "ver": "1.0", - }, "revoc_reg_id": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", "state": "active", "tag": "tag", @@ -38728,39 +28286,6 @@ docs: did resolver interface. ], }, }, - "txn": { - "_type": "101", - "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "created_at": "2021-12-31 23:59:59+00:00", - "endorser_write_txn": true, - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "dif/endorse-transaction/request@v1.0", - }, - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "dif/endorse-transaction/request@v1.0", - }, - ], - "messages_attach": [ - {}, - {}, - ], - "signature_request": [ - {}, - {}, - ], - "signature_response": [ - {}, - {}, - ], - "state": "active", - "thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "trace": true, - "transaction_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "updated_at": "2021-12-31 23:59:59+00:00", - }, }, }, }, @@ -38914,24 +28439,6 @@ docs: did resolver interface. ], "record_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "revoc_def_type": "CL_ACCUM", - "revoc_reg_def": { - "credDefId": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "id": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "revocDefType": "CL_ACCUM", - "tag": "tag", - "value": { - "maxCredNum": 10, - "tailsHash": "H3C2AVvLMv6gmMNam3uVAjZpfkcJCwDwnZn6z3wXmqPV", - }, - "ver": "1.0", - }, - "revoc_reg_entry": { - "value": { - "accum": "21 11792B036AED0AAA12A4 4 298B2571FFC63A737", - "prevAccum": "21 137AC810975E4 6 76F0384B6F23", - }, - "ver": "1.0", - }, "revoc_reg_id": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", "state": "active", "tag": "tag", @@ -39039,24 +28546,6 @@ docs: did resolver interface. ], "record_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "revoc_def_type": "CL_ACCUM", - "revoc_reg_def": { - "credDefId": "WgWxqztrNooG92RXvxSTWv:3:CL:20:tag", - "id": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", - "revocDefType": "CL_ACCUM", - "tag": "tag", - "value": { - "maxCredNum": 10, - "tailsHash": "H3C2AVvLMv6gmMNam3uVAjZpfkcJCwDwnZn6z3wXmqPV", - }, - "ver": "1.0", - }, - "revoc_reg_entry": { - "value": { - "accum": "21 11792B036AED0AAA12A4 4 298B2571FFC63A737", - "prevAccum": "21 137AC810975E4 6 76F0384B6F23", - }, - "ver": "1.0", - }, "revoc_reg_id": "WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0", "state": "active", "tag": "tag", @@ -39212,21 +28701,6 @@ service: - '23' record_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 revoc_def_type: CL_ACCUM - revoc_reg_def: - credDefId: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - id: >- - WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0 - revocDefType: CL_ACCUM - tag: tag - value: - maxCredNum: 10 - tailsHash: H3C2AVvLMv6gmMNam3uVAjZpfkcJCwDwnZn6z3wXmqPV - ver: '1.0' - revoc_reg_entry: - value: - accum: 21 11792B036AED0AAA12A4 4 298B2571FFC63A737 - prevAccum: 21 137AC810975E4 6 76F0384B6F23 - ver: '1.0' revoc_reg_id: >- WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0 state: active @@ -39312,21 +28786,6 @@ service: - '23' record_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 revoc_def_type: CL_ACCUM - revoc_reg_def: - credDefId: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - id: >- - WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0 - revocDefType: CL_ACCUM - tag: tag - value: - maxCredNum: 10 - tailsHash: H3C2AVvLMv6gmMNam3uVAjZpfkcJCwDwnZn6z3wXmqPV - ver: '1.0' - revoc_reg_entry: - value: - accum: 21 11792B036AED0AAA12A4 4 298B2571FFC63A737 - prevAccum: 21 137AC810975E4 6 76F0384B6F23 - ver: '1.0' revoc_reg_id: >- WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0 state: active @@ -39406,30 +28865,6 @@ service: key: - '12345' - '12345' - txn: - _type: '101' - connection_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - created_at: '2021-12-31 23:59:59+00:00' - endorser_write_txn: true - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: dif/endorse-transaction/request@v1.0 - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: dif/endorse-transaction/request@v1.0 - messages_attach: - - {} - - {} - signature_request: - - {} - - {} - signature_response: - - {} - - {} - state: active - thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - trace: true - transaction_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - updated_at: '2021-12-31 23:59:59+00:00' get_created_registries: path: /revocation/registries/created method: GET @@ -39519,21 +28954,6 @@ service: - '23' record_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 revoc_def_type: CL_ACCUM - revoc_reg_def: - credDefId: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - id: >- - WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0 - revocDefType: CL_ACCUM - tag: tag - value: - maxCredNum: 10 - tailsHash: H3C2AVvLMv6gmMNam3uVAjZpfkcJCwDwnZn6z3wXmqPV - ver: '1.0' - revoc_reg_entry: - value: - accum: 21 11792B036AED0AAA12A4 4 298B2571FFC63A737 - prevAccum: 21 137AC810975E4 6 76F0384B6F23 - ver: '1.0' revoc_reg_id: >- WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0 state: active @@ -39583,21 +29003,6 @@ service: - '23' record_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 revoc_def_type: CL_ACCUM - revoc_reg_def: - credDefId: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - id: >- - WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0 - revocDefType: CL_ACCUM - tag: tag - value: - maxCredNum: 10 - tailsHash: H3C2AVvLMv6gmMNam3uVAjZpfkcJCwDwnZn6z3wXmqPV - ver: '1.0' - revoc_reg_entry: - value: - accum: 21 11792B036AED0AAA12A4 4 298B2571FFC63A737 - prevAccum: 21 137AC810975E4 6 76F0384B6F23 - ver: '1.0' revoc_reg_id: >- WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0 state: active @@ -39646,13 +29051,6 @@ service: - '23' record_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 revoc_def_type: CL_ACCUM - revoc_reg_def: - credDefId: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - id: >- - WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0 - ver: '1.0' - revoc_reg_entry: - ver: '1.0' revoc_reg_id: >- WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0 state: active @@ -39661,30 +29059,6 @@ service: tails_local_path: tails_local_path tails_public_uri: tails_public_uri updated_at: '2021-12-31 23:59:59+00:00' - txn: - _type: '101' - connection_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - created_at: '2021-12-31 23:59:59+00:00' - endorser_write_txn: true - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: dif/endorse-transaction/request@v1.0 - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: dif/endorse-transaction/request@v1.0 - messages_attach: - - {} - - {} - signature_request: - - {} - - {} - signature_response: - - {} - - {} - state: active - thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - trace: true - transaction_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - updated_at: '2021-12-31 23:59:59+00:00' publish_revocation_registry_entry: path: /revocation/registry/{rev_reg_id}/entry method: POST @@ -39724,21 +29098,6 @@ service: - '23' record_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 revoc_def_type: CL_ACCUM - revoc_reg_def: - credDefId: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - id: >- - WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0 - revocDefType: CL_ACCUM - tag: tag - value: - maxCredNum: 10 - tailsHash: H3C2AVvLMv6gmMNam3uVAjZpfkcJCwDwnZn6z3wXmqPV - ver: '1.0' - revoc_reg_entry: - value: - accum: 21 11792B036AED0AAA12A4 4 298B2571FFC63A737 - prevAccum: 21 137AC810975E4 6 76F0384B6F23 - ver: '1.0' revoc_reg_id: >- WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0 state: active @@ -39891,21 +29250,6 @@ service: - '23' record_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 revoc_def_type: CL_ACCUM - revoc_reg_def: - credDefId: WgWxqztrNooG92RXvxSTWv:3:CL:20:tag - id: >- - WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0 - revocDefType: CL_ACCUM - tag: tag - value: - maxCredNum: 10 - tailsHash: H3C2AVvLMv6gmMNam3uVAjZpfkcJCwDwnZn6z3wXmqPV - ver: '1.0' - revoc_reg_entry: - value: - accum: 21 11792B036AED0AAA12A4 4 298B2571FFC63A737 - prevAccum: 21 137AC810975E4 6 76F0384B6F23 - ver: '1.0' revoc_reg_id: >- WgWxqztrNooG92RXvxSTWv:4:WgWxqztrNooG92RXvxSTWv:3:CL:20:tag:CL_ACCUM:0 state: active @@ -40206,55 +29550,7 @@ types: "schema_version": "1.0", }, "response": { - "body": { - "sent": { - "schema": { - "attrNames": [ - "score", - "score", - ], - "id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - "name": "schema_name", - "seqNo": 10, - "ver": "1.0", - "version": "1.0", - }, - "schema_id": "WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0", - }, - "txn": { - "_type": "101", - "connection_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "created_at": "2021-12-31 23:59:59+00:00", - "endorser_write_txn": true, - "formats": [ - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "dif/endorse-transaction/request@v1.0", - }, - { - "attach_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "format": "dif/endorse-transaction/request@v1.0", - }, - ], - "messages_attach": [ - {}, - {}, - ], - "signature_request": [ - {}, - {}, - ], - "signature_response": [ - {}, - {}, - ], - "state": "active", - "thread_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "trace": true, - "transaction_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", - "updated_at": "2021-12-31 23:59:59+00:00", - }, - }, + "body": {}, }, }, ], @@ -40403,42 +29699,7 @@ service: schema_name: prefs schema_version: '1.0' response: - body: - sent: - schema: - attrNames: - - score - - score - id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 - name: schema_name - seqNo: 10 - ver: '1.0' - version: '1.0' - schema_id: WgWxqztrNooG92RXvxSTWv:2:schema_name:1.0 - txn: - _type: '101' - connection_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - created_at: '2021-12-31 23:59:59+00:00' - endorser_write_txn: true - formats: - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: dif/endorse-transaction/request@v1.0 - - attach_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - format: dif/endorse-transaction/request@v1.0 - messages_attach: - - {} - - {} - signature_request: - - {} - - {} - signature_response: - - {} - - {} - state: active - thread_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - trace: true - transaction_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6 - updated_at: '2021-12-31 23:59:59+00:00' + body: {} get_matching_created_schemas: path: /schemas/created method: GET diff --git a/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi/belvo.json b/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi/belvo.json index 0d85935ecd3..39e9371429b 100644 --- a/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi/belvo.json +++ b/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi/belvo.json @@ -21636,7 +21636,6 @@ client.connect() "current": 4523.48, }, "balance_type": "ASSET", - "bank_product_id": "bank_product_id", "category": "CHECKING_ACCOUNT", "collected_at": "2022-02-09T08:45:50Z", "created_at": "2022-02-09T08:46:20Z", @@ -21653,27 +21652,11 @@ client.connect() "no_interest_payment": 2690.83, }, "currency": "MXN", - "funds_data": [ - { - "balance": 88427.94, - "collected_at": "2020-04-23T21:32:55Z", - "name": "FIX X", - "percentage": 100, - "public_identifications": [ - { - "name": "CNPJ", - "value": "05.954.445/0221-68", - }, - ], - "type": "CNPJ", - }, - ], "id": "c21f3914-bcbe-44c4-a2e8-a5e33f6888d4", "institution": { "name": "erebor_mx_retail", "type": "bank", }, - "internal_identification": "internal_identification", "last_accessed_at": "2022-02-01T20:25:47Z", "link": "57f212dc-1ba4-407f-b7f0-15a5e5ff17ae", "loan_data": { @@ -21814,7 +21797,6 @@ client.connect() "current": 4049.85, }, "balance_type": "LIABILITY", - "bank_product_id": "bank_product_id", "category": "CREDIT_CARD", "collected_at": "2022-02-09T08:45:50Z", "created_at": "2022-02-09T08:46:20Z", @@ -21824,34 +21806,16 @@ client.connect() "cutting_date": "2021-04-11", "end_date": "end_date", "interest_rate": 4, - "last_payment_date": "last_payment_date", "minimum_payment": 690, - "monthly_payment": 1.1, "next_payment_date": "2021-03-31", "no_interest_payment": 11550.15, }, "currency": "MXN", - "funds_data": [ - { - "balance": 88427.94, - "collected_at": "2020-04-23T21:32:55Z", - "name": "FIX X", - "percentage": 100, - "public_identifications": [ - { - "name": "CNPJ", - "value": "05.954.445/0221-68", - }, - ], - "type": "CNPJ", - }, - ], "id": "0f82c5db-13a2-43c7-a69a-e036160aba3a", "institution": { "name": "erebor_mx_retail", "type": "bank", }, - "internal_identification": "internal_identification", "last_accessed_at": "2022-02-01T20:25:47Z", "link": "57f212dc-1ba4-407f-b7f0-15a5e5ff17ae", "loan_data": { @@ -21992,7 +21956,6 @@ client.connect() "current": 34708.36, }, "balance_type": "LIABILITY", - "bank_product_id": "bank_product_id", "category": "LOAN_ACCOUNT", "collected_at": "2022-02-09T08:45:50Z", "created_at": "2022-02-09T08:46:20Z", @@ -22009,27 +21972,11 @@ client.connect() "no_interest_payment": 2690.83, }, "currency": "MXN", - "funds_data": [ - { - "balance": 88427.94, - "collected_at": "2020-04-23T21:32:55Z", - "name": "FIX X", - "percentage": 100, - "public_identifications": [ - { - "name": "CNPJ", - "value": "05.954.445/0221-68", - }, - ], - "type": "CNPJ", - }, - ], "id": "0f82c5db-13a2-43c7-a69a-e036160aba3a", "institution": { "name": "erebor_mx_retail", "type": "bank", }, - "internal_identification": "internal_identification", "last_accessed_at": "2022-02-01T20:25:47Z", "link": "57f212dc-1ba4-407f-b7f0-15a5e5ff17ae", "loan_data": { @@ -22171,7 +22118,6 @@ client.connect() "current": 26305.33, }, "balance_type": "ASSET", - "bank_product_id": "bank_product_id", "category": "PENSION_FUND_ACCOUNT", "collected_at": "2022-02-09T08:45:50Z", "created_at": "2022-02-09T08:46:20Z", @@ -22229,7 +22175,6 @@ client.connect() "name": "erebor_br_retail", "type": "bank", }, - "internal_identification": "internal_identification", "last_accessed_at": "2021-03-09T08:19:05Z", "link": "fbbb5ea7-4605-437f-b5c5-667fd037a303", "loan_data": { @@ -22370,7 +22315,6 @@ client.connect() "current": 4978436.05, }, "balance_type": "ASSET", - "bank_product_id": "bank_product_id", "category": "SAVINGS_ACCOUNT", "collected_at": "2022-02-09T08:45:50Z", "created_at": "2022-02-09T08:46:20Z", @@ -22387,27 +22331,11 @@ client.connect() "no_interest_payment": 2690.83, }, "currency": "COP", - "funds_data": [ - { - "balance": 88427.94, - "collected_at": "2020-04-23T21:32:55Z", - "name": "FIX X", - "percentage": 100, - "public_identifications": [ - { - "name": "CNPJ", - "value": "05.954.445/0221-68", - }, - ], - "type": "CNPJ", - }, - ], "id": "3d5b0f90-90df-455d-a647-5b74feb746f6", "institution": { "name": "erebor_co_retail", "type": "bank", }, - "internal_identification": "internal_identification", "last_accessed_at": "2021-03-09T10:28:40Z", "link": "fbbb5ea7-4605-437f-b5c5-667fd037a303", "loan_data": { @@ -22996,7 +22924,6 @@ client.connect() "current": 4523.48, }, "balance_type": "ASSET", - "bank_product_id": "bank_product_id", "category": "CHECKING_ACCOUNT", "collected_at": "2022-02-09T08:45:50Z", "created_at": "2022-02-09T08:46:20Z", @@ -23013,17 +22940,11 @@ client.connect() "no_interest_payment": 2690.83, }, "currency": "MXN", - "funds_data": [ - { - "collected_at": "2020-04-23T21:32:55Z", - }, - ], "id": "c21f3914-bcbe-44c4-a2e8-a5e33f6888d4", "institution": { "name": "erebor_mx_retail", "type": "bank", }, - "internal_identification": "internal_identification", "last_accessed_at": "2022-02-01T20:25:47Z", "link": "57f212dc-1ba4-407f-b7f0-15a5e5ff17ae", "loan_data": { @@ -23184,7 +23105,6 @@ client.connect() "current": 4049.85, }, "balance_type": "LIABILITY", - "bank_product_id": "bank_product_id", "category": "CREDIT_CARD", "collected_at": "2022-02-09T08:45:50Z", "created_at": "2022-02-09T08:46:20Z", @@ -23194,24 +23114,16 @@ client.connect() "cutting_date": "2021-04-11", "end_date": "end_date", "interest_rate": 4, - "last_payment_date": "last_payment_date", "minimum_payment": 690, - "monthly_payment": 1.1, "next_payment_date": "2021-03-31", "no_interest_payment": 11550.15, }, "currency": "MXN", - "funds_data": [ - { - "collected_at": "2020-04-23T21:32:55Z", - }, - ], "id": "0f82c5db-13a2-43c7-a69a-e036160aba3a", "institution": { "name": "erebor_mx_retail", "type": "bank", }, - "internal_identification": "internal_identification", "last_accessed_at": "2022-02-01T20:25:47Z", "link": "57f212dc-1ba4-407f-b7f0-15a5e5ff17ae", "loan_data": { @@ -23372,7 +23284,6 @@ client.connect() "current": 34708.36, }, "balance_type": "LIABILITY", - "bank_product_id": "bank_product_id", "category": "LOAN_ACCOUNT", "collected_at": "2022-02-09T08:45:50Z", "created_at": "2022-02-09T08:46:20Z", @@ -23389,17 +23300,11 @@ client.connect() "no_interest_payment": 2690.83, }, "currency": "MXN", - "funds_data": [ - { - "collected_at": "2020-04-23T21:32:55Z", - }, - ], "id": "0f82c5db-13a2-43c7-a69a-e036160aba3a", "institution": { "name": "erebor_mx_retail", "type": "bank", }, - "internal_identification": "internal_identification", "last_accessed_at": "2022-02-01T20:25:47Z", "link": "57f212dc-1ba4-407f-b7f0-15a5e5ff17ae", "loan_data": { @@ -23561,7 +23466,6 @@ client.connect() "current": 26305.33, }, "balance_type": "ASSET", - "bank_product_id": "bank_product_id", "category": "PENSION_FUND_ACCOUNT", "collected_at": "2022-02-09T08:45:50Z", "created_at": "2022-02-09T08:46:20Z", @@ -23619,7 +23523,6 @@ client.connect() "name": "erebor_br_retail", "type": "bank", }, - "internal_identification": "internal_identification", "last_accessed_at": "2021-03-09T08:19:05Z", "link": "fbbb5ea7-4605-437f-b5c5-667fd037a303", "loan_data": { @@ -23780,7 +23683,6 @@ client.connect() "current": 4978436.05, }, "balance_type": "ASSET", - "bank_product_id": "bank_product_id", "category": "SAVINGS_ACCOUNT", "collected_at": "2022-02-09T08:45:50Z", "created_at": "2022-02-09T08:46:20Z", @@ -23797,17 +23699,11 @@ client.connect() "no_interest_payment": 2690.83, }, "currency": "COP", - "funds_data": [ - { - "collected_at": "2020-04-23T21:32:55Z", - }, - ], "id": "3d5b0f90-90df-455d-a647-5b74feb746f6", "institution": { "name": "erebor_co_retail", "type": "bank", }, - "internal_identification": "internal_identification", "last_accessed_at": "2021-03-09T10:28:40Z", "link": "fbbb5ea7-4605-437f-b5c5-667fd037a303", "loan_data": { @@ -24012,7 +23908,6 @@ client.connect() "current": 4523.48, }, "balance_type": "ASSET", - "bank_product_id": "bank_product_id", "category": "CHECKING_ACCOUNT", "collected_at": "2022-02-09T08:45:50Z", "created_at": "2022-02-09T08:46:20Z", @@ -24029,17 +23924,11 @@ client.connect() "no_interest_payment": 2690.83, }, "currency": "MXN", - "funds_data": [ - { - "collected_at": "2020-04-23T21:32:55Z", - }, - ], "id": "c21f3914-bcbe-44c4-a2e8-a5e33f6888d4", "institution": { "name": "erebor_mx_retail", "type": "bank", }, - "internal_identification": "internal_identification", "last_accessed_at": "2022-02-01T20:25:47Z", "link": "57f212dc-1ba4-407f-b7f0-15a5e5ff17ae", "loan_data": { @@ -24191,7 +24080,6 @@ client.connect() "current": 4049.85, }, "balance_type": "LIABILITY", - "bank_product_id": "bank_product_id", "category": "CREDIT_CARD", "collected_at": "2022-02-09T08:45:50Z", "created_at": "2022-02-09T08:46:20Z", @@ -24201,24 +24089,16 @@ client.connect() "cutting_date": "2021-04-11", "end_date": "end_date", "interest_rate": 4, - "last_payment_date": "last_payment_date", "minimum_payment": 690, - "monthly_payment": 1.1, "next_payment_date": "2021-03-31", "no_interest_payment": 11550.15, }, "currency": "MXN", - "funds_data": [ - { - "collected_at": "2020-04-23T21:32:55Z", - }, - ], "id": "0f82c5db-13a2-43c7-a69a-e036160aba3a", "institution": { "name": "erebor_mx_retail", "type": "bank", }, - "internal_identification": "internal_identification", "last_accessed_at": "2022-02-01T20:25:47Z", "link": "57f212dc-1ba4-407f-b7f0-15a5e5ff17ae", "loan_data": { @@ -24370,7 +24250,6 @@ client.connect() "current": 34708.36, }, "balance_type": "LIABILITY", - "bank_product_id": "bank_product_id", "category": "LOAN_ACCOUNT", "collected_at": "2022-02-09T08:45:50Z", "created_at": "2022-02-09T08:46:20Z", @@ -24387,17 +24266,11 @@ client.connect() "no_interest_payment": 2690.83, }, "currency": "MXN", - "funds_data": [ - { - "collected_at": "2020-04-23T21:32:55Z", - }, - ], "id": "0f82c5db-13a2-43c7-a69a-e036160aba3a", "institution": { "name": "erebor_mx_retail", "type": "bank", }, - "internal_identification": "internal_identification", "last_accessed_at": "2022-02-01T20:25:47Z", "link": "57f212dc-1ba4-407f-b7f0-15a5e5ff17ae", "loan_data": { @@ -24550,7 +24423,6 @@ client.connect() "current": 26305.33, }, "balance_type": "ASSET", - "bank_product_id": "bank_product_id", "category": "PENSION_FUND_ACCOUNT", "collected_at": "2022-02-09T08:45:50Z", "created_at": "2022-02-09T08:46:20Z", @@ -24608,7 +24480,6 @@ client.connect() "name": "erebor_br_retail", "type": "bank", }, - "internal_identification": "internal_identification", "last_accessed_at": "2021-03-09T08:19:05Z", "link": "fbbb5ea7-4605-437f-b5c5-667fd037a303", "loan_data": { @@ -24760,7 +24631,6 @@ client.connect() "current": 4978436.05, }, "balance_type": "ASSET", - "bank_product_id": "bank_product_id", "category": "SAVINGS_ACCOUNT", "collected_at": "2022-02-09T08:45:50Z", "created_at": "2022-02-09T08:46:20Z", @@ -24777,17 +24647,11 @@ client.connect() "no_interest_payment": 2690.83, }, "currency": "COP", - "funds_data": [ - { - "collected_at": "2020-04-23T21:32:55Z", - }, - ], "id": "3d5b0f90-90df-455d-a647-5b74feb746f6", "institution": { "name": "erebor_co_retail", "type": "bank", }, - "internal_identification": "internal_identification", "last_accessed_at": "2021-03-09T10:28:40Z", "link": "fbbb5ea7-4605-437f-b5c5-667fd037a303", "loan_data": { @@ -25368,15 +25232,11 @@ service: cutting_date: cutting_date last_payment_date: last_payment_date no_interest_payment: 1.1 - funds_data: - - collected_at: '2020-04-23T21:32:55Z' receivables_data: current: 2193.83 available: 800.37 anticipated: 1393.46 collected_at: '2022-02-09T08:45:50Z' - bank_product_id: bank_product_id - internal_identification: internal_identification code-samples: - language: cURL code: | @@ -25484,8 +25344,6 @@ service: no_interest_payment: 11550.15 interest_rate: 4 end_date: end_date - monthly_payment: 1.1 - last_payment_date: last_payment_date loan_data: collected_at: '2022-02-09T08:45:50Z' contract_amount: 202000 @@ -25514,15 +25372,11 @@ service: cutting_date: cutting_date last_payment_date: last_payment_date no_interest_payment: 1.1 - funds_data: - - collected_at: '2020-04-23T21:32:55Z' receivables_data: current: 2193.83 available: 800.37 anticipated: 1393.46 collected_at: '2022-02-09T08:45:50Z' - bank_product_id: bank_product_id - internal_identification: internal_identification code-samples: - language: cURL code: | @@ -25661,15 +25515,11 @@ service: cutting_date: cutting_date last_payment_date: last_payment_date no_interest_payment: 1.1 - funds_data: - - collected_at: '2020-04-23T21:32:55Z' receivables_data: current: 2193.83 available: 800.37 anticipated: 1393.46 collected_at: '2022-02-09T08:45:50Z' - bank_product_id: bank_product_id - internal_identification: internal_identification code-samples: - language: cURL code: | @@ -25833,8 +25683,6 @@ service: available: 800.37 anticipated: 1393.46 collected_at: '2022-02-09T08:45:50Z' - bank_product_id: bank_product_id - internal_identification: internal_identification code-samples: - language: cURL code: | @@ -25972,15 +25820,11 @@ service: cutting_date: cutting_date last_payment_date: last_payment_date no_interest_payment: 1.1 - funds_data: - - collected_at: '2020-04-23T21:32:55Z' receivables_data: current: 2193.83 available: 800.37 anticipated: 1393.46 collected_at: '2022-02-09T08:45:50Z' - bank_product_id: bank_product_id - internal_identification: internal_identification code-samples: - language: cURL code: | @@ -26172,15 +26016,11 @@ service: cutting_date: cutting_date last_payment_date: last_payment_date no_interest_payment: 1.1 - funds_data: - - collected_at: '2020-04-23T21:32:55Z' receivables_data: current: 2193.83 available: 800.37 anticipated: 1393.46 collected_at: '2022-02-09T08:45:50Z' - bank_product_id: bank_product_id - internal_identification: internal_identification code-samples: - language: cURL code: | @@ -26297,8 +26137,6 @@ service: no_interest_payment: 11550.15 interest_rate: 4 end_date: end_date - monthly_payment: 1.1 - last_payment_date: last_payment_date loan_data: collected_at: '2022-02-09T08:45:50Z' contract_amount: 202000 @@ -26327,15 +26165,11 @@ service: cutting_date: cutting_date last_payment_date: last_payment_date no_interest_payment: 1.1 - funds_data: - - collected_at: '2020-04-23T21:32:55Z' receivables_data: current: 2193.83 available: 800.37 anticipated: 1393.46 collected_at: '2022-02-09T08:45:50Z' - bank_product_id: bank_product_id - internal_identification: internal_identification code-samples: - language: cURL code: | @@ -26483,15 +26317,11 @@ service: cutting_date: cutting_date last_payment_date: last_payment_date no_interest_payment: 1.1 - funds_data: - - collected_at: '2020-04-23T21:32:55Z' receivables_data: current: 2193.83 available: 800.37 anticipated: 1393.46 collected_at: '2022-02-09T08:45:50Z' - bank_product_id: bank_product_id - internal_identification: internal_identification code-samples: - language: cURL code: | @@ -26664,8 +26494,6 @@ service: available: 800.37 anticipated: 1393.46 collected_at: '2022-02-09T08:45:50Z' - bank_product_id: bank_product_id - internal_identification: internal_identification code-samples: - language: cURL code: | @@ -26812,15 +26640,11 @@ service: cutting_date: cutting_date last_payment_date: last_payment_date no_interest_payment: 1.1 - funds_data: - - collected_at: '2020-04-23T21:32:55Z' receivables_data: current: 2193.83 available: 800.37 anticipated: 1393.46 collected_at: '2022-02-09T08:45:50Z' - bank_product_id: bank_product_id - internal_identification: internal_identification code-samples: - language: cURL code: | @@ -27017,22 +26841,11 @@ service: cutting_date: cutting_date last_payment_date: last_payment_date no_interest_payment: 1.1 - funds_data: - - collected_at: '2020-04-23T21:32:55Z' - name: FIX X - type: CNPJ - public_identifications: - - name: CNPJ - value: 05.954.445/0221-68 - balance: 88427.94 - percentage: 100 receivables_data: current: 2193.83 available: 800.37 anticipated: 1393.46 collected_at: '2022-02-09T08:45:50Z' - bank_product_id: bank_product_id - internal_identification: internal_identification code-samples: - language: cURL code: | @@ -27131,8 +26944,6 @@ service: no_interest_payment: 11550.15 interest_rate: 4 end_date: end_date - monthly_payment: 1.1 - last_payment_date: last_payment_date loan_data: collected_at: '2022-02-09T08:45:50Z' contract_amount: 202000 @@ -27161,22 +26972,11 @@ service: cutting_date: cutting_date last_payment_date: last_payment_date no_interest_payment: 1.1 - funds_data: - - collected_at: '2020-04-23T21:32:55Z' - name: FIX X - type: CNPJ - public_identifications: - - name: CNPJ - value: 05.954.445/0221-68 - balance: 88427.94 - percentage: 100 receivables_data: current: 2193.83 available: 800.37 anticipated: 1393.46 collected_at: '2022-02-09T08:45:50Z' - bank_product_id: bank_product_id - internal_identification: internal_identification code-samples: - language: cURL code: | @@ -27306,22 +27106,11 @@ service: cutting_date: cutting_date last_payment_date: last_payment_date no_interest_payment: 1.1 - funds_data: - - collected_at: '2020-04-23T21:32:55Z' - name: FIX X - type: CNPJ - public_identifications: - - name: CNPJ - value: 05.954.445/0221-68 - balance: 88427.94 - percentage: 100 receivables_data: current: 2193.83 available: 800.37 anticipated: 1393.46 collected_at: '2022-02-09T08:45:50Z' - bank_product_id: bank_product_id - internal_identification: internal_identification code-samples: - language: cURL code: | @@ -27476,8 +27265,6 @@ service: available: 800.37 anticipated: 1393.46 collected_at: '2022-02-09T08:45:50Z' - bank_product_id: bank_product_id - internal_identification: internal_identification code-samples: - language: cURL code: | @@ -27606,22 +27393,11 @@ service: cutting_date: cutting_date last_payment_date: last_payment_date no_interest_payment: 1.1 - funds_data: - - collected_at: '2020-04-23T21:32:55Z' - name: FIX X - type: CNPJ - public_identifications: - - name: CNPJ - value: 05.954.445/0221-68 - balance: 88427.94 - percentage: 100 receivables_data: current: 2193.83 available: 800.37 anticipated: 1393.46 collected_at: '2022-02-09T08:45:50Z' - bank_product_id: bank_product_id - internal_identification: internal_identification code-samples: - language: cURL code: | @@ -28209,7 +27985,6 @@ client.connect() "current": 146.81, }, "balance_type": "ASSET", - "bank_product_id": "bank_product_id", "category": "CHECKING_ACCOUNT", "collected_at": "2022-06-17T03:20:41Z", "created_at": "2021-10-27T16:18:15Z", @@ -28290,7 +28065,6 @@ client.connect() "collected_at": "2022-04-06T23:30:51Z", "current_balance": 4.25, "id": "b834e69b-1aa4-465d-969c-07c886a4fbed", - "statement": "statement", "value_date": "2022-04-04", }, }, @@ -28445,7 +28219,6 @@ client.connect() "body": { "count": 385, "next": "https://sandbox.belvo.com/api/balances/?page=2", - "previous": "previous", "results": [ { "account": { @@ -28483,7 +28256,6 @@ client.connect() "collected_at": "2022-04-06T23:30:51Z", "current_balance": 4.25, "id": "b834e69b-1aa4-465d-969c-07c886a4fbed", - "statement": "statement", "value_date": "2022-04-04", }, ], @@ -28768,7 +28540,6 @@ client.connect() "current": 146.81, }, "balance_type": "ASSET", - "bank_product_id": "bank_product_id", "category": "CHECKING_ACCOUNT", "collected_at": "2022-06-17T03:20:41Z", "created_at": "2021-10-27T16:18:15Z", @@ -28818,7 +28589,6 @@ client.connect() "collected_at": "2022-04-06T23:30:51Z", "current_balance": 4.25, "id": "b834e69b-1aa4-465d-969c-07c886a4fbed", - "statement": "statement", "value_date": "2022-04-04", }, ], @@ -28974,7 +28744,6 @@ client.connect() "current": 146.81, }, "balance_type": "ASSET", - "bank_product_id": "bank_product_id", "category": "CHECKING_ACCOUNT", "collected_at": "2022-06-17T03:20:41Z", "created_at": "2021-10-27T16:18:15Z", @@ -29024,7 +28793,6 @@ client.connect() "collected_at": "2022-04-06T23:30:51Z", "current_balance": 4.25, "id": "b834e69b-1aa4-465d-969c-07c886a4fbed", - "statement": "statement", "value_date": "2022-04-04", }, ], @@ -29321,7 +29089,6 @@ service: body: count: 385 next: https://sandbox.belvo.com/api/balances/?page=2 - previous: previous results: - id: b834e69b-1aa4-465d-969c-07c886a4fbed account: @@ -29354,7 +29121,6 @@ service: value_date: '2022-04-04' balance: 4.25 current_balance: 4.25 - statement: statement collected_at: '2022-04-06T23:30:51Z' code-samples: - language: cURL @@ -29559,12 +29325,10 @@ service: available: 800.37 anticipated: 1393.46 collected_at: '2022-02-09T08:45:50Z' - bank_product_id: bank_product_id internal_identification: 9fa5fab9-e2b7-4bd7-8413-71ed9bb94b4c value_date: '2022-04-04' balance: 4.25 current_balance: 4.25 - statement: statement collected_at: '2022-04-06T23:30:51Z' code-samples: - language: cURL @@ -29736,12 +29500,10 @@ service: available: 800.37 anticipated: 1393.46 collected_at: '2022-02-09T08:45:50Z' - bank_product_id: bank_product_id internal_identification: 9fa5fab9-e2b7-4bd7-8413-71ed9bb94b4c value_date: '2022-04-04' balance: 4.25 current_balance: 4.25 - statement: statement collected_at: '2022-04-06T23:30:51Z' code-samples: - language: cURL @@ -29933,12 +29695,10 @@ service: available: 800.37 anticipated: 1393.46 collected_at: '2022-02-09T08:45:50Z' - bank_product_id: bank_product_id internal_identification: 9fa5fab9-e2b7-4bd7-8413-71ed9bb94b4c value_date: '2022-04-04' balance: 4.25 current_balance: 4.25 - statement: statement collected_at: '2022-04-06T23:30:51Z' code-samples: - language: cURL @@ -30534,7 +30294,6 @@ docs: >- "body": { "count": 110, "next": "https://api.belvo.com/payments/{endpoint}/?page=2", - "previous": "previous", "results": [ { "created_at": "2023-02-15T07:52:31Z", @@ -30584,7 +30343,6 @@ docs: >- "body": { "count": 110, "next": "https://api.belvo.com/payments/{endpoint}/?page=2", - "previous": "previous", "results": [ { "created_at": "2023-02-15T07:52:31Z", @@ -30632,7 +30390,6 @@ docs: >- "body": { "count": 110, "next": "https://api.belvo.com/payments/{endpoint}/?page=2", - "previous": "previous", "results": [ { "created_at": "2023-02-15T07:52:31Z", @@ -30886,7 +30643,6 @@ service: body: count: 110 next: https://api.belvo.com/payments/{endpoint}/?page=2 - previous: previous results: - id: 90d90e38-0087-4b6d-b6dc-94ea561bb9cb created_at: '2023-02-15T07:52:31Z' @@ -30926,7 +30682,6 @@ service: body: count: 110 next: https://api.belvo.com/payments/{endpoint}/?page=2 - previous: previous results: - id: 7c2be016-37e3-44e2-8643-db2eb1129a3f created_at: '2023-02-15T07:52:31Z' @@ -30964,7 +30719,6 @@ service: body: count: 110 next: https://api.belvo.com/payments/{endpoint}/?page=2 - previous: previous results: - id: 7c2be016-37e3-44e2-8643-db2eb1129a3f created_at: '2023-02-15T07:52:31Z' @@ -31287,7 +31041,6 @@ types: "currency": "BRL", "description": "OXXO SP", "institution": "BCO DO BRASIL", - "mcc": 2345, "merchant": { "logo": "https://storage.googleapis.com/new-cdn.mercafacil.com/wl_assets/dynamic/65d84ba0-a2f3-11ed-8928-dd578f525074-MOBILE_1OCo1.png", "merchant_name": "Merchants R Us Global", @@ -31440,7 +31193,6 @@ service: amount: 999.9 currency: BRL institution: BCO DO BRASIL - mcc: 2345 category: Income & Payments subcategory: Freelance merchant: @@ -31698,7 +31450,6 @@ docs: >- "body": { "count": 110, "next": "https://api.belvo.com/payments/{endpoint}/?page=2", - "previous": "previous", "results": [ { "address": "Rua de Caetano Veloso 432, 70200 Brasilia", @@ -31748,7 +31499,6 @@ docs: >- "body": { "count": 110, "next": "https://api.belvo.com/payments/{endpoint}/?page=2", - "previous": "previous", "results": [ { "address": "Rua de Caetano Veloso 432, 70200 Brasilia", @@ -31798,7 +31548,6 @@ docs: >- "body": { "count": 110, "next": "https://api.belvo.com/payments/{endpoint}/?page=2", - "previous": "previous", "results": [ { "address": "Calle Carlos Vives 432, 80300 Bogota", @@ -32041,7 +31790,6 @@ service: body: count: 110 next: https://api.belvo.com/payments/{endpoint}/?page=2 - previous: previous results: - id: 7c2be016-37e3-44e2-8643-db2eb1129a3f created_at: '2022-02-09T08:45:50Z' @@ -32082,7 +31830,6 @@ service: body: count: 110 next: https://api.belvo.com/payments/{endpoint}/?page=2 - previous: previous results: - id: 7c2be016-37e3-44e2-8643-db2eb1129a3f created_at: '2022-02-09T08:45:50Z' @@ -32123,7 +31870,6 @@ service: body: count: 110 next: https://api.belvo.com/payments/{endpoint}/?page=2 - previous: previous results: - id: 7c2be016-37e3-44e2-8643-db2eb1129a3f created_at: '2022-02-09T08:45:50Z' @@ -38068,7 +37814,6 @@ client.connect() "invoice_identification": "862B9918-3K6H-4E0B-NAI9-2BE2D833B840", "invoice_type": "Pago", "link": "1bd948f7-245d-4313-b604-34d1044cb908", - "payment_method": "PUE", "payment_method_description": "payment_method_description", "payment_type": "99", "payment_type_description": "payment_type_description", @@ -38629,7 +38374,6 @@ client.connect() "invoice_identification": "862B9918-3K6H-4E0B-NAI9-2BE2D833B840", "invoice_type": "Traslado", "link": "1bd948f7-245d-4313-b604-34d1044cb908", - "payment_method": "PUE", "payment_method_description": "payment_method_description", "payment_type": "99", "payment_type_description": "payment_type_description", @@ -38846,7 +38590,6 @@ client.connect() "body": { "count": 110, "next": "https://sandbox.belvo.com/api/{endpoint}/?page=2", - "previous": "previous", "results": [ { "cancelation_status": "cancelation_status", @@ -39064,7 +38807,6 @@ client.connect() "body": { "count": 110, "next": "https://sandbox.belvo.com/api/{endpoint}/?page=2", - "previous": "previous", "results": [ { "cancelation_status": "cancelation_status", @@ -39104,7 +38846,6 @@ client.connect() "invoice_identification": "862B9918-3K6H-4E0B-NAI9-2BE2D833B840", "invoice_type": "Pago", "link": "1bd948f7-245d-4313-b604-34d1044cb908", - "payment_method": "PUE", "payment_method_description": "payment_method_description", "payment_type": "99", "payment_type_description": "payment_type_description", @@ -39283,7 +39024,6 @@ client.connect() "body": { "count": 110, "next": "https://sandbox.belvo.com/api/{endpoint}/?page=2", - "previous": "previous", "results": [ { "cancelation_status": "cancelation_status", @@ -39502,7 +39242,6 @@ client.connect() "body": { "count": 110, "next": "https://sandbox.belvo.com/api/{endpoint}/?page=2", - "previous": "previous", "results": [ { "cancelation_status": "cancelation_status", @@ -39720,7 +39459,6 @@ client.connect() "body": { "count": 110, "next": "https://sandbox.belvo.com/api/{endpoint}/?page=2", - "previous": "previous", "results": [ { "cancelation_status": "cancelation_status", @@ -39760,7 +39498,6 @@ client.connect() "invoice_identification": "862B9918-3K6H-4E0B-NAI9-2BE2D833B840", "invoice_type": "Traslado", "link": "1bd948f7-245d-4313-b604-34d1044cb908", - "payment_method": "PUE", "payment_method_description": "payment_method_description", "payment_type": "99", "payment_type_description": "payment_type_description", @@ -40577,7 +40314,6 @@ client.connect() "invoice_identification": "862B9918-3K6H-4E0B-NAI9-2BE2D833B840", "invoice_type": "Pago", "link": "1bd948f7-245d-4313-b604-34d1044cb908", - "payment_method": "PUE", "payment_method_description": "payment_method_description", "payment_type": "99", "payment_type_description": "payment_type_description", @@ -41193,7 +40929,6 @@ client.connect() "invoice_identification": "862B9918-3K6H-4E0B-NAI9-2BE2D833B840", "invoice_type": "Traslado", "link": "1bd948f7-245d-4313-b604-34d1044cb908", - "payment_method": "PUE", "payment_method_description": "payment_method_description", "payment_type": "99", "payment_type_description": "payment_type_description", @@ -41609,7 +41344,6 @@ service: body: count: 110 next: https://sandbox.belvo.com/api/{endpoint}/?page=2 - previous: previous results: - id: 90d90e38-0087-4b6d-b6dc-94ea561bb9cb link: 1bd948f7-245d-4313-b604-34d1044cb908 @@ -41798,7 +41532,6 @@ service: body: count: 110 next: https://sandbox.belvo.com/api/{endpoint}/?page=2 - previous: previous results: - id: 90d90e38-0087-4b6d-b6dc-94ea561bb9cb link: 1bd948f7-245d-4313-b604-34d1044cb908 @@ -41821,7 +41554,6 @@ service: certification_authority: FGV330542BG6 payment_type: '99' payment_type_description: payment_type_description - payment_method: PUE payment_method_description: payment_method_description usage: P01 version: '3.3' @@ -41988,7 +41720,6 @@ service: body: count: 110 next: https://sandbox.belvo.com/api/{endpoint}/?page=2 - previous: previous results: - id: 90d90e38-0087-4b6d-b6dc-94ea561bb9cb link: 1bd948f7-245d-4313-b604-34d1044cb908 @@ -42178,7 +41909,6 @@ service: body: count: 110 next: https://sandbox.belvo.com/api/{endpoint}/?page=2 - previous: previous results: - id: 90d90e38-0087-4b6d-b6dc-94ea561bb9cb link: 1bd948f7-245d-4313-b604-34d1044cb908 @@ -42367,7 +42097,6 @@ service: body: count: 110 next: https://sandbox.belvo.com/api/{endpoint}/?page=2 - previous: previous results: - id: 90d90e38-0087-4b6d-b6dc-94ea561bb9cb link: 1bd948f7-245d-4313-b604-34d1044cb908 @@ -42390,7 +42119,6 @@ service: certification_authority: FGV330542BG6 payment_type: '99' payment_type_description: payment_type_description - payment_method: PUE payment_method_description: payment_method_description usage: G03 version: '3.3' @@ -42811,7 +42539,6 @@ service: certification_authority: FGV330542BG6 payment_type: '99' payment_type_description: payment_type_description - payment_method: PUE payment_method_description: payment_method_description usage: P01 version: '3.3' @@ -43331,7 +43058,6 @@ service: certification_authority: FGV330542BG6 payment_type: '99' payment_type_description: payment_type_description - payment_method: PUE payment_method_description: payment_method_description usage: G03 version: '3.3' @@ -43902,7 +43628,6 @@ service: certification_authority: FGV330542BG6 payment_type: '99' payment_type_description: payment_type_description - payment_method: PUE payment_method_description: payment_method_description usage: P01 version: '3.3' @@ -44373,7 +44098,6 @@ service: certification_authority: FGV330542BG6 payment_type: '99' payment_type_description: payment_type_description - payment_method: PUE payment_method_description: payment_method_description usage: G03 version: '3.3' @@ -47598,13 +47322,10 @@ Cancun, COL 10447", "document_type": "CPF", }, "email": "maria@acme.com", - "first_name": "first_name", "id": "2b22f123-7c3a-4518-9ac2-863eb5d4613c", "internal_identification": "7e5838e4", - "last_name": "last_name", "link": "c38fb126-fc98-4d6c-8c80-587a97dd56cf", "phone_number": "90090508357", - "second_last_name": "second_last_name", }, }, }, @@ -47745,7 +47466,6 @@ client.connect() "body": { "count": 108, "next": "https://sandbox.belvo.com/api/{endpoint}/?page=2", - "previous": "previous", "results": [ { "address": "Retorno Gran Canaria 453 723 @@ -47758,13 +47478,10 @@ Cancun, COL 10447", "document_type": "CPF", }, "email": "maria@acme.com", - "first_name": "first_name", "id": "c749315b-eec2-435d-a458-06912878564f", "internal_identification": "7e5838e4", - "last_name": "last_name", "link": "c38fb126-fc98-4d6c-8c80-587a97dd56cf", "phone_number": "90090508357", - "second_last_name": "second_last_name", }, ], }, @@ -47982,13 +47699,10 @@ Cancun, COL 10447", "document_type": "CPF", }, "email": "maria@acme.com", - "first_name": "first_name", "id": "2b22f123-7c3a-4518-9ac2-863eb5d4613c", "internal_identification": "7e5838e4", - "last_name": "last_name", "link": "c38fb126-fc98-4d6c-8c80-587a97dd56cf", "phone_number": "90090508357", - "second_last_name": "second_last_name", }, ], }, @@ -48136,13 +47850,10 @@ Cancun, COL 10447", "document_type": "CPF", }, "email": "maria@acme.com", - "first_name": "first_name", "id": "2b22f123-7c3a-4518-9ac2-863eb5d4613c", "internal_identification": "7e5838e4", - "last_name": "last_name", "link": "c38fb126-fc98-4d6c-8c80-587a97dd56cf", "phone_number": "90090508357", - "second_last_name": "second_last_name", }, ], }, @@ -48304,7 +48015,6 @@ service: body: count: 108 next: https://sandbox.belvo.com/api/{endpoint}/?page=2 - previous: previous results: - id: c749315b-eec2-435d-a458-06912878564f link: c38fb126-fc98-4d6c-8c80-587a97dd56cf @@ -48320,9 +48030,6 @@ service: document_id: document_type: CPF document_number: 235578435-S - first_name: first_name - last_name: last_name - second_last_name: second_last_name code-samples: - language: cURL code: | @@ -48447,9 +48154,6 @@ service: document_id: document_type: CPF document_number: 235578435-S - first_name: first_name - last_name: last_name - second_last_name: second_last_name code-samples: - language: cURL code: | @@ -48583,9 +48287,6 @@ service: document_id: document_type: CPF document_number: 235578435-S - first_name: first_name - last_name: last_name - second_last_name: second_last_name code-samples: - language: cURL code: | @@ -48723,9 +48424,6 @@ service: document_id: document_type: CPF document_number: 235578435-S - first_name: first_name - last_name: last_name - second_last_name: second_last_name code-samples: - language: cURL code: | @@ -62964,7 +62662,6 @@ client.connect() "body": { "count": 101, "next": "https://sandbox.belvo.com/api/{endpoint}/?page=2", - "previous": "previous", "results": [ { "collected_at": "2022-02-09T08:45:50Z", @@ -63270,7 +62967,6 @@ client.connect() "body": { "count": 101, "next": "https://sandbox.belvo.com/api/{endpoint}/?page=2", - "previous": "previous", "results": [ { "collected_at": "2022-02-09T08:45:50Z", @@ -63430,7 +63126,6 @@ client.connect() "body": { "count": 101, "next": "https://sandbox.belvo.com/api/{endpoint}/?page=2", - "previous": "previous", "results": [ { "collected_at": "2022-02-09T08:45:50Z", @@ -63598,7 +63293,6 @@ client.connect() "body": { "count": 101, "next": "https://sandbox.belvo.com/api/{endpoint}/?page=2", - "previous": "previous", "results": [ { "cifras_cierre_ejercicio": { @@ -63871,7 +63565,6 @@ client.connect() "body": { "count": 101, "next": "https://sandbox.belvo.com/api/{endpoint}/?page=2", - "previous": "previous", "results": [ { "collected_at": "2022-02-09T08:45:50Z", @@ -66186,7 +65879,6 @@ service: body: count: 101 next: https://sandbox.belvo.com/api/{endpoint}/?page=2 - previous: previous results: - id: 02589c41-ba22-4d44-8558-8111cc751318 link: 19697249-01b8-443e-a451-76bfc5fbeebf @@ -66406,7 +66098,6 @@ service: body: count: 101 next: https://sandbox.belvo.com/api/{endpoint}/?page=2 - previous: previous results: - id: 0d3ffb69-f83b-456e-ad8e-208d0998d71d collected_at: '2022-02-09T08:45:50Z' @@ -66544,7 +66235,6 @@ service: body: count: 101 next: https://sandbox.belvo.com/api/{endpoint}/?page=2 - previous: previous results: - id: 0d3ffb69-f83b-456e-ad8e-208d0998d71d collected_at: '2022-02-09T08:45:50Z' @@ -66690,7 +66380,6 @@ service: body: count: 101 next: https://sandbox.belvo.com/api/{endpoint}/?page=2 - previous: previous results: - id: 02589c41-ba22-4d44-8558-8111cc751318 collected_at: '2022-02-09T08:45:50Z' @@ -66928,7 +66617,6 @@ service: body: count: 101 next: https://sandbox.belvo.com/api/{endpoint}/?page=2 - previous: previous results: - id: 0d3ffb69-f83b-456e-ad8e-208d0998d71d collected_at: '2022-02-09T08:45:50Z' @@ -70116,7 +69804,6 @@ client.connect() ], "exterior_number": "4360", "interior_number": "PLANTA BAJA", - "locality": "none", "municipality": "ALTOS DE MIRAMAR", "postal_code": "21255", "state": "CIUDAD DE MEXICO", @@ -70131,7 +69818,6 @@ client.connect() "economic_activity": [ { "economic_activity": "Asalariado", - "end_date": "end_date", "initial_date": "2014-11-05", "order": "1", "percentage": "100", @@ -70142,13 +69828,11 @@ client.connect() "link": "401d5a8e-79e2-472e-a1ca-8f4646f5cb24", "obligations": [ { - "end_date": "end_date", "expiration": "Conjuntamente con la declaración anual del ejercicio.", "initial_date": "2004-03-31", "obligation": "Declaración informativa de IVA con la anual de ISR", }, { - "end_date": "end_date", "expiration": "A más tardar el día 17 del mes inmediato posterior al periodo que corresponda.", "initial_date": "2004-03-31", "obligation": "Pago definitivo mensual de IVA.", @@ -70174,7 +69858,6 @@ client.connect() "phone": "667507132", "rfc": "GGTF770303G7", "second_last_name": "Robin", - "social_name": "John Doe SA DE CV", "start_operations_date": "2000-06-01", "status_padron": "ACTIVO", }, @@ -70274,7 +69957,6 @@ client.connect() ], "exterior_number": "4360", "interior_number": "PLANTA BAJA", - "locality": "none", "municipality": "ALTOS DE MIRAMAR", "postal_code": "21255", "state": "CIUDAD DE MEXICO", @@ -70289,7 +69971,6 @@ client.connect() "economic_activity": [ { "economic_activity": "Otros servicios profesionales, científicos y técnicos", - "end_date": "end_date", "initial_date": "2014-11-05", "order": "1", "percentage": "100", @@ -70300,13 +69981,11 @@ client.connect() "link": "0b2edc42-7214-4c68-b22e-ae6885bf7c07", "obligations": [ { - "end_date": "end_date", "expiration": "Conjuntamente con la declaración anual del ejercicio.", "initial_date": "2004-03-31", "obligation": "Declaración informativa de IVA con la anual de ISR", }, { - "end_date": "end_date", "expiration": "A más tardar el día 17 del mes inmediato posterior al periodo que corresponda.", "initial_date": "2004-03-31", "obligation": "Pago definitivo mensual de IVA.", @@ -70323,15 +70002,10 @@ client.connect() }, ], "tax_payer_information": { - "commercial_name": "Jar Jar Transport", - "curp": "curp", "email": "contact@acne.com", - "first_last_name": "DOE", "last_status_change_date": "1995-08-01", - "name": "JOHN", "phone": "555507122", "rfc": "GHTF980303F7", - "second_last_name": "SCHMOE", "social_name": "ACNE SA DE CV", "start_operations_date": "1995-08-01", "status_padron": "ACTIVO", @@ -70472,7 +70146,6 @@ client.connect() "body": { "count": 101, "next": "https://sandbox.belvo.com/api/{endpoint}/?page=2", - "previous": "previous", "results": [ { "address": { @@ -70639,7 +70312,6 @@ client.connect() "body": { "count": 101, "next": "https://sandbox.belvo.com/api/{endpoint}/?page=2", - "previous": "previous", "results": [ { "address": { @@ -70910,7 +70582,6 @@ client.connect() ], "exterior_number": "4360", "interior_number": "PLANTA BAJA", - "locality": "none", "municipality": "ALTOS DE MIRAMAR", "postal_code": "21255", "state": "CIUDAD DE MEXICO", @@ -70925,7 +70596,6 @@ client.connect() "economic_activity": [ { "economic_activity": "Asalariado", - "end_date": "end_date", "initial_date": "2014-11-05", "order": "1", "percentage": "100", @@ -70936,13 +70606,11 @@ client.connect() "link": "401d5a8e-79e2-472e-a1ca-8f4646f5cb24", "obligations": [ { - "end_date": "end_date", "expiration": "Conjuntamente con la declaración anual del ejercicio.", "initial_date": "2004-03-31", "obligation": "Declaración informativa de IVA con la anual de ISR", }, { - "end_date": "end_date", "expiration": "A más tardar el día 17 del mes inmediato posterior al periodo que corresponda.", "initial_date": "2004-03-31", "obligation": "Pago definitivo mensual de IVA.", @@ -70968,7 +70636,6 @@ client.connect() "phone": "667507132", "rfc": "GGTF770303G7", "second_last_name": "Robin", - "social_name": "John Doe SA DE CV", "start_operations_date": "2000-06-01", "status_padron": "ACTIVO", }, @@ -71078,7 +70745,6 @@ client.connect() ], "exterior_number": "4360", "interior_number": "PLANTA BAJA", - "locality": "none", "municipality": "ALTOS DE MIRAMAR", "postal_code": "21255", "state": "CIUDAD DE MEXICO", @@ -71093,7 +70759,6 @@ client.connect() "economic_activity": [ { "economic_activity": "Otros servicios profesionales, científicos y técnicos", - "end_date": "end_date", "initial_date": "2014-11-05", "order": "1", "percentage": "100", @@ -71104,13 +70769,11 @@ client.connect() "link": "0b2edc42-7214-4c68-b22e-ae6885bf7c07", "obligations": [ { - "end_date": "end_date", "expiration": "Conjuntamente con la declaración anual del ejercicio.", "initial_date": "2004-03-31", "obligation": "Declaración informativa de IVA con la anual de ISR", }, { - "end_date": "end_date", "expiration": "A más tardar el día 17 del mes inmediato posterior al periodo que corresponda.", "initial_date": "2004-03-31", "obligation": "Pago definitivo mensual de IVA.", @@ -71127,15 +70790,10 @@ client.connect() }, ], "tax_payer_information": { - "commercial_name": "Jar Jar Transport", - "curp": "curp", "email": "contact@acne.com", - "first_last_name": "DOE", "last_status_change_date": "1995-08-01", - "name": "JOHN", "phone": "555507122", "rfc": "GHTF980303F7", - "second_last_name": "SCHMOE", "social_name": "ACNE SA DE CV", "start_operations_date": "1995-08-01", "status_padron": "ACTIVO", @@ -71359,7 +71017,6 @@ service: body: count: 101 next: https://sandbox.belvo.com/api/{endpoint}/?page=2 - previous: previous results: - id: e88d29d1-3dc6-407f-825c-a9b50453e349 link: 401d5a8e-79e2-472e-a1ca-8f4646f5cb24 @@ -71500,7 +71157,6 @@ service: body: count: 101 next: https://sandbox.belvo.com/api/{endpoint}/?page=2 - previous: previous results: - id: 6de34cb3-bf0d-445d-b832-7ec7781e2c6f link: 0b2edc42-7214-4c68-b22e-ae6885bf7c07 @@ -71697,7 +71353,6 @@ service: status_padron: ACTIVO last_status_change_date: '2000-06-01' commercial_name: Alfredo Gonzalo Robin - social_name: John Doe SA DE CV email: alfredo@robin.com phone: '667507132' address: @@ -71707,7 +71362,6 @@ service: exterior_number: '4360' interior_number: PLANTA BAJA suburb: BUENAVENTURA - locality: none municipality: ALTOS DE MIRAMAR state: CIUDAD DE MEXICO between_street: @@ -71716,7 +71370,6 @@ service: economic_activity: - economic_activity: Asalariado initial_date: '2014-11-05' - end_date: end_date order: '1' percentage: '100' regimes: @@ -71729,13 +71382,11 @@ service: - obligation: Declaración informativa de IVA con la anual de ISR expiration: Conjuntamente con la declaración anual del ejercicio. initial_date: '2004-03-31' - end_date: end_date - obligation: Pago definitivo mensual de IVA. expiration: >- A más tardar el día 17 del mes inmediato posterior al periodo que corresponda. initial_date: '2004-03-31' - end_date: end_date digital_stamp: >- ||2020/09/26|GHTF980303F7|CONSTANCIA DE SITUACIÓN FISCAL|2044441088666600000034|| @@ -71831,14 +71482,9 @@ service: id_cif: '2274235873432' tax_payer_information: rfc: GHTF980303F7 - curp: curp - name: JOHN - first_last_name: DOE - second_last_name: SCHMOE start_operations_date: '1995-08-01' status_padron: ACTIVO last_status_change_date: '1995-08-01' - commercial_name: Jar Jar Transport social_name: ACNE SA DE CV email: contact@acne.com phone: '555507122' @@ -71849,7 +71495,6 @@ service: exterior_number: '4360' interior_number: PLANTA BAJA suburb: BUENAVENTURA - locality: none municipality: ALTOS DE MIRAMAR state: CIUDAD DE MEXICO between_street: @@ -71858,7 +71503,6 @@ service: economic_activity: - economic_activity: Otros servicios profesionales, científicos y técnicos initial_date: '2014-11-05' - end_date: end_date order: '1' percentage: '100' regimes: @@ -71869,13 +71513,11 @@ service: - obligation: Declaración informativa de IVA con la anual de ISR expiration: Conjuntamente con la declaración anual del ejercicio. initial_date: '2004-03-31' - end_date: end_date - obligation: Pago definitivo mensual de IVA. expiration: >- A más tardar el día 17 del mes inmediato posterior al periodo que corresponda. initial_date: '2004-03-31' - end_date: end_date digital_stamp: >- ||2020/04/26|GHTF980303F7|CONSTANCIA DE SITUACIÓN FISCAL|2044441088666600000034|| @@ -72015,7 +71657,6 @@ service: status_padron: ACTIVO last_status_change_date: '2000-06-01' commercial_name: Alfredo Gonzalo Robin - social_name: John Doe SA DE CV email: alfredo@robin.com phone: '667507132' address: @@ -72025,7 +71666,6 @@ service: exterior_number: '4360' interior_number: PLANTA BAJA suburb: BUENAVENTURA - locality: none municipality: ALTOS DE MIRAMAR state: CIUDAD DE MEXICO between_street: @@ -72034,7 +71674,6 @@ service: economic_activity: - economic_activity: Asalariado initial_date: '2014-11-05' - end_date: end_date order: '1' percentage: '100' regimes: @@ -72047,13 +71686,11 @@ service: - obligation: Declaración informativa de IVA con la anual de ISR expiration: Conjuntamente con la declaración anual del ejercicio. initial_date: '2004-03-31' - end_date: end_date - obligation: Pago definitivo mensual de IVA. expiration: >- A más tardar el día 17 del mes inmediato posterior al periodo que corresponda. initial_date: '2004-03-31' - end_date: end_date digital_stamp: >- ||2020/09/26|GHTF980303F7|CONSTANCIA DE SITUACIÓN FISCAL|2044441088666600000034|| @@ -72139,14 +71776,9 @@ service: id_cif: '2274235873432' tax_payer_information: rfc: GHTF980303F7 - curp: curp - name: JOHN - first_last_name: DOE - second_last_name: SCHMOE start_operations_date: '1995-08-01' status_padron: ACTIVO last_status_change_date: '1995-08-01' - commercial_name: Jar Jar Transport social_name: ACNE SA DE CV email: contact@acne.com phone: '555507122' @@ -72157,7 +71789,6 @@ service: exterior_number: '4360' interior_number: PLANTA BAJA suburb: BUENAVENTURA - locality: none municipality: ALTOS DE MIRAMAR state: CIUDAD DE MEXICO between_street: @@ -72166,7 +71797,6 @@ service: economic_activity: - economic_activity: Otros servicios profesionales, científicos y técnicos initial_date: '2014-11-05' - end_date: end_date order: '1' percentage: '100' regimes: @@ -72177,13 +71807,11 @@ service: - obligation: Declaración informativa de IVA con la anual de ISR expiration: Conjuntamente con la declaración anual del ejercicio. initial_date: '2004-03-31' - end_date: end_date - obligation: Pago definitivo mensual de IVA. expiration: >- A más tardar el día 17 del mes inmediato posterior al periodo que corresponda. initial_date: '2004-03-31' - end_date: end_date digital_stamp: >- ||2020/04/26|GHTF980303F7|CONSTANCIA DE SITUACIÓN FISCAL|2044441088666600000034|| @@ -72908,7 +72536,6 @@ client.connect() "current": 4.09, }, "balance_type": "ASSET", - "bank_product_id": "bank_product_id", "category": "SAVINGS_ACCOUNT", "collected_at": "2022-02-09T08:45:50Z", "created_at": "2022-02-09T08:46:20Z", @@ -73106,7 +72733,6 @@ client.connect() "current": 5874.13, }, "balance_type": "LIABILITY", - "bank_product_id": "bank_product_id", "category": "CREDIT_CARD", "collected_at": "2022-02-09T08:45:50Z", "created_at": "2022-02-09T08:46:20Z", @@ -73114,26 +72740,17 @@ client.connect() "collected_at": "2022-02-09T08:45:50Z", "credit_limit": 192000, "cutting_date": "2019-12-11", - "end_date": "end_date", "interest_rate": 4, - "last_payment_date": "last_payment_date", "minimum_payment": 2400, - "monthly_payment": 1.1, "next_payment_date": "2019-12-01", "no_interest_payment": 37390.83, }, "currency": "MXN", - "funds_data": [ - { - "collected_at": "2020-04-23T21:32:55Z", - }, - ], "id": "02589c41-ba22-4d44-8558-8111cc751318", "institution": { "name": "erebor_mx_retail", "type": "bank", }, - "internal_identification": "internal_identification", "last_accessed_at": "2021-03-09T10:28:40Z", "link": "30cb4806-6e00-48a4-91c9-ca55968576c8", "loan_data": { @@ -73394,7 +73011,6 @@ client.connect() "body": { "count": 198, "next": "https://sandbox.belvo.com/api/{endpoint}/?page=2", - "previous": "previous", "results": [ { "account": { @@ -73596,7 +73212,6 @@ client.connect() "body": { "count": 198, "next": "https://sandbox.belvo.com/api/{endpoint}/?page=2", - "previous": "previous", "results": [ { "account": { @@ -73797,7 +73412,6 @@ client.connect() "body": { "count": 198, "next": "https://sandbox.belvo.com/api/{endpoint}/?page=2", - "previous": "previous", "results": [ { "account": { @@ -74455,7 +74069,6 @@ client.connect() "current": 4.09, }, "balance_type": "ASSET", - "bank_product_id": "bank_product_id", "category": "SAVINGS_ACCOUNT", "collected_at": "2022-02-09T08:45:50Z", "created_at": "2022-02-09T08:46:20Z", @@ -74642,7 +74255,6 @@ client.connect() "current": 5874.13, }, "balance_type": "LIABILITY", - "bank_product_id": "bank_product_id", "category": "CREDIT_CARD", "collected_at": "2022-02-09T08:45:50Z", "created_at": "2022-02-09T08:46:20Z", @@ -74656,17 +74268,11 @@ client.connect() "no_interest_payment": 37390.83, }, "currency": "MXN", - "funds_data": [ - { - "collected_at": "2020-04-23T21:32:55Z", - }, - ], "id": "02589c41-ba22-4d44-8558-8111cc751318", "institution": { "name": "erebor_mx_retail", "type": "bank", }, - "internal_identification": "internal_identification", "last_accessed_at": "2021-03-09T10:28:40Z", "link": "30cb4806-6e00-48a4-91c9-ca55968576c8", "loan_data": { @@ -75068,7 +74674,6 @@ client.connect() "current": 4.09, }, "balance_type": "ASSET", - "bank_product_id": "bank_product_id", "category": "SAVINGS_ACCOUNT", "collected_at": "2022-02-09T08:45:50Z", "created_at": "2022-02-09T08:46:20Z", @@ -75260,7 +74865,6 @@ client.connect() "current": 5874.13, }, "balance_type": "LIABILITY", - "bank_product_id": "bank_product_id", "category": "CREDIT_CARD", "collected_at": "2022-02-09T08:45:50Z", "created_at": "2022-02-09T08:46:20Z", @@ -75274,17 +74878,11 @@ client.connect() "no_interest_payment": 37390.83, }, "currency": "MXN", - "funds_data": [ - { - "collected_at": "2020-04-23T21:32:55Z", - }, - ], "id": "02589c41-ba22-4d44-8558-8111cc751318", "institution": { "name": "erebor_mx_retail", "type": "bank", }, - "internal_identification": "internal_identification", "last_accessed_at": "2021-03-09T10:28:40Z", "link": "30cb4806-6e00-48a4-91c9-ca55968576c8", "loan_data": { @@ -75914,7 +75512,6 @@ service: body: count: 198 next: https://sandbox.belvo.com/api/{endpoint}/?page=2 - previous: previous results: - id: e5588958-48f2-427c-9300-945207532f5d internal_identification: LCzHexIyHi @@ -76094,7 +75691,6 @@ service: body: count: 198 next: https://sandbox.belvo.com/api/{endpoint}/?page=2 - previous: previous results: - id: e5588958-48f2-427c-9300-945207532f5d internal_identification: '0089608418' @@ -76273,7 +75869,6 @@ service: body: count: 198 next: https://sandbox.belvo.com/api/{endpoint}/?page=2 - previous: previous results: - id: 076c66e5-90f5-4e01-99c7-50e32f65ae42 internal_identification: TXpRMU9UQTROMWhZV2xSU1FUazJSMDl @@ -76663,7 +76258,6 @@ service: available: 800.37 anticipated: 1393.46 collected_at: '2022-02-09T08:45:50Z' - bank_product_id: bank_product_id internal_identification: '996685090015' collected_at: '2022-07-20T22:09:33Z' created_at: '2022-07-20T22:09:35Z' @@ -76818,15 +76412,11 @@ service: outstanding_balance: 182000 monthly_payment: 1000 contract_end_date: '2027-10-01' - funds_data: - - collected_at: '2020-04-23T21:32:55Z' receivables_data: current: 2193.83 available: 800.37 anticipated: 1393.46 collected_at: '2022-02-09T08:45:50Z' - bank_product_id: bank_product_id - internal_identification: internal_identification collected_at: '2022-02-09T08:45:50Z' created_at: '2022-02-09T08:45:50Z' value_date: '2019-10-23' @@ -77331,7 +76921,6 @@ service: available: 800.37 anticipated: 1393.46 collected_at: '2022-02-09T08:45:50Z' - bank_product_id: bank_product_id internal_identification: '996685090015' collected_at: '2022-07-20T22:09:33Z' created_at: '2022-07-20T22:09:35Z' @@ -77481,15 +77070,11 @@ service: outstanding_balance: 182000 monthly_payment: 1000 contract_end_date: '2027-10-01' - funds_data: - - collected_at: '2020-04-23T21:32:55Z' receivables_data: current: 2193.83 available: 800.37 anticipated: 1393.46 collected_at: '2022-02-09T08:45:50Z' - bank_product_id: bank_product_id - internal_identification: internal_identification collected_at: '2022-02-09T08:45:50Z' created_at: '2022-02-09T08:45:50Z' value_date: '2019-10-23' @@ -77869,7 +77454,6 @@ service: available: 800.37 anticipated: 1393.46 collected_at: '2022-02-09T08:45:50Z' - bank_product_id: bank_product_id internal_identification: '996685090015' collected_at: '2022-07-20T22:09:33Z' created_at: '2022-07-20T22:09:35Z' @@ -77995,9 +77579,6 @@ service: minimum_payment: 2400 no_interest_payment: 37390.83 interest_rate: 4 - end_date: end_date - monthly_payment: 1.1 - last_payment_date: last_payment_date loan_data: collected_at: '2022-02-09T08:45:50Z' contract_amount: 202000 @@ -78026,15 +77607,11 @@ service: cutting_date: cutting_date last_payment_date: last_payment_date no_interest_payment: 1.1 - funds_data: - - collected_at: '2020-04-23T21:32:55Z' receivables_data: current: 2193.83 available: 800.37 anticipated: 1393.46 collected_at: '2022-02-09T08:45:50Z' - bank_product_id: bank_product_id - internal_identification: internal_identification collected_at: '2022-02-09T08:45:50Z' created_at: '2022-02-09T08:45:50Z' value_date: '2019-10-23' diff --git a/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi/flexport.json b/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi/flexport.json index 6e8adb3906c..55d47ede3f2 100644 --- a/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi/flexport.json +++ b/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi/flexport.json @@ -8348,7 +8348,6 @@ errors: "city": "Los Angeles", "country": "United States", "country_code": "US", - "ref": "address_ref_x", "street_address": "123 Queen St", "timezone": "America/Los_Angeles", "unlocode": "USLA", @@ -8374,7 +8373,6 @@ errors: "city": "Shanghai", "country": "China", "country_code": "CN", - "ref": "address_ref_x", "street_address": "123 Queen St", "timezone": "America/Los_Angeles", "unlocode": "CNSZP", @@ -8439,7 +8437,6 @@ errors: "wants_import_customs_service": true, }, ], - "next": "https://api.flexport.com/bookings?page=3&per=10", "prev": "https://api.flexport.com/bookings?page=12&per=10", }, "self": "https://api.flexport.com/bookings?page=13&per=10", @@ -8652,28 +8649,6 @@ errors: "_object": "/api/response", "data": { "_object": "/booking", - "air_booking": { - "_object": "/air/booking", - "destination_port": { - "_object": "/place", - "name": "ORD - Chicago - IL", - }, - "incoterm": "EXW", - "origin_port": { - "_object": "/place", - "name": "ORD - Chicago - IL", - }, - "product_descriptions": [ - { - "_object": "/bookings/product_descriptions", - "description": "Wristwatches", - "description_for_export_customs": "手表", - "description_for_export_customs_locale": "zh_CN", - }, - ], - "wants_delivery_service": false, - "wants_pickup_service": true, - }, "booking_line_items": { "_object": "/api/refs/collection", "link": "https://api.flexport.com/booking_line_items?f.booking.id=123", @@ -8787,7 +8762,6 @@ errors: ], }, "name": "PO 123", - "notify_party": "John Doe | john@example.com | 905-555-1234", "ocean_booking": { "_object": "/ocean/booking", "container_counts": { @@ -8877,7 +8851,6 @@ errors: "unlocode": "US AL2", "zip": "56307", }, - "quote_status": "pending_quote", "shipment": { "_object": "/api/refs/object", "id": 123, @@ -8913,12 +8886,6 @@ errors: "special_instructions": "Handle carefully", "status": "archived", "transportation_mode": "ocean", - "trucking_booking": { - "_object": "/trucking/booking", - "description_of_products": "Wristwatches", - "is_ftl": false, - "payment_terms": "collect", - }, "wants_export_customs_service": true, "wants_import_customs_service": true, }, @@ -9051,28 +9018,6 @@ errors: "_object": "/api/response", "data": { "_object": "/booking", - "air_booking": { - "_object": "/air/booking", - "destination_port": { - "_object": "/place", - "name": "ORD - Chicago - IL", - }, - "incoterm": "EXW", - "origin_port": { - "_object": "/place", - "name": "ORD - Chicago - IL", - }, - "product_descriptions": [ - { - "_object": "/bookings/product_descriptions", - "description": "Wristwatches", - "description_for_export_customs": "手表", - "description_for_export_customs_locale": "zh_CN", - }, - ], - "wants_delivery_service": false, - "wants_pickup_service": true, - }, "booking_line_items": { "_object": "/api/refs/collection", "link": "https://api.flexport.com/booking_line_items?f.booking.id=123", @@ -9306,12 +9251,6 @@ errors: "special_instructions": "", "status": "archived", "transportation_mode": "ocean", - "trucking_booking": { - "_object": "/trucking/booking", - "description_of_products": "Wristwatches", - "is_ftl": false, - "payment_terms": "collect", - }, "wants_export_customs_service": true, "wants_import_customs_service": true, }, @@ -9624,7 +9563,6 @@ service: data: _object: /api/collections/paginated prev: https://api.flexport.com/bookings?page=12&per=10 - next: https://api.flexport.com/bookings?page=3&per=10 data: - _object: /booking id: 123 @@ -9694,7 +9632,6 @@ service: country: China country_code: CN timezone: America/Los_Angeles - ref: address_ref_x unlocode: CNSZP details: - _object: /trucking/port @@ -9711,7 +9648,6 @@ service: country: United States country_code: US timezone: America/Los_Angeles - ref: address_ref_x unlocode: USLA details: - _object: /trucking/port @@ -9971,7 +9907,6 @@ service: link: https://api.flexport.com/shipments/123 id: 123 status: archived - quote_status: pending_quote shipper_entity: _object: /company_entity id: 9281 @@ -10014,7 +9949,6 @@ service: - _object: company_entity/vat_number country_code: US number: US 123746396 - notify_party: John Doe | john@example.com | 905-555-1234 transportation_mode: ocean ocean_booking: _object: /ocean/booking @@ -10074,27 +10008,6 @@ service: 36177-92-1) (provided for in subheading 2933.39.91) code: '9101.00' country_code: US - air_booking: - _object: /air/booking - incoterm: EXW - wants_pickup_service: true - wants_delivery_service: false - origin_port: - _object: /place - name: ORD - Chicago - IL - destination_port: - _object: /place - name: ORD - Chicago - IL - product_descriptions: - - _object: /bookings/product_descriptions - description: Wristwatches - description_for_export_customs: 手表 - description_for_export_customs_locale: zh_CN - trucking_booking: - _object: /trucking/booking - is_ftl: false - payment_terms: collect - description_of_products: Wristwatches origin_address: _object: /address street_address: 1641 Settlers Lane @@ -10311,27 +10224,6 @@ service: description: Wristwatches description_for_export_customs: 手表 description_for_export_customs_locale: zh_CN - air_booking: - _object: /air/booking - incoterm: EXW - wants_pickup_service: true - wants_delivery_service: false - origin_port: - _object: /place - name: ORD - Chicago - IL - destination_port: - _object: /place - name: ORD - Chicago - IL - product_descriptions: - - _object: /bookings/product_descriptions - description: Wristwatches - description_for_export_customs: 手表 - description_for_export_customs_locale: zh_CN - trucking_booking: - _object: /trucking/booking - is_ftl: false - payment_terms: collect - description_of_products: Wristwatches origin_address: _object: /address street_address: 1641 Settlers Lane @@ -10596,12 +10488,9 @@ docs: Endpoints relating to Booking objects "country": "China", "country_code": "CN", "ref": "my-shanghai-address-ref", - "state": "MN", "street_address": "123 Queen St", - "street_address2": "STE 2918", "timezone": "China/Shanghai", "unlocode": "CNSHA", - "zip": "56307", }, "new_port_of_loading": { "_object": "/address", @@ -10609,12 +10498,9 @@ docs: Endpoints relating to Booking objects "country": "China", "country_code": "CN", "ref": "my-shanghai-address-ref", - "state": "MN", "street_address": "123 Queen St", - "street_address2": "STE 2918", "timezone": "China/Shanghai", "unlocode": "CNSHA", - "zip": "56307", }, "new_port_of_unloading": { "_object": "/address", @@ -10916,24 +10802,18 @@ service: new_origin_address: _object: /address street_address: 123 Queen St - street_address2: STE 2918 city: Shanghai - state: MN country: China country_code: CN - zip: '56307' timezone: China/Shanghai ref: my-shanghai-address-ref unlocode: CNSHA new_port_of_loading: _object: /address street_address: 123 Queen St - street_address2: STE 2918 city: Shanghai - state: MN country: China country_code: CN - zip: '56307' timezone: China/Shanghai ref: my-shanghai-address-ref unlocode: CNSHA @@ -11140,7 +11020,6 @@ docs: >- "units": 200, }, ], - "next": "https://api.flexport.com/booking_line_items?page=3&per=10", "prev": "https://api.flexport.com/booking_line_items?page=12&per=10", }, "self": "https://api.flexport.com/booking_line_items?page=13&per=10", @@ -11435,7 +11314,6 @@ service: data: _object: /api/collections/paginated prev: https://api.flexport.com/booking_line_items?page=12&per=10 - next: https://api.flexport.com/booking_line_items?page=3&per=10 data: - _object: /purchase_orders/booking_line_item id: 123456 @@ -12265,7 +12143,6 @@ docs: Endpoints relating to Carbon Calculations }, }, ], - "next": "https://api.flexport.com/commercial_invoices?page=3&per=10", "prev": "https://api.flexport.com/commercial_invoices?page=1&per=10", }, "self": "https://api.flexport.com/commercial_invoices?page=2&per=10", @@ -12818,7 +12695,6 @@ service: data: _object: /api/collections/paginated prev: https://api.flexport.com/commercial_invoices?page=1&per=10 - next: https://api.flexport.com/commercial_invoices?page=3&per=10 data: - _object: /commercial_invoices id: abcxyz-23456-def @@ -13490,7 +13366,6 @@ docs: Endpoints relating to Commercial Invoice objects "ref": "ref_for_company", }, ], - "next": "https://api.flexport.com/network/companies?page=3&per=10", "prev": "https://api.flexport.com/network/companies?page=12&per=10", "total_count": 121, }, @@ -14022,7 +13897,6 @@ service: data: _object: /api/collections/paginated prev: https://api.flexport.com/network/companies?page=12&per=10 - next: https://api.flexport.com/network/companies?page=3&per=10 total_count: 121 data: - _object: /network/company @@ -14400,7 +14274,6 @@ docs: Endpoints relating to Company objects ], }, ], - "next": "https://api.flexport.com/network/company_entities?page=3&per=10", "prev": "https://api.flexport.com/network/company_entities?page=12&per=10", "total_count": 121, }, @@ -14885,8 +14758,6 @@ service: _object: /api/collections/paginated prev: >- https://api.flexport.com/network/company_entities?page=12&per=10 - next: >- - https://api.flexport.com/network/company_entities?page=3&per=10 total_count: 121 data: - _object: /company_entity @@ -15233,7 +15104,6 @@ docs: Endpoints relating to CompanyEntity objects "phone_number": "6789998212", }, ], - "next": "https://api.flexport.com/network/contacts?page=3&per=10", "prev": "https://api.flexport.com/network/contacts?page=12&per=10", "total_count": 121, }, @@ -15605,7 +15475,6 @@ service: data: _object: /api/collections/paginated prev: https://api.flexport.com/network/contacts?page=12&per=10 - next: https://api.flexport.com/network/contacts?page=3&per=10 total_count: 121 data: - _object: /network/contact @@ -16742,7 +16611,6 @@ docs: Endpoints relating to ContainerLeg objects }, }, ], - "next": "https://api.flexport.com/customs_entries?page=3&per=10", "prev": "https://api.flexport.com/customs_entries?page=12&per=10", }, "self": "https://api.flexport.com/customs_entries?page=13&per=10", @@ -16969,7 +16837,6 @@ service: data: _object: /api/collections/paginated prev: https://api.flexport.com/customs_entries?page=12&per=10 - next: https://api.flexport.com/customs_entries?page=3&per=10 data: - _object: /customs_entries id: ABC123 @@ -17149,7 +17016,6 @@ docs: Endpoints relating to Customs Entry objects }, }, ], - "next": "https://api.flexport.com/documents?page=3&per=10", "prev": "https://api.flexport.com/documents?page=12&per=10", "total_count": 121, }, @@ -17243,7 +17109,6 @@ docs: Endpoints relating to Customs Entry objects "_object": "/api/response", "data": { "_object": "/document", - "archived_at": "2024-01-15T09:30:00Z", "document_type": "billing_packet", "file_link": "https://api.flexport.com/documents/ABC123/download", "file_metadata": { @@ -17253,7 +17118,6 @@ docs: Endpoints relating to Customs Entry objects }, "file_name": "readme.txt", "id": "ABC123", - "memo": "memo", "shipment": { "_object": "/api/refs/object", "id": 123456, @@ -17457,7 +17321,6 @@ service: data: _object: /api/collections/paginated prev: https://api.flexport.com/documents?page=12&per=10 - next: https://api.flexport.com/documents?page=3&per=10 total_count: 121 data: - _object: /document @@ -17542,9 +17405,7 @@ service: id: ABC123 file_name: readme.txt document_type: billing_packet - memo: memo file_link: https://api.flexport.com/documents/ABC123/download - archived_at: '2024-01-15T09:30:00Z' file_metadata: _object: file/metadata size: 20000 @@ -18337,7 +18198,6 @@ Other details about this invoice", }, ], "next": "https://api.flexport.com/invoices?page=2&per=10", - "prev": "https://api.flexport.com/invoices?page=1&per=10", }, "self": "https://api.flexport.com/invoices", "version": 2, @@ -18933,7 +18793,6 @@ service: version: 2 data: _object: /api/collections/paginated - prev: https://api.flexport.com/invoices?page=1&per=10 next: https://api.flexport.com/invoices?page=2&per=10 data: - _object: /invoice @@ -19382,7 +19241,6 @@ docs: Endpoints relating to Invoice objects "name": "Wayne Enterprises", }, ], - "next": "https://api.flexport.com/network/locations?page=3&per=10", "prev": "https://api.flexport.com/network/locations?page=1&per=10", "total_count": 11, }, @@ -19653,7 +19511,6 @@ docs: Endpoints relating to Invoice objects "ref": "zoomit-management-co", "state": "CA", "street_address": "2 World Way", - "street_address2": "STE 2918", "timezone": "America/Los_Angeles", "unlocode": "USLAX", "zip": "90045", @@ -19914,7 +19771,6 @@ service: data: _object: /api/collections/paginated prev: https://api.flexport.com/network/locations?page=1&per=10 - next: https://api.flexport.com/network/locations?page=3&per=10 total_count: 11 data: - _object: /network/location @@ -20136,7 +19992,6 @@ service: address: _object: /address street_address: 2 World Way - street_address2: STE 2918 city: Los Angeles state: CA country: United States of America @@ -21680,22 +21535,18 @@ docs: Endpoints relating to Product objects "country_code": "US", "ref": "id-313120", "state": "GA", - "street_address": "1641 Settlers Lane", "timezone": "America/New_York", "unlocode": "USFBN", }, "details": [ { "_object": "/ocean/railport", - "port_code": "3901", }, { "_object": "/trucking/port", - "port_code": "3901", }, { "_object": "/ocean/port", - "port_code": "3901", }, ], "name": "Fairburn", @@ -21736,22 +21587,18 @@ docs: Endpoints relating to Product objects "country_code": "US", "ref": "id-313120", "state": "GA", - "street_address": "1641 Settlers Lane", "timezone": "America/New_York", "unlocode": "USFBN", }, "details": [ { "_object": "/ocean/railport", - "port_code": "3901", }, { "_object": "/trucking/port", - "port_code": "3901", }, { "_object": "/ocean/port", - "port_code": "3901", }, ], "name": "Fairburn", @@ -21766,7 +21613,6 @@ docs: Endpoints relating to Product objects "city": "shanghai", "country": "China", "country_code": "CN", - "ref": "address_ref_x", "state": "Shanghai", "street_address": "test", "timezone": "Asia/Shanghai", @@ -21826,7 +21672,6 @@ docs: Endpoints relating to Product objects "city": "shanghai", "country": "China", "country_code": "CN", - "ref": "address_ref_x", "state": "Shanghai", "street_address": "test", "timezone": "Asia/Shanghai", @@ -21859,7 +21704,6 @@ docs: Endpoints relating to Product objects "updated_at": "2020-07-31T19:52:58.161Z", }, ], - "next": "https://api.flexport.com/purchase_orders?page=3&per=10", "prev": "https://api.flexport.com/purchase_orders?page=12&per=10", }, "self": "https://api.flexport.com/purchase_orders?page=13&per=10", @@ -22586,7 +22430,6 @@ service: data: _object: /api/collections/paginated prev: https://api.flexport.com/purchase_orders?page=12&per=10 - next: https://api.flexport.com/purchase_orders?page=3&per=10 data: - id: 109771 _object: /purchase_order @@ -22604,7 +22447,6 @@ service: name: Fairburn address: _object: /address - street_address: 1641 Settlers Lane city: Fairburn state: GA country: United States @@ -22614,11 +22456,8 @@ service: unlocode: USFBN details: - _object: /ocean/railport - port_code: '3901' - _object: /trucking/port - port_code: '3901' - _object: /ocean/port - port_code: '3901' origin_address: _object: /address street_address: No 1, 123 St @@ -22633,7 +22472,6 @@ service: name: Fairburn address: _object: /address - street_address: 1641 Settlers Lane city: Fairburn state: GA country: United States @@ -22643,11 +22481,8 @@ service: unlocode: USFBN details: - _object: /ocean/railport - port_code: '3901' - _object: /trucking/port - port_code: '3901' - _object: /ocean/port - port_code: '3901' destination_addresses: - _object: /address street_address: Vandelay street 1 @@ -22673,7 +22508,6 @@ service: country: China country_code: CN timezone: Asia/Shanghai - ref: address_ref_x vat_numbers: - _object: /company_entity/vat_number country_code: GB @@ -22714,7 +22548,6 @@ service: country: China country_code: CN timezone: Asia/Shanghai - ref: address_ref_x vat_numbers: - _object: /company_entity/vat_number country_code: GB @@ -23303,7 +23136,6 @@ docs: >- "city": "Albany", "country": "United States of America", "country_code": "US", - "ref": "address_ref_x", "state": "MN", "street_address": "1641 Settlers Lane", "street_address2": "STE 2918", @@ -23396,7 +23228,6 @@ docs: >- "units": 20, }, ], - "next": "https://api.flexport.com/purchase_order_line_items?page=3&per=10", "prev": "https://api.flexport.com/purchase_orders?page=12&per=10", }, "self": "https://api.flexport.com/purchase_orders?page=13&per=10", @@ -23489,7 +23320,6 @@ docs: >- "city": "Albany", "country": "United States of America", "country_code": "US", - "ref": "address_ref_x", "state": "MN", "street_address": "1641 Settlers Lane", "street_address2": "STE 2918", @@ -23518,28 +23348,6 @@ docs: >- "units": 1, }, ], - "destination_port": { - "_object": "/place", - "address": { - "_object": "/address", - "city": "Albany", - "country": "United States of America", - "country_code": "US", - "ref": "address_ref_x", - "street_address": "1641 Settlers Lane", - "timezone": "America/Los_Angeles", - }, - "details": [ - { - "_object": "/air/port", - "country_code": "US", - "iata_code": "LAX", - "icao_code": "KLAX", - "port_code": "3901", - }, - ], - "name": "ORD - Chicago - IL", - }, "hs_codes": [ { "_object": "/hs_code", @@ -23573,34 +23381,8 @@ docs: >- "ref": "sellingcoaddress", "state": "44", "street_address": "10th YouSong Industrial District", - "street_address2": "STE 2918", "timezone": "China/Shenzhen", - "unlocode": "US AL2", - "zip": "56307", - }, - "origin_port": { - "_object": "/place", - "address": { - "_object": "/address", - "city": "Albany", - "country": "United States of America", - "country_code": "US", - "ref": "address_ref_x", - "street_address": "1641 Settlers Lane", - "timezone": "America/Los_Angeles", - }, - "details": [ - { - "_object": "/air/port", - "country_code": "US", - "iata_code": "LAX", - "icao_code": "KLAX", - "port_code": "3901", - }, - ], - "name": "ORD - Chicago - IL", }, - "parent_line_key": "parent_line_key", "product": { "color": "red", "country_of_origin": "US", @@ -23809,8 +23591,6 @@ service: data: _object: /api/collections/paginated prev: https://api.flexport.com/purchase_orders?page=12&per=10 - next: >- - https://api.flexport.com/purchase_order_line_items?page=3&per=10 data: - _object: /purchase_orders/line_item id: 123456 @@ -23879,7 +23659,6 @@ service: country_code: US zip: '56307' timezone: America/Los_Angeles - ref: address_ref_x unlocode: US AL2 vat_numbers: - _object: company_entity/vat_number @@ -23955,52 +23734,15 @@ service: transportation_mode: air unit_of_measure: HUN must_arrive_date: '2019-03-11' - origin_port: - _object: /place - name: ORD - Chicago - IL - address: - _object: /address - street_address: 1641 Settlers Lane - city: Albany - country: United States of America - country_code: US - timezone: America/Los_Angeles - ref: address_ref_x - details: - - _object: /air/port - port_code: '3901' - country_code: US - iata_code: LAX - icao_code: KLAX origin_location: _object: /address street_address: 10th YouSong Industrial District - street_address2: STE 2918 city: Shenzhen state: '44' country: China country_code: CN - zip: '56307' timezone: China/Shenzhen ref: sellingcoaddress - unlocode: US AL2 - destination_port: - _object: /place - name: ORD - Chicago - IL - address: - _object: /address - street_address: 1641 Settlers Lane - city: Albany - country: United States of America - country_code: US - timezone: America/Los_Angeles - ref: address_ref_x - details: - - _object: /air/port - port_code: '3901' - country_code: US - iata_code: LAX - icao_code: KLAX destination_addresses: - location_ref: id-1234 units: 1 @@ -24008,7 +23750,6 @@ service: - _object: /hs_code code: 8309.90.10.00 country_code: US - parent_line_key: parent_line_key assigned_party: _object: /company_entity id: 9281 @@ -24024,7 +23765,6 @@ service: country_code: US zip: '56307' timezone: America/Los_Angeles - ref: address_ref_x unlocode: US AL2 vat_numbers: - _object: company_entity/vat_number @@ -24348,8 +24088,6 @@ docs: >- "wants_trade_declaration_service": false, }, ], - "next": "next", - "prev": "prev", }, "self": "https://api.flexport.com/shipments?page=1&per=20&sort=id&direction=desc", "version": 2, @@ -24601,19 +24339,6 @@ docs: >- "actual_delivered_in_full_date": "2019-02-06T19:28:25Z", "actual_departure_date": "2019-02-06T19:28:25Z", "actual_picked_up_in_full_date": "2019-02-06T19:28:25Z", - "air_shipment": { - "_object": "/air/shipment", - "chargeable_volume": { - "_object": "/quantity/volume", - "value": 472.62, - }, - "chargeable_weight": { - "_object": "/quantity/weight", - "value": 2300.4, - }, - "house_airway_bill": "HWXJKE67732", - "master_airway_bill": "22831046871", - }, "arrival_date": "2019-02-06T19:28:25Z", "belongs_to_a_buyers_consol": false, "booking": { @@ -24661,14 +24386,6 @@ docs: >- "value": 2300.4, }, "cargo_ready_date": "2019-02-06", - "child_shipments": [ - { - "_object": "/api/refs/object", - "id": 123, - "link": "https://api.flexport.com/shipments/123", - "ref_type": "/shipment", - }, - ], "commercial_invoices": { "_object": "/api/refs/collection", "link": "https://api.flexport.com/commercial_invoices?f.shipment.id=2983", @@ -24809,12 +24526,6 @@ docs: >- "is_lcl": false, "master_bill_number": "NEWO697216024", }, - "parent_shipment": { - "_object": "/api/refs/object", - "id": 123, - "link": "https://api.flexport.com/shipments/123", - "ref_type": "/shipment", - }, "picked_up_in_full_date": "2019-02-06T19:28:25Z", "pieces": 8372, "priority": "high", @@ -24935,19 +24646,6 @@ docs: >- "actual_delivered_in_full_date": "2019-02-06T19:28:25Z", "actual_departure_date": "2019-02-06T19:28:25Z", "actual_picked_up_in_full_date": "2019-02-06T19:28:25Z", - "air_shipment": { - "_object": "/air/shipment", - "chargeable_volume": { - "_object": "/quantity/volume", - "value": 472.62, - }, - "chargeable_weight": { - "_object": "/quantity/weight", - "value": 2300.4, - }, - "house_airway_bill": "HWXJKE67732", - "master_airway_bill": "22831046871", - }, "arrival_date": "2019-02-06T19:28:25Z", "belongs_to_a_buyers_consol": true, "booking": { @@ -25637,8 +25335,6 @@ service: version: 2 data: _object: /api/collections/paginated - prev: prev - next: next data: - metadata: key: value @@ -25923,16 +25619,6 @@ service: visibility_only: false wants_delivery_service: false belongs_to_a_buyers_consol: false - child_shipments: - - _object: /api/refs/object - ref_type: /shipment - link: https://api.flexport.com/shipments/123 - id: 123 - parent_shipment: - _object: /api/refs/object - ref_type: /shipment - link: https://api.flexport.com/shipments/123 - id: 123 estimated_picked_up_in_full_date: '2019-02-06T19:28:25Z' actual_picked_up_in_full_date: '2019-02-06T19:28:25Z' target_delivery_date: target_delivery_date @@ -25952,16 +25638,6 @@ service: ref_type: /ocean/shipment_container link: >- https://api.flexport.com/ocean/shipment_containers?f.shipment.id=123 - air_shipment: - _object: /air/shipment - house_airway_bill: HWXJKE67732 - master_airway_bill: '22831046871' - chargeable_weight: - value: 2300.4 - _object: /quantity/weight - chargeable_volume: - value: 472.62 - _object: /quantity/volume dangerous_goods: _object: /shipment/dangerous_goods review_status: complete @@ -26225,16 +25901,6 @@ service: ref_type: /ocean/shipment_container link: >- https://api.flexport.com/ocean/shipment_containers?f.shipment.id=123 - air_shipment: - _object: /air/shipment - house_airway_bill: HWXJKE67732 - master_airway_bill: '22831046871' - chargeable_weight: - value: 2300.4 - _object: /quantity/weight - chargeable_volume: - value: 472.62 - _object: /quantity/volume dangerous_goods: _object: /shipment/dangerous_goods review_status: complete @@ -26685,12 +26351,6 @@ docs: Endpoints relating to Shipment objects "delivery_completed": "2019-07-14T04:00:00Z", "loaded_on_truck_date": "2019-07-13T04:00:00Z", }, - "air_leg": { - "_object": "/air/shipment_leg", - "flight_number": "Y8 1234", - "iata_code": "2Q", - "icao_code": "SNC", - }, "cargo_ready_date": "cargo_ready_date", "carrier_name": "Liberty Carrier", "deleted_at": "2024-01-15T09:30:00Z", @@ -26729,11 +26389,6 @@ docs: Endpoints relating to Shipment objects "tags": [ "port_of_loading", ], - "terminal": { - "_object": "/shipment_node/terminal", - "firms_code": "I092", - "name": "Terminal 3", - }, }, "estimated_arrival_date": "2019-02-06T19:28:25Z", "estimated_departure_date": "2019-02-06T19:28:25Z", @@ -26803,14 +26458,6 @@ docs: Endpoints relating to Shipment objects "name": "Terminal 3", }, }, - "rail_leg": { - "_object": "/rail/shipment_leg", - "container_legs": { - "_object": "/api/refs/collection", - "link": "https://api.flexport.com/ocean/shipment_container_legs?f.shipment_container.id=123", - "ref_type": "/ocean/shipment_container_leg", - }, - }, "shipment": { "_object": "/api/refs/object", "id": 123, @@ -26818,18 +26465,6 @@ docs: Endpoints relating to Shipment objects "ref_type": "/shipment", }, "transportation_mode": "ocean", - "trucking_leg": { - "_object": "/trucking/shipment_leg", - "container_legs": { - "_object": "/api/refs/collection", - "link": "https://api.flexport.com/ocean/shipment_container_legs?f.shipment_container.id=123", - "ref_type": "/ocean/shipment_container_leg", - }, - "pieces": 32, - "scac_code": "ABCD", - "service_type": "ltl", - "tracking_number": "FBA123456789", - }, }, "self": "https://api.flexport.com/shipment_legs/948211", "version": 2, @@ -27219,17 +26854,8 @@ service: icao_code: KORD - _object: /trucking/port port_code: '3901' - terminal: - _object: /shipment_node/terminal - name: Terminal 3 - firms_code: I092 transportation_mode: ocean carrier_name: Liberty Carrier - air_leg: - _object: /air/shipment_leg - iata_code: 2Q - icao_code: SNC - flight_number: Y8 1234 ocean_leg: _object: /ocean/shipment_leg scac_code: XJAE @@ -27241,24 +26867,6 @@ service: ref_type: /ocean/shipment_container_leg link: >- https://api.flexport.com/ocean/shipment_container_legs?f.shipment_container.id=123 - trucking_leg: - _object: /trucking/shipment_leg - tracking_number: FBA123456789 - service_type: ltl - pieces: 32 - scac_code: ABCD - container_legs: - _object: /api/refs/collection - ref_type: /ocean/shipment_container_leg - link: >- - https://api.flexport.com/ocean/shipment_container_legs?f.shipment_container.id=123 - rail_leg: - _object: /rail/shipment_leg - container_legs: - _object: /api/refs/collection - ref_type: /ocean/shipment_container_leg - link: >- - https://api.flexport.com/ocean/shipment_container_legs?f.shipment_container.id=123 cargo_ready_date: cargo_ready_date source: openapi: ../openapi.yml diff --git a/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi/intercom.json b/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi/intercom.json index ada0fd71f41..344d1c9115e 100644 --- a/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi/intercom.json +++ b/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi/intercom.json @@ -11669,10 +11669,6 @@ You can view the currently authorised admin along with the embedded app object ( }, ], "pages": { - "next": { - "per_page": 2, - "starting_after": "your-cursor-from-response", - }, "page": 1, "per_page": 20, "total_pages": 1, @@ -12224,9 +12220,6 @@ service: pages: type: pages page: 1 - next: - per_page: 2 - starting_after: your-cursor-from-response per_page: 20 total_pages: 1 activity_logs: @@ -18617,10 +18610,6 @@ When using the Companies endpoint and the pages object to iterate through the re }, ], "pages": { - "next": { - "per_page": 2, - "starting_after": "your-cursor-from-response", - }, "page": 1, "per_page": 15, "total_pages": 1, @@ -18732,10 +18721,6 @@ You can fetch all companies and filter by `segment_id` or `tag_id` as a query pa }, ], "pages": { - "next": { - "per_page": 2, - "starting_after": "your-cursor-from-response", - }, "page": 1, "per_page": 15, "total_pages": 1, @@ -18855,18 +18840,7 @@ You can fetch all companies and filter by `segment_id` or `tag_id` as a query pa "website": "https://www.intercom.com", }, ], - "pages": { - "next": { - "per_page": 2, - "starting_after": "your-cursor-from-response", - }, - "page": 1, - "per_page": 2, - "total_pages": 13, - "type": "pages", - }, "scroll_param": "12d403b5-dc79-47b5-8ea1-01a5ac8cb6cc", - "total_count": 100, "type": "list", }, }, @@ -19100,9 +19074,6 @@ service: pages: type: pages page: 1 - next: - per_page: 2 - starting_after: your-cursor-from-response per_page: 15 total_pages: 1 total_count: 1 @@ -19533,9 +19504,6 @@ service: pages: type: pages page: 1 - next: - per_page: 2 - starting_after: your-cursor-from-response per_page: 15 total_pages: 1 total_count: 1 @@ -19647,15 +19615,6 @@ service: name: Active created_at: 1394621988 updated_at: 1394622004 - pages: - type: pages - page: 1 - next: - per_page: 2 - starting_after: your-cursor-from-response - per_page: 2 - total_pages: 13 - total_count: 100 scroll_param: 12d403b5-dc79-47b5-8ea1-01a5ac8cb6cc attachContactToACompany: path: /contacts/{id}/companies @@ -20034,19 +19993,6 @@ types: }, "response": { "body": { - "android_app_name": "Intercom", - "android_app_version": "5.0.0", - "android_device": "Pixel 3", - "android_last_seen_at": 1571672154, - "android_os_version": "10", - "android_sdk_version": "28", - "avatar": { - "image_url": "https://example.org/128Wash.jpg", - "type": "avatar", - }, - "browser": "Chrome", - "browser_language": "en-US", - "browser_version": "80.0.3987.132", "companies": { "has_more": false, "total_count": 0, @@ -20058,30 +20004,13 @@ types: }, "email": "joebloggs@intercom.io", "email_domain": "example.com", - "external_id": "f3b87a2e09d514c6c2e79b9a", "formatted_phone": "+1123456789", "has_hard_bounced": false, "id": "667d60b08a68186f43bafdbf", - "ios_app_name": "Intercom", - "ios_app_version": "5.0.0", - "ios_device": "iPhone 11", - "ios_last_seen_at": 1571672154, - "ios_os_version": "13.3.1", - "ios_sdk_version": "13.3.1", - "language_override": "en", - "last_contacted_at": 1571672154, - "last_email_clicked_at": 1571672154, - "last_email_opened_at": 1571672154, - "last_replied_at": 1571672154, - "last_seen_at": 1571672154, "location": { - "city": "Dublin", - "country": "Ireland", - "region": "Dublin", "type": "location", }, "marked_email_as_spam": false, - "name": "John Doe", "notes": { "data": [ { @@ -20094,11 +20023,7 @@ types: "total_count": 0, "url": "/contacts/667d60b08a68186f43bafdbf/notes", }, - "os": "Mac OS X", - "owner_id": 123, - "phone": "+1123456789", "role": "user", - "signed_up_at": 1571672154, "social_profiles": { "data": [ { @@ -20307,19 +20232,6 @@ types: }, "response": { "body": { - "android_app_name": "Intercom", - "android_app_version": "5.0.0", - "android_device": "Pixel 3", - "android_last_seen_at": 1571672154, - "android_os_version": "10", - "android_sdk_version": "28", - "avatar": { - "image_url": "https://example.org/128Wash.jpg", - "type": "avatar", - }, - "browser": "Chrome", - "browser_language": "en-US", - "browser_version": "80.0.3987.132", "companies": { "has_more": false, "total_count": 0, @@ -20335,22 +20247,7 @@ types: "formatted_phone": "+1123456789", "has_hard_bounced": false, "id": "667d60ac8a68186f43bafdbc", - "ios_app_name": "Intercom", - "ios_app_version": "5.0.0", - "ios_device": "iPhone 11", - "ios_last_seen_at": 1571672154, - "ios_os_version": "13.3.1", - "ios_sdk_version": "13.3.1", - "language_override": "en", - "last_contacted_at": 1571672154, - "last_email_clicked_at": 1571672154, - "last_email_opened_at": 1571672154, - "last_replied_at": 1571672154, - "last_seen_at": 1571672154, "location": { - "city": "Dublin", - "country": "Ireland", - "region": "Dublin", "type": "location", }, "marked_email_as_spam": false, @@ -20367,9 +20264,6 @@ types: "total_count": 0, "url": "/contacts/667d60ac8a68186f43bafdbc/notes", }, - "os": "Mac OS X", - "owner_id": 123, - "phone": "+1123456789", "role": "user", "signed_up_at": 1719492780, "social_profiles": { @@ -20670,19 +20564,6 @@ The table below shows the operators you can use to define how you want to search }, "response": { "body": { - "android_app_name": "Intercom", - "android_app_version": "5.0.0", - "android_device": "Pixel 3", - "android_last_seen_at": 1571672154, - "android_os_version": "10", - "android_sdk_version": "28", - "avatar": { - "image_url": "https://example.org/128Wash.jpg", - "type": "avatar", - }, - "browser": "Chrome", - "browser_language": "en-US", - "browser_version": "80.0.3987.132", "companies": { "has_more": false, "total_count": 0, @@ -20698,22 +20579,7 @@ The table below shows the operators you can use to define how you want to search "formatted_phone": "+1123456789", "has_hard_bounced": false, "id": "667d60a98a68186f43bafdb9", - "ios_app_name": "Intercom", - "ios_app_version": "5.0.0", - "ios_device": "iPhone 11", - "ios_last_seen_at": 1571672154, - "ios_os_version": "13.3.1", - "ios_sdk_version": "13.3.1", - "language_override": "en", - "last_contacted_at": 1571672154, - "last_email_clicked_at": 1571672154, - "last_email_opened_at": 1571672154, - "last_replied_at": 1571672154, - "last_seen_at": 1571672154, "location": { - "city": "Dublin", - "country": "Ireland", - "region": "Dublin", "type": "location", }, "marked_email_as_spam": false, @@ -20730,9 +20596,6 @@ The table below shows the operators you can use to define how you want to search "total_count": 0, "url": "/contacts/667d60a98a68186f43bafdb9/notes", }, - "os": "Mac OS X", - "owner_id": 123, - "phone": "+1123456789", "role": "user", "signed_up_at": 1719492777, "social_profiles": { @@ -20837,19 +20700,6 @@ The table below shows the operators you can use to define how you want to search }, "response": { "body": { - "android_app_name": "Intercom", - "android_app_version": "5.0.0", - "android_device": "Pixel 3", - "android_last_seen_at": 1571672154, - "android_os_version": "10", - "android_sdk_version": "28", - "avatar": { - "image_url": "https://example.org/128Wash.jpg", - "type": "avatar", - }, - "browser": "Chrome", - "browser_language": "en-US", - "browser_version": "80.0.3987.132", "companies": { "has_more": false, "total_count": 0, @@ -20865,22 +20715,7 @@ The table below shows the operators you can use to define how you want to search "formatted_phone": "+1123456789", "has_hard_bounced": false, "id": "667d60a88a68186f43bafdb8", - "ios_app_name": "Intercom", - "ios_app_version": "5.0.0", - "ios_device": "iPhone 11", - "ios_last_seen_at": 1571672154, - "ios_os_version": "13.3.1", - "ios_sdk_version": "13.3.1", - "language_override": "en", - "last_contacted_at": 1571672154, - "last_email_clicked_at": 1571672154, - "last_email_opened_at": 1571672154, - "last_replied_at": 1571672154, - "last_seen_at": 1571672154, "location": { - "city": "Dublin", - "country": "Ireland", - "region": "Dublin", "type": "location", }, "marked_email_as_spam": false, @@ -20897,9 +20732,6 @@ The table below shows the operators you can use to define how you want to search "total_count": 0, "url": "/contacts/667d60a88a68186f43bafdb8/notes", }, - "os": "Mac OS X", - "owner_id": 123, - "phone": "+1123456789", "role": "user", "signed_up_at": 1719492776, "social_profiles": { @@ -21049,7 +20881,6 @@ The table below shows the operators you can use to define how you want to search }, ], "pages": { - "next": "next", "page": 1, "per_page": 50, "total_pages": 1, @@ -21542,7 +21373,6 @@ service: pages: type: pages page: 1 - next: next per_page: 50 total_pages: 1 listSegmentsForAContact: @@ -21708,43 +21538,16 @@ service: role: user email: joe@bloggs.com email_domain: example.com - phone: '+1123456789' formatted_phone: '+1123456789' name: Joe Bloggs - owner_id: 123 has_hard_bounced: false marked_email_as_spam: false unsubscribed_from_emails: false created_at: 1719492777 updated_at: 1719492777 signed_up_at: 1719492777 - last_seen_at: 1571672154 - last_replied_at: 1571672154 - last_contacted_at: 1571672154 - last_email_opened_at: 1571672154 - last_email_clicked_at: 1571672154 - language_override: en - browser: Chrome - browser_version: 80.0.3987.132 - browser_language: en-US - os: Mac OS X - android_app_name: Intercom - android_app_version: 5.0.0 - android_device: Pixel 3 - android_os_version: '10' - android_sdk_version: '28' - android_last_seen_at: 1571672154 - ios_app_name: Intercom - ios_app_version: 5.0.0 - ios_device: iPhone 11 - ios_os_version: 13.3.1 - ios_sdk_version: 13.3.1 - ios_last_seen_at: 1571672154 custom_attributes: key: value - avatar: - type: avatar - image_url: https://example.org/128Wash.jpg tags: data: - type: note @@ -21767,9 +21570,6 @@ service: has_more: false location: type: location - country: Ireland - region: Dublin - city: Dublin social_profiles: data: - type: social_profile @@ -21850,43 +21650,16 @@ service: role: user email: joebloggs@intercom.io email_domain: example.com - phone: '+1123456789' formatted_phone: '+1123456789' name: joe bloggs - owner_id: 123 has_hard_bounced: false marked_email_as_spam: false unsubscribed_from_emails: false created_at: 1719492776 updated_at: 1719492776 signed_up_at: 1719492776 - last_seen_at: 1571672154 - last_replied_at: 1571672154 - last_contacted_at: 1571672154 - last_email_opened_at: 1571672154 - last_email_clicked_at: 1571672154 - language_override: en - browser: Chrome - browser_version: 80.0.3987.132 - browser_language: en-US - os: Mac OS X - android_app_name: Intercom - android_app_version: 5.0.0 - android_device: Pixel 3 - android_os_version: '10' - android_sdk_version: '28' - android_last_seen_at: 1571672154 - ios_app_name: Intercom - ios_app_version: 5.0.0 - ios_device: iPhone 11 - ios_os_version: 13.3.1 - ios_sdk_version: 13.3.1 - ios_last_seen_at: 1571672154 custom_attributes: key: value - avatar: - type: avatar - image_url: https://example.org/128Wash.jpg tags: data: - type: note @@ -21909,9 +21682,6 @@ service: has_more: false location: type: location - country: Ireland - region: Dublin - city: Dublin social_profiles: data: - type: social_profile @@ -21988,43 +21758,16 @@ service: role: user email: joe@bloggs.com email_domain: example.com - phone: '+1123456789' formatted_phone: '+1123456789' name: Joe Bloggs - owner_id: 123 has_hard_bounced: false marked_email_as_spam: false unsubscribed_from_emails: false created_at: 1719492780 updated_at: 1719492780 signed_up_at: 1719492780 - last_seen_at: 1571672154 - last_replied_at: 1571672154 - last_contacted_at: 1571672154 - last_email_opened_at: 1571672154 - last_email_clicked_at: 1571672154 - language_override: en - browser: Chrome - browser_version: 80.0.3987.132 - browser_language: en-US - os: Mac OS X - android_app_name: Intercom - android_app_version: 5.0.0 - android_device: Pixel 3 - android_os_version: '10' - android_sdk_version: '28' - android_last_seen_at: 1571672154 - ios_app_name: Intercom - ios_app_version: 5.0.0 - ios_device: iPhone 11 - ios_os_version: 13.3.1 - ios_sdk_version: 13.3.1 - ios_last_seen_at: 1571672154 custom_attributes: key: value - avatar: - type: avatar - image_url: https://example.org/128Wash.jpg tags: data: - type: note @@ -22047,9 +21790,6 @@ service: has_more: false location: type: location - country: Ireland - region: Dublin - city: Dublin social_profiles: data: - type: social_profile @@ -22480,48 +22220,18 @@ service: body: type: contact id: 667d60b08a68186f43bafdbf - external_id: f3b87a2e09d514c6c2e79b9a workspace_id: this_is_an_id272_that_should_be_at_least_ role: user email: joebloggs@intercom.io email_domain: example.com - phone: '+1123456789' formatted_phone: '+1123456789' - name: John Doe - owner_id: 123 has_hard_bounced: false marked_email_as_spam: false unsubscribed_from_emails: false created_at: 1719492784 updated_at: 1719492784 - signed_up_at: 1571672154 - last_seen_at: 1571672154 - last_replied_at: 1571672154 - last_contacted_at: 1571672154 - last_email_opened_at: 1571672154 - last_email_clicked_at: 1571672154 - language_override: en - browser: Chrome - browser_version: 80.0.3987.132 - browser_language: en-US - os: Mac OS X - android_app_name: Intercom - android_app_version: 5.0.0 - android_device: Pixel 3 - android_os_version: '10' - android_sdk_version: '28' - android_last_seen_at: 1571672154 - ios_app_name: Intercom - ios_app_version: 5.0.0 - ios_device: iPhone 11 - ios_os_version: 13.3.1 - ios_sdk_version: 13.3.1 - ios_last_seen_at: 1571672154 custom_attributes: key: value - avatar: - type: avatar - image_url: https://example.org/128Wash.jpg tags: data: - type: note @@ -22544,9 +22254,6 @@ service: has_more: false location: type: location - country: Ireland - region: Dublin - city: Dublin social_profiles: data: - type: social_profile @@ -23207,26 +22914,6 @@ It is not possible to use this endpoint with Workflows. }, "response": { "body": { - "admin_assignee_id": 0, - "ai_agent": { - "content_sources": { - "content_sources": [ - { - "locale": "en", - "title": "My internal content snippet", - "url": "/fin-ai-agent/content?content=content_snippet&id=3234924", - }, - ], - "total_count": 1, - "type": "content_source.list", - }, - "last_answer_type": "ai_answer", - "rating": 4, - "rating_remark": "Very helpful!", - "resolution_state": "assumed_resolution", - "source_title": "My AI Workflow", - "source_type": "essentials_plan_setup", - }, "ai_agent_participated": false, "contacts": { "contacts": [ @@ -23273,29 +22960,10 @@ It is not possible to use this endpoint with Workflows. "total_count": 1, "type": "conversation_part.list", }, - "conversation_rating": { - "contact": { - "external_id": "f3b87a2e09d514c6c2e79b9a", - "id": "5ba682d23d7cf92bef87bfd4", - "type": "contact", - }, - "created_at": 1671028894, - "rating": 5, - "remark": "", - "teammate": { - "id": "1a2b3c", - "type": "contact", - }, - }, "created_at": 1719492880, "custom_attributes": { "key": "value", }, - "first_contact_reply": { - "created_at": 1663597223, - "type": "conversation", - "url": "https://developers.intercom.com/", - }, "id": "409", "linked_objects": { "data": [ @@ -23310,12 +22978,6 @@ It is not possible to use this endpoint with Workflows. "open": false, "priority": "not_priority", "read": false, - "sla_applied": { - "sla_name": "", - "sla_status": "hit", - "type": "conversation_sla_summary", - }, - "snoozed_until": 1663597260, "source": { "attachments": [ { @@ -23340,30 +23002,8 @@ It is not possible to use this endpoint with Workflows. "redacted": false, "subject": "", "type": "conversation", - "url": "url", }, "state": "closed", - "statistics": { - "count_assignments": 1, - "count_conversation_parts": 1, - "count_reopens": 1, - "first_admin_reply_at": 1663597233, - "first_assignment_at": 1663597233, - "first_close_at": 1663597233, - "first_contact_reply_at": 1663597233, - "last_admin_reply_at": 1663597233, - "last_assignment_admin_reply_at": 1663597233, - "last_assignment_at": 1663597233, - "last_close_at": 1663597233, - "last_closed_by_id": "c3po", - "last_contact_reply_at": 1663597233, - "median_time_to_reply": 2310, - "time_to_admin_reply": 2310, - "time_to_assignment": 2310, - "time_to_first_close": 2310, - "time_to_last_close": 2310, - "type": "conversation_statistics", - }, "tags": { "tags": [ { @@ -23375,19 +23015,8 @@ It is not possible to use this endpoint with Workflows. ], "type": "tag.list", }, - "team_assignee_id": "5017691", - "teammates": { - "teammates": [ - { - "type": "contact", - }, - ], - "type": "admin.list", - }, - "title": "Conversation Title", "type": "conversation", "updated_at": 1719492881, - "waiting_since": 1663597260, }, }, }, @@ -24642,26 +24271,6 @@ You can optionally request the result page size and the cursor to start after to }, "response": { "body": { - "admin_assignee_id": 0, - "ai_agent": { - "content_sources": { - "content_sources": [ - { - "locale": "en", - "title": "My internal content snippet", - "url": "/fin-ai-agent/content?content=content_snippet&id=3234924", - }, - ], - "total_count": 1, - "type": "content_source.list", - }, - "last_answer_type": "ai_answer", - "rating": 4, - "rating_remark": "Very helpful!", - "resolution_state": "assumed_resolution", - "source_title": "My AI Workflow", - "source_type": "essentials_plan_setup", - }, "ai_agent_participated": false, "contacts": { "contacts": [ @@ -24706,29 +24315,10 @@ You can optionally request the result page size and the cursor to start after to "total_count": 1, "type": "conversation_part.list", }, - "conversation_rating": { - "contact": { - "external_id": "f3b87a2e09d514c6c2e79b9a", - "id": "5ba682d23d7cf92bef87bfd4", - "type": "contact", - }, - "created_at": 1671028894, - "rating": 5, - "remark": "", - "teammate": { - "id": "1a2b3c", - "type": "contact", - }, - }, "created_at": 1719492862, "custom_attributes": { "key": "value", }, - "first_contact_reply": { - "created_at": 1663597223, - "type": "conversation", - "url": "https://developers.intercom.com/", - }, "id": "394", "linked_objects": { "data": [ @@ -24743,12 +24333,6 @@ You can optionally request the result page size and the cursor to start after to "open": false, "priority": "not_priority", "read": false, - "sla_applied": { - "sla_name": "", - "sla_status": "hit", - "type": "conversation_sla_summary", - }, - "snoozed_until": 1663597260, "source": { "attachments": [ { @@ -24773,30 +24357,8 @@ You can optionally request the result page size and the cursor to start after to "redacted": false, "subject": "", "type": "conversation", - "url": "url", }, "state": "closed", - "statistics": { - "count_assignments": 1, - "count_conversation_parts": 1, - "count_reopens": 1, - "first_admin_reply_at": 1663597233, - "first_assignment_at": 1663597233, - "first_close_at": 1663597233, - "first_contact_reply_at": 1663597233, - "last_admin_reply_at": 1663597233, - "last_assignment_admin_reply_at": 1663597233, - "last_assignment_at": 1663597233, - "last_close_at": 1663597233, - "last_closed_by_id": "c3po", - "last_contact_reply_at": 1663597233, - "median_time_to_reply": 2310, - "time_to_admin_reply": 2310, - "time_to_assignment": 2310, - "time_to_first_close": 2310, - "time_to_last_close": 2310, - "type": "conversation_statistics", - }, "tags": { "tags": [ { @@ -24808,19 +24370,8 @@ You can optionally request the result page size and the cursor to start after to ], "type": "tag.list", }, - "team_assignee_id": "5017691", - "teammates": { - "teammates": [ - { - "type": "contact", - }, - ], - "type": "admin.list", - }, - "title": "Conversation Title", "type": "conversation", "updated_at": 1719492862, - "waiting_since": 1663597260, }, }, }, @@ -24838,26 +24389,6 @@ You can optionally request the result page size and the cursor to start after to }, "response": { "body": { - "admin_assignee_id": 0, - "ai_agent": { - "content_sources": { - "content_sources": [ - { - "locale": "en", - "title": "My internal content snippet", - "url": "/fin-ai-agent/content?content=content_snippet&id=3234924", - }, - ], - "total_count": 1, - "type": "content_source.list", - }, - "last_answer_type": "ai_answer", - "rating": 4, - "rating_remark": "Very helpful!", - "resolution_state": "assumed_resolution", - "source_title": "My AI Workflow", - "source_type": "essentials_plan_setup", - }, "ai_agent_participated": false, "contacts": { "contacts": [ @@ -24901,29 +24432,10 @@ You can optionally request the result page size and the cursor to start after to "total_count": 1, "type": "conversation_part.list", }, - "conversation_rating": { - "contact": { - "external_id": "f3b87a2e09d514c6c2e79b9a", - "id": "5ba682d23d7cf92bef87bfd4", - "type": "contact", - }, - "created_at": 1671028894, - "rating": 5, - "remark": "", - "teammate": { - "id": "1a2b3c", - "type": "contact", - }, - }, "created_at": 1719492864, "custom_attributes": { "key": "value", }, - "first_contact_reply": { - "created_at": 1663597223, - "type": "conversation", - "url": "https://developers.intercom.com/", - }, "id": "395", "linked_objects": { "data": [ @@ -24938,11 +24450,6 @@ You can optionally request the result page size and the cursor to start after to "open": true, "priority": "not_priority", "read": false, - "sla_applied": { - "sla_name": "", - "sla_status": "hit", - "type": "conversation_sla_summary", - }, "snoozed_until": 1719496464, "source": { "attachments": [ @@ -24968,30 +24475,8 @@ You can optionally request the result page size and the cursor to start after to "redacted": false, "subject": "", "type": "conversation", - "url": "url", }, "state": "snoozed", - "statistics": { - "count_assignments": 1, - "count_conversation_parts": 1, - "count_reopens": 1, - "first_admin_reply_at": 1663597233, - "first_assignment_at": 1663597233, - "first_close_at": 1663597233, - "first_contact_reply_at": 1663597233, - "last_admin_reply_at": 1663597233, - "last_assignment_admin_reply_at": 1663597233, - "last_assignment_at": 1663597233, - "last_close_at": 1663597233, - "last_closed_by_id": "c3po", - "last_contact_reply_at": 1663597233, - "median_time_to_reply": 2310, - "time_to_admin_reply": 2310, - "time_to_assignment": 2310, - "time_to_first_close": 2310, - "time_to_last_close": 2310, - "type": "conversation_statistics", - }, "tags": { "tags": [ { @@ -25003,19 +24488,8 @@ You can optionally request the result page size and the cursor to start after to ], "type": "tag.list", }, - "team_assignee_id": "5017691", - "teammates": { - "teammates": [ - { - "type": "contact", - }, - ], - "type": "admin.list", - }, - "title": "Conversation Title", "type": "conversation", "updated_at": 1719492864, - "waiting_since": 1663597260, }, }, }, @@ -25033,26 +24507,6 @@ You can optionally request the result page size and the cursor to start after to }, "response": { "body": { - "admin_assignee_id": 0, - "ai_agent": { - "content_sources": { - "content_sources": [ - { - "locale": "en", - "title": "My internal content snippet", - "url": "/fin-ai-agent/content?content=content_snippet&id=3234924", - }, - ], - "total_count": 1, - "type": "content_source.list", - }, - "last_answer_type": "ai_answer", - "rating": 4, - "rating_remark": "Very helpful!", - "resolution_state": "assumed_resolution", - "source_title": "My AI Workflow", - "source_type": "essentials_plan_setup", - }, "ai_agent_participated": false, "contacts": { "contacts": [ @@ -25096,29 +24550,10 @@ You can optionally request the result page size and the cursor to start after to "total_count": 1, "type": "conversation_part.list", }, - "conversation_rating": { - "contact": { - "external_id": "f3b87a2e09d514c6c2e79b9a", - "id": "5ba682d23d7cf92bef87bfd4", - "type": "contact", - }, - "created_at": 1671028894, - "rating": 5, - "remark": "", - "teammate": { - "id": "1a2b3c", - "type": "contact", - }, - }, "created_at": 1719492863, "custom_attributes": { "key": "value", }, - "first_contact_reply": { - "created_at": 1663597223, - "type": "conversation", - "url": "https://developers.intercom.com/", - }, "id": "400", "linked_objects": { "data": [ @@ -25133,12 +24568,6 @@ You can optionally request the result page size and the cursor to start after to "open": true, "priority": "not_priority", "read": true, - "sla_applied": { - "sla_name": "", - "sla_status": "hit", - "type": "conversation_sla_summary", - }, - "snoozed_until": 1663597260, "source": { "attachments": [ { @@ -25163,30 +24592,8 @@ You can optionally request the result page size and the cursor to start after to "redacted": false, "subject": "", "type": "conversation", - "url": "url", }, "state": "open", - "statistics": { - "count_assignments": 1, - "count_conversation_parts": 1, - "count_reopens": 1, - "first_admin_reply_at": 1663597233, - "first_assignment_at": 1663597233, - "first_close_at": 1663597233, - "first_contact_reply_at": 1663597233, - "last_admin_reply_at": 1663597233, - "last_assignment_admin_reply_at": 1663597233, - "last_assignment_at": 1663597233, - "last_close_at": 1663597233, - "last_closed_by_id": "c3po", - "last_contact_reply_at": 1663597233, - "median_time_to_reply": 2310, - "time_to_admin_reply": 2310, - "time_to_assignment": 2310, - "time_to_first_close": 2310, - "time_to_last_close": 2310, - "type": "conversation_statistics", - }, "tags": { "tags": [ { @@ -25198,19 +24605,9 @@ You can optionally request the result page size and the cursor to start after to ], "type": "tag.list", }, - "team_assignee_id": "5017691", - "teammates": { - "teammates": [ - { - "type": "contact", - }, - ], - "type": "admin.list", - }, "title": "", "type": "conversation", "updated_at": 1719492873, - "waiting_since": 1663597260, }, }, }, @@ -25229,25 +24626,6 @@ You can optionally request the result page size and the cursor to start after to "response": { "body": { "admin_assignee_id": 991267615, - "ai_agent": { - "content_sources": { - "content_sources": [ - { - "locale": "en", - "title": "My internal content snippet", - "url": "/fin-ai-agent/content?content=content_snippet&id=3234924", - }, - ], - "total_count": 1, - "type": "content_source.list", - }, - "last_answer_type": "ai_answer", - "rating": 4, - "rating_remark": "Very helpful!", - "resolution_state": "assumed_resolution", - "source_title": "My AI Workflow", - "source_type": "essentials_plan_setup", - }, "ai_agent_participated": false, "contacts": { "contacts": [ @@ -25295,29 +24673,10 @@ You can optionally request the result page size and the cursor to start after to "total_count": 1, "type": "conversation_part.list", }, - "conversation_rating": { - "contact": { - "external_id": "f3b87a2e09d514c6c2e79b9a", - "id": "5ba682d23d7cf92bef87bfd4", - "type": "contact", - }, - "created_at": 1671028894, - "rating": 5, - "remark": "", - "teammate": { - "id": "1a2b3c", - "type": "contact", - }, - }, "created_at": 1719492874, "custom_attributes": { "key": "value", }, - "first_contact_reply": { - "created_at": 1663597223, - "type": "conversation", - "url": "https://developers.intercom.com/", - }, "id": "405", "linked_objects": { "data": [ @@ -25332,12 +24691,6 @@ You can optionally request the result page size and the cursor to start after to "open": true, "priority": "not_priority", "read": false, - "sla_applied": { - "sla_name": "", - "sla_status": "hit", - "type": "conversation_sla_summary", - }, - "snoozed_until": 1663597260, "source": { "attachments": [ { @@ -25362,30 +24715,8 @@ You can optionally request the result page size and the cursor to start after to "redacted": false, "subject": "", "type": "conversation", - "url": "url", }, "state": "open", - "statistics": { - "count_assignments": 1, - "count_conversation_parts": 1, - "count_reopens": 1, - "first_admin_reply_at": 1663597233, - "first_assignment_at": 1663597233, - "first_close_at": 1663597233, - "first_contact_reply_at": 1663597233, - "last_admin_reply_at": 1663597233, - "last_assignment_admin_reply_at": 1663597233, - "last_assignment_at": 1663597233, - "last_close_at": 1663597233, - "last_closed_by_id": "c3po", - "last_contact_reply_at": 1663597233, - "median_time_to_reply": 2310, - "time_to_admin_reply": 2310, - "time_to_assignment": 2310, - "time_to_first_close": 2310, - "time_to_last_close": 2310, - "type": "conversation_statistics", - }, "tags": { "tags": [ { @@ -25397,19 +24728,8 @@ You can optionally request the result page size and the cursor to start after to ], "type": "tag.list", }, - "team_assignee_id": "5017691", - "teammates": { - "teammates": [ - { - "type": "contact", - }, - ], - "type": "admin.list", - }, - "title": "Conversation Title", "type": "conversation", "updated_at": 1719492875, - "waiting_since": 1663597260, }, }, }, @@ -25427,26 +24747,6 @@ You can optionally request the result page size and the cursor to start after to }, "response": { "body": { - "admin_assignee_id": 0, - "ai_agent": { - "content_sources": { - "content_sources": [ - { - "locale": "en", - "title": "My internal content snippet", - "url": "/fin-ai-agent/content?content=content_snippet&id=3234924", - }, - ], - "total_count": 1, - "type": "content_source.list", - }, - "last_answer_type": "ai_answer", - "rating": 4, - "rating_remark": "Very helpful!", - "resolution_state": "assumed_resolution", - "source_title": "My AI Workflow", - "source_type": "essentials_plan_setup", - }, "ai_agent_participated": false, "contacts": { "contacts": [ @@ -25491,29 +24791,10 @@ You can optionally request the result page size and the cursor to start after to "total_count": 1, "type": "conversation_part.list", }, - "conversation_rating": { - "contact": { - "external_id": "f3b87a2e09d514c6c2e79b9a", - "id": "5ba682d23d7cf92bef87bfd4", - "type": "contact", - }, - "created_at": 1671028894, - "rating": 5, - "remark": "", - "teammate": { - "id": "1a2b3c", - "type": "contact", - }, - }, "created_at": 1719492862, "custom_attributes": { "key": "value", }, - "first_contact_reply": { - "created_at": 1663597223, - "type": "conversation", - "url": "https://developers.intercom.com/", - }, "id": "394", "linked_objects": { "data": [ @@ -25528,12 +24809,6 @@ You can optionally request the result page size and the cursor to start after to "open": false, "priority": "not_priority", "read": false, - "sla_applied": { - "sla_name": "", - "sla_status": "hit", - "type": "conversation_sla_summary", - }, - "snoozed_until": 1663597260, "source": { "attachments": [ { @@ -25558,30 +24833,8 @@ You can optionally request the result page size and the cursor to start after to "redacted": false, "subject": "", "type": "conversation", - "url": "url", }, "state": "closed", - "statistics": { - "count_assignments": 1, - "count_conversation_parts": 1, - "count_reopens": 1, - "first_admin_reply_at": 1663597233, - "first_assignment_at": 1663597233, - "first_close_at": 1663597233, - "first_contact_reply_at": 1663597233, - "last_admin_reply_at": 1663597233, - "last_assignment_admin_reply_at": 1663597233, - "last_assignment_at": 1663597233, - "last_close_at": 1663597233, - "last_closed_by_id": "c3po", - "last_contact_reply_at": 1663597233, - "median_time_to_reply": 2310, - "time_to_admin_reply": 2310, - "time_to_assignment": 2310, - "time_to_first_close": 2310, - "time_to_last_close": 2310, - "type": "conversation_statistics", - }, "tags": { "tags": [ { @@ -25593,19 +24846,8 @@ You can optionally request the result page size and the cursor to start after to ], "type": "tag.list", }, - "team_assignee_id": "5017691", - "teammates": { - "teammates": [ - { - "type": "contact", - }, - ], - "type": "admin.list", - }, - "title": "Conversation Title", "type": "conversation", "updated_at": 1719492862, - "waiting_since": 1663597260, }, }, }, @@ -25655,26 +24897,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda }, "response": { "body": { - "admin_assignee_id": 0, - "ai_agent": { - "content_sources": { - "content_sources": [ - { - "locale": "en", - "title": "My internal content snippet", - "url": "/fin-ai-agent/content?content=content_snippet&id=3234924", - }, - ], - "total_count": 1, - "type": "content_source.list", - }, - "last_answer_type": "ai_answer", - "rating": 4, - "rating_remark": "Very helpful!", - "resolution_state": "assumed_resolution", - "source_title": "My AI Workflow", - "source_type": "essentials_plan_setup", - }, "ai_agent_participated": false, "contacts": { "contacts": [ @@ -25719,20 +24941,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda "total_count": 1, "type": "conversation_part.list", }, - "conversation_rating": { - "contact": { - "external_id": "f3b87a2e09d514c6c2e79b9a", - "id": "5ba682d23d7cf92bef87bfd4", - "type": "contact", - }, - "created_at": 1671028894, - "rating": 5, - "remark": "", - "teammate": { - "id": "1a2b3c", - "type": "contact", - }, - }, "created_at": 1719492938, "custom_attributes": { "key": "value", @@ -25740,7 +24948,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda "first_contact_reply": { "created_at": 1719492939, "type": "conversation", - "url": "https://developers.intercom.com/", }, "id": "471", "linked_objects": { @@ -25756,12 +24963,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda "open": true, "priority": "not_priority", "read": true, - "sla_applied": { - "sla_name": "", - "sla_status": "hit", - "type": "conversation_sla_summary", - }, - "snoozed_until": 1663597260, "source": { "attachments": [ { @@ -25786,30 +24987,8 @@ If you are redacting a conversation part, it must have a `body`. If you are reda "redacted": false, "subject": "", "type": "conversation", - "url": "url", }, "state": "open", - "statistics": { - "count_assignments": 1, - "count_conversation_parts": 1, - "count_reopens": 1, - "first_admin_reply_at": 1663597233, - "first_assignment_at": 1663597233, - "first_close_at": 1663597233, - "first_contact_reply_at": 1663597233, - "last_admin_reply_at": 1663597233, - "last_assignment_admin_reply_at": 1663597233, - "last_assignment_at": 1663597233, - "last_close_at": 1663597233, - "last_closed_by_id": "c3po", - "last_contact_reply_at": 1663597233, - "median_time_to_reply": 2310, - "time_to_admin_reply": 2310, - "time_to_assignment": 2310, - "time_to_first_close": 2310, - "time_to_last_close": 2310, - "type": "conversation_statistics", - }, "tags": { "tags": [ { @@ -25821,16 +25000,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda ], "type": "tag.list", }, - "team_assignee_id": "5017691", - "teammates": { - "teammates": [ - { - "type": "contact", - }, - ], - "type": "admin.list", - }, - "title": "Conversation Title", "type": "conversation", "updated_at": 1719492940, "waiting_since": 1719492939, @@ -25846,26 +25015,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda }, "response": { "body": { - "admin_assignee_id": 0, - "ai_agent": { - "content_sources": { - "content_sources": [ - { - "locale": "en", - "title": "My internal content snippet", - "url": "/fin-ai-agent/content?content=content_snippet&id=3234924", - }, - ], - "total_count": 1, - "type": "content_source.list", - }, - "last_answer_type": "ai_answer", - "rating": 4, - "rating_remark": "Very helpful!", - "resolution_state": "assumed_resolution", - "source_title": "My AI Workflow", - "source_type": "essentials_plan_setup", - }, "ai_agent_participated": false, "contacts": { "contacts": [ @@ -25910,20 +25059,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda "total_count": 1, "type": "conversation_part.list", }, - "conversation_rating": { - "contact": { - "external_id": "f3b87a2e09d514c6c2e79b9a", - "id": "5ba682d23d7cf92bef87bfd4", - "type": "contact", - }, - "created_at": 1671028894, - "rating": 5, - "remark": "", - "teammate": { - "id": "1a2b3c", - "type": "contact", - }, - }, "created_at": 1719492938, "custom_attributes": { "key": "value", @@ -25931,7 +25066,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda "first_contact_reply": { "created_at": 1719492939, "type": "conversation", - "url": "https://developers.intercom.com/", }, "id": "471", "linked_objects": { @@ -25947,12 +25081,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda "open": true, "priority": "not_priority", "read": true, - "sla_applied": { - "sla_name": "", - "sla_status": "hit", - "type": "conversation_sla_summary", - }, - "snoozed_until": 1663597260, "source": { "attachments": [ { @@ -25977,30 +25105,8 @@ If you are redacting a conversation part, it must have a `body`. If you are reda "redacted": false, "subject": "", "type": "conversation", - "url": "url", }, "state": "open", - "statistics": { - "count_assignments": 1, - "count_conversation_parts": 1, - "count_reopens": 1, - "first_admin_reply_at": 1663597233, - "first_assignment_at": 1663597233, - "first_close_at": 1663597233, - "first_contact_reply_at": 1663597233, - "last_admin_reply_at": 1663597233, - "last_assignment_admin_reply_at": 1663597233, - "last_assignment_at": 1663597233, - "last_close_at": 1663597233, - "last_closed_by_id": "c3po", - "last_contact_reply_at": 1663597233, - "median_time_to_reply": 2310, - "time_to_admin_reply": 2310, - "time_to_assignment": 2310, - "time_to_first_close": 2310, - "time_to_last_close": 2310, - "type": "conversation_statistics", - }, "tags": { "tags": [ { @@ -26012,16 +25118,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda ], "type": "tag.list", }, - "team_assignee_id": "5017691", - "teammates": { - "teammates": [ - { - "type": "contact", - }, - ], - "type": "admin.list", - }, - "title": "Conversation Title", "type": "conversation", "updated_at": 1719492940, "waiting_since": 1719492939, @@ -26067,26 +25163,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda }, "response": { "body": { - "admin_assignee_id": 0, - "ai_agent": { - "content_sources": { - "content_sources": [ - { - "locale": "en", - "title": "My internal content snippet", - "url": "/fin-ai-agent/content?content=content_snippet&id=3234924", - }, - ], - "total_count": 1, - "type": "content_source.list", - }, - "last_answer_type": "ai_answer", - "rating": 4, - "rating_remark": "Very helpful!", - "resolution_state": "assumed_resolution", - "source_title": "My AI Workflow", - "source_type": "essentials_plan_setup", - }, "ai_agent_participated": false, "contacts": { "contacts": [ @@ -26131,20 +25207,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda "total_count": 1, "type": "conversation_part.list", }, - "conversation_rating": { - "contact": { - "external_id": "f3b87a2e09d514c6c2e79b9a", - "id": "5ba682d23d7cf92bef87bfd4", - "type": "contact", - }, - "created_at": 1671028894, - "rating": 5, - "remark": "", - "teammate": { - "id": "1a2b3c", - "type": "contact", - }, - }, "created_at": 1719492849, "custom_attributes": { "key": "value", @@ -26152,7 +25214,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda "first_contact_reply": { "created_at": 1719492850, "type": "conversation", - "url": "https://developers.intercom.com/", }, "id": "387", "linked_objects": { @@ -26168,12 +25229,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda "open": true, "priority": "not_priority", "read": false, - "sla_applied": { - "sla_name": "", - "sla_status": "hit", - "type": "conversation_sla_summary", - }, - "snoozed_until": 1663597260, "source": { "attachments": [ { @@ -26198,30 +25253,8 @@ If you are redacting a conversation part, it must have a `body`. If you are reda "redacted": false, "subject": "", "type": "conversation", - "url": "url", }, "state": "open", - "statistics": { - "count_assignments": 1, - "count_conversation_parts": 1, - "count_reopens": 1, - "first_admin_reply_at": 1663597233, - "first_assignment_at": 1663597233, - "first_close_at": 1663597233, - "first_contact_reply_at": 1663597233, - "last_admin_reply_at": 1663597233, - "last_assignment_admin_reply_at": 1663597233, - "last_assignment_at": 1663597233, - "last_close_at": 1663597233, - "last_closed_by_id": "c3po", - "last_contact_reply_at": 1663597233, - "median_time_to_reply": 2310, - "time_to_admin_reply": 2310, - "time_to_assignment": 2310, - "time_to_first_close": 2310, - "time_to_last_close": 2310, - "type": "conversation_statistics", - }, "tags": { "tags": [ { @@ -26233,16 +25266,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda ], "type": "tag.list", }, - "team_assignee_id": "5017691", - "teammates": { - "teammates": [ - { - "type": "contact", - }, - ], - "type": "admin.list", - }, - "title": "Conversation Title", "type": "conversation", "updated_at": 1719492850, "waiting_since": 1719492850, @@ -26262,26 +25285,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda }, "response": { "body": { - "admin_assignee_id": 0, - "ai_agent": { - "content_sources": { - "content_sources": [ - { - "locale": "en", - "title": "My internal content snippet", - "url": "/fin-ai-agent/content?content=content_snippet&id=3234924", - }, - ], - "total_count": 1, - "type": "content_source.list", - }, - "last_answer_type": "ai_answer", - "rating": 4, - "rating_remark": "Very helpful!", - "resolution_state": "assumed_resolution", - "source_title": "My AI Workflow", - "source_type": "essentials_plan_setup", - }, "ai_agent_participated": false, "contacts": { "contacts": [ @@ -26337,29 +25340,10 @@ If you are redacting a conversation part, it must have a `body`. If you are reda "total_count": 1, "type": "conversation_part.list", }, - "conversation_rating": { - "contact": { - "external_id": "f3b87a2e09d514c6c2e79b9a", - "id": "5ba682d23d7cf92bef87bfd4", - "type": "contact", - }, - "created_at": 1671028894, - "rating": 5, - "remark": "", - "teammate": { - "id": "1a2b3c", - "type": "contact", - }, - }, "created_at": 1719492852, "custom_attributes": { "key": "value", }, - "first_contact_reply": { - "created_at": 1663597223, - "type": "conversation", - "url": "https://developers.intercom.com/", - }, "id": "388", "linked_objects": { "data": [ @@ -26374,12 +25358,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda "open": false, "priority": "not_priority", "read": false, - "sla_applied": { - "sla_name": "", - "sla_status": "hit", - "type": "conversation_sla_summary", - }, - "snoozed_until": 1663597260, "source": { "attachments": [ { @@ -26404,30 +25382,8 @@ If you are redacting a conversation part, it must have a `body`. If you are reda "redacted": false, "subject": "", "type": "conversation", - "url": "url", }, "state": "closed", - "statistics": { - "count_assignments": 1, - "count_conversation_parts": 1, - "count_reopens": 1, - "first_admin_reply_at": 1663597233, - "first_assignment_at": 1663597233, - "first_close_at": 1663597233, - "first_contact_reply_at": 1663597233, - "last_admin_reply_at": 1663597233, - "last_assignment_admin_reply_at": 1663597233, - "last_assignment_at": 1663597233, - "last_close_at": 1663597233, - "last_closed_by_id": "c3po", - "last_contact_reply_at": 1663597233, - "median_time_to_reply": 2310, - "time_to_admin_reply": 2310, - "time_to_assignment": 2310, - "time_to_first_close": 2310, - "time_to_last_close": 2310, - "type": "conversation_statistics", - }, "tags": { "tags": [ { @@ -26439,19 +25395,8 @@ If you are redacting a conversation part, it must have a `body`. If you are reda ], "type": "tag.list", }, - "team_assignee_id": "5017691", - "teammates": { - "teammates": [ - { - "type": "contact", - }, - ], - "type": "admin.list", - }, - "title": "Conversation Title", "type": "conversation", "updated_at": 1719492853, - "waiting_since": 1663597260, }, }, }, @@ -26468,26 +25413,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda }, "response": { "body": { - "admin_assignee_id": 0, - "ai_agent": { - "content_sources": { - "content_sources": [ - { - "locale": "en", - "title": "My internal content snippet", - "url": "/fin-ai-agent/content?content=content_snippet&id=3234924", - }, - ], - "total_count": 1, - "type": "content_source.list", - }, - "last_answer_type": "ai_answer", - "rating": 4, - "rating_remark": "Very helpful!", - "resolution_state": "assumed_resolution", - "source_title": "My AI Workflow", - "source_type": "essentials_plan_setup", - }, "ai_agent_participated": false, "contacts": { "contacts": [ @@ -26532,20 +25457,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda "total_count": 1, "type": "conversation_part.list", }, - "conversation_rating": { - "contact": { - "external_id": "f3b87a2e09d514c6c2e79b9a", - "id": "5ba682d23d7cf92bef87bfd4", - "type": "contact", - }, - "created_at": 1671028894, - "rating": 5, - "remark": "", - "teammate": { - "id": "1a2b3c", - "type": "contact", - }, - }, "created_at": 1719492855, "custom_attributes": { "key": "value", @@ -26553,7 +25464,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda "first_contact_reply": { "created_at": 1719492856, "type": "conversation", - "url": "https://developers.intercom.com/", }, "id": "390", "linked_objects": { @@ -26569,12 +25479,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda "open": true, "priority": "not_priority", "read": false, - "sla_applied": { - "sla_name": "", - "sla_status": "hit", - "type": "conversation_sla_summary", - }, - "snoozed_until": 1663597260, "source": { "attachments": [ { @@ -26599,30 +25503,8 @@ If you are redacting a conversation part, it must have a `body`. If you are reda "redacted": false, "subject": "", "type": "conversation", - "url": "url", }, "state": "open", - "statistics": { - "count_assignments": 1, - "count_conversation_parts": 1, - "count_reopens": 1, - "first_admin_reply_at": 1663597233, - "first_assignment_at": 1663597233, - "first_close_at": 1663597233, - "first_contact_reply_at": 1663597233, - "last_admin_reply_at": 1663597233, - "last_assignment_admin_reply_at": 1663597233, - "last_assignment_at": 1663597233, - "last_close_at": 1663597233, - "last_closed_by_id": "c3po", - "last_contact_reply_at": 1663597233, - "median_time_to_reply": 2310, - "time_to_admin_reply": 2310, - "time_to_assignment": 2310, - "time_to_first_close": 2310, - "time_to_last_close": 2310, - "type": "conversation_statistics", - }, "tags": { "tags": [ { @@ -26634,16 +25516,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda ], "type": "tag.list", }, - "team_assignee_id": "5017691", - "teammates": { - "teammates": [ - { - "type": "contact", - }, - ], - "type": "admin.list", - }, - "title": "Conversation Title", "type": "conversation", "updated_at": 1719492856, "waiting_since": 1719492856, @@ -26663,26 +25535,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda }, "response": { "body": { - "admin_assignee_id": 0, - "ai_agent": { - "content_sources": { - "content_sources": [ - { - "locale": "en", - "title": "My internal content snippet", - "url": "/fin-ai-agent/content?content=content_snippet&id=3234924", - }, - ], - "total_count": 1, - "type": "content_source.list", - }, - "last_answer_type": "ai_answer", - "rating": 4, - "rating_remark": "Very helpful!", - "resolution_state": "assumed_resolution", - "source_title": "My AI Workflow", - "source_type": "essentials_plan_setup", - }, "ai_agent_participated": false, "contacts": { "contacts": [ @@ -26727,20 +25579,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda "total_count": 1, "type": "conversation_part.list", }, - "conversation_rating": { - "contact": { - "external_id": "f3b87a2e09d514c6c2e79b9a", - "id": "5ba682d23d7cf92bef87bfd4", - "type": "contact", - }, - "created_at": 1671028894, - "rating": 5, - "remark": "", - "teammate": { - "id": "1a2b3c", - "type": "contact", - }, - }, "created_at": 1719492849, "custom_attributes": { "key": "value", @@ -26748,7 +25586,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda "first_contact_reply": { "created_at": 1719492850, "type": "conversation", - "url": "https://developers.intercom.com/", }, "id": "387", "linked_objects": { @@ -26764,12 +25601,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda "open": true, "priority": "not_priority", "read": false, - "sla_applied": { - "sla_name": "", - "sla_status": "hit", - "type": "conversation_sla_summary", - }, - "snoozed_until": 1663597260, "source": { "attachments": [ { @@ -26794,30 +25625,8 @@ If you are redacting a conversation part, it must have a `body`. If you are reda "redacted": false, "subject": "", "type": "conversation", - "url": "url", }, "state": "open", - "statistics": { - "count_assignments": 1, - "count_conversation_parts": 1, - "count_reopens": 1, - "first_admin_reply_at": 1663597233, - "first_assignment_at": 1663597233, - "first_close_at": 1663597233, - "first_contact_reply_at": 1663597233, - "last_admin_reply_at": 1663597233, - "last_assignment_admin_reply_at": 1663597233, - "last_assignment_at": 1663597233, - "last_close_at": 1663597233, - "last_closed_by_id": "c3po", - "last_contact_reply_at": 1663597233, - "median_time_to_reply": 2310, - "time_to_admin_reply": 2310, - "time_to_assignment": 2310, - "time_to_first_close": 2310, - "time_to_last_close": 2310, - "type": "conversation_statistics", - }, "tags": { "tags": [ { @@ -26829,16 +25638,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda ], "type": "tag.list", }, - "team_assignee_id": "5017691", - "teammates": { - "teammates": [ - { - "type": "contact", - }, - ], - "type": "admin.list", - }, - "title": "Conversation Title", "type": "conversation", "updated_at": 1719492850, "waiting_since": 1719492850, @@ -26897,26 +25696,6 @@ For AI agent conversation metadata, please note that you need to have the agent }, "response": { "body": { - "admin_assignee_id": 0, - "ai_agent": { - "content_sources": { - "content_sources": [ - { - "locale": "en", - "title": "My internal content snippet", - "url": "/fin-ai-agent/content?content=content_snippet&id=3234924", - }, - ], - "total_count": 1, - "type": "content_source.list", - }, - "last_answer_type": "ai_answer", - "rating": 4, - "rating_remark": "Very helpful!", - "resolution_state": "assumed_resolution", - "source_title": "My AI Workflow", - "source_type": "essentials_plan_setup", - }, "ai_agent_participated": false, "contacts": { "contacts": [ @@ -26943,29 +25722,10 @@ For AI agent conversation metadata, please note that you need to have the agent "total_count": 0, "type": "conversation_part.list", }, - "conversation_rating": { - "contact": { - "external_id": "f3b87a2e09d514c6c2e79b9a", - "id": "5ba682d23d7cf92bef87bfd4", - "type": "contact", - }, - "created_at": 1671028894, - "rating": 5, - "remark": "", - "teammate": { - "id": "1a2b3c", - "type": "contact", - }, - }, "created_at": 1719492825, "custom_attributes": { "key": "value", }, - "first_contact_reply": { - "created_at": 1663597223, - "type": "conversation", - "url": "https://developers.intercom.com/", - }, "id": "367", "linked_objects": { "data": [ @@ -26980,12 +25740,6 @@ For AI agent conversation metadata, please note that you need to have the agent "open": false, "priority": "not_priority", "read": false, - "sla_applied": { - "sla_name": "", - "sla_status": "hit", - "type": "conversation_sla_summary", - }, - "snoozed_until": 1663597260, "source": { "attachments": [ { @@ -27010,30 +25764,8 @@ For AI agent conversation metadata, please note that you need to have the agent "redacted": false, "subject": "", "type": "conversation", - "url": "url", }, "state": "closed", - "statistics": { - "count_assignments": 1, - "count_conversation_parts": 1, - "count_reopens": 1, - "first_admin_reply_at": 1663597233, - "first_assignment_at": 1663597233, - "first_close_at": 1663597233, - "first_contact_reply_at": 1663597233, - "last_admin_reply_at": 1663597233, - "last_assignment_admin_reply_at": 1663597233, - "last_assignment_at": 1663597233, - "last_close_at": 1663597233, - "last_closed_by_id": "c3po", - "last_contact_reply_at": 1663597233, - "median_time_to_reply": 2310, - "time_to_admin_reply": 2310, - "time_to_assignment": 2310, - "time_to_first_close": 2310, - "time_to_last_close": 2310, - "type": "conversation_statistics", - }, "tags": { "tags": [ { @@ -27045,19 +25777,8 @@ For AI agent conversation metadata, please note that you need to have the agent ], "type": "tag.list", }, - "team_assignee_id": "5017691", - "teammates": { - "teammates": [ - { - "type": "contact", - }, - ], - "type": "admin.list", - }, - "title": "Conversation Title", "type": "conversation", "updated_at": 1719492825, - "waiting_since": 1663597260, }, }, }, @@ -27212,7 +25933,6 @@ The table below shows the operators you can use to define how you want to search "body": { "conversations": [ { - "admin_assignee_id": 0, "ai_agent_participated": false, "contacts": { "contacts": [ @@ -27227,19 +25947,10 @@ The table below shows the operators you can use to define how you want to search "conversation_parts": { "total_count": 2, }, - "conversation_rating": { - "created_at": 1671028894, - "rating": 5, - "remark": "", - }, "created_at": 1719492843, "custom_attributes": { "key": "value", }, - "first_contact_reply": { - "created_at": 1663597223, - "type": "conversation", - }, "id": "378", "linked_objects": { "data": [ @@ -27254,11 +25965,6 @@ The table below shows the operators you can use to define how you want to search "open": false, "priority": "not_priority", "read": false, - "sla_applied": { - "sla_name": "", - "type": "conversation_sla_summary", - }, - "snoozed_until": 1663597260, "source": { "attachments": [ { @@ -27285,27 +25991,6 @@ The table below shows the operators you can use to define how you want to search "type": "conversation", }, "state": "closed", - "statistics": { - "count_assignments": 1, - "count_conversation_parts": 1, - "count_reopens": 1, - "first_admin_reply_at": 1663597233, - "first_assignment_at": 1663597233, - "first_close_at": 1663597233, - "first_contact_reply_at": 1663597233, - "last_admin_reply_at": 1663597233, - "last_assignment_admin_reply_at": 1663597233, - "last_assignment_at": 1663597233, - "last_close_at": 1663597233, - "last_closed_by_id": "c3po", - "last_contact_reply_at": 1663597233, - "median_time_to_reply": 2310, - "time_to_admin_reply": 2310, - "time_to_assignment": 2310, - "time_to_first_close": 2310, - "time_to_last_close": 2310, - "type": "conversation_statistics", - }, "tags": { "tags": [ { @@ -27317,14 +26002,8 @@ The table below shows the operators you can use to define how you want to search ], "type": "tag.list", }, - "team_assignee_id": "5017691", - "teammates": { - "type": "admin.list", - }, - "title": "Conversation Title", "type": "conversation", "updated_at": 1719492843, - "waiting_since": 1663597260, }, ], "pages": { @@ -27394,26 +26073,6 @@ If you want to reply to a coveration or take an action such as assign, unassign, }, "response": { "body": { - "admin_assignee_id": 0, - "ai_agent": { - "content_sources": { - "content_sources": [ - { - "locale": "en", - "title": "My internal content snippet", - "url": "/fin-ai-agent/content?content=content_snippet&id=3234924", - }, - ], - "total_count": 1, - "type": "content_source.list", - }, - "last_answer_type": "ai_answer", - "rating": 4, - "rating_remark": "Very helpful!", - "resolution_state": "assumed_resolution", - "source_title": "My AI Workflow", - "source_type": "essentials_plan_setup", - }, "ai_agent_participated": false, "contacts": { "contacts": [ @@ -27483,30 +26142,11 @@ If you want to reply to a coveration or take an action such as assign, unassign, "total_count": 2, "type": "conversation_part.list", }, - "conversation_rating": { - "contact": { - "external_id": "f3b87a2e09d514c6c2e79b9a", - "id": "5ba682d23d7cf92bef87bfd4", - "type": "contact", - }, - "created_at": 1671028894, - "rating": 5, - "remark": "", - "teammate": { - "id": "1a2b3c", - "type": "contact", - }, - }, "created_at": 1719492832, "custom_attributes": { "issue_type": "Billing", "priority": "High", }, - "first_contact_reply": { - "created_at": 1663597223, - "type": "conversation", - "url": "https://developers.intercom.com/", - }, "id": "371", "linked_objects": { "data": [ @@ -27521,12 +26161,6 @@ If you want to reply to a coveration or take an action such as assign, unassign, "open": false, "priority": "not_priority", "read": true, - "sla_applied": { - "sla_name": "", - "sla_status": "hit", - "type": "conversation_sla_summary", - }, - "snoozed_until": 1663597260, "source": { "attachments": [ { @@ -27551,30 +26185,8 @@ If you want to reply to a coveration or take an action such as assign, unassign, "redacted": false, "subject": "", "type": "conversation", - "url": "url", }, "state": "closed", - "statistics": { - "count_assignments": 1, - "count_conversation_parts": 1, - "count_reopens": 1, - "first_admin_reply_at": 1663597233, - "first_assignment_at": 1663597233, - "first_close_at": 1663597233, - "first_contact_reply_at": 1663597233, - "last_admin_reply_at": 1663597233, - "last_assignment_admin_reply_at": 1663597233, - "last_assignment_at": 1663597233, - "last_close_at": 1663597233, - "last_closed_by_id": "c3po", - "last_contact_reply_at": 1663597233, - "median_time_to_reply": 2310, - "time_to_admin_reply": 2310, - "time_to_assignment": 2310, - "time_to_first_close": 2310, - "time_to_last_close": 2310, - "type": "conversation_statistics", - }, "tags": { "tags": [ { @@ -27586,19 +26198,8 @@ If you want to reply to a coveration or take an action such as assign, unassign, ], "type": "tag.list", }, - "team_assignee_id": "5017691", - "teammates": { - "teammates": [ - { - "type": "contact", - }, - ], - "type": "admin.list", - }, - "title": "Conversation Title", "type": "conversation", "updated_at": 1719492834, - "waiting_since": 1663597260, }, }, }, @@ -27619,26 +26220,6 @@ If you want to reply to a coveration or take an action such as assign, unassign, }, "response": { "body": { - "admin_assignee_id": 0, - "ai_agent": { - "content_sources": { - "content_sources": [ - { - "locale": "en", - "title": "My internal content snippet", - "url": "/fin-ai-agent/content?content=content_snippet&id=3234924", - }, - ], - "total_count": 1, - "type": "content_source.list", - }, - "last_answer_type": "ai_answer", - "rating": 4, - "rating_remark": "Very helpful!", - "resolution_state": "assumed_resolution", - "source_title": "My AI Workflow", - "source_type": "essentials_plan_setup", - }, "ai_agent_participated": false, "contacts": { "contacts": [ @@ -27708,30 +26289,11 @@ If you want to reply to a coveration or take an action such as assign, unassign, "total_count": 2, "type": "conversation_part.list", }, - "conversation_rating": { - "contact": { - "external_id": "f3b87a2e09d514c6c2e79b9a", - "id": "5ba682d23d7cf92bef87bfd4", - "type": "contact", - }, - "created_at": 1671028894, - "rating": 5, - "remark": "", - "teammate": { - "id": "1a2b3c", - "type": "contact", - }, - }, "created_at": 1719492832, "custom_attributes": { "issue_type": "Billing", "priority": "High", }, - "first_contact_reply": { - "created_at": 1663597223, - "type": "conversation", - "url": "https://developers.intercom.com/", - }, "id": "371", "linked_objects": { "data": [ @@ -27746,12 +26308,6 @@ If you want to reply to a coveration or take an action such as assign, unassign, "open": false, "priority": "not_priority", "read": true, - "sla_applied": { - "sla_name": "", - "sla_status": "hit", - "type": "conversation_sla_summary", - }, - "snoozed_until": 1663597260, "source": { "attachments": [ { @@ -27776,30 +26332,8 @@ If you want to reply to a coveration or take an action such as assign, unassign, "redacted": false, "subject": "", "type": "conversation", - "url": "url", }, "state": "closed", - "statistics": { - "count_assignments": 1, - "count_conversation_parts": 1, - "count_reopens": 1, - "first_admin_reply_at": 1663597233, - "first_assignment_at": 1663597233, - "first_close_at": 1663597233, - "first_contact_reply_at": 1663597233, - "last_admin_reply_at": 1663597233, - "last_assignment_admin_reply_at": 1663597233, - "last_assignment_at": 1663597233, - "last_close_at": 1663597233, - "last_closed_by_id": "c3po", - "last_contact_reply_at": 1663597233, - "median_time_to_reply": 2310, - "time_to_admin_reply": 2310, - "time_to_assignment": 2310, - "time_to_first_close": 2310, - "time_to_last_close": 2310, - "type": "conversation_statistics", - }, "tags": { "tags": [ { @@ -27811,19 +26345,8 @@ If you want to reply to a coveration or take an action such as assign, unassign, ], "type": "tag.list", }, - "team_assignee_id": "5017691", - "teammates": { - "teammates": [ - { - "type": "contact", - }, - ], - "type": "admin.list", - }, - "title": "Conversation Title", "type": "conversation", "updated_at": 1719492834, - "waiting_since": 1663597260, }, }, }, @@ -28318,17 +26841,12 @@ service: body: type: conversation id: '367' - title: Conversation Title created_at: 1719492825 updated_at: 1719492825 - waiting_since: 1663597260 - snoozed_until: 1663597260 open: false state: closed read: false priority: not_priority - admin_assignee_id: 0 - team_assignee_id: '5017691' tags: type: tag.list tags: @@ -28336,17 +26854,6 @@ service: id: '123456' name: Test tag applied_at: 1663597223 - conversation_rating: - rating: 5 - remark: '' - created_at: 1671028894 - contact: - type: contact - id: 5ba682d23d7cf92bef87bfd4 - external_id: f3b87a2e09d514c6c2e79b9a - teammate: - type: contact - id: 1a2b3c source: type: conversation id: '403918255' @@ -28366,7 +26873,6 @@ service: filesize: 100 width: 100 height: 100 - url: url redacted: false contacts: type: contact.list @@ -28374,40 +26880,8 @@ service: - type: contact id: 667d60d88a68186f43bafde1 external_id: '70' - teammates: - type: admin.list - teammates: - - type: contact custom_attributes: key: value - first_contact_reply: - created_at: 1663597223 - type: conversation - url: https://developers.intercom.com/ - sla_applied: - type: conversation_sla_summary - sla_name: '' - sla_status: hit - statistics: - type: conversation_statistics - time_to_assignment: 2310 - time_to_admin_reply: 2310 - time_to_first_close: 2310 - time_to_last_close: 2310 - median_time_to_reply: 2310 - first_contact_reply_at: 1663597233 - first_assignment_at: 1663597233 - first_admin_reply_at: 1663597233 - first_close_at: 1663597233 - last_assignment_at: 1663597233 - last_assignment_admin_reply_at: 1663597233 - last_contact_reply_at: 1663597233 - last_admin_reply_at: 1663597233 - last_close_at: 1663597233 - last_closed_by_id: c3po - count_reopens: 1 - count_assignments: 1 - count_conversation_parts: 1 conversation_parts: type: conversation_part.list conversation_parts: @@ -28426,20 +26900,6 @@ service: data: - id: '7583' ai_agent_participated: false - ai_agent: - source_type: essentials_plan_setup - source_title: My AI Workflow - last_answer_type: ai_answer - resolution_state: assumed_resolution - rating: 4 - rating_remark: Very helpful! - content_sources: - type: content_source.list - total_count: 1 - content_sources: - - url: /fin-ai-agent/content?content=content_snippet&id=3234924 - title: My internal content snippet - locale: en updateConversation: path: /conversations/{id} method: PUT @@ -28500,17 +26960,12 @@ service: body: type: conversation id: '371' - title: Conversation Title created_at: 1719492832 updated_at: 1719492834 - waiting_since: 1663597260 - snoozed_until: 1663597260 open: false state: closed read: true priority: not_priority - admin_assignee_id: 0 - team_assignee_id: '5017691' tags: type: tag.list tags: @@ -28518,17 +26973,6 @@ service: id: '123456' name: Test tag applied_at: 1663597223 - conversation_rating: - rating: 5 - remark: '' - created_at: 1671028894 - contact: - type: contact - id: 5ba682d23d7cf92bef87bfd4 - external_id: f3b87a2e09d514c6c2e79b9a - teammate: - type: contact - id: 1a2b3c source: type: conversation id: '403918259' @@ -28548,7 +26992,6 @@ service: filesize: 100 width: 100 height: 100 - url: url redacted: false contacts: type: contact.list @@ -28556,41 +26999,9 @@ service: - type: contact id: 667d60e08a68186f43bafde5 external_id: '70' - teammates: - type: admin.list - teammates: - - type: contact custom_attributes: issue_type: Billing priority: High - first_contact_reply: - created_at: 1663597223 - type: conversation - url: https://developers.intercom.com/ - sla_applied: - type: conversation_sla_summary - sla_name: '' - sla_status: hit - statistics: - type: conversation_statistics - time_to_assignment: 2310 - time_to_admin_reply: 2310 - time_to_first_close: 2310 - time_to_last_close: 2310 - median_time_to_reply: 2310 - first_contact_reply_at: 1663597233 - first_assignment_at: 1663597233 - first_admin_reply_at: 1663597233 - first_close_at: 1663597233 - last_assignment_at: 1663597233 - last_assignment_admin_reply_at: 1663597233 - last_contact_reply_at: 1663597233 - last_admin_reply_at: 1663597233 - last_close_at: 1663597233 - last_closed_by_id: c3po - count_reopens: 1 - count_assignments: 1 - count_conversation_parts: 1 conversation_parts: type: conversation_part.list conversation_parts: @@ -28644,20 +27055,6 @@ service: data: - id: '7583' ai_agent_participated: false - ai_agent: - source_type: essentials_plan_setup - source_title: My AI Workflow - last_answer_type: ai_answer - resolution_state: assumed_resolution - rating: 4 - rating_remark: Very helpful! - content_sources: - type: content_source.list - total_count: 1 - content_sources: - - url: /fin-ai-agent/content?content=content_snippet&id=3234924 - title: My internal content snippet - locale: en - name: Not found path-parameters: id: 1 @@ -28672,17 +27069,12 @@ service: body: type: conversation id: '371' - title: Conversation Title created_at: 1719492832 updated_at: 1719492834 - waiting_since: 1663597260 - snoozed_until: 1663597260 open: false state: closed read: true priority: not_priority - admin_assignee_id: 0 - team_assignee_id: '5017691' tags: type: tag.list tags: @@ -28690,17 +27082,6 @@ service: id: '123456' name: Test tag applied_at: 1663597223 - conversation_rating: - rating: 5 - remark: '' - created_at: 1671028894 - contact: - type: contact - id: 5ba682d23d7cf92bef87bfd4 - external_id: f3b87a2e09d514c6c2e79b9a - teammate: - type: contact - id: 1a2b3c source: type: conversation id: '403918259' @@ -28720,7 +27101,6 @@ service: filesize: 100 width: 100 height: 100 - url: url redacted: false contacts: type: contact.list @@ -28728,41 +27108,9 @@ service: - type: contact id: 667d60e08a68186f43bafde5 external_id: '70' - teammates: - type: admin.list - teammates: - - type: contact custom_attributes: issue_type: Billing priority: High - first_contact_reply: - created_at: 1663597223 - type: conversation - url: https://developers.intercom.com/ - sla_applied: - type: conversation_sla_summary - sla_name: '' - sla_status: hit - statistics: - type: conversation_statistics - time_to_assignment: 2310 - time_to_admin_reply: 2310 - time_to_first_close: 2310 - time_to_last_close: 2310 - median_time_to_reply: 2310 - first_contact_reply_at: 1663597233 - first_assignment_at: 1663597233 - first_admin_reply_at: 1663597233 - first_close_at: 1663597233 - last_assignment_at: 1663597233 - last_assignment_admin_reply_at: 1663597233 - last_contact_reply_at: 1663597233 - last_admin_reply_at: 1663597233 - last_close_at: 1663597233 - last_closed_by_id: c3po - count_reopens: 1 - count_assignments: 1 - count_conversation_parts: 1 conversation_parts: type: conversation_part.list conversation_parts: @@ -28816,20 +27164,6 @@ service: data: - id: '7583' ai_agent_participated: false - ai_agent: - source_type: essentials_plan_setup - source_title: My AI Workflow - last_answer_type: ai_answer - resolution_state: assumed_resolution - rating: 4 - rating_remark: Very helpful! - content_sources: - type: content_source.list - total_count: 1 - content_sources: - - url: /fin-ai-agent/content?content=content_snippet&id=3234924 - title: My internal content snippet - locale: en searchConversations: path: /conversations/search method: POST @@ -29181,17 +27515,12 @@ service: conversations: - type: conversation id: '378' - title: Conversation Title created_at: 1719492843 updated_at: 1719492843 - waiting_since: 1663597260 - snoozed_until: 1663597260 open: false state: closed read: false priority: not_priority - admin_assignee_id: 0 - team_assignee_id: '5017691' tags: type: tag.list tags: @@ -29199,10 +27528,6 @@ service: id: '123456' name: Test tag applied_at: 1663597223 - conversation_rating: - rating: 5 - remark: '' - created_at: 1671028894 source: type: conversation id: '403918266' @@ -29229,36 +27554,8 @@ service: - type: contact id: 667d60ea8a68186f43bafdec external_id: '70' - teammates: - type: admin.list custom_attributes: key: value - first_contact_reply: - created_at: 1663597223 - type: conversation - sla_applied: - type: conversation_sla_summary - sla_name: '' - statistics: - type: conversation_statistics - time_to_assignment: 2310 - time_to_admin_reply: 2310 - time_to_first_close: 2310 - time_to_last_close: 2310 - median_time_to_reply: 2310 - first_contact_reply_at: 1663597233 - first_assignment_at: 1663597233 - first_admin_reply_at: 1663597233 - first_close_at: 1663597233 - last_assignment_at: 1663597233 - last_assignment_admin_reply_at: 1663597233 - last_contact_reply_at: 1663597233 - last_admin_reply_at: 1663597233 - last_close_at: 1663597233 - last_closed_by_id: c3po - count_reopens: 1 - count_assignments: 1 - count_conversation_parts: 1 conversation_parts: total_count: 2 linked_objects: @@ -29316,17 +27613,13 @@ service: body: type: conversation id: '387' - title: Conversation Title created_at: 1719492849 updated_at: 1719492850 waiting_since: 1719492850 - snoozed_until: 1663597260 open: true state: open read: false priority: not_priority - admin_assignee_id: 0 - team_assignee_id: '5017691' tags: type: tag.list tags: @@ -29334,17 +27627,6 @@ service: id: '123456' name: Test tag applied_at: 1663597223 - conversation_rating: - rating: 5 - remark: '' - created_at: 1671028894 - contact: - type: contact - id: 5ba682d23d7cf92bef87bfd4 - external_id: f3b87a2e09d514c6c2e79b9a - teammate: - type: contact - id: 1a2b3c source: type: conversation id: '403918269' @@ -29364,7 +27646,6 @@ service: filesize: 100 width: 100 height: 100 - url: url redacted: false contacts: type: contact.list @@ -29372,40 +27653,11 @@ service: - type: contact id: 667d60f18a68186f43bafdf4 external_id: '70' - teammates: - type: admin.list - teammates: - - type: contact custom_attributes: key: value first_contact_reply: created_at: 1719492850 type: conversation - url: https://developers.intercom.com/ - sla_applied: - type: conversation_sla_summary - sla_name: '' - sla_status: hit - statistics: - type: conversation_statistics - time_to_assignment: 2310 - time_to_admin_reply: 2310 - time_to_first_close: 2310 - time_to_last_close: 2310 - median_time_to_reply: 2310 - first_contact_reply_at: 1663597233 - first_assignment_at: 1663597233 - first_admin_reply_at: 1663597233 - first_close_at: 1663597233 - last_assignment_at: 1663597233 - last_assignment_admin_reply_at: 1663597233 - last_contact_reply_at: 1663597233 - last_admin_reply_at: 1663597233 - last_close_at: 1663597233 - last_closed_by_id: c3po - count_reopens: 1 - count_assignments: 1 - count_conversation_parts: 1 conversation_parts: type: conversation_part.list conversation_parts: @@ -29438,20 +27690,6 @@ service: data: - id: '7583' ai_agent_participated: false - ai_agent: - source_type: essentials_plan_setup - source_title: My AI Workflow - last_answer_type: ai_answer - resolution_state: assumed_resolution - rating: 4 - rating_remark: Very helpful! - content_sources: - type: content_source.list - total_count: 1 - content_sources: - - url: /fin-ai-agent/content?content=content_snippet&id=3234924 - title: My internal content snippet - locale: en - name: Admin note reply path-parameters: id: 123 or "last" @@ -29468,17 +27706,12 @@ service: body: type: conversation id: '388' - title: Conversation Title created_at: 1719492852 updated_at: 1719492853 - waiting_since: 1663597260 - snoozed_until: 1663597260 open: false state: closed read: false priority: not_priority - admin_assignee_id: 0 - team_assignee_id: '5017691' tags: type: tag.list tags: @@ -29486,17 +27719,6 @@ service: id: '123456' name: Test tag applied_at: 1663597223 - conversation_rating: - rating: 5 - remark: '' - created_at: 1671028894 - contact: - type: contact - id: 5ba682d23d7cf92bef87bfd4 - external_id: f3b87a2e09d514c6c2e79b9a - teammate: - type: contact - id: 1a2b3c source: type: conversation id: '403918270' @@ -29516,7 +27738,6 @@ service: filesize: 100 width: 100 height: 100 - url: url redacted: false contacts: type: contact.list @@ -29524,40 +27745,8 @@ service: - type: contact id: 667d60f38a68186f43bafdf5 external_id: '70' - teammates: - type: admin.list - teammates: - - type: contact custom_attributes: key: value - first_contact_reply: - created_at: 1663597223 - type: conversation - url: https://developers.intercom.com/ - sla_applied: - type: conversation_sla_summary - sla_name: '' - sla_status: hit - statistics: - type: conversation_statistics - time_to_assignment: 2310 - time_to_admin_reply: 2310 - time_to_first_close: 2310 - time_to_last_close: 2310 - median_time_to_reply: 2310 - first_contact_reply_at: 1663597233 - first_assignment_at: 1663597233 - first_admin_reply_at: 1663597233 - first_close_at: 1663597233 - last_assignment_at: 1663597233 - last_assignment_admin_reply_at: 1663597233 - last_contact_reply_at: 1663597233 - last_admin_reply_at: 1663597233 - last_close_at: 1663597233 - last_closed_by_id: c3po - count_reopens: 1 - count_assignments: 1 - count_conversation_parts: 1 conversation_parts: type: conversation_part.list conversation_parts: @@ -29602,20 +27791,6 @@ service: data: - id: '7583' ai_agent_participated: false - ai_agent: - source_type: essentials_plan_setup - source_title: My AI Workflow - last_answer_type: ai_answer - resolution_state: assumed_resolution - rating: 4 - rating_remark: Very helpful! - content_sources: - type: content_source.list - total_count: 1 - content_sources: - - url: /fin-ai-agent/content?content=content_snippet&id=3234924 - title: My internal content snippet - locale: en - name: User last conversation reply path-parameters: id: 123 or "last" @@ -29628,17 +27803,13 @@ service: body: type: conversation id: '390' - title: Conversation Title created_at: 1719492855 updated_at: 1719492856 waiting_since: 1719492856 - snoozed_until: 1663597260 open: true state: open read: false priority: not_priority - admin_assignee_id: 0 - team_assignee_id: '5017691' tags: type: tag.list tags: @@ -29646,17 +27817,6 @@ service: id: '123456' name: Test tag applied_at: 1663597223 - conversation_rating: - rating: 5 - remark: '' - created_at: 1671028894 - contact: - type: contact - id: 5ba682d23d7cf92bef87bfd4 - external_id: f3b87a2e09d514c6c2e79b9a - teammate: - type: contact - id: 1a2b3c source: type: conversation id: '403918272' @@ -29676,7 +27836,6 @@ service: filesize: 100 width: 100 height: 100 - url: url redacted: false contacts: type: contact.list @@ -29684,40 +27843,11 @@ service: - type: contact id: 667d60f78a68186f43bafdf7 external_id: '70' - teammates: - type: admin.list - teammates: - - type: contact custom_attributes: key: value first_contact_reply: created_at: 1719492856 type: conversation - url: https://developers.intercom.com/ - sla_applied: - type: conversation_sla_summary - sla_name: '' - sla_status: hit - statistics: - type: conversation_statistics - time_to_assignment: 2310 - time_to_admin_reply: 2310 - time_to_first_close: 2310 - time_to_last_close: 2310 - median_time_to_reply: 2310 - first_contact_reply_at: 1663597233 - first_assignment_at: 1663597233 - first_admin_reply_at: 1663597233 - first_close_at: 1663597233 - last_assignment_at: 1663597233 - last_assignment_admin_reply_at: 1663597233 - last_contact_reply_at: 1663597233 - last_admin_reply_at: 1663597233 - last_close_at: 1663597233 - last_closed_by_id: c3po - count_reopens: 1 - count_assignments: 1 - count_conversation_parts: 1 conversation_parts: type: conversation_part.list conversation_parts: @@ -29750,20 +27880,6 @@ service: data: - id: '7583' ai_agent_participated: false - ai_agent: - source_type: essentials_plan_setup - source_title: My AI Workflow - last_answer_type: ai_answer - resolution_state: assumed_resolution - rating: 4 - rating_remark: Very helpful! - content_sources: - type: content_source.list - total_count: 1 - content_sources: - - url: /fin-ai-agent/content?content=content_snippet&id=3234924 - title: My internal content snippet - locale: en - name: Not found path-parameters: id: 123 or "last" @@ -29776,17 +27892,13 @@ service: body: type: conversation id: '387' - title: Conversation Title created_at: 1719492849 updated_at: 1719492850 waiting_since: 1719492850 - snoozed_until: 1663597260 open: true state: open read: false priority: not_priority - admin_assignee_id: 0 - team_assignee_id: '5017691' tags: type: tag.list tags: @@ -29794,17 +27906,6 @@ service: id: '123456' name: Test tag applied_at: 1663597223 - conversation_rating: - rating: 5 - remark: '' - created_at: 1671028894 - contact: - type: contact - id: 5ba682d23d7cf92bef87bfd4 - external_id: f3b87a2e09d514c6c2e79b9a - teammate: - type: contact - id: 1a2b3c source: type: conversation id: '403918269' @@ -29824,7 +27925,6 @@ service: filesize: 100 width: 100 height: 100 - url: url redacted: false contacts: type: contact.list @@ -29832,40 +27932,11 @@ service: - type: contact id: 667d60f18a68186f43bafdf4 external_id: '70' - teammates: - type: admin.list - teammates: - - type: contact custom_attributes: key: value first_contact_reply: created_at: 1719492850 type: conversation - url: https://developers.intercom.com/ - sla_applied: - type: conversation_sla_summary - sla_name: '' - sla_status: hit - statistics: - type: conversation_statistics - time_to_assignment: 2310 - time_to_admin_reply: 2310 - time_to_first_close: 2310 - time_to_last_close: 2310 - median_time_to_reply: 2310 - first_contact_reply_at: 1663597233 - first_assignment_at: 1663597233 - first_admin_reply_at: 1663597233 - first_close_at: 1663597233 - last_assignment_at: 1663597233 - last_assignment_admin_reply_at: 1663597233 - last_contact_reply_at: 1663597233 - last_admin_reply_at: 1663597233 - last_close_at: 1663597233 - last_closed_by_id: c3po - count_reopens: 1 - count_assignments: 1 - count_conversation_parts: 1 conversation_parts: type: conversation_part.list conversation_parts: @@ -29898,20 +27969,6 @@ service: data: - id: '7583' ai_agent_participated: false - ai_agent: - source_type: essentials_plan_setup - source_title: My AI Workflow - last_answer_type: ai_answer - resolution_state: assumed_resolution - rating: 4 - rating_remark: Very helpful! - content_sources: - type: content_source.list - total_count: 1 - content_sources: - - url: /fin-ai-agent/content?content=content_snippet&id=3234924 - title: My internal content snippet - locale: en manageConversation: path: /conversations/{id}/parts method: POST @@ -29953,17 +28010,12 @@ service: body: type: conversation id: '394' - title: Conversation Title created_at: 1719492862 updated_at: 1719492862 - waiting_since: 1663597260 - snoozed_until: 1663597260 open: false state: closed read: false priority: not_priority - admin_assignee_id: 0 - team_assignee_id: '5017691' tags: type: tag.list tags: @@ -29971,17 +28023,6 @@ service: id: '123456' name: Test tag applied_at: 1663597223 - conversation_rating: - rating: 5 - remark: '' - created_at: 1671028894 - contact: - type: contact - id: 5ba682d23d7cf92bef87bfd4 - external_id: f3b87a2e09d514c6c2e79b9a - teammate: - type: contact - id: 1a2b3c source: type: conversation id: '403918276' @@ -30001,7 +28042,6 @@ service: filesize: 100 width: 100 height: 100 - url: url redacted: false contacts: type: contact.list @@ -30009,40 +28049,8 @@ service: - type: contact id: 667d60fd8a68186f43bafdfb external_id: '70' - teammates: - type: admin.list - teammates: - - type: contact custom_attributes: key: value - first_contact_reply: - created_at: 1663597223 - type: conversation - url: https://developers.intercom.com/ - sla_applied: - type: conversation_sla_summary - sla_name: '' - sla_status: hit - statistics: - type: conversation_statistics - time_to_assignment: 2310 - time_to_admin_reply: 2310 - time_to_first_close: 2310 - time_to_last_close: 2310 - median_time_to_reply: 2310 - first_contact_reply_at: 1663597233 - first_assignment_at: 1663597233 - first_admin_reply_at: 1663597233 - first_close_at: 1663597233 - last_assignment_at: 1663597233 - last_assignment_admin_reply_at: 1663597233 - last_contact_reply_at: 1663597233 - last_admin_reply_at: 1663597233 - last_close_at: 1663597233 - last_closed_by_id: c3po - count_reopens: 1 - count_assignments: 1 - count_conversation_parts: 1 conversation_parts: type: conversation_part.list conversation_parts: @@ -30075,20 +28083,6 @@ service: data: - id: '7583' ai_agent_participated: false - ai_agent: - source_type: essentials_plan_setup - source_title: My AI Workflow - last_answer_type: ai_answer - resolution_state: assumed_resolution - rating: 4 - rating_remark: Very helpful! - content_sources: - type: content_source.list - total_count: 1 - content_sources: - - url: /fin-ai-agent/content?content=content_snippet&id=3234924 - title: My internal content snippet - locale: en - name: Snooze a conversation path-parameters: id: '123' @@ -30102,17 +28096,13 @@ service: body: type: conversation id: '395' - title: Conversation Title created_at: 1719492864 updated_at: 1719492864 - waiting_since: 1663597260 snoozed_until: 1719496464 open: true state: snoozed read: false priority: not_priority - admin_assignee_id: 0 - team_assignee_id: '5017691' tags: type: tag.list tags: @@ -30120,17 +28110,6 @@ service: id: '123456' name: Test tag applied_at: 1663597223 - conversation_rating: - rating: 5 - remark: '' - created_at: 1671028894 - contact: - type: contact - id: 5ba682d23d7cf92bef87bfd4 - external_id: f3b87a2e09d514c6c2e79b9a - teammate: - type: contact - id: 1a2b3c source: type: conversation id: '403918277' @@ -30150,7 +28129,6 @@ service: filesize: 100 width: 100 height: 100 - url: url redacted: false contacts: type: contact.list @@ -30158,40 +28136,8 @@ service: - type: contact id: 667d60ff8a68186f43bafdfc external_id: '70' - teammates: - type: admin.list - teammates: - - type: contact custom_attributes: key: value - first_contact_reply: - created_at: 1663597223 - type: conversation - url: https://developers.intercom.com/ - sla_applied: - type: conversation_sla_summary - sla_name: '' - sla_status: hit - statistics: - type: conversation_statistics - time_to_assignment: 2310 - time_to_admin_reply: 2310 - time_to_first_close: 2310 - time_to_last_close: 2310 - median_time_to_reply: 2310 - first_contact_reply_at: 1663597233 - first_assignment_at: 1663597233 - first_admin_reply_at: 1663597233 - first_close_at: 1663597233 - last_assignment_at: 1663597233 - last_assignment_admin_reply_at: 1663597233 - last_contact_reply_at: 1663597233 - last_admin_reply_at: 1663597233 - last_close_at: 1663597233 - last_closed_by_id: c3po - count_reopens: 1 - count_assignments: 1 - count_conversation_parts: 1 conversation_parts: type: conversation_part.list conversation_parts: @@ -30223,20 +28169,6 @@ service: data: - id: '7583' ai_agent_participated: false - ai_agent: - source_type: essentials_plan_setup - source_title: My AI Workflow - last_answer_type: ai_answer - resolution_state: assumed_resolution - rating: 4 - rating_remark: Very helpful! - content_sources: - type: content_source.list - total_count: 1 - content_sources: - - url: /fin-ai-agent/content?content=content_snippet&id=3234924 - title: My internal content snippet - locale: en - name: Open a conversation path-parameters: id: '123' @@ -30253,14 +28185,10 @@ service: title: '' created_at: 1719492863 updated_at: 1719492873 - waiting_since: 1663597260 - snoozed_until: 1663597260 open: true state: open read: true priority: not_priority - admin_assignee_id: 0 - team_assignee_id: '5017691' tags: type: tag.list tags: @@ -30268,17 +28196,6 @@ service: id: '123456' name: Test tag applied_at: 1663597223 - conversation_rating: - rating: 5 - remark: '' - created_at: 1671028894 - contact: - type: contact - id: 5ba682d23d7cf92bef87bfd4 - external_id: f3b87a2e09d514c6c2e79b9a - teammate: - type: contact - id: 1a2b3c source: type: conversation id: '403918278' @@ -30298,7 +28215,6 @@ service: filesize: 100 width: 100 height: 100 - url: url redacted: false contacts: type: contact.list @@ -30306,40 +28222,8 @@ service: - type: contact id: 667d61038a68186f43bafe01 external_id: '74' - teammates: - type: admin.list - teammates: - - type: contact custom_attributes: key: value - first_contact_reply: - created_at: 1663597223 - type: conversation - url: https://developers.intercom.com/ - sla_applied: - type: conversation_sla_summary - sla_name: '' - sla_status: hit - statistics: - type: conversation_statistics - time_to_assignment: 2310 - time_to_admin_reply: 2310 - time_to_first_close: 2310 - time_to_last_close: 2310 - median_time_to_reply: 2310 - first_contact_reply_at: 1663597233 - first_assignment_at: 1663597233 - first_admin_reply_at: 1663597233 - first_close_at: 1663597233 - last_assignment_at: 1663597233 - last_assignment_admin_reply_at: 1663597233 - last_contact_reply_at: 1663597233 - last_admin_reply_at: 1663597233 - last_close_at: 1663597233 - last_closed_by_id: c3po - count_reopens: 1 - count_assignments: 1 - count_conversation_parts: 1 conversation_parts: type: conversation_part.list conversation_parts: @@ -30371,20 +28255,6 @@ service: data: - id: '7583' ai_agent_participated: false - ai_agent: - source_type: essentials_plan_setup - source_title: My AI Workflow - last_answer_type: ai_answer - resolution_state: assumed_resolution - rating: 4 - rating_remark: Very helpful! - content_sources: - type: content_source.list - total_count: 1 - content_sources: - - url: /fin-ai-agent/content?content=content_snippet&id=3234924 - title: My internal content snippet - locale: en - name: Assign a conversation path-parameters: id: '123' @@ -30398,17 +28268,13 @@ service: body: type: conversation id: '405' - title: Conversation Title created_at: 1719492874 updated_at: 1719492875 - waiting_since: 1663597260 - snoozed_until: 1663597260 open: true state: open read: false priority: not_priority admin_assignee_id: 991267615 - team_assignee_id: '5017691' tags: type: tag.list tags: @@ -30416,17 +28282,6 @@ service: id: '123456' name: Test tag applied_at: 1663597223 - conversation_rating: - rating: 5 - remark: '' - created_at: 1671028894 - contact: - type: contact - id: 5ba682d23d7cf92bef87bfd4 - external_id: f3b87a2e09d514c6c2e79b9a - teammate: - type: contact - id: 1a2b3c source: type: conversation id: '403918281' @@ -30446,7 +28301,6 @@ service: filesize: 100 width: 100 height: 100 - url: url redacted: false contacts: type: contact.list @@ -30454,40 +28308,8 @@ service: - type: contact id: 667d610a8a68186f43bafe05 external_id: '70' - teammates: - type: admin.list - teammates: - - type: contact custom_attributes: key: value - first_contact_reply: - created_at: 1663597223 - type: conversation - url: https://developers.intercom.com/ - sla_applied: - type: conversation_sla_summary - sla_name: '' - sla_status: hit - statistics: - type: conversation_statistics - time_to_assignment: 2310 - time_to_admin_reply: 2310 - time_to_first_close: 2310 - time_to_last_close: 2310 - median_time_to_reply: 2310 - first_contact_reply_at: 1663597233 - first_assignment_at: 1663597233 - first_admin_reply_at: 1663597233 - first_close_at: 1663597233 - last_assignment_at: 1663597233 - last_assignment_admin_reply_at: 1663597233 - last_contact_reply_at: 1663597233 - last_admin_reply_at: 1663597233 - last_close_at: 1663597233 - last_closed_by_id: c3po - count_reopens: 1 - count_assignments: 1 - count_conversation_parts: 1 conversation_parts: type: conversation_part.list conversation_parts: @@ -30522,20 +28344,6 @@ service: data: - id: '7583' ai_agent_participated: false - ai_agent: - source_type: essentials_plan_setup - source_title: My AI Workflow - last_answer_type: ai_answer - resolution_state: assumed_resolution - rating: 4 - rating_remark: Very helpful! - content_sources: - type: content_source.list - total_count: 1 - content_sources: - - url: /fin-ai-agent/content?content=content_snippet&id=3234924 - title: My internal content snippet - locale: en - name: Not found path-parameters: id: '123' @@ -30549,17 +28357,12 @@ service: body: type: conversation id: '394' - title: Conversation Title created_at: 1719492862 updated_at: 1719492862 - waiting_since: 1663597260 - snoozed_until: 1663597260 open: false state: closed read: false priority: not_priority - admin_assignee_id: 0 - team_assignee_id: '5017691' tags: type: tag.list tags: @@ -30567,17 +28370,6 @@ service: id: '123456' name: Test tag applied_at: 1663597223 - conversation_rating: - rating: 5 - remark: '' - created_at: 1671028894 - contact: - type: contact - id: 5ba682d23d7cf92bef87bfd4 - external_id: f3b87a2e09d514c6c2e79b9a - teammate: - type: contact - id: 1a2b3c source: type: conversation id: '403918276' @@ -30597,7 +28389,6 @@ service: filesize: 100 width: 100 height: 100 - url: url redacted: false contacts: type: contact.list @@ -30605,40 +28396,8 @@ service: - type: contact id: 667d60fd8a68186f43bafdfb external_id: '70' - teammates: - type: admin.list - teammates: - - type: contact custom_attributes: key: value - first_contact_reply: - created_at: 1663597223 - type: conversation - url: https://developers.intercom.com/ - sla_applied: - type: conversation_sla_summary - sla_name: '' - sla_status: hit - statistics: - type: conversation_statistics - time_to_assignment: 2310 - time_to_admin_reply: 2310 - time_to_first_close: 2310 - time_to_last_close: 2310 - median_time_to_reply: 2310 - first_contact_reply_at: 1663597233 - first_assignment_at: 1663597233 - first_admin_reply_at: 1663597233 - first_close_at: 1663597233 - last_assignment_at: 1663597233 - last_assignment_admin_reply_at: 1663597233 - last_contact_reply_at: 1663597233 - last_admin_reply_at: 1663597233 - last_close_at: 1663597233 - last_closed_by_id: c3po - count_reopens: 1 - count_assignments: 1 - count_conversation_parts: 1 conversation_parts: type: conversation_part.list conversation_parts: @@ -30671,20 +28430,6 @@ service: data: - id: '7583' ai_agent_participated: false - ai_agent: - source_type: essentials_plan_setup - source_title: My AI Workflow - last_answer_type: ai_answer - resolution_state: assumed_resolution - rating: 4 - rating_remark: Very helpful! - content_sources: - type: content_source.list - total_count: 1 - content_sources: - - url: /fin-ai-agent/content?content=content_snippet&id=3234924 - title: My internal content snippet - locale: en autoAssignConversation: path: /conversations/{id}/run_assignment_rules method: POST @@ -30720,17 +28465,12 @@ service: body: type: conversation id: '409' - title: Conversation Title created_at: 1719492880 updated_at: 1719492881 - waiting_since: 1663597260 - snoozed_until: 1663597260 open: false state: closed read: false priority: not_priority - admin_assignee_id: 0 - team_assignee_id: '5017691' tags: type: tag.list tags: @@ -30738,17 +28478,6 @@ service: id: '123456' name: Test tag applied_at: 1663597223 - conversation_rating: - rating: 5 - remark: '' - created_at: 1671028894 - contact: - type: contact - id: 5ba682d23d7cf92bef87bfd4 - external_id: f3b87a2e09d514c6c2e79b9a - teammate: - type: contact - id: 1a2b3c source: type: conversation id: '403918285' @@ -30768,7 +28497,6 @@ service: filesize: 100 width: 100 height: 100 - url: url redacted: false contacts: type: contact.list @@ -30776,40 +28504,8 @@ service: - type: contact id: 667d61108a68186f43bafe09 external_id: '70' - teammates: - type: admin.list - teammates: - - type: contact custom_attributes: key: value - first_contact_reply: - created_at: 1663597223 - type: conversation - url: https://developers.intercom.com/ - sla_applied: - type: conversation_sla_summary - sla_name: '' - sla_status: hit - statistics: - type: conversation_statistics - time_to_assignment: 2310 - time_to_admin_reply: 2310 - time_to_first_close: 2310 - time_to_last_close: 2310 - median_time_to_reply: 2310 - first_contact_reply_at: 1663597233 - first_assignment_at: 1663597233 - first_admin_reply_at: 1663597233 - first_close_at: 1663597233 - last_assignment_at: 1663597233 - last_assignment_admin_reply_at: 1663597233 - last_contact_reply_at: 1663597233 - last_admin_reply_at: 1663597233 - last_close_at: 1663597233 - last_closed_by_id: c3po - count_reopens: 1 - count_assignments: 1 - count_conversation_parts: 1 conversation_parts: type: conversation_part.list conversation_parts: @@ -30844,20 +28540,6 @@ service: data: - id: '7583' ai_agent_participated: false - ai_agent: - source_type: essentials_plan_setup - source_title: My AI Workflow - last_answer_type: ai_answer - resolution_state: assumed_resolution - rating: 4 - rating_remark: Very helpful! - content_sources: - type: content_source.list - total_count: 1 - content_sources: - - url: /fin-ai-agent/content?content=content_snippet&id=3234924 - title: My internal content snippet - locale: en attachContactToConversation: path: /conversations/{id}/customers method: POST @@ -31766,17 +29448,13 @@ service: body: type: conversation id: '471' - title: Conversation Title created_at: 1719492938 updated_at: 1719492940 waiting_since: 1719492939 - snoozed_until: 1663597260 open: true state: open read: true priority: not_priority - admin_assignee_id: 0 - team_assignee_id: '5017691' tags: type: tag.list tags: @@ -31784,17 +29462,6 @@ service: id: '123456' name: Test tag applied_at: 1663597223 - conversation_rating: - rating: 5 - remark: '' - created_at: 1671028894 - contact: - type: contact - id: 5ba682d23d7cf92bef87bfd4 - external_id: f3b87a2e09d514c6c2e79b9a - teammate: - type: contact - id: 1a2b3c source: type: conversation id: '403918311' @@ -31814,7 +29481,6 @@ service: filesize: 100 width: 100 height: 100 - url: url redacted: false contacts: type: contact.list @@ -31822,40 +29488,11 @@ service: - type: contact id: 667d614a8a68186f43bafe42 external_id: '70' - teammates: - type: admin.list - teammates: - - type: contact custom_attributes: key: value first_contact_reply: created_at: 1719492939 type: conversation - url: https://developers.intercom.com/ - sla_applied: - type: conversation_sla_summary - sla_name: '' - sla_status: hit - statistics: - type: conversation_statistics - time_to_assignment: 2310 - time_to_admin_reply: 2310 - time_to_first_close: 2310 - time_to_last_close: 2310 - median_time_to_reply: 2310 - first_contact_reply_at: 1663597233 - first_assignment_at: 1663597233 - first_admin_reply_at: 1663597233 - first_close_at: 1663597233 - last_assignment_at: 1663597233 - last_assignment_admin_reply_at: 1663597233 - last_contact_reply_at: 1663597233 - last_admin_reply_at: 1663597233 - last_close_at: 1663597233 - last_closed_by_id: c3po - count_reopens: 1 - count_assignments: 1 - count_conversation_parts: 1 conversation_parts: type: conversation_part.list conversation_parts: @@ -31888,20 +29525,6 @@ service: data: - id: '7583' ai_agent_participated: false - ai_agent: - source_type: essentials_plan_setup - source_title: My AI Workflow - last_answer_type: ai_answer - resolution_state: assumed_resolution - rating: 4 - rating_remark: Very helpful! - content_sources: - type: content_source.list - total_count: 1 - content_sources: - - url: /fin-ai-agent/content?content=content_snippet&id=3234924 - title: My internal content snippet - locale: en - name: Not found request: type: conversation_part @@ -31911,17 +29534,13 @@ service: body: type: conversation id: '471' - title: Conversation Title created_at: 1719492938 updated_at: 1719492940 waiting_since: 1719492939 - snoozed_until: 1663597260 open: true state: open read: true priority: not_priority - admin_assignee_id: 0 - team_assignee_id: '5017691' tags: type: tag.list tags: @@ -31929,17 +29548,6 @@ service: id: '123456' name: Test tag applied_at: 1663597223 - conversation_rating: - rating: 5 - remark: '' - created_at: 1671028894 - contact: - type: contact - id: 5ba682d23d7cf92bef87bfd4 - external_id: f3b87a2e09d514c6c2e79b9a - teammate: - type: contact - id: 1a2b3c source: type: conversation id: '403918311' @@ -31959,7 +29567,6 @@ service: filesize: 100 width: 100 height: 100 - url: url redacted: false contacts: type: contact.list @@ -31967,40 +29574,11 @@ service: - type: contact id: 667d614a8a68186f43bafe42 external_id: '70' - teammates: - type: admin.list - teammates: - - type: contact custom_attributes: key: value first_contact_reply: created_at: 1719492939 type: conversation - url: https://developers.intercom.com/ - sla_applied: - type: conversation_sla_summary - sla_name: '' - sla_status: hit - statistics: - type: conversation_statistics - time_to_assignment: 2310 - time_to_admin_reply: 2310 - time_to_first_close: 2310 - time_to_last_close: 2310 - median_time_to_reply: 2310 - first_contact_reply_at: 1663597233 - first_assignment_at: 1663597233 - first_admin_reply_at: 1663597233 - first_close_at: 1663597233 - last_assignment_at: 1663597233 - last_assignment_admin_reply_at: 1663597233 - last_contact_reply_at: 1663597233 - last_admin_reply_at: 1663597233 - last_close_at: 1663597233 - last_closed_by_id: c3po - count_reopens: 1 - count_assignments: 1 - count_conversation_parts: 1 conversation_parts: type: conversation_part.list conversation_parts: @@ -32033,20 +29611,6 @@ service: data: - id: '7583' ai_agent_participated: false - ai_agent: - source_type: essentials_plan_setup - source_title: My AI Workflow - last_answer_type: ai_answer - resolution_state: assumed_resolution - rating: 4 - rating_remark: Very helpful! - content_sources: - type: content_source.list - total_count: 1 - content_sources: - - url: /fin-ai-agent/content?content=content_snippet&id=3234924 - title: My internal content snippet - locale: en convertConversationToTicket: path: /conversations/{id}/convert method: POST @@ -35490,7 +33054,6 @@ types: "id": "165", "name": "Thanks for everything", "order": 1, - "parent_id": "6871118", "translated_content": { "ar": { "description": " Collection description", @@ -35701,7 +33264,6 @@ types: "id": "165", "name": "Thanks for everything", "order": 1, - "parent_id": "6871118", "translated_content": { "ar": { "description": " Collection description", @@ -36003,7 +33565,6 @@ Collections will be returned in descending order on the `updated_at` attribute. "id": "159", "name": "English collection title", "order": 17, - "parent_id": "6871118", "updated_at": 1719492720, "url": "http://help-center.test/myapp-65/collection-17", "workspace_id": "this_is_an_id65_that_should_be_at_least_4", @@ -36011,8 +33572,6 @@ Collections will be returned in descending order on the `updated_at` attribute. { "created_at": 1719492720, "default_locale": "en", - "description": "Default language description", - "help_center_id": 1, "icon": "bookmark", "id": "160", "name": "English section title", @@ -36113,7 +33672,6 @@ Collections will be returned in descending order on the `updated_at` attribute. "id": "170", "name": "English collection title", "order": 22, - "parent_id": "6871118", "translated_content": { "ar": { "description": " Collection description", @@ -36397,7 +33955,6 @@ Collections will be returned in descending order on the `updated_at` attribute. "id": "176", "name": "Update collection name", "order": 25, - "parent_id": "6871118", "translated_content": { "ar": { "description": " Collection description", @@ -36610,7 +34167,6 @@ Collections will be returned in descending order on the `updated_at` attribute. "id": "176", "name": "Update collection name", "order": 25, - "parent_id": "6871118", "translated_content": { "ar": { "description": " Collection description", @@ -37022,12 +34578,10 @@ service: icon: bookmark order: 17 default_locale: en - parent_id: '6871118' help_center_id: 79 - id: '160' workspace_id: this_is_an_id65_that_should_be_at_least_4 name: English section title - description: Default language description created_at: 1719492720 updated_at: 1719492720 url: http://help-center.test/myapp-65/section-1 @@ -37035,7 +34589,6 @@ service: order: 1 default_locale: en parent_id: '159' - help_center_id: 1 createCollection: path: /help_center/collections method: POST @@ -37245,7 +34798,6 @@ service: type: group_content name: Collection name description: ' Collection description' - parent_id: '6871118' help_center_id: 81 - name: Bad Request request: @@ -37413,7 +34965,6 @@ service: type: group_content name: Collection name description: ' Collection description' - parent_id: '6871118' help_center_id: 81 retrieveCollection: path: /help_center/collections/{id} @@ -37601,7 +35152,6 @@ service: type: group_content name: Collection name description: ' Collection description' - parent_id: '6871118' help_center_id: 84 updateCollection: path: /help_center/collections/{id} @@ -37813,7 +35363,6 @@ service: type: group_content name: Collection name description: ' Collection description' - parent_id: '6871118' help_center_id: 87 - name: Collection Not Found path-parameters: @@ -37982,7 +35531,6 @@ service: type: group_content name: Collection name description: ' Collection description' - parent_id: '6871118' help_center_id: 87 deleteCollection: path: /help_center/collections/{id} @@ -38691,7 +36239,6 @@ types: "response": { "body": { "body": "

New costumes in store for this spooky season

", - "cover_image_url": "https://example.com/cover.jpg", "created_at": 1719492978, "deliver_silently": true, "id": "33", @@ -38960,7 +36507,6 @@ types: "response": { "body": { "body": "

Hello there,

", - "cover_image_url": "https://example.com/cover.jpg", "created_at": 1719492979, "deliver_silently": false, "id": "34", @@ -39071,7 +36617,6 @@ types: "response": { "body": { "body": "

New gifts in store for the jolly season

", - "cover_image_url": "https://example.com/cover.jpg", "created_at": 1719492982, "deliver_silently": false, "id": "37", @@ -39113,7 +36658,6 @@ types: "response": { "body": { "body": "

New gifts in store for the jolly season

", - "cover_image_url": "https://example.com/cover.jpg", "created_at": 1719492982, "deliver_silently": false, "id": "37", @@ -39386,7 +36930,6 @@ service: - New - Product - Update - cover_image_url: https://example.com/cover.jpg reactions: - 😆 - 😅 @@ -39428,7 +36971,6 @@ service: published_at: 1719492980 labels: - Product Update - cover_image_url: https://example.com/cover.jpg reactions: - 👍 - 👍 @@ -39482,7 +37024,6 @@ service: published_at: 1674917488 labels: - Product Update - cover_image_url: https://example.com/cover.jpg reactions: - 😝 - 😂 @@ -39512,7 +37053,6 @@ service: published_at: 1674917488 labels: - Product Update - cover_image_url: https://example.com/cover.jpg reactions: - 😝 - 😂 @@ -40045,10 +37585,6 @@ types: }, ], "pages": { - "next": { - "per_page": 2, - "starting_after": "your-cursor-from-response", - }, "page": 1, "per_page": 50, "total_pages": 1, @@ -40286,9 +37822,6 @@ service: pages: type: pages page: 1 - next: - per_page: 2 - starting_after: your-cursor-from-response per_page: 50 total_pages: 1 createNote: @@ -47793,19 +45326,6 @@ docs: Everything about your tickets }, "response": { "body": { - "android_app_name": "Intercom", - "android_app_version": "5.0.0", - "android_device": "Pixel 3", - "android_last_seen_at": 1571672154, - "android_os_version": "10", - "android_sdk_version": "28", - "avatar": { - "image_url": "https://example.org/128Wash.jpg", - "type": "avatar", - }, - "browser": "Chrome", - "browser_language": "en-US", - "browser_version": "80.0.3987.132", "companies": { "has_more": false, "total_count": 0, @@ -47817,30 +45337,13 @@ docs: Everything about your tickets }, "email": "foo@bar.com", "email_domain": "example.com", - "external_id": "f3b87a2e09d514c6c2e79b9a", "formatted_phone": "+1123456789", "has_hard_bounced": false, "id": "667d61d08a68186f43bafea2", - "ios_app_name": "Intercom", - "ios_app_version": "5.0.0", - "ios_device": "iPhone 11", - "ios_last_seen_at": 1571672154, - "ios_os_version": "13.3.1", - "ios_sdk_version": "13.3.1", - "language_override": "en", - "last_contacted_at": 1571672154, - "last_email_clicked_at": 1571672154, - "last_email_opened_at": 1571672154, - "last_replied_at": 1571672154, - "last_seen_at": 1571672154, "location": { - "city": "Dublin", - "country": "Ireland", - "region": "Dublin", "type": "location", }, "marked_email_as_spam": false, - "name": "John Doe", "notes": { "data": [ { @@ -47853,9 +45356,6 @@ docs: Everything about your tickets "total_count": 0, "url": "/contacts/667d61d08a68186f43bafea2/notes", }, - "os": "Mac OS X", - "owner_id": 123, - "phone": "+1123456789", "role": "user", "signed_up_at": 1719493072, "social_profiles": { @@ -47934,7 +45434,6 @@ docs: Everything about your tickets "anonymous": true, "app_id": "this_is_an_id677_that_should_be_at_least_", "avatar": { - "image_url": "https://example.com/avatar.png", "type": "avatar", }, "companies": { @@ -47967,7 +45466,6 @@ docs: Everything about your tickets "custom_attributes": { "key": "value", }, - "do_not_track": false, "email": "", "has_hard_bounced": false, "id": "667d61ce8a68186f43bafe9b", @@ -47983,11 +45481,6 @@ docs: Everything about your tickets "type": "location_data", }, "marked_email_as_spam": false, - "name": "Jane Doe", - "owner_id": "5169261", - "phone": "555-555-5555", - "pseudonym": "Red Duck from Dublin", - "referrer": "https://www.google.com/", "remote_created_at": 1719493070, "segments": { "segments": [ @@ -48016,11 +45509,6 @@ docs: Everything about your tickets "unsubscribed_from_emails": false, "updated_at": 1719493070, "user_id": "3ecf64d0-9ed1-4e9f-88e1-da7d6e6782f3", - "utm_campaign": "intercom-link", - "utm_content": "banner", - "utm_medium": "email", - "utm_source": "Intercom", - "utm_term": "messenger", }, }, }, @@ -48103,7 +45591,6 @@ docs: Everything about your tickets "custom_attributes": { "key": "value", }, - "do_not_track": false, "email": "", "has_hard_bounced": false, "id": "667d61cc8a68186f43bafe95", @@ -48120,10 +45607,7 @@ docs: Everything about your tickets }, "marked_email_as_spam": false, "name": "Gareth Bale", - "owner_id": "5169261", - "phone": "555-555-5555", "pseudonym": "Indigo Ghost", - "referrer": "https://www.google.com/", "remote_created_at": 1719493068, "segments": { "segments": [ @@ -48152,11 +45636,6 @@ docs: Everything about your tickets "unsubscribed_from_emails": false, "updated_at": 1719493068, "user_id": "3ecf64d0-9ed1-4e9f-88e1-da7d6e6782f3", - "utm_campaign": "intercom-link", - "utm_content": "banner", - "utm_medium": "email", - "utm_source": "Intercom", - "utm_term": "messenger", }, }, }, @@ -48204,7 +45683,6 @@ docs: Everything about your tickets "custom_attributes": { "key": "value", }, - "do_not_track": false, "email": "", "has_hard_bounced": false, "id": "667d61cc8a68186f43bafe95", @@ -48221,10 +45699,7 @@ docs: Everything about your tickets }, "marked_email_as_spam": false, "name": "Gareth Bale", - "owner_id": "5169261", - "phone": "555-555-5555", "pseudonym": "Indigo Ghost", - "referrer": "https://www.google.com/", "remote_created_at": 1719493068, "segments": { "segments": [ @@ -48253,11 +45728,6 @@ docs: Everything about your tickets "unsubscribed_from_emails": false, "updated_at": 1719493068, "user_id": "3ecf64d0-9ed1-4e9f-88e1-da7d6e6782f3", - "utm_campaign": "intercom-link", - "utm_content": "banner", - "utm_medium": "email", - "utm_source": "Intercom", - "utm_term": "messenger", }, }, }, @@ -48321,12 +45791,8 @@ service: user_id: 3ecf64d0-9ed1-4e9f-88e1-da7d6e6782f3 anonymous: true email: '' - phone: 555-555-5555 - name: Jane Doe - pseudonym: Red Duck from Dublin avatar: type: avatar - image_url: https://example.com/avatar.png app_id: this_is_an_id677_that_should_be_at_least_ companies: type: company.list @@ -48368,7 +45834,6 @@ service: type: social_profile.list social_profiles: - social_profiles - owner_id: '5169261' unsubscribed_from_emails: false marked_email_as_spam: false has_hard_bounced: false @@ -48383,13 +45848,6 @@ service: - segments custom_attributes: key: value - referrer: https://www.google.com/ - utm_campaign: intercom-link - utm_content: banner - utm_medium: email - utm_source: Intercom - utm_term: messenger - do_not_track: false updateVisitor: path: /visitors method: PUT @@ -48429,7 +45887,6 @@ service: user_id: 3ecf64d0-9ed1-4e9f-88e1-da7d6e6782f3 anonymous: true email: '' - phone: 555-555-5555 name: Gareth Bale pseudonym: Indigo Ghost avatar: @@ -48477,7 +45934,6 @@ service: type: social_profile.list social_profiles: - social_profiles - owner_id: '5169261' unsubscribed_from_emails: false marked_email_as_spam: false has_hard_bounced: false @@ -48492,13 +45948,6 @@ service: - segments custom_attributes: key: value - referrer: https://www.google.com/ - utm_campaign: intercom-link - utm_content: banner - utm_medium: email - utm_source: Intercom - utm_term: messenger - do_not_track: false - name: visitor Not Found request: user_id: fail @@ -48510,7 +45959,6 @@ service: user_id: 3ecf64d0-9ed1-4e9f-88e1-da7d6e6782f3 anonymous: true email: '' - phone: 555-555-5555 name: Gareth Bale pseudonym: Indigo Ghost avatar: @@ -48558,7 +46006,6 @@ service: type: social_profile.list social_profiles: - social_profiles - owner_id: '5169261' unsubscribed_from_emails: false marked_email_as_spam: false has_hard_bounced: false @@ -48573,13 +46020,6 @@ service: - segments custom_attributes: key: value - referrer: https://www.google.com/ - utm_campaign: intercom-link - utm_content: banner - utm_medium: email - utm_source: Intercom - utm_term: messenger - do_not_track: false convertVisitor: path: /visitors/convert method: POST @@ -48628,48 +46068,19 @@ service: body: type: contact id: 667d61d08a68186f43bafea2 - external_id: f3b87a2e09d514c6c2e79b9a workspace_id: this_is_an_id683_that_should_be_at_least_ role: user email: foo@bar.com email_domain: example.com - phone: '+1123456789' formatted_phone: '+1123456789' - name: John Doe - owner_id: 123 has_hard_bounced: false marked_email_as_spam: false unsubscribed_from_emails: false created_at: 1719493072 updated_at: 1719493072 signed_up_at: 1719493072 - last_seen_at: 1571672154 - last_replied_at: 1571672154 - last_contacted_at: 1571672154 - last_email_opened_at: 1571672154 - last_email_clicked_at: 1571672154 - language_override: en - browser: Chrome - browser_version: 80.0.3987.132 - browser_language: en-US - os: Mac OS X - android_app_name: Intercom - android_app_version: 5.0.0 - android_device: Pixel 3 - android_os_version: '10' - android_sdk_version: '28' - android_last_seen_at: 1571672154 - ios_app_name: Intercom - ios_app_version: 5.0.0 - ios_device: iPhone 11 - ios_os_version: 13.3.1 - ios_sdk_version: 13.3.1 - ios_last_seen_at: 1571672154 custom_attributes: key: value - avatar: - type: avatar - image_url: https://example.org/128Wash.jpg tags: data: - type: note @@ -48692,9 +46103,6 @@ service: has_more: false location: type: location - country: Ireland - region: Dublin - city: Dublin social_profiles: data: - type: social_profile diff --git a/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi/ntropy.json b/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi/ntropy.json index 3f6b0f5c44f..1234b194890 100644 --- a/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi/ntropy.json +++ b/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi/ntropy.json @@ -8568,10 +8568,6 @@ enriched = sdk.transactions.create([ }, ], }, - "error": { - "code": "account_holder_not_found", - "message": "message", - }, "id": "xbx8YP14g565Xk", "location": { "raw_address": "Nw 43rd Street 5480, Gainesville, Florida 32653, US", @@ -9068,9 +9064,6 @@ service: google_maps_url: >- https://www.google.com/maps/search/?api=1&query=29.704558,-82.389277 apple_maps_url: https://maps.apple.com/?q=29.704558,-82.389277 - error: - code: account_holder_not_found - message: message created_at: '2024-03-30T00:00:00Z' id: xbx8YP14g565Xk code-samples: diff --git a/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi/only-include-referenced-schemas.json b/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi/only-include-referenced-schemas.json index 85b24e896f7..a5fd6fe7cb1 100644 --- a/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi/only-include-referenced-schemas.json +++ b/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi/only-include-referenced-schemas.json @@ -11155,10 +11155,6 @@ You can view the currently authorised admin along with the embedded app object ( }, ], "pages": { - "next": { - "per_page": 2, - "starting_after": "your-cursor-from-response", - }, "page": 1, "per_page": 20, "total_pages": 1, @@ -11710,9 +11706,6 @@ service: pages: type: pages page: 1 - next: - per_page: 2 - starting_after: your-cursor-from-response per_page: 20 total_pages: 1 activity_logs: @@ -18103,10 +18096,6 @@ When using the Companies endpoint and the pages object to iterate through the re }, ], "pages": { - "next": { - "per_page": 2, - "starting_after": "your-cursor-from-response", - }, "page": 1, "per_page": 15, "total_pages": 1, @@ -18218,10 +18207,6 @@ You can fetch all companies and filter by `segment_id` or `tag_id` as a query pa }, ], "pages": { - "next": { - "per_page": 2, - "starting_after": "your-cursor-from-response", - }, "page": 1, "per_page": 15, "total_pages": 1, @@ -18341,18 +18326,7 @@ You can fetch all companies and filter by `segment_id` or `tag_id` as a query pa "website": "https://www.intercom.com", }, ], - "pages": { - "next": { - "per_page": 2, - "starting_after": "your-cursor-from-response", - }, - "page": 1, - "per_page": 2, - "total_pages": 13, - "type": "pages", - }, "scroll_param": "12d403b5-dc79-47b5-8ea1-01a5ac8cb6cc", - "total_count": 100, "type": "list", }, }, @@ -18586,9 +18560,6 @@ service: pages: type: pages page: 1 - next: - per_page: 2 - starting_after: your-cursor-from-response per_page: 15 total_pages: 1 total_count: 1 @@ -19019,9 +18990,6 @@ service: pages: type: pages page: 1 - next: - per_page: 2 - starting_after: your-cursor-from-response per_page: 15 total_pages: 1 total_count: 1 @@ -19133,15 +19101,6 @@ service: name: Active created_at: 1394621988 updated_at: 1394622004 - pages: - type: pages - page: 1 - next: - per_page: 2 - starting_after: your-cursor-from-response - per_page: 2 - total_pages: 13 - total_count: 100 scroll_param: 12d403b5-dc79-47b5-8ea1-01a5ac8cb6cc attachContactToACompany: path: /contacts/{id}/companies @@ -19520,19 +19479,6 @@ types: }, "response": { "body": { - "android_app_name": "Intercom", - "android_app_version": "5.0.0", - "android_device": "Pixel 3", - "android_last_seen_at": 1571672154, - "android_os_version": "10", - "android_sdk_version": "28", - "avatar": { - "image_url": "https://example.org/128Wash.jpg", - "type": "avatar", - }, - "browser": "Chrome", - "browser_language": "en-US", - "browser_version": "80.0.3987.132", "companies": { "has_more": false, "total_count": 0, @@ -19544,30 +19490,13 @@ types: }, "email": "joebloggs@intercom.io", "email_domain": "example.com", - "external_id": "f3b87a2e09d514c6c2e79b9a", "formatted_phone": "+1123456789", "has_hard_bounced": false, "id": "667d60b08a68186f43bafdbf", - "ios_app_name": "Intercom", - "ios_app_version": "5.0.0", - "ios_device": "iPhone 11", - "ios_last_seen_at": 1571672154, - "ios_os_version": "13.3.1", - "ios_sdk_version": "13.3.1", - "language_override": "en", - "last_contacted_at": 1571672154, - "last_email_clicked_at": 1571672154, - "last_email_opened_at": 1571672154, - "last_replied_at": 1571672154, - "last_seen_at": 1571672154, "location": { - "city": "Dublin", - "country": "Ireland", - "region": "Dublin", "type": "location", }, "marked_email_as_spam": false, - "name": "John Doe", "notes": { "data": [ { @@ -19580,11 +19509,7 @@ types: "total_count": 0, "url": "/contacts/667d60b08a68186f43bafdbf/notes", }, - "os": "Mac OS X", - "owner_id": 123, - "phone": "+1123456789", "role": "user", - "signed_up_at": 1571672154, "social_profiles": { "data": [ { @@ -19793,19 +19718,6 @@ types: }, "response": { "body": { - "android_app_name": "Intercom", - "android_app_version": "5.0.0", - "android_device": "Pixel 3", - "android_last_seen_at": 1571672154, - "android_os_version": "10", - "android_sdk_version": "28", - "avatar": { - "image_url": "https://example.org/128Wash.jpg", - "type": "avatar", - }, - "browser": "Chrome", - "browser_language": "en-US", - "browser_version": "80.0.3987.132", "companies": { "has_more": false, "total_count": 0, @@ -19821,22 +19733,7 @@ types: "formatted_phone": "+1123456789", "has_hard_bounced": false, "id": "667d60ac8a68186f43bafdbc", - "ios_app_name": "Intercom", - "ios_app_version": "5.0.0", - "ios_device": "iPhone 11", - "ios_last_seen_at": 1571672154, - "ios_os_version": "13.3.1", - "ios_sdk_version": "13.3.1", - "language_override": "en", - "last_contacted_at": 1571672154, - "last_email_clicked_at": 1571672154, - "last_email_opened_at": 1571672154, - "last_replied_at": 1571672154, - "last_seen_at": 1571672154, "location": { - "city": "Dublin", - "country": "Ireland", - "region": "Dublin", "type": "location", }, "marked_email_as_spam": false, @@ -19853,9 +19750,6 @@ types: "total_count": 0, "url": "/contacts/667d60ac8a68186f43bafdbc/notes", }, - "os": "Mac OS X", - "owner_id": 123, - "phone": "+1123456789", "role": "user", "signed_up_at": 1719492780, "social_profiles": { @@ -20156,19 +20050,6 @@ The table below shows the operators you can use to define how you want to search }, "response": { "body": { - "android_app_name": "Intercom", - "android_app_version": "5.0.0", - "android_device": "Pixel 3", - "android_last_seen_at": 1571672154, - "android_os_version": "10", - "android_sdk_version": "28", - "avatar": { - "image_url": "https://example.org/128Wash.jpg", - "type": "avatar", - }, - "browser": "Chrome", - "browser_language": "en-US", - "browser_version": "80.0.3987.132", "companies": { "has_more": false, "total_count": 0, @@ -20184,22 +20065,7 @@ The table below shows the operators you can use to define how you want to search "formatted_phone": "+1123456789", "has_hard_bounced": false, "id": "667d60a98a68186f43bafdb9", - "ios_app_name": "Intercom", - "ios_app_version": "5.0.0", - "ios_device": "iPhone 11", - "ios_last_seen_at": 1571672154, - "ios_os_version": "13.3.1", - "ios_sdk_version": "13.3.1", - "language_override": "en", - "last_contacted_at": 1571672154, - "last_email_clicked_at": 1571672154, - "last_email_opened_at": 1571672154, - "last_replied_at": 1571672154, - "last_seen_at": 1571672154, "location": { - "city": "Dublin", - "country": "Ireland", - "region": "Dublin", "type": "location", }, "marked_email_as_spam": false, @@ -20216,9 +20082,6 @@ The table below shows the operators you can use to define how you want to search "total_count": 0, "url": "/contacts/667d60a98a68186f43bafdb9/notes", }, - "os": "Mac OS X", - "owner_id": 123, - "phone": "+1123456789", "role": "user", "signed_up_at": 1719492777, "social_profiles": { @@ -20323,19 +20186,6 @@ The table below shows the operators you can use to define how you want to search }, "response": { "body": { - "android_app_name": "Intercom", - "android_app_version": "5.0.0", - "android_device": "Pixel 3", - "android_last_seen_at": 1571672154, - "android_os_version": "10", - "android_sdk_version": "28", - "avatar": { - "image_url": "https://example.org/128Wash.jpg", - "type": "avatar", - }, - "browser": "Chrome", - "browser_language": "en-US", - "browser_version": "80.0.3987.132", "companies": { "has_more": false, "total_count": 0, @@ -20351,22 +20201,7 @@ The table below shows the operators you can use to define how you want to search "formatted_phone": "+1123456789", "has_hard_bounced": false, "id": "667d60a88a68186f43bafdb8", - "ios_app_name": "Intercom", - "ios_app_version": "5.0.0", - "ios_device": "iPhone 11", - "ios_last_seen_at": 1571672154, - "ios_os_version": "13.3.1", - "ios_sdk_version": "13.3.1", - "language_override": "en", - "last_contacted_at": 1571672154, - "last_email_clicked_at": 1571672154, - "last_email_opened_at": 1571672154, - "last_replied_at": 1571672154, - "last_seen_at": 1571672154, "location": { - "city": "Dublin", - "country": "Ireland", - "region": "Dublin", "type": "location", }, "marked_email_as_spam": false, @@ -20383,9 +20218,6 @@ The table below shows the operators you can use to define how you want to search "total_count": 0, "url": "/contacts/667d60a88a68186f43bafdb8/notes", }, - "os": "Mac OS X", - "owner_id": 123, - "phone": "+1123456789", "role": "user", "signed_up_at": 1719492776, "social_profiles": { @@ -20535,7 +20367,6 @@ The table below shows the operators you can use to define how you want to search }, ], "pages": { - "next": "next", "page": 1, "per_page": 50, "total_pages": 1, @@ -21028,7 +20859,6 @@ service: pages: type: pages page: 1 - next: next per_page: 50 total_pages: 1 listSegmentsForAContact: @@ -21194,43 +21024,16 @@ service: role: user email: joe@bloggs.com email_domain: example.com - phone: '+1123456789' formatted_phone: '+1123456789' name: Joe Bloggs - owner_id: 123 has_hard_bounced: false marked_email_as_spam: false unsubscribed_from_emails: false created_at: 1719492777 updated_at: 1719492777 signed_up_at: 1719492777 - last_seen_at: 1571672154 - last_replied_at: 1571672154 - last_contacted_at: 1571672154 - last_email_opened_at: 1571672154 - last_email_clicked_at: 1571672154 - language_override: en - browser: Chrome - browser_version: 80.0.3987.132 - browser_language: en-US - os: Mac OS X - android_app_name: Intercom - android_app_version: 5.0.0 - android_device: Pixel 3 - android_os_version: '10' - android_sdk_version: '28' - android_last_seen_at: 1571672154 - ios_app_name: Intercom - ios_app_version: 5.0.0 - ios_device: iPhone 11 - ios_os_version: 13.3.1 - ios_sdk_version: 13.3.1 - ios_last_seen_at: 1571672154 custom_attributes: key: value - avatar: - type: avatar - image_url: https://example.org/128Wash.jpg tags: data: - type: note @@ -21253,9 +21056,6 @@ service: has_more: false location: type: location - country: Ireland - region: Dublin - city: Dublin social_profiles: data: - type: social_profile @@ -21336,43 +21136,16 @@ service: role: user email: joebloggs@intercom.io email_domain: example.com - phone: '+1123456789' formatted_phone: '+1123456789' name: joe bloggs - owner_id: 123 has_hard_bounced: false marked_email_as_spam: false unsubscribed_from_emails: false created_at: 1719492776 updated_at: 1719492776 signed_up_at: 1719492776 - last_seen_at: 1571672154 - last_replied_at: 1571672154 - last_contacted_at: 1571672154 - last_email_opened_at: 1571672154 - last_email_clicked_at: 1571672154 - language_override: en - browser: Chrome - browser_version: 80.0.3987.132 - browser_language: en-US - os: Mac OS X - android_app_name: Intercom - android_app_version: 5.0.0 - android_device: Pixel 3 - android_os_version: '10' - android_sdk_version: '28' - android_last_seen_at: 1571672154 - ios_app_name: Intercom - ios_app_version: 5.0.0 - ios_device: iPhone 11 - ios_os_version: 13.3.1 - ios_sdk_version: 13.3.1 - ios_last_seen_at: 1571672154 custom_attributes: key: value - avatar: - type: avatar - image_url: https://example.org/128Wash.jpg tags: data: - type: note @@ -21395,9 +21168,6 @@ service: has_more: false location: type: location - country: Ireland - region: Dublin - city: Dublin social_profiles: data: - type: social_profile @@ -21474,43 +21244,16 @@ service: role: user email: joe@bloggs.com email_domain: example.com - phone: '+1123456789' formatted_phone: '+1123456789' name: Joe Bloggs - owner_id: 123 has_hard_bounced: false marked_email_as_spam: false unsubscribed_from_emails: false created_at: 1719492780 updated_at: 1719492780 signed_up_at: 1719492780 - last_seen_at: 1571672154 - last_replied_at: 1571672154 - last_contacted_at: 1571672154 - last_email_opened_at: 1571672154 - last_email_clicked_at: 1571672154 - language_override: en - browser: Chrome - browser_version: 80.0.3987.132 - browser_language: en-US - os: Mac OS X - android_app_name: Intercom - android_app_version: 5.0.0 - android_device: Pixel 3 - android_os_version: '10' - android_sdk_version: '28' - android_last_seen_at: 1571672154 - ios_app_name: Intercom - ios_app_version: 5.0.0 - ios_device: iPhone 11 - ios_os_version: 13.3.1 - ios_sdk_version: 13.3.1 - ios_last_seen_at: 1571672154 custom_attributes: key: value - avatar: - type: avatar - image_url: https://example.org/128Wash.jpg tags: data: - type: note @@ -21533,9 +21276,6 @@ service: has_more: false location: type: location - country: Ireland - region: Dublin - city: Dublin social_profiles: data: - type: social_profile @@ -21966,48 +21706,18 @@ service: body: type: contact id: 667d60b08a68186f43bafdbf - external_id: f3b87a2e09d514c6c2e79b9a workspace_id: this_is_an_id272_that_should_be_at_least_ role: user email: joebloggs@intercom.io email_domain: example.com - phone: '+1123456789' formatted_phone: '+1123456789' - name: John Doe - owner_id: 123 has_hard_bounced: false marked_email_as_spam: false unsubscribed_from_emails: false created_at: 1719492784 updated_at: 1719492784 - signed_up_at: 1571672154 - last_seen_at: 1571672154 - last_replied_at: 1571672154 - last_contacted_at: 1571672154 - last_email_opened_at: 1571672154 - last_email_clicked_at: 1571672154 - language_override: en - browser: Chrome - browser_version: 80.0.3987.132 - browser_language: en-US - os: Mac OS X - android_app_name: Intercom - android_app_version: 5.0.0 - android_device: Pixel 3 - android_os_version: '10' - android_sdk_version: '28' - android_last_seen_at: 1571672154 - ios_app_name: Intercom - ios_app_version: 5.0.0 - ios_device: iPhone 11 - ios_os_version: 13.3.1 - ios_sdk_version: 13.3.1 - ios_last_seen_at: 1571672154 custom_attributes: key: value - avatar: - type: avatar - image_url: https://example.org/128Wash.jpg tags: data: - type: note @@ -22030,9 +21740,6 @@ service: has_more: false location: type: location - country: Ireland - region: Dublin - city: Dublin social_profiles: data: - type: social_profile @@ -22693,26 +22400,6 @@ It is not possible to use this endpoint with Workflows. }, "response": { "body": { - "admin_assignee_id": 0, - "ai_agent": { - "content_sources": { - "content_sources": [ - { - "locale": "en", - "title": "My internal content snippet", - "url": "/fin-ai-agent/content?content=content_snippet&id=3234924", - }, - ], - "total_count": 1, - "type": "content_source.list", - }, - "last_answer_type": "ai_answer", - "rating": 4, - "rating_remark": "Very helpful!", - "resolution_state": "assumed_resolution", - "source_title": "My AI Workflow", - "source_type": "essentials_plan_setup", - }, "ai_agent_participated": false, "contacts": { "contacts": [ @@ -22759,29 +22446,10 @@ It is not possible to use this endpoint with Workflows. "total_count": 1, "type": "conversation_part.list", }, - "conversation_rating": { - "contact": { - "external_id": "f3b87a2e09d514c6c2e79b9a", - "id": "5ba682d23d7cf92bef87bfd4", - "type": "contact", - }, - "created_at": 1671028894, - "rating": 5, - "remark": "", - "teammate": { - "id": "1a2b3c", - "type": "contact", - }, - }, "created_at": 1719492880, "custom_attributes": { "key": "value", }, - "first_contact_reply": { - "created_at": 1663597223, - "type": "conversation", - "url": "https://developers.intercom.com/", - }, "id": "409", "linked_objects": { "data": [ @@ -22796,12 +22464,6 @@ It is not possible to use this endpoint with Workflows. "open": false, "priority": "not_priority", "read": false, - "sla_applied": { - "sla_name": "", - "sla_status": "hit", - "type": "conversation_sla_summary", - }, - "snoozed_until": 1663597260, "source": { "attachments": [ { @@ -22826,30 +22488,8 @@ It is not possible to use this endpoint with Workflows. "redacted": false, "subject": "", "type": "conversation", - "url": "url", }, "state": "closed", - "statistics": { - "count_assignments": 1, - "count_conversation_parts": 1, - "count_reopens": 1, - "first_admin_reply_at": 1663597233, - "first_assignment_at": 1663597233, - "first_close_at": 1663597233, - "first_contact_reply_at": 1663597233, - "last_admin_reply_at": 1663597233, - "last_assignment_admin_reply_at": 1663597233, - "last_assignment_at": 1663597233, - "last_close_at": 1663597233, - "last_closed_by_id": "c3po", - "last_contact_reply_at": 1663597233, - "median_time_to_reply": 2310, - "time_to_admin_reply": 2310, - "time_to_assignment": 2310, - "time_to_first_close": 2310, - "time_to_last_close": 2310, - "type": "conversation_statistics", - }, "tags": { "tags": [ { @@ -22861,19 +22501,8 @@ It is not possible to use this endpoint with Workflows. ], "type": "tag.list", }, - "team_assignee_id": "5017691", - "teammates": { - "teammates": [ - { - "type": "contact", - }, - ], - "type": "admin.list", - }, - "title": "Conversation Title", "type": "conversation", "updated_at": 1719492881, - "waiting_since": 1663597260, }, }, }, @@ -24128,26 +23757,6 @@ You can optionally request the result page size and the cursor to start after to }, "response": { "body": { - "admin_assignee_id": 0, - "ai_agent": { - "content_sources": { - "content_sources": [ - { - "locale": "en", - "title": "My internal content snippet", - "url": "/fin-ai-agent/content?content=content_snippet&id=3234924", - }, - ], - "total_count": 1, - "type": "content_source.list", - }, - "last_answer_type": "ai_answer", - "rating": 4, - "rating_remark": "Very helpful!", - "resolution_state": "assumed_resolution", - "source_title": "My AI Workflow", - "source_type": "essentials_plan_setup", - }, "ai_agent_participated": false, "contacts": { "contacts": [ @@ -24192,29 +23801,10 @@ You can optionally request the result page size and the cursor to start after to "total_count": 1, "type": "conversation_part.list", }, - "conversation_rating": { - "contact": { - "external_id": "f3b87a2e09d514c6c2e79b9a", - "id": "5ba682d23d7cf92bef87bfd4", - "type": "contact", - }, - "created_at": 1671028894, - "rating": 5, - "remark": "", - "teammate": { - "id": "1a2b3c", - "type": "contact", - }, - }, "created_at": 1719492862, "custom_attributes": { "key": "value", }, - "first_contact_reply": { - "created_at": 1663597223, - "type": "conversation", - "url": "https://developers.intercom.com/", - }, "id": "394", "linked_objects": { "data": [ @@ -24229,12 +23819,6 @@ You can optionally request the result page size and the cursor to start after to "open": false, "priority": "not_priority", "read": false, - "sla_applied": { - "sla_name": "", - "sla_status": "hit", - "type": "conversation_sla_summary", - }, - "snoozed_until": 1663597260, "source": { "attachments": [ { @@ -24259,30 +23843,8 @@ You can optionally request the result page size and the cursor to start after to "redacted": false, "subject": "", "type": "conversation", - "url": "url", }, "state": "closed", - "statistics": { - "count_assignments": 1, - "count_conversation_parts": 1, - "count_reopens": 1, - "first_admin_reply_at": 1663597233, - "first_assignment_at": 1663597233, - "first_close_at": 1663597233, - "first_contact_reply_at": 1663597233, - "last_admin_reply_at": 1663597233, - "last_assignment_admin_reply_at": 1663597233, - "last_assignment_at": 1663597233, - "last_close_at": 1663597233, - "last_closed_by_id": "c3po", - "last_contact_reply_at": 1663597233, - "median_time_to_reply": 2310, - "time_to_admin_reply": 2310, - "time_to_assignment": 2310, - "time_to_first_close": 2310, - "time_to_last_close": 2310, - "type": "conversation_statistics", - }, "tags": { "tags": [ { @@ -24294,19 +23856,8 @@ You can optionally request the result page size and the cursor to start after to ], "type": "tag.list", }, - "team_assignee_id": "5017691", - "teammates": { - "teammates": [ - { - "type": "contact", - }, - ], - "type": "admin.list", - }, - "title": "Conversation Title", "type": "conversation", "updated_at": 1719492862, - "waiting_since": 1663597260, }, }, }, @@ -24324,26 +23875,6 @@ You can optionally request the result page size and the cursor to start after to }, "response": { "body": { - "admin_assignee_id": 0, - "ai_agent": { - "content_sources": { - "content_sources": [ - { - "locale": "en", - "title": "My internal content snippet", - "url": "/fin-ai-agent/content?content=content_snippet&id=3234924", - }, - ], - "total_count": 1, - "type": "content_source.list", - }, - "last_answer_type": "ai_answer", - "rating": 4, - "rating_remark": "Very helpful!", - "resolution_state": "assumed_resolution", - "source_title": "My AI Workflow", - "source_type": "essentials_plan_setup", - }, "ai_agent_participated": false, "contacts": { "contacts": [ @@ -24387,29 +23918,10 @@ You can optionally request the result page size and the cursor to start after to "total_count": 1, "type": "conversation_part.list", }, - "conversation_rating": { - "contact": { - "external_id": "f3b87a2e09d514c6c2e79b9a", - "id": "5ba682d23d7cf92bef87bfd4", - "type": "contact", - }, - "created_at": 1671028894, - "rating": 5, - "remark": "", - "teammate": { - "id": "1a2b3c", - "type": "contact", - }, - }, "created_at": 1719492864, "custom_attributes": { "key": "value", }, - "first_contact_reply": { - "created_at": 1663597223, - "type": "conversation", - "url": "https://developers.intercom.com/", - }, "id": "395", "linked_objects": { "data": [ @@ -24424,11 +23936,6 @@ You can optionally request the result page size and the cursor to start after to "open": true, "priority": "not_priority", "read": false, - "sla_applied": { - "sla_name": "", - "sla_status": "hit", - "type": "conversation_sla_summary", - }, "snoozed_until": 1719496464, "source": { "attachments": [ @@ -24454,30 +23961,8 @@ You can optionally request the result page size and the cursor to start after to "redacted": false, "subject": "", "type": "conversation", - "url": "url", }, "state": "snoozed", - "statistics": { - "count_assignments": 1, - "count_conversation_parts": 1, - "count_reopens": 1, - "first_admin_reply_at": 1663597233, - "first_assignment_at": 1663597233, - "first_close_at": 1663597233, - "first_contact_reply_at": 1663597233, - "last_admin_reply_at": 1663597233, - "last_assignment_admin_reply_at": 1663597233, - "last_assignment_at": 1663597233, - "last_close_at": 1663597233, - "last_closed_by_id": "c3po", - "last_contact_reply_at": 1663597233, - "median_time_to_reply": 2310, - "time_to_admin_reply": 2310, - "time_to_assignment": 2310, - "time_to_first_close": 2310, - "time_to_last_close": 2310, - "type": "conversation_statistics", - }, "tags": { "tags": [ { @@ -24489,19 +23974,8 @@ You can optionally request the result page size and the cursor to start after to ], "type": "tag.list", }, - "team_assignee_id": "5017691", - "teammates": { - "teammates": [ - { - "type": "contact", - }, - ], - "type": "admin.list", - }, - "title": "Conversation Title", "type": "conversation", "updated_at": 1719492864, - "waiting_since": 1663597260, }, }, }, @@ -24519,26 +23993,6 @@ You can optionally request the result page size and the cursor to start after to }, "response": { "body": { - "admin_assignee_id": 0, - "ai_agent": { - "content_sources": { - "content_sources": [ - { - "locale": "en", - "title": "My internal content snippet", - "url": "/fin-ai-agent/content?content=content_snippet&id=3234924", - }, - ], - "total_count": 1, - "type": "content_source.list", - }, - "last_answer_type": "ai_answer", - "rating": 4, - "rating_remark": "Very helpful!", - "resolution_state": "assumed_resolution", - "source_title": "My AI Workflow", - "source_type": "essentials_plan_setup", - }, "ai_agent_participated": false, "contacts": { "contacts": [ @@ -24582,29 +24036,10 @@ You can optionally request the result page size and the cursor to start after to "total_count": 1, "type": "conversation_part.list", }, - "conversation_rating": { - "contact": { - "external_id": "f3b87a2e09d514c6c2e79b9a", - "id": "5ba682d23d7cf92bef87bfd4", - "type": "contact", - }, - "created_at": 1671028894, - "rating": 5, - "remark": "", - "teammate": { - "id": "1a2b3c", - "type": "contact", - }, - }, "created_at": 1719492863, "custom_attributes": { "key": "value", }, - "first_contact_reply": { - "created_at": 1663597223, - "type": "conversation", - "url": "https://developers.intercom.com/", - }, "id": "400", "linked_objects": { "data": [ @@ -24619,12 +24054,6 @@ You can optionally request the result page size and the cursor to start after to "open": true, "priority": "not_priority", "read": true, - "sla_applied": { - "sla_name": "", - "sla_status": "hit", - "type": "conversation_sla_summary", - }, - "snoozed_until": 1663597260, "source": { "attachments": [ { @@ -24649,30 +24078,8 @@ You can optionally request the result page size and the cursor to start after to "redacted": false, "subject": "", "type": "conversation", - "url": "url", }, "state": "open", - "statistics": { - "count_assignments": 1, - "count_conversation_parts": 1, - "count_reopens": 1, - "first_admin_reply_at": 1663597233, - "first_assignment_at": 1663597233, - "first_close_at": 1663597233, - "first_contact_reply_at": 1663597233, - "last_admin_reply_at": 1663597233, - "last_assignment_admin_reply_at": 1663597233, - "last_assignment_at": 1663597233, - "last_close_at": 1663597233, - "last_closed_by_id": "c3po", - "last_contact_reply_at": 1663597233, - "median_time_to_reply": 2310, - "time_to_admin_reply": 2310, - "time_to_assignment": 2310, - "time_to_first_close": 2310, - "time_to_last_close": 2310, - "type": "conversation_statistics", - }, "tags": { "tags": [ { @@ -24684,19 +24091,9 @@ You can optionally request the result page size and the cursor to start after to ], "type": "tag.list", }, - "team_assignee_id": "5017691", - "teammates": { - "teammates": [ - { - "type": "contact", - }, - ], - "type": "admin.list", - }, "title": "", "type": "conversation", "updated_at": 1719492873, - "waiting_since": 1663597260, }, }, }, @@ -24715,25 +24112,6 @@ You can optionally request the result page size and the cursor to start after to "response": { "body": { "admin_assignee_id": 991267615, - "ai_agent": { - "content_sources": { - "content_sources": [ - { - "locale": "en", - "title": "My internal content snippet", - "url": "/fin-ai-agent/content?content=content_snippet&id=3234924", - }, - ], - "total_count": 1, - "type": "content_source.list", - }, - "last_answer_type": "ai_answer", - "rating": 4, - "rating_remark": "Very helpful!", - "resolution_state": "assumed_resolution", - "source_title": "My AI Workflow", - "source_type": "essentials_plan_setup", - }, "ai_agent_participated": false, "contacts": { "contacts": [ @@ -24781,29 +24159,10 @@ You can optionally request the result page size and the cursor to start after to "total_count": 1, "type": "conversation_part.list", }, - "conversation_rating": { - "contact": { - "external_id": "f3b87a2e09d514c6c2e79b9a", - "id": "5ba682d23d7cf92bef87bfd4", - "type": "contact", - }, - "created_at": 1671028894, - "rating": 5, - "remark": "", - "teammate": { - "id": "1a2b3c", - "type": "contact", - }, - }, "created_at": 1719492874, "custom_attributes": { "key": "value", }, - "first_contact_reply": { - "created_at": 1663597223, - "type": "conversation", - "url": "https://developers.intercom.com/", - }, "id": "405", "linked_objects": { "data": [ @@ -24818,12 +24177,6 @@ You can optionally request the result page size and the cursor to start after to "open": true, "priority": "not_priority", "read": false, - "sla_applied": { - "sla_name": "", - "sla_status": "hit", - "type": "conversation_sla_summary", - }, - "snoozed_until": 1663597260, "source": { "attachments": [ { @@ -24848,30 +24201,8 @@ You can optionally request the result page size and the cursor to start after to "redacted": false, "subject": "", "type": "conversation", - "url": "url", }, "state": "open", - "statistics": { - "count_assignments": 1, - "count_conversation_parts": 1, - "count_reopens": 1, - "first_admin_reply_at": 1663597233, - "first_assignment_at": 1663597233, - "first_close_at": 1663597233, - "first_contact_reply_at": 1663597233, - "last_admin_reply_at": 1663597233, - "last_assignment_admin_reply_at": 1663597233, - "last_assignment_at": 1663597233, - "last_close_at": 1663597233, - "last_closed_by_id": "c3po", - "last_contact_reply_at": 1663597233, - "median_time_to_reply": 2310, - "time_to_admin_reply": 2310, - "time_to_assignment": 2310, - "time_to_first_close": 2310, - "time_to_last_close": 2310, - "type": "conversation_statistics", - }, "tags": { "tags": [ { @@ -24883,19 +24214,8 @@ You can optionally request the result page size and the cursor to start after to ], "type": "tag.list", }, - "team_assignee_id": "5017691", - "teammates": { - "teammates": [ - { - "type": "contact", - }, - ], - "type": "admin.list", - }, - "title": "Conversation Title", "type": "conversation", "updated_at": 1719492875, - "waiting_since": 1663597260, }, }, }, @@ -24913,26 +24233,6 @@ You can optionally request the result page size and the cursor to start after to }, "response": { "body": { - "admin_assignee_id": 0, - "ai_agent": { - "content_sources": { - "content_sources": [ - { - "locale": "en", - "title": "My internal content snippet", - "url": "/fin-ai-agent/content?content=content_snippet&id=3234924", - }, - ], - "total_count": 1, - "type": "content_source.list", - }, - "last_answer_type": "ai_answer", - "rating": 4, - "rating_remark": "Very helpful!", - "resolution_state": "assumed_resolution", - "source_title": "My AI Workflow", - "source_type": "essentials_plan_setup", - }, "ai_agent_participated": false, "contacts": { "contacts": [ @@ -24977,29 +24277,10 @@ You can optionally request the result page size and the cursor to start after to "total_count": 1, "type": "conversation_part.list", }, - "conversation_rating": { - "contact": { - "external_id": "f3b87a2e09d514c6c2e79b9a", - "id": "5ba682d23d7cf92bef87bfd4", - "type": "contact", - }, - "created_at": 1671028894, - "rating": 5, - "remark": "", - "teammate": { - "id": "1a2b3c", - "type": "contact", - }, - }, "created_at": 1719492862, "custom_attributes": { "key": "value", }, - "first_contact_reply": { - "created_at": 1663597223, - "type": "conversation", - "url": "https://developers.intercom.com/", - }, "id": "394", "linked_objects": { "data": [ @@ -25014,12 +24295,6 @@ You can optionally request the result page size and the cursor to start after to "open": false, "priority": "not_priority", "read": false, - "sla_applied": { - "sla_name": "", - "sla_status": "hit", - "type": "conversation_sla_summary", - }, - "snoozed_until": 1663597260, "source": { "attachments": [ { @@ -25044,30 +24319,8 @@ You can optionally request the result page size and the cursor to start after to "redacted": false, "subject": "", "type": "conversation", - "url": "url", }, "state": "closed", - "statistics": { - "count_assignments": 1, - "count_conversation_parts": 1, - "count_reopens": 1, - "first_admin_reply_at": 1663597233, - "first_assignment_at": 1663597233, - "first_close_at": 1663597233, - "first_contact_reply_at": 1663597233, - "last_admin_reply_at": 1663597233, - "last_assignment_admin_reply_at": 1663597233, - "last_assignment_at": 1663597233, - "last_close_at": 1663597233, - "last_closed_by_id": "c3po", - "last_contact_reply_at": 1663597233, - "median_time_to_reply": 2310, - "time_to_admin_reply": 2310, - "time_to_assignment": 2310, - "time_to_first_close": 2310, - "time_to_last_close": 2310, - "type": "conversation_statistics", - }, "tags": { "tags": [ { @@ -25079,19 +24332,8 @@ You can optionally request the result page size and the cursor to start after to ], "type": "tag.list", }, - "team_assignee_id": "5017691", - "teammates": { - "teammates": [ - { - "type": "contact", - }, - ], - "type": "admin.list", - }, - "title": "Conversation Title", "type": "conversation", "updated_at": 1719492862, - "waiting_since": 1663597260, }, }, }, @@ -25141,26 +24383,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda }, "response": { "body": { - "admin_assignee_id": 0, - "ai_agent": { - "content_sources": { - "content_sources": [ - { - "locale": "en", - "title": "My internal content snippet", - "url": "/fin-ai-agent/content?content=content_snippet&id=3234924", - }, - ], - "total_count": 1, - "type": "content_source.list", - }, - "last_answer_type": "ai_answer", - "rating": 4, - "rating_remark": "Very helpful!", - "resolution_state": "assumed_resolution", - "source_title": "My AI Workflow", - "source_type": "essentials_plan_setup", - }, "ai_agent_participated": false, "contacts": { "contacts": [ @@ -25205,20 +24427,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda "total_count": 1, "type": "conversation_part.list", }, - "conversation_rating": { - "contact": { - "external_id": "f3b87a2e09d514c6c2e79b9a", - "id": "5ba682d23d7cf92bef87bfd4", - "type": "contact", - }, - "created_at": 1671028894, - "rating": 5, - "remark": "", - "teammate": { - "id": "1a2b3c", - "type": "contact", - }, - }, "created_at": 1719492938, "custom_attributes": { "key": "value", @@ -25226,7 +24434,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda "first_contact_reply": { "created_at": 1719492939, "type": "conversation", - "url": "https://developers.intercom.com/", }, "id": "471", "linked_objects": { @@ -25242,12 +24449,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda "open": true, "priority": "not_priority", "read": true, - "sla_applied": { - "sla_name": "", - "sla_status": "hit", - "type": "conversation_sla_summary", - }, - "snoozed_until": 1663597260, "source": { "attachments": [ { @@ -25272,30 +24473,8 @@ If you are redacting a conversation part, it must have a `body`. If you are reda "redacted": false, "subject": "", "type": "conversation", - "url": "url", }, "state": "open", - "statistics": { - "count_assignments": 1, - "count_conversation_parts": 1, - "count_reopens": 1, - "first_admin_reply_at": 1663597233, - "first_assignment_at": 1663597233, - "first_close_at": 1663597233, - "first_contact_reply_at": 1663597233, - "last_admin_reply_at": 1663597233, - "last_assignment_admin_reply_at": 1663597233, - "last_assignment_at": 1663597233, - "last_close_at": 1663597233, - "last_closed_by_id": "c3po", - "last_contact_reply_at": 1663597233, - "median_time_to_reply": 2310, - "time_to_admin_reply": 2310, - "time_to_assignment": 2310, - "time_to_first_close": 2310, - "time_to_last_close": 2310, - "type": "conversation_statistics", - }, "tags": { "tags": [ { @@ -25307,16 +24486,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda ], "type": "tag.list", }, - "team_assignee_id": "5017691", - "teammates": { - "teammates": [ - { - "type": "contact", - }, - ], - "type": "admin.list", - }, - "title": "Conversation Title", "type": "conversation", "updated_at": 1719492940, "waiting_since": 1719492939, @@ -25332,26 +24501,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda }, "response": { "body": { - "admin_assignee_id": 0, - "ai_agent": { - "content_sources": { - "content_sources": [ - { - "locale": "en", - "title": "My internal content snippet", - "url": "/fin-ai-agent/content?content=content_snippet&id=3234924", - }, - ], - "total_count": 1, - "type": "content_source.list", - }, - "last_answer_type": "ai_answer", - "rating": 4, - "rating_remark": "Very helpful!", - "resolution_state": "assumed_resolution", - "source_title": "My AI Workflow", - "source_type": "essentials_plan_setup", - }, "ai_agent_participated": false, "contacts": { "contacts": [ @@ -25396,20 +24545,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda "total_count": 1, "type": "conversation_part.list", }, - "conversation_rating": { - "contact": { - "external_id": "f3b87a2e09d514c6c2e79b9a", - "id": "5ba682d23d7cf92bef87bfd4", - "type": "contact", - }, - "created_at": 1671028894, - "rating": 5, - "remark": "", - "teammate": { - "id": "1a2b3c", - "type": "contact", - }, - }, "created_at": 1719492938, "custom_attributes": { "key": "value", @@ -25417,7 +24552,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda "first_contact_reply": { "created_at": 1719492939, "type": "conversation", - "url": "https://developers.intercom.com/", }, "id": "471", "linked_objects": { @@ -25433,12 +24567,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda "open": true, "priority": "not_priority", "read": true, - "sla_applied": { - "sla_name": "", - "sla_status": "hit", - "type": "conversation_sla_summary", - }, - "snoozed_until": 1663597260, "source": { "attachments": [ { @@ -25463,30 +24591,8 @@ If you are redacting a conversation part, it must have a `body`. If you are reda "redacted": false, "subject": "", "type": "conversation", - "url": "url", }, "state": "open", - "statistics": { - "count_assignments": 1, - "count_conversation_parts": 1, - "count_reopens": 1, - "first_admin_reply_at": 1663597233, - "first_assignment_at": 1663597233, - "first_close_at": 1663597233, - "first_contact_reply_at": 1663597233, - "last_admin_reply_at": 1663597233, - "last_assignment_admin_reply_at": 1663597233, - "last_assignment_at": 1663597233, - "last_close_at": 1663597233, - "last_closed_by_id": "c3po", - "last_contact_reply_at": 1663597233, - "median_time_to_reply": 2310, - "time_to_admin_reply": 2310, - "time_to_assignment": 2310, - "time_to_first_close": 2310, - "time_to_last_close": 2310, - "type": "conversation_statistics", - }, "tags": { "tags": [ { @@ -25498,16 +24604,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda ], "type": "tag.list", }, - "team_assignee_id": "5017691", - "teammates": { - "teammates": [ - { - "type": "contact", - }, - ], - "type": "admin.list", - }, - "title": "Conversation Title", "type": "conversation", "updated_at": 1719492940, "waiting_since": 1719492939, @@ -25553,26 +24649,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda }, "response": { "body": { - "admin_assignee_id": 0, - "ai_agent": { - "content_sources": { - "content_sources": [ - { - "locale": "en", - "title": "My internal content snippet", - "url": "/fin-ai-agent/content?content=content_snippet&id=3234924", - }, - ], - "total_count": 1, - "type": "content_source.list", - }, - "last_answer_type": "ai_answer", - "rating": 4, - "rating_remark": "Very helpful!", - "resolution_state": "assumed_resolution", - "source_title": "My AI Workflow", - "source_type": "essentials_plan_setup", - }, "ai_agent_participated": false, "contacts": { "contacts": [ @@ -25617,20 +24693,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda "total_count": 1, "type": "conversation_part.list", }, - "conversation_rating": { - "contact": { - "external_id": "f3b87a2e09d514c6c2e79b9a", - "id": "5ba682d23d7cf92bef87bfd4", - "type": "contact", - }, - "created_at": 1671028894, - "rating": 5, - "remark": "", - "teammate": { - "id": "1a2b3c", - "type": "contact", - }, - }, "created_at": 1719492849, "custom_attributes": { "key": "value", @@ -25638,7 +24700,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda "first_contact_reply": { "created_at": 1719492850, "type": "conversation", - "url": "https://developers.intercom.com/", }, "id": "387", "linked_objects": { @@ -25654,12 +24715,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda "open": true, "priority": "not_priority", "read": false, - "sla_applied": { - "sla_name": "", - "sla_status": "hit", - "type": "conversation_sla_summary", - }, - "snoozed_until": 1663597260, "source": { "attachments": [ { @@ -25684,30 +24739,8 @@ If you are redacting a conversation part, it must have a `body`. If you are reda "redacted": false, "subject": "", "type": "conversation", - "url": "url", }, "state": "open", - "statistics": { - "count_assignments": 1, - "count_conversation_parts": 1, - "count_reopens": 1, - "first_admin_reply_at": 1663597233, - "first_assignment_at": 1663597233, - "first_close_at": 1663597233, - "first_contact_reply_at": 1663597233, - "last_admin_reply_at": 1663597233, - "last_assignment_admin_reply_at": 1663597233, - "last_assignment_at": 1663597233, - "last_close_at": 1663597233, - "last_closed_by_id": "c3po", - "last_contact_reply_at": 1663597233, - "median_time_to_reply": 2310, - "time_to_admin_reply": 2310, - "time_to_assignment": 2310, - "time_to_first_close": 2310, - "time_to_last_close": 2310, - "type": "conversation_statistics", - }, "tags": { "tags": [ { @@ -25719,16 +24752,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda ], "type": "tag.list", }, - "team_assignee_id": "5017691", - "teammates": { - "teammates": [ - { - "type": "contact", - }, - ], - "type": "admin.list", - }, - "title": "Conversation Title", "type": "conversation", "updated_at": 1719492850, "waiting_since": 1719492850, @@ -25748,26 +24771,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda }, "response": { "body": { - "admin_assignee_id": 0, - "ai_agent": { - "content_sources": { - "content_sources": [ - { - "locale": "en", - "title": "My internal content snippet", - "url": "/fin-ai-agent/content?content=content_snippet&id=3234924", - }, - ], - "total_count": 1, - "type": "content_source.list", - }, - "last_answer_type": "ai_answer", - "rating": 4, - "rating_remark": "Very helpful!", - "resolution_state": "assumed_resolution", - "source_title": "My AI Workflow", - "source_type": "essentials_plan_setup", - }, "ai_agent_participated": false, "contacts": { "contacts": [ @@ -25823,29 +24826,10 @@ If you are redacting a conversation part, it must have a `body`. If you are reda "total_count": 1, "type": "conversation_part.list", }, - "conversation_rating": { - "contact": { - "external_id": "f3b87a2e09d514c6c2e79b9a", - "id": "5ba682d23d7cf92bef87bfd4", - "type": "contact", - }, - "created_at": 1671028894, - "rating": 5, - "remark": "", - "teammate": { - "id": "1a2b3c", - "type": "contact", - }, - }, "created_at": 1719492852, "custom_attributes": { "key": "value", }, - "first_contact_reply": { - "created_at": 1663597223, - "type": "conversation", - "url": "https://developers.intercom.com/", - }, "id": "388", "linked_objects": { "data": [ @@ -25860,12 +24844,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda "open": false, "priority": "not_priority", "read": false, - "sla_applied": { - "sla_name": "", - "sla_status": "hit", - "type": "conversation_sla_summary", - }, - "snoozed_until": 1663597260, "source": { "attachments": [ { @@ -25890,30 +24868,8 @@ If you are redacting a conversation part, it must have a `body`. If you are reda "redacted": false, "subject": "", "type": "conversation", - "url": "url", }, "state": "closed", - "statistics": { - "count_assignments": 1, - "count_conversation_parts": 1, - "count_reopens": 1, - "first_admin_reply_at": 1663597233, - "first_assignment_at": 1663597233, - "first_close_at": 1663597233, - "first_contact_reply_at": 1663597233, - "last_admin_reply_at": 1663597233, - "last_assignment_admin_reply_at": 1663597233, - "last_assignment_at": 1663597233, - "last_close_at": 1663597233, - "last_closed_by_id": "c3po", - "last_contact_reply_at": 1663597233, - "median_time_to_reply": 2310, - "time_to_admin_reply": 2310, - "time_to_assignment": 2310, - "time_to_first_close": 2310, - "time_to_last_close": 2310, - "type": "conversation_statistics", - }, "tags": { "tags": [ { @@ -25925,19 +24881,8 @@ If you are redacting a conversation part, it must have a `body`. If you are reda ], "type": "tag.list", }, - "team_assignee_id": "5017691", - "teammates": { - "teammates": [ - { - "type": "contact", - }, - ], - "type": "admin.list", - }, - "title": "Conversation Title", "type": "conversation", "updated_at": 1719492853, - "waiting_since": 1663597260, }, }, }, @@ -25954,26 +24899,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda }, "response": { "body": { - "admin_assignee_id": 0, - "ai_agent": { - "content_sources": { - "content_sources": [ - { - "locale": "en", - "title": "My internal content snippet", - "url": "/fin-ai-agent/content?content=content_snippet&id=3234924", - }, - ], - "total_count": 1, - "type": "content_source.list", - }, - "last_answer_type": "ai_answer", - "rating": 4, - "rating_remark": "Very helpful!", - "resolution_state": "assumed_resolution", - "source_title": "My AI Workflow", - "source_type": "essentials_plan_setup", - }, "ai_agent_participated": false, "contacts": { "contacts": [ @@ -26018,20 +24943,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda "total_count": 1, "type": "conversation_part.list", }, - "conversation_rating": { - "contact": { - "external_id": "f3b87a2e09d514c6c2e79b9a", - "id": "5ba682d23d7cf92bef87bfd4", - "type": "contact", - }, - "created_at": 1671028894, - "rating": 5, - "remark": "", - "teammate": { - "id": "1a2b3c", - "type": "contact", - }, - }, "created_at": 1719492855, "custom_attributes": { "key": "value", @@ -26039,7 +24950,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda "first_contact_reply": { "created_at": 1719492856, "type": "conversation", - "url": "https://developers.intercom.com/", }, "id": "390", "linked_objects": { @@ -26055,12 +24965,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda "open": true, "priority": "not_priority", "read": false, - "sla_applied": { - "sla_name": "", - "sla_status": "hit", - "type": "conversation_sla_summary", - }, - "snoozed_until": 1663597260, "source": { "attachments": [ { @@ -26085,30 +24989,8 @@ If you are redacting a conversation part, it must have a `body`. If you are reda "redacted": false, "subject": "", "type": "conversation", - "url": "url", }, "state": "open", - "statistics": { - "count_assignments": 1, - "count_conversation_parts": 1, - "count_reopens": 1, - "first_admin_reply_at": 1663597233, - "first_assignment_at": 1663597233, - "first_close_at": 1663597233, - "first_contact_reply_at": 1663597233, - "last_admin_reply_at": 1663597233, - "last_assignment_admin_reply_at": 1663597233, - "last_assignment_at": 1663597233, - "last_close_at": 1663597233, - "last_closed_by_id": "c3po", - "last_contact_reply_at": 1663597233, - "median_time_to_reply": 2310, - "time_to_admin_reply": 2310, - "time_to_assignment": 2310, - "time_to_first_close": 2310, - "time_to_last_close": 2310, - "type": "conversation_statistics", - }, "tags": { "tags": [ { @@ -26120,16 +25002,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda ], "type": "tag.list", }, - "team_assignee_id": "5017691", - "teammates": { - "teammates": [ - { - "type": "contact", - }, - ], - "type": "admin.list", - }, - "title": "Conversation Title", "type": "conversation", "updated_at": 1719492856, "waiting_since": 1719492856, @@ -26149,26 +25021,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda }, "response": { "body": { - "admin_assignee_id": 0, - "ai_agent": { - "content_sources": { - "content_sources": [ - { - "locale": "en", - "title": "My internal content snippet", - "url": "/fin-ai-agent/content?content=content_snippet&id=3234924", - }, - ], - "total_count": 1, - "type": "content_source.list", - }, - "last_answer_type": "ai_answer", - "rating": 4, - "rating_remark": "Very helpful!", - "resolution_state": "assumed_resolution", - "source_title": "My AI Workflow", - "source_type": "essentials_plan_setup", - }, "ai_agent_participated": false, "contacts": { "contacts": [ @@ -26213,20 +25065,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda "total_count": 1, "type": "conversation_part.list", }, - "conversation_rating": { - "contact": { - "external_id": "f3b87a2e09d514c6c2e79b9a", - "id": "5ba682d23d7cf92bef87bfd4", - "type": "contact", - }, - "created_at": 1671028894, - "rating": 5, - "remark": "", - "teammate": { - "id": "1a2b3c", - "type": "contact", - }, - }, "created_at": 1719492849, "custom_attributes": { "key": "value", @@ -26234,7 +25072,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda "first_contact_reply": { "created_at": 1719492850, "type": "conversation", - "url": "https://developers.intercom.com/", }, "id": "387", "linked_objects": { @@ -26250,12 +25087,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda "open": true, "priority": "not_priority", "read": false, - "sla_applied": { - "sla_name": "", - "sla_status": "hit", - "type": "conversation_sla_summary", - }, - "snoozed_until": 1663597260, "source": { "attachments": [ { @@ -26280,30 +25111,8 @@ If you are redacting a conversation part, it must have a `body`. If you are reda "redacted": false, "subject": "", "type": "conversation", - "url": "url", }, "state": "open", - "statistics": { - "count_assignments": 1, - "count_conversation_parts": 1, - "count_reopens": 1, - "first_admin_reply_at": 1663597233, - "first_assignment_at": 1663597233, - "first_close_at": 1663597233, - "first_contact_reply_at": 1663597233, - "last_admin_reply_at": 1663597233, - "last_assignment_admin_reply_at": 1663597233, - "last_assignment_at": 1663597233, - "last_close_at": 1663597233, - "last_closed_by_id": "c3po", - "last_contact_reply_at": 1663597233, - "median_time_to_reply": 2310, - "time_to_admin_reply": 2310, - "time_to_assignment": 2310, - "time_to_first_close": 2310, - "time_to_last_close": 2310, - "type": "conversation_statistics", - }, "tags": { "tags": [ { @@ -26315,16 +25124,6 @@ If you are redacting a conversation part, it must have a `body`. If you are reda ], "type": "tag.list", }, - "team_assignee_id": "5017691", - "teammates": { - "teammates": [ - { - "type": "contact", - }, - ], - "type": "admin.list", - }, - "title": "Conversation Title", "type": "conversation", "updated_at": 1719492850, "waiting_since": 1719492850, @@ -26383,26 +25182,6 @@ For AI agent conversation metadata, please note that you need to have the agent }, "response": { "body": { - "admin_assignee_id": 0, - "ai_agent": { - "content_sources": { - "content_sources": [ - { - "locale": "en", - "title": "My internal content snippet", - "url": "/fin-ai-agent/content?content=content_snippet&id=3234924", - }, - ], - "total_count": 1, - "type": "content_source.list", - }, - "last_answer_type": "ai_answer", - "rating": 4, - "rating_remark": "Very helpful!", - "resolution_state": "assumed_resolution", - "source_title": "My AI Workflow", - "source_type": "essentials_plan_setup", - }, "ai_agent_participated": false, "contacts": { "contacts": [ @@ -26429,29 +25208,10 @@ For AI agent conversation metadata, please note that you need to have the agent "total_count": 0, "type": "conversation_part.list", }, - "conversation_rating": { - "contact": { - "external_id": "f3b87a2e09d514c6c2e79b9a", - "id": "5ba682d23d7cf92bef87bfd4", - "type": "contact", - }, - "created_at": 1671028894, - "rating": 5, - "remark": "", - "teammate": { - "id": "1a2b3c", - "type": "contact", - }, - }, "created_at": 1719492825, "custom_attributes": { "key": "value", }, - "first_contact_reply": { - "created_at": 1663597223, - "type": "conversation", - "url": "https://developers.intercom.com/", - }, "id": "367", "linked_objects": { "data": [ @@ -26466,12 +25226,6 @@ For AI agent conversation metadata, please note that you need to have the agent "open": false, "priority": "not_priority", "read": false, - "sla_applied": { - "sla_name": "", - "sla_status": "hit", - "type": "conversation_sla_summary", - }, - "snoozed_until": 1663597260, "source": { "attachments": [ { @@ -26496,30 +25250,8 @@ For AI agent conversation metadata, please note that you need to have the agent "redacted": false, "subject": "", "type": "conversation", - "url": "url", }, "state": "closed", - "statistics": { - "count_assignments": 1, - "count_conversation_parts": 1, - "count_reopens": 1, - "first_admin_reply_at": 1663597233, - "first_assignment_at": 1663597233, - "first_close_at": 1663597233, - "first_contact_reply_at": 1663597233, - "last_admin_reply_at": 1663597233, - "last_assignment_admin_reply_at": 1663597233, - "last_assignment_at": 1663597233, - "last_close_at": 1663597233, - "last_closed_by_id": "c3po", - "last_contact_reply_at": 1663597233, - "median_time_to_reply": 2310, - "time_to_admin_reply": 2310, - "time_to_assignment": 2310, - "time_to_first_close": 2310, - "time_to_last_close": 2310, - "type": "conversation_statistics", - }, "tags": { "tags": [ { @@ -26531,19 +25263,8 @@ For AI agent conversation metadata, please note that you need to have the agent ], "type": "tag.list", }, - "team_assignee_id": "5017691", - "teammates": { - "teammates": [ - { - "type": "contact", - }, - ], - "type": "admin.list", - }, - "title": "Conversation Title", "type": "conversation", "updated_at": 1719492825, - "waiting_since": 1663597260, }, }, }, @@ -26698,7 +25419,6 @@ The table below shows the operators you can use to define how you want to search "body": { "conversations": [ { - "admin_assignee_id": 0, "ai_agent_participated": false, "contacts": { "contacts": [ @@ -26713,19 +25433,10 @@ The table below shows the operators you can use to define how you want to search "conversation_parts": { "total_count": 2, }, - "conversation_rating": { - "created_at": 1671028894, - "rating": 5, - "remark": "", - }, "created_at": 1719492843, "custom_attributes": { "key": "value", }, - "first_contact_reply": { - "created_at": 1663597223, - "type": "conversation", - }, "id": "378", "linked_objects": { "data": [ @@ -26740,11 +25451,6 @@ The table below shows the operators you can use to define how you want to search "open": false, "priority": "not_priority", "read": false, - "sla_applied": { - "sla_name": "", - "type": "conversation_sla_summary", - }, - "snoozed_until": 1663597260, "source": { "attachments": [ { @@ -26771,27 +25477,6 @@ The table below shows the operators you can use to define how you want to search "type": "conversation", }, "state": "closed", - "statistics": { - "count_assignments": 1, - "count_conversation_parts": 1, - "count_reopens": 1, - "first_admin_reply_at": 1663597233, - "first_assignment_at": 1663597233, - "first_close_at": 1663597233, - "first_contact_reply_at": 1663597233, - "last_admin_reply_at": 1663597233, - "last_assignment_admin_reply_at": 1663597233, - "last_assignment_at": 1663597233, - "last_close_at": 1663597233, - "last_closed_by_id": "c3po", - "last_contact_reply_at": 1663597233, - "median_time_to_reply": 2310, - "time_to_admin_reply": 2310, - "time_to_assignment": 2310, - "time_to_first_close": 2310, - "time_to_last_close": 2310, - "type": "conversation_statistics", - }, "tags": { "tags": [ { @@ -26803,14 +25488,8 @@ The table below shows the operators you can use to define how you want to search ], "type": "tag.list", }, - "team_assignee_id": "5017691", - "teammates": { - "type": "admin.list", - }, - "title": "Conversation Title", "type": "conversation", "updated_at": 1719492843, - "waiting_since": 1663597260, }, ], "pages": { @@ -26880,26 +25559,6 @@ If you want to reply to a coveration or take an action such as assign, unassign, }, "response": { "body": { - "admin_assignee_id": 0, - "ai_agent": { - "content_sources": { - "content_sources": [ - { - "locale": "en", - "title": "My internal content snippet", - "url": "/fin-ai-agent/content?content=content_snippet&id=3234924", - }, - ], - "total_count": 1, - "type": "content_source.list", - }, - "last_answer_type": "ai_answer", - "rating": 4, - "rating_remark": "Very helpful!", - "resolution_state": "assumed_resolution", - "source_title": "My AI Workflow", - "source_type": "essentials_plan_setup", - }, "ai_agent_participated": false, "contacts": { "contacts": [ @@ -26969,30 +25628,11 @@ If you want to reply to a coveration or take an action such as assign, unassign, "total_count": 2, "type": "conversation_part.list", }, - "conversation_rating": { - "contact": { - "external_id": "f3b87a2e09d514c6c2e79b9a", - "id": "5ba682d23d7cf92bef87bfd4", - "type": "contact", - }, - "created_at": 1671028894, - "rating": 5, - "remark": "", - "teammate": { - "id": "1a2b3c", - "type": "contact", - }, - }, "created_at": 1719492832, "custom_attributes": { "issue_type": "Billing", "priority": "High", }, - "first_contact_reply": { - "created_at": 1663597223, - "type": "conversation", - "url": "https://developers.intercom.com/", - }, "id": "371", "linked_objects": { "data": [ @@ -27007,12 +25647,6 @@ If you want to reply to a coveration or take an action such as assign, unassign, "open": false, "priority": "not_priority", "read": true, - "sla_applied": { - "sla_name": "", - "sla_status": "hit", - "type": "conversation_sla_summary", - }, - "snoozed_until": 1663597260, "source": { "attachments": [ { @@ -27037,30 +25671,8 @@ If you want to reply to a coveration or take an action such as assign, unassign, "redacted": false, "subject": "", "type": "conversation", - "url": "url", }, "state": "closed", - "statistics": { - "count_assignments": 1, - "count_conversation_parts": 1, - "count_reopens": 1, - "first_admin_reply_at": 1663597233, - "first_assignment_at": 1663597233, - "first_close_at": 1663597233, - "first_contact_reply_at": 1663597233, - "last_admin_reply_at": 1663597233, - "last_assignment_admin_reply_at": 1663597233, - "last_assignment_at": 1663597233, - "last_close_at": 1663597233, - "last_closed_by_id": "c3po", - "last_contact_reply_at": 1663597233, - "median_time_to_reply": 2310, - "time_to_admin_reply": 2310, - "time_to_assignment": 2310, - "time_to_first_close": 2310, - "time_to_last_close": 2310, - "type": "conversation_statistics", - }, "tags": { "tags": [ { @@ -27072,19 +25684,8 @@ If you want to reply to a coveration or take an action such as assign, unassign, ], "type": "tag.list", }, - "team_assignee_id": "5017691", - "teammates": { - "teammates": [ - { - "type": "contact", - }, - ], - "type": "admin.list", - }, - "title": "Conversation Title", "type": "conversation", "updated_at": 1719492834, - "waiting_since": 1663597260, }, }, }, @@ -27105,26 +25706,6 @@ If you want to reply to a coveration or take an action such as assign, unassign, }, "response": { "body": { - "admin_assignee_id": 0, - "ai_agent": { - "content_sources": { - "content_sources": [ - { - "locale": "en", - "title": "My internal content snippet", - "url": "/fin-ai-agent/content?content=content_snippet&id=3234924", - }, - ], - "total_count": 1, - "type": "content_source.list", - }, - "last_answer_type": "ai_answer", - "rating": 4, - "rating_remark": "Very helpful!", - "resolution_state": "assumed_resolution", - "source_title": "My AI Workflow", - "source_type": "essentials_plan_setup", - }, "ai_agent_participated": false, "contacts": { "contacts": [ @@ -27194,30 +25775,11 @@ If you want to reply to a coveration or take an action such as assign, unassign, "total_count": 2, "type": "conversation_part.list", }, - "conversation_rating": { - "contact": { - "external_id": "f3b87a2e09d514c6c2e79b9a", - "id": "5ba682d23d7cf92bef87bfd4", - "type": "contact", - }, - "created_at": 1671028894, - "rating": 5, - "remark": "", - "teammate": { - "id": "1a2b3c", - "type": "contact", - }, - }, "created_at": 1719492832, "custom_attributes": { "issue_type": "Billing", "priority": "High", }, - "first_contact_reply": { - "created_at": 1663597223, - "type": "conversation", - "url": "https://developers.intercom.com/", - }, "id": "371", "linked_objects": { "data": [ @@ -27232,12 +25794,6 @@ If you want to reply to a coveration or take an action such as assign, unassign, "open": false, "priority": "not_priority", "read": true, - "sla_applied": { - "sla_name": "", - "sla_status": "hit", - "type": "conversation_sla_summary", - }, - "snoozed_until": 1663597260, "source": { "attachments": [ { @@ -27262,30 +25818,8 @@ If you want to reply to a coveration or take an action such as assign, unassign, "redacted": false, "subject": "", "type": "conversation", - "url": "url", }, "state": "closed", - "statistics": { - "count_assignments": 1, - "count_conversation_parts": 1, - "count_reopens": 1, - "first_admin_reply_at": 1663597233, - "first_assignment_at": 1663597233, - "first_close_at": 1663597233, - "first_contact_reply_at": 1663597233, - "last_admin_reply_at": 1663597233, - "last_assignment_admin_reply_at": 1663597233, - "last_assignment_at": 1663597233, - "last_close_at": 1663597233, - "last_closed_by_id": "c3po", - "last_contact_reply_at": 1663597233, - "median_time_to_reply": 2310, - "time_to_admin_reply": 2310, - "time_to_assignment": 2310, - "time_to_first_close": 2310, - "time_to_last_close": 2310, - "type": "conversation_statistics", - }, "tags": { "tags": [ { @@ -27297,19 +25831,8 @@ If you want to reply to a coveration or take an action such as assign, unassign, ], "type": "tag.list", }, - "team_assignee_id": "5017691", - "teammates": { - "teammates": [ - { - "type": "contact", - }, - ], - "type": "admin.list", - }, - "title": "Conversation Title", "type": "conversation", "updated_at": 1719492834, - "waiting_since": 1663597260, }, }, }, @@ -27804,17 +26327,12 @@ service: body: type: conversation id: '367' - title: Conversation Title created_at: 1719492825 updated_at: 1719492825 - waiting_since: 1663597260 - snoozed_until: 1663597260 open: false state: closed read: false priority: not_priority - admin_assignee_id: 0 - team_assignee_id: '5017691' tags: type: tag.list tags: @@ -27822,17 +26340,6 @@ service: id: '123456' name: Test tag applied_at: 1663597223 - conversation_rating: - rating: 5 - remark: '' - created_at: 1671028894 - contact: - type: contact - id: 5ba682d23d7cf92bef87bfd4 - external_id: f3b87a2e09d514c6c2e79b9a - teammate: - type: contact - id: 1a2b3c source: type: conversation id: '403918255' @@ -27852,7 +26359,6 @@ service: filesize: 100 width: 100 height: 100 - url: url redacted: false contacts: type: contact.list @@ -27860,40 +26366,8 @@ service: - type: contact id: 667d60d88a68186f43bafde1 external_id: '70' - teammates: - type: admin.list - teammates: - - type: contact custom_attributes: key: value - first_contact_reply: - created_at: 1663597223 - type: conversation - url: https://developers.intercom.com/ - sla_applied: - type: conversation_sla_summary - sla_name: '' - sla_status: hit - statistics: - type: conversation_statistics - time_to_assignment: 2310 - time_to_admin_reply: 2310 - time_to_first_close: 2310 - time_to_last_close: 2310 - median_time_to_reply: 2310 - first_contact_reply_at: 1663597233 - first_assignment_at: 1663597233 - first_admin_reply_at: 1663597233 - first_close_at: 1663597233 - last_assignment_at: 1663597233 - last_assignment_admin_reply_at: 1663597233 - last_contact_reply_at: 1663597233 - last_admin_reply_at: 1663597233 - last_close_at: 1663597233 - last_closed_by_id: c3po - count_reopens: 1 - count_assignments: 1 - count_conversation_parts: 1 conversation_parts: type: conversation_part.list conversation_parts: @@ -27912,20 +26386,6 @@ service: data: - id: '7583' ai_agent_participated: false - ai_agent: - source_type: essentials_plan_setup - source_title: My AI Workflow - last_answer_type: ai_answer - resolution_state: assumed_resolution - rating: 4 - rating_remark: Very helpful! - content_sources: - type: content_source.list - total_count: 1 - content_sources: - - url: /fin-ai-agent/content?content=content_snippet&id=3234924 - title: My internal content snippet - locale: en updateConversation: path: /conversations/{id} method: PUT @@ -27986,17 +26446,12 @@ service: body: type: conversation id: '371' - title: Conversation Title created_at: 1719492832 updated_at: 1719492834 - waiting_since: 1663597260 - snoozed_until: 1663597260 open: false state: closed read: true priority: not_priority - admin_assignee_id: 0 - team_assignee_id: '5017691' tags: type: tag.list tags: @@ -28004,17 +26459,6 @@ service: id: '123456' name: Test tag applied_at: 1663597223 - conversation_rating: - rating: 5 - remark: '' - created_at: 1671028894 - contact: - type: contact - id: 5ba682d23d7cf92bef87bfd4 - external_id: f3b87a2e09d514c6c2e79b9a - teammate: - type: contact - id: 1a2b3c source: type: conversation id: '403918259' @@ -28034,7 +26478,6 @@ service: filesize: 100 width: 100 height: 100 - url: url redacted: false contacts: type: contact.list @@ -28042,41 +26485,9 @@ service: - type: contact id: 667d60e08a68186f43bafde5 external_id: '70' - teammates: - type: admin.list - teammates: - - type: contact custom_attributes: issue_type: Billing priority: High - first_contact_reply: - created_at: 1663597223 - type: conversation - url: https://developers.intercom.com/ - sla_applied: - type: conversation_sla_summary - sla_name: '' - sla_status: hit - statistics: - type: conversation_statistics - time_to_assignment: 2310 - time_to_admin_reply: 2310 - time_to_first_close: 2310 - time_to_last_close: 2310 - median_time_to_reply: 2310 - first_contact_reply_at: 1663597233 - first_assignment_at: 1663597233 - first_admin_reply_at: 1663597233 - first_close_at: 1663597233 - last_assignment_at: 1663597233 - last_assignment_admin_reply_at: 1663597233 - last_contact_reply_at: 1663597233 - last_admin_reply_at: 1663597233 - last_close_at: 1663597233 - last_closed_by_id: c3po - count_reopens: 1 - count_assignments: 1 - count_conversation_parts: 1 conversation_parts: type: conversation_part.list conversation_parts: @@ -28130,20 +26541,6 @@ service: data: - id: '7583' ai_agent_participated: false - ai_agent: - source_type: essentials_plan_setup - source_title: My AI Workflow - last_answer_type: ai_answer - resolution_state: assumed_resolution - rating: 4 - rating_remark: Very helpful! - content_sources: - type: content_source.list - total_count: 1 - content_sources: - - url: /fin-ai-agent/content?content=content_snippet&id=3234924 - title: My internal content snippet - locale: en - name: Not found path-parameters: id: 1 @@ -28158,17 +26555,12 @@ service: body: type: conversation id: '371' - title: Conversation Title created_at: 1719492832 updated_at: 1719492834 - waiting_since: 1663597260 - snoozed_until: 1663597260 open: false state: closed read: true priority: not_priority - admin_assignee_id: 0 - team_assignee_id: '5017691' tags: type: tag.list tags: @@ -28176,17 +26568,6 @@ service: id: '123456' name: Test tag applied_at: 1663597223 - conversation_rating: - rating: 5 - remark: '' - created_at: 1671028894 - contact: - type: contact - id: 5ba682d23d7cf92bef87bfd4 - external_id: f3b87a2e09d514c6c2e79b9a - teammate: - type: contact - id: 1a2b3c source: type: conversation id: '403918259' @@ -28206,7 +26587,6 @@ service: filesize: 100 width: 100 height: 100 - url: url redacted: false contacts: type: contact.list @@ -28214,41 +26594,9 @@ service: - type: contact id: 667d60e08a68186f43bafde5 external_id: '70' - teammates: - type: admin.list - teammates: - - type: contact custom_attributes: issue_type: Billing priority: High - first_contact_reply: - created_at: 1663597223 - type: conversation - url: https://developers.intercom.com/ - sla_applied: - type: conversation_sla_summary - sla_name: '' - sla_status: hit - statistics: - type: conversation_statistics - time_to_assignment: 2310 - time_to_admin_reply: 2310 - time_to_first_close: 2310 - time_to_last_close: 2310 - median_time_to_reply: 2310 - first_contact_reply_at: 1663597233 - first_assignment_at: 1663597233 - first_admin_reply_at: 1663597233 - first_close_at: 1663597233 - last_assignment_at: 1663597233 - last_assignment_admin_reply_at: 1663597233 - last_contact_reply_at: 1663597233 - last_admin_reply_at: 1663597233 - last_close_at: 1663597233 - last_closed_by_id: c3po - count_reopens: 1 - count_assignments: 1 - count_conversation_parts: 1 conversation_parts: type: conversation_part.list conversation_parts: @@ -28302,20 +26650,6 @@ service: data: - id: '7583' ai_agent_participated: false - ai_agent: - source_type: essentials_plan_setup - source_title: My AI Workflow - last_answer_type: ai_answer - resolution_state: assumed_resolution - rating: 4 - rating_remark: Very helpful! - content_sources: - type: content_source.list - total_count: 1 - content_sources: - - url: /fin-ai-agent/content?content=content_snippet&id=3234924 - title: My internal content snippet - locale: en searchConversations: path: /conversations/search method: POST @@ -28667,17 +27001,12 @@ service: conversations: - type: conversation id: '378' - title: Conversation Title created_at: 1719492843 updated_at: 1719492843 - waiting_since: 1663597260 - snoozed_until: 1663597260 open: false state: closed read: false priority: not_priority - admin_assignee_id: 0 - team_assignee_id: '5017691' tags: type: tag.list tags: @@ -28685,10 +27014,6 @@ service: id: '123456' name: Test tag applied_at: 1663597223 - conversation_rating: - rating: 5 - remark: '' - created_at: 1671028894 source: type: conversation id: '403918266' @@ -28715,36 +27040,8 @@ service: - type: contact id: 667d60ea8a68186f43bafdec external_id: '70' - teammates: - type: admin.list custom_attributes: key: value - first_contact_reply: - created_at: 1663597223 - type: conversation - sla_applied: - type: conversation_sla_summary - sla_name: '' - statistics: - type: conversation_statistics - time_to_assignment: 2310 - time_to_admin_reply: 2310 - time_to_first_close: 2310 - time_to_last_close: 2310 - median_time_to_reply: 2310 - first_contact_reply_at: 1663597233 - first_assignment_at: 1663597233 - first_admin_reply_at: 1663597233 - first_close_at: 1663597233 - last_assignment_at: 1663597233 - last_assignment_admin_reply_at: 1663597233 - last_contact_reply_at: 1663597233 - last_admin_reply_at: 1663597233 - last_close_at: 1663597233 - last_closed_by_id: c3po - count_reopens: 1 - count_assignments: 1 - count_conversation_parts: 1 conversation_parts: total_count: 2 linked_objects: @@ -28802,17 +27099,13 @@ service: body: type: conversation id: '387' - title: Conversation Title created_at: 1719492849 updated_at: 1719492850 waiting_since: 1719492850 - snoozed_until: 1663597260 open: true state: open read: false priority: not_priority - admin_assignee_id: 0 - team_assignee_id: '5017691' tags: type: tag.list tags: @@ -28820,17 +27113,6 @@ service: id: '123456' name: Test tag applied_at: 1663597223 - conversation_rating: - rating: 5 - remark: '' - created_at: 1671028894 - contact: - type: contact - id: 5ba682d23d7cf92bef87bfd4 - external_id: f3b87a2e09d514c6c2e79b9a - teammate: - type: contact - id: 1a2b3c source: type: conversation id: '403918269' @@ -28850,7 +27132,6 @@ service: filesize: 100 width: 100 height: 100 - url: url redacted: false contacts: type: contact.list @@ -28858,40 +27139,11 @@ service: - type: contact id: 667d60f18a68186f43bafdf4 external_id: '70' - teammates: - type: admin.list - teammates: - - type: contact custom_attributes: key: value first_contact_reply: created_at: 1719492850 type: conversation - url: https://developers.intercom.com/ - sla_applied: - type: conversation_sla_summary - sla_name: '' - sla_status: hit - statistics: - type: conversation_statistics - time_to_assignment: 2310 - time_to_admin_reply: 2310 - time_to_first_close: 2310 - time_to_last_close: 2310 - median_time_to_reply: 2310 - first_contact_reply_at: 1663597233 - first_assignment_at: 1663597233 - first_admin_reply_at: 1663597233 - first_close_at: 1663597233 - last_assignment_at: 1663597233 - last_assignment_admin_reply_at: 1663597233 - last_contact_reply_at: 1663597233 - last_admin_reply_at: 1663597233 - last_close_at: 1663597233 - last_closed_by_id: c3po - count_reopens: 1 - count_assignments: 1 - count_conversation_parts: 1 conversation_parts: type: conversation_part.list conversation_parts: @@ -28924,20 +27176,6 @@ service: data: - id: '7583' ai_agent_participated: false - ai_agent: - source_type: essentials_plan_setup - source_title: My AI Workflow - last_answer_type: ai_answer - resolution_state: assumed_resolution - rating: 4 - rating_remark: Very helpful! - content_sources: - type: content_source.list - total_count: 1 - content_sources: - - url: /fin-ai-agent/content?content=content_snippet&id=3234924 - title: My internal content snippet - locale: en - name: Admin note reply path-parameters: id: 123 or "last" @@ -28954,17 +27192,12 @@ service: body: type: conversation id: '388' - title: Conversation Title created_at: 1719492852 updated_at: 1719492853 - waiting_since: 1663597260 - snoozed_until: 1663597260 open: false state: closed read: false priority: not_priority - admin_assignee_id: 0 - team_assignee_id: '5017691' tags: type: tag.list tags: @@ -28972,17 +27205,6 @@ service: id: '123456' name: Test tag applied_at: 1663597223 - conversation_rating: - rating: 5 - remark: '' - created_at: 1671028894 - contact: - type: contact - id: 5ba682d23d7cf92bef87bfd4 - external_id: f3b87a2e09d514c6c2e79b9a - teammate: - type: contact - id: 1a2b3c source: type: conversation id: '403918270' @@ -29002,7 +27224,6 @@ service: filesize: 100 width: 100 height: 100 - url: url redacted: false contacts: type: contact.list @@ -29010,40 +27231,8 @@ service: - type: contact id: 667d60f38a68186f43bafdf5 external_id: '70' - teammates: - type: admin.list - teammates: - - type: contact custom_attributes: key: value - first_contact_reply: - created_at: 1663597223 - type: conversation - url: https://developers.intercom.com/ - sla_applied: - type: conversation_sla_summary - sla_name: '' - sla_status: hit - statistics: - type: conversation_statistics - time_to_assignment: 2310 - time_to_admin_reply: 2310 - time_to_first_close: 2310 - time_to_last_close: 2310 - median_time_to_reply: 2310 - first_contact_reply_at: 1663597233 - first_assignment_at: 1663597233 - first_admin_reply_at: 1663597233 - first_close_at: 1663597233 - last_assignment_at: 1663597233 - last_assignment_admin_reply_at: 1663597233 - last_contact_reply_at: 1663597233 - last_admin_reply_at: 1663597233 - last_close_at: 1663597233 - last_closed_by_id: c3po - count_reopens: 1 - count_assignments: 1 - count_conversation_parts: 1 conversation_parts: type: conversation_part.list conversation_parts: @@ -29088,20 +27277,6 @@ service: data: - id: '7583' ai_agent_participated: false - ai_agent: - source_type: essentials_plan_setup - source_title: My AI Workflow - last_answer_type: ai_answer - resolution_state: assumed_resolution - rating: 4 - rating_remark: Very helpful! - content_sources: - type: content_source.list - total_count: 1 - content_sources: - - url: /fin-ai-agent/content?content=content_snippet&id=3234924 - title: My internal content snippet - locale: en - name: User last conversation reply path-parameters: id: 123 or "last" @@ -29114,17 +27289,13 @@ service: body: type: conversation id: '390' - title: Conversation Title created_at: 1719492855 updated_at: 1719492856 waiting_since: 1719492856 - snoozed_until: 1663597260 open: true state: open read: false priority: not_priority - admin_assignee_id: 0 - team_assignee_id: '5017691' tags: type: tag.list tags: @@ -29132,17 +27303,6 @@ service: id: '123456' name: Test tag applied_at: 1663597223 - conversation_rating: - rating: 5 - remark: '' - created_at: 1671028894 - contact: - type: contact - id: 5ba682d23d7cf92bef87bfd4 - external_id: f3b87a2e09d514c6c2e79b9a - teammate: - type: contact - id: 1a2b3c source: type: conversation id: '403918272' @@ -29162,7 +27322,6 @@ service: filesize: 100 width: 100 height: 100 - url: url redacted: false contacts: type: contact.list @@ -29170,40 +27329,11 @@ service: - type: contact id: 667d60f78a68186f43bafdf7 external_id: '70' - teammates: - type: admin.list - teammates: - - type: contact custom_attributes: key: value first_contact_reply: created_at: 1719492856 type: conversation - url: https://developers.intercom.com/ - sla_applied: - type: conversation_sla_summary - sla_name: '' - sla_status: hit - statistics: - type: conversation_statistics - time_to_assignment: 2310 - time_to_admin_reply: 2310 - time_to_first_close: 2310 - time_to_last_close: 2310 - median_time_to_reply: 2310 - first_contact_reply_at: 1663597233 - first_assignment_at: 1663597233 - first_admin_reply_at: 1663597233 - first_close_at: 1663597233 - last_assignment_at: 1663597233 - last_assignment_admin_reply_at: 1663597233 - last_contact_reply_at: 1663597233 - last_admin_reply_at: 1663597233 - last_close_at: 1663597233 - last_closed_by_id: c3po - count_reopens: 1 - count_assignments: 1 - count_conversation_parts: 1 conversation_parts: type: conversation_part.list conversation_parts: @@ -29236,20 +27366,6 @@ service: data: - id: '7583' ai_agent_participated: false - ai_agent: - source_type: essentials_plan_setup - source_title: My AI Workflow - last_answer_type: ai_answer - resolution_state: assumed_resolution - rating: 4 - rating_remark: Very helpful! - content_sources: - type: content_source.list - total_count: 1 - content_sources: - - url: /fin-ai-agent/content?content=content_snippet&id=3234924 - title: My internal content snippet - locale: en - name: Not found path-parameters: id: 123 or "last" @@ -29262,17 +27378,13 @@ service: body: type: conversation id: '387' - title: Conversation Title created_at: 1719492849 updated_at: 1719492850 waiting_since: 1719492850 - snoozed_until: 1663597260 open: true state: open read: false priority: not_priority - admin_assignee_id: 0 - team_assignee_id: '5017691' tags: type: tag.list tags: @@ -29280,17 +27392,6 @@ service: id: '123456' name: Test tag applied_at: 1663597223 - conversation_rating: - rating: 5 - remark: '' - created_at: 1671028894 - contact: - type: contact - id: 5ba682d23d7cf92bef87bfd4 - external_id: f3b87a2e09d514c6c2e79b9a - teammate: - type: contact - id: 1a2b3c source: type: conversation id: '403918269' @@ -29310,7 +27411,6 @@ service: filesize: 100 width: 100 height: 100 - url: url redacted: false contacts: type: contact.list @@ -29318,40 +27418,11 @@ service: - type: contact id: 667d60f18a68186f43bafdf4 external_id: '70' - teammates: - type: admin.list - teammates: - - type: contact custom_attributes: key: value first_contact_reply: created_at: 1719492850 type: conversation - url: https://developers.intercom.com/ - sla_applied: - type: conversation_sla_summary - sla_name: '' - sla_status: hit - statistics: - type: conversation_statistics - time_to_assignment: 2310 - time_to_admin_reply: 2310 - time_to_first_close: 2310 - time_to_last_close: 2310 - median_time_to_reply: 2310 - first_contact_reply_at: 1663597233 - first_assignment_at: 1663597233 - first_admin_reply_at: 1663597233 - first_close_at: 1663597233 - last_assignment_at: 1663597233 - last_assignment_admin_reply_at: 1663597233 - last_contact_reply_at: 1663597233 - last_admin_reply_at: 1663597233 - last_close_at: 1663597233 - last_closed_by_id: c3po - count_reopens: 1 - count_assignments: 1 - count_conversation_parts: 1 conversation_parts: type: conversation_part.list conversation_parts: @@ -29384,20 +27455,6 @@ service: data: - id: '7583' ai_agent_participated: false - ai_agent: - source_type: essentials_plan_setup - source_title: My AI Workflow - last_answer_type: ai_answer - resolution_state: assumed_resolution - rating: 4 - rating_remark: Very helpful! - content_sources: - type: content_source.list - total_count: 1 - content_sources: - - url: /fin-ai-agent/content?content=content_snippet&id=3234924 - title: My internal content snippet - locale: en manageConversation: path: /conversations/{id}/parts method: POST @@ -29439,17 +27496,12 @@ service: body: type: conversation id: '394' - title: Conversation Title created_at: 1719492862 updated_at: 1719492862 - waiting_since: 1663597260 - snoozed_until: 1663597260 open: false state: closed read: false priority: not_priority - admin_assignee_id: 0 - team_assignee_id: '5017691' tags: type: tag.list tags: @@ -29457,17 +27509,6 @@ service: id: '123456' name: Test tag applied_at: 1663597223 - conversation_rating: - rating: 5 - remark: '' - created_at: 1671028894 - contact: - type: contact - id: 5ba682d23d7cf92bef87bfd4 - external_id: f3b87a2e09d514c6c2e79b9a - teammate: - type: contact - id: 1a2b3c source: type: conversation id: '403918276' @@ -29487,7 +27528,6 @@ service: filesize: 100 width: 100 height: 100 - url: url redacted: false contacts: type: contact.list @@ -29495,40 +27535,8 @@ service: - type: contact id: 667d60fd8a68186f43bafdfb external_id: '70' - teammates: - type: admin.list - teammates: - - type: contact custom_attributes: key: value - first_contact_reply: - created_at: 1663597223 - type: conversation - url: https://developers.intercom.com/ - sla_applied: - type: conversation_sla_summary - sla_name: '' - sla_status: hit - statistics: - type: conversation_statistics - time_to_assignment: 2310 - time_to_admin_reply: 2310 - time_to_first_close: 2310 - time_to_last_close: 2310 - median_time_to_reply: 2310 - first_contact_reply_at: 1663597233 - first_assignment_at: 1663597233 - first_admin_reply_at: 1663597233 - first_close_at: 1663597233 - last_assignment_at: 1663597233 - last_assignment_admin_reply_at: 1663597233 - last_contact_reply_at: 1663597233 - last_admin_reply_at: 1663597233 - last_close_at: 1663597233 - last_closed_by_id: c3po - count_reopens: 1 - count_assignments: 1 - count_conversation_parts: 1 conversation_parts: type: conversation_part.list conversation_parts: @@ -29561,20 +27569,6 @@ service: data: - id: '7583' ai_agent_participated: false - ai_agent: - source_type: essentials_plan_setup - source_title: My AI Workflow - last_answer_type: ai_answer - resolution_state: assumed_resolution - rating: 4 - rating_remark: Very helpful! - content_sources: - type: content_source.list - total_count: 1 - content_sources: - - url: /fin-ai-agent/content?content=content_snippet&id=3234924 - title: My internal content snippet - locale: en - name: Snooze a conversation path-parameters: id: '123' @@ -29588,17 +27582,13 @@ service: body: type: conversation id: '395' - title: Conversation Title created_at: 1719492864 updated_at: 1719492864 - waiting_since: 1663597260 snoozed_until: 1719496464 open: true state: snoozed read: false priority: not_priority - admin_assignee_id: 0 - team_assignee_id: '5017691' tags: type: tag.list tags: @@ -29606,17 +27596,6 @@ service: id: '123456' name: Test tag applied_at: 1663597223 - conversation_rating: - rating: 5 - remark: '' - created_at: 1671028894 - contact: - type: contact - id: 5ba682d23d7cf92bef87bfd4 - external_id: f3b87a2e09d514c6c2e79b9a - teammate: - type: contact - id: 1a2b3c source: type: conversation id: '403918277' @@ -29636,7 +27615,6 @@ service: filesize: 100 width: 100 height: 100 - url: url redacted: false contacts: type: contact.list @@ -29644,40 +27622,8 @@ service: - type: contact id: 667d60ff8a68186f43bafdfc external_id: '70' - teammates: - type: admin.list - teammates: - - type: contact custom_attributes: key: value - first_contact_reply: - created_at: 1663597223 - type: conversation - url: https://developers.intercom.com/ - sla_applied: - type: conversation_sla_summary - sla_name: '' - sla_status: hit - statistics: - type: conversation_statistics - time_to_assignment: 2310 - time_to_admin_reply: 2310 - time_to_first_close: 2310 - time_to_last_close: 2310 - median_time_to_reply: 2310 - first_contact_reply_at: 1663597233 - first_assignment_at: 1663597233 - first_admin_reply_at: 1663597233 - first_close_at: 1663597233 - last_assignment_at: 1663597233 - last_assignment_admin_reply_at: 1663597233 - last_contact_reply_at: 1663597233 - last_admin_reply_at: 1663597233 - last_close_at: 1663597233 - last_closed_by_id: c3po - count_reopens: 1 - count_assignments: 1 - count_conversation_parts: 1 conversation_parts: type: conversation_part.list conversation_parts: @@ -29709,20 +27655,6 @@ service: data: - id: '7583' ai_agent_participated: false - ai_agent: - source_type: essentials_plan_setup - source_title: My AI Workflow - last_answer_type: ai_answer - resolution_state: assumed_resolution - rating: 4 - rating_remark: Very helpful! - content_sources: - type: content_source.list - total_count: 1 - content_sources: - - url: /fin-ai-agent/content?content=content_snippet&id=3234924 - title: My internal content snippet - locale: en - name: Open a conversation path-parameters: id: '123' @@ -29739,14 +27671,10 @@ service: title: '' created_at: 1719492863 updated_at: 1719492873 - waiting_since: 1663597260 - snoozed_until: 1663597260 open: true state: open read: true priority: not_priority - admin_assignee_id: 0 - team_assignee_id: '5017691' tags: type: tag.list tags: @@ -29754,17 +27682,6 @@ service: id: '123456' name: Test tag applied_at: 1663597223 - conversation_rating: - rating: 5 - remark: '' - created_at: 1671028894 - contact: - type: contact - id: 5ba682d23d7cf92bef87bfd4 - external_id: f3b87a2e09d514c6c2e79b9a - teammate: - type: contact - id: 1a2b3c source: type: conversation id: '403918278' @@ -29784,7 +27701,6 @@ service: filesize: 100 width: 100 height: 100 - url: url redacted: false contacts: type: contact.list @@ -29792,40 +27708,8 @@ service: - type: contact id: 667d61038a68186f43bafe01 external_id: '74' - teammates: - type: admin.list - teammates: - - type: contact custom_attributes: key: value - first_contact_reply: - created_at: 1663597223 - type: conversation - url: https://developers.intercom.com/ - sla_applied: - type: conversation_sla_summary - sla_name: '' - sla_status: hit - statistics: - type: conversation_statistics - time_to_assignment: 2310 - time_to_admin_reply: 2310 - time_to_first_close: 2310 - time_to_last_close: 2310 - median_time_to_reply: 2310 - first_contact_reply_at: 1663597233 - first_assignment_at: 1663597233 - first_admin_reply_at: 1663597233 - first_close_at: 1663597233 - last_assignment_at: 1663597233 - last_assignment_admin_reply_at: 1663597233 - last_contact_reply_at: 1663597233 - last_admin_reply_at: 1663597233 - last_close_at: 1663597233 - last_closed_by_id: c3po - count_reopens: 1 - count_assignments: 1 - count_conversation_parts: 1 conversation_parts: type: conversation_part.list conversation_parts: @@ -29857,20 +27741,6 @@ service: data: - id: '7583' ai_agent_participated: false - ai_agent: - source_type: essentials_plan_setup - source_title: My AI Workflow - last_answer_type: ai_answer - resolution_state: assumed_resolution - rating: 4 - rating_remark: Very helpful! - content_sources: - type: content_source.list - total_count: 1 - content_sources: - - url: /fin-ai-agent/content?content=content_snippet&id=3234924 - title: My internal content snippet - locale: en - name: Assign a conversation path-parameters: id: '123' @@ -29884,17 +27754,13 @@ service: body: type: conversation id: '405' - title: Conversation Title created_at: 1719492874 updated_at: 1719492875 - waiting_since: 1663597260 - snoozed_until: 1663597260 open: true state: open read: false priority: not_priority admin_assignee_id: 991267615 - team_assignee_id: '5017691' tags: type: tag.list tags: @@ -29902,17 +27768,6 @@ service: id: '123456' name: Test tag applied_at: 1663597223 - conversation_rating: - rating: 5 - remark: '' - created_at: 1671028894 - contact: - type: contact - id: 5ba682d23d7cf92bef87bfd4 - external_id: f3b87a2e09d514c6c2e79b9a - teammate: - type: contact - id: 1a2b3c source: type: conversation id: '403918281' @@ -29932,7 +27787,6 @@ service: filesize: 100 width: 100 height: 100 - url: url redacted: false contacts: type: contact.list @@ -29940,40 +27794,8 @@ service: - type: contact id: 667d610a8a68186f43bafe05 external_id: '70' - teammates: - type: admin.list - teammates: - - type: contact custom_attributes: key: value - first_contact_reply: - created_at: 1663597223 - type: conversation - url: https://developers.intercom.com/ - sla_applied: - type: conversation_sla_summary - sla_name: '' - sla_status: hit - statistics: - type: conversation_statistics - time_to_assignment: 2310 - time_to_admin_reply: 2310 - time_to_first_close: 2310 - time_to_last_close: 2310 - median_time_to_reply: 2310 - first_contact_reply_at: 1663597233 - first_assignment_at: 1663597233 - first_admin_reply_at: 1663597233 - first_close_at: 1663597233 - last_assignment_at: 1663597233 - last_assignment_admin_reply_at: 1663597233 - last_contact_reply_at: 1663597233 - last_admin_reply_at: 1663597233 - last_close_at: 1663597233 - last_closed_by_id: c3po - count_reopens: 1 - count_assignments: 1 - count_conversation_parts: 1 conversation_parts: type: conversation_part.list conversation_parts: @@ -30008,20 +27830,6 @@ service: data: - id: '7583' ai_agent_participated: false - ai_agent: - source_type: essentials_plan_setup - source_title: My AI Workflow - last_answer_type: ai_answer - resolution_state: assumed_resolution - rating: 4 - rating_remark: Very helpful! - content_sources: - type: content_source.list - total_count: 1 - content_sources: - - url: /fin-ai-agent/content?content=content_snippet&id=3234924 - title: My internal content snippet - locale: en - name: Not found path-parameters: id: '123' @@ -30035,17 +27843,12 @@ service: body: type: conversation id: '394' - title: Conversation Title created_at: 1719492862 updated_at: 1719492862 - waiting_since: 1663597260 - snoozed_until: 1663597260 open: false state: closed read: false priority: not_priority - admin_assignee_id: 0 - team_assignee_id: '5017691' tags: type: tag.list tags: @@ -30053,17 +27856,6 @@ service: id: '123456' name: Test tag applied_at: 1663597223 - conversation_rating: - rating: 5 - remark: '' - created_at: 1671028894 - contact: - type: contact - id: 5ba682d23d7cf92bef87bfd4 - external_id: f3b87a2e09d514c6c2e79b9a - teammate: - type: contact - id: 1a2b3c source: type: conversation id: '403918276' @@ -30083,7 +27875,6 @@ service: filesize: 100 width: 100 height: 100 - url: url redacted: false contacts: type: contact.list @@ -30091,40 +27882,8 @@ service: - type: contact id: 667d60fd8a68186f43bafdfb external_id: '70' - teammates: - type: admin.list - teammates: - - type: contact custom_attributes: key: value - first_contact_reply: - created_at: 1663597223 - type: conversation - url: https://developers.intercom.com/ - sla_applied: - type: conversation_sla_summary - sla_name: '' - sla_status: hit - statistics: - type: conversation_statistics - time_to_assignment: 2310 - time_to_admin_reply: 2310 - time_to_first_close: 2310 - time_to_last_close: 2310 - median_time_to_reply: 2310 - first_contact_reply_at: 1663597233 - first_assignment_at: 1663597233 - first_admin_reply_at: 1663597233 - first_close_at: 1663597233 - last_assignment_at: 1663597233 - last_assignment_admin_reply_at: 1663597233 - last_contact_reply_at: 1663597233 - last_admin_reply_at: 1663597233 - last_close_at: 1663597233 - last_closed_by_id: c3po - count_reopens: 1 - count_assignments: 1 - count_conversation_parts: 1 conversation_parts: type: conversation_part.list conversation_parts: @@ -30157,20 +27916,6 @@ service: data: - id: '7583' ai_agent_participated: false - ai_agent: - source_type: essentials_plan_setup - source_title: My AI Workflow - last_answer_type: ai_answer - resolution_state: assumed_resolution - rating: 4 - rating_remark: Very helpful! - content_sources: - type: content_source.list - total_count: 1 - content_sources: - - url: /fin-ai-agent/content?content=content_snippet&id=3234924 - title: My internal content snippet - locale: en autoAssignConversation: path: /conversations/{id}/run_assignment_rules method: POST @@ -30206,17 +27951,12 @@ service: body: type: conversation id: '409' - title: Conversation Title created_at: 1719492880 updated_at: 1719492881 - waiting_since: 1663597260 - snoozed_until: 1663597260 open: false state: closed read: false priority: not_priority - admin_assignee_id: 0 - team_assignee_id: '5017691' tags: type: tag.list tags: @@ -30224,17 +27964,6 @@ service: id: '123456' name: Test tag applied_at: 1663597223 - conversation_rating: - rating: 5 - remark: '' - created_at: 1671028894 - contact: - type: contact - id: 5ba682d23d7cf92bef87bfd4 - external_id: f3b87a2e09d514c6c2e79b9a - teammate: - type: contact - id: 1a2b3c source: type: conversation id: '403918285' @@ -30254,7 +27983,6 @@ service: filesize: 100 width: 100 height: 100 - url: url redacted: false contacts: type: contact.list @@ -30262,40 +27990,8 @@ service: - type: contact id: 667d61108a68186f43bafe09 external_id: '70' - teammates: - type: admin.list - teammates: - - type: contact custom_attributes: key: value - first_contact_reply: - created_at: 1663597223 - type: conversation - url: https://developers.intercom.com/ - sla_applied: - type: conversation_sla_summary - sla_name: '' - sla_status: hit - statistics: - type: conversation_statistics - time_to_assignment: 2310 - time_to_admin_reply: 2310 - time_to_first_close: 2310 - time_to_last_close: 2310 - median_time_to_reply: 2310 - first_contact_reply_at: 1663597233 - first_assignment_at: 1663597233 - first_admin_reply_at: 1663597233 - first_close_at: 1663597233 - last_assignment_at: 1663597233 - last_assignment_admin_reply_at: 1663597233 - last_contact_reply_at: 1663597233 - last_admin_reply_at: 1663597233 - last_close_at: 1663597233 - last_closed_by_id: c3po - count_reopens: 1 - count_assignments: 1 - count_conversation_parts: 1 conversation_parts: type: conversation_part.list conversation_parts: @@ -30330,20 +28026,6 @@ service: data: - id: '7583' ai_agent_participated: false - ai_agent: - source_type: essentials_plan_setup - source_title: My AI Workflow - last_answer_type: ai_answer - resolution_state: assumed_resolution - rating: 4 - rating_remark: Very helpful! - content_sources: - type: content_source.list - total_count: 1 - content_sources: - - url: /fin-ai-agent/content?content=content_snippet&id=3234924 - title: My internal content snippet - locale: en attachContactToConversation: path: /conversations/{id}/customers method: POST @@ -31252,17 +28934,13 @@ service: body: type: conversation id: '471' - title: Conversation Title created_at: 1719492938 updated_at: 1719492940 waiting_since: 1719492939 - snoozed_until: 1663597260 open: true state: open read: true priority: not_priority - admin_assignee_id: 0 - team_assignee_id: '5017691' tags: type: tag.list tags: @@ -31270,17 +28948,6 @@ service: id: '123456' name: Test tag applied_at: 1663597223 - conversation_rating: - rating: 5 - remark: '' - created_at: 1671028894 - contact: - type: contact - id: 5ba682d23d7cf92bef87bfd4 - external_id: f3b87a2e09d514c6c2e79b9a - teammate: - type: contact - id: 1a2b3c source: type: conversation id: '403918311' @@ -31300,7 +28967,6 @@ service: filesize: 100 width: 100 height: 100 - url: url redacted: false contacts: type: contact.list @@ -31308,40 +28974,11 @@ service: - type: contact id: 667d614a8a68186f43bafe42 external_id: '70' - teammates: - type: admin.list - teammates: - - type: contact custom_attributes: key: value first_contact_reply: created_at: 1719492939 type: conversation - url: https://developers.intercom.com/ - sla_applied: - type: conversation_sla_summary - sla_name: '' - sla_status: hit - statistics: - type: conversation_statistics - time_to_assignment: 2310 - time_to_admin_reply: 2310 - time_to_first_close: 2310 - time_to_last_close: 2310 - median_time_to_reply: 2310 - first_contact_reply_at: 1663597233 - first_assignment_at: 1663597233 - first_admin_reply_at: 1663597233 - first_close_at: 1663597233 - last_assignment_at: 1663597233 - last_assignment_admin_reply_at: 1663597233 - last_contact_reply_at: 1663597233 - last_admin_reply_at: 1663597233 - last_close_at: 1663597233 - last_closed_by_id: c3po - count_reopens: 1 - count_assignments: 1 - count_conversation_parts: 1 conversation_parts: type: conversation_part.list conversation_parts: @@ -31374,20 +29011,6 @@ service: data: - id: '7583' ai_agent_participated: false - ai_agent: - source_type: essentials_plan_setup - source_title: My AI Workflow - last_answer_type: ai_answer - resolution_state: assumed_resolution - rating: 4 - rating_remark: Very helpful! - content_sources: - type: content_source.list - total_count: 1 - content_sources: - - url: /fin-ai-agent/content?content=content_snippet&id=3234924 - title: My internal content snippet - locale: en - name: Not found request: type: conversation_part @@ -31397,17 +29020,13 @@ service: body: type: conversation id: '471' - title: Conversation Title created_at: 1719492938 updated_at: 1719492940 waiting_since: 1719492939 - snoozed_until: 1663597260 open: true state: open read: true priority: not_priority - admin_assignee_id: 0 - team_assignee_id: '5017691' tags: type: tag.list tags: @@ -31415,17 +29034,6 @@ service: id: '123456' name: Test tag applied_at: 1663597223 - conversation_rating: - rating: 5 - remark: '' - created_at: 1671028894 - contact: - type: contact - id: 5ba682d23d7cf92bef87bfd4 - external_id: f3b87a2e09d514c6c2e79b9a - teammate: - type: contact - id: 1a2b3c source: type: conversation id: '403918311' @@ -31445,7 +29053,6 @@ service: filesize: 100 width: 100 height: 100 - url: url redacted: false contacts: type: contact.list @@ -31453,40 +29060,11 @@ service: - type: contact id: 667d614a8a68186f43bafe42 external_id: '70' - teammates: - type: admin.list - teammates: - - type: contact custom_attributes: key: value first_contact_reply: created_at: 1719492939 type: conversation - url: https://developers.intercom.com/ - sla_applied: - type: conversation_sla_summary - sla_name: '' - sla_status: hit - statistics: - type: conversation_statistics - time_to_assignment: 2310 - time_to_admin_reply: 2310 - time_to_first_close: 2310 - time_to_last_close: 2310 - median_time_to_reply: 2310 - first_contact_reply_at: 1663597233 - first_assignment_at: 1663597233 - first_admin_reply_at: 1663597233 - first_close_at: 1663597233 - last_assignment_at: 1663597233 - last_assignment_admin_reply_at: 1663597233 - last_contact_reply_at: 1663597233 - last_admin_reply_at: 1663597233 - last_close_at: 1663597233 - last_closed_by_id: c3po - count_reopens: 1 - count_assignments: 1 - count_conversation_parts: 1 conversation_parts: type: conversation_part.list conversation_parts: @@ -31519,20 +29097,6 @@ service: data: - id: '7583' ai_agent_participated: false - ai_agent: - source_type: essentials_plan_setup - source_title: My AI Workflow - last_answer_type: ai_answer - resolution_state: assumed_resolution - rating: 4 - rating_remark: Very helpful! - content_sources: - type: content_source.list - total_count: 1 - content_sources: - - url: /fin-ai-agent/content?content=content_snippet&id=3234924 - title: My internal content snippet - locale: en convertConversationToTicket: path: /conversations/{id}/convert method: POST @@ -34900,7 +32464,6 @@ types: "id": "165", "name": "Thanks for everything", "order": 1, - "parent_id": "6871118", "translated_content": { "ar": { "description": " Collection description", @@ -35111,7 +32674,6 @@ types: "id": "165", "name": "Thanks for everything", "order": 1, - "parent_id": "6871118", "translated_content": { "ar": { "description": " Collection description", @@ -35413,7 +32975,6 @@ Collections will be returned in descending order on the `updated_at` attribute. "id": "159", "name": "English collection title", "order": 17, - "parent_id": "6871118", "updated_at": 1719492720, "url": "http://help-center.test/myapp-65/collection-17", "workspace_id": "this_is_an_id65_that_should_be_at_least_4", @@ -35421,8 +32982,6 @@ Collections will be returned in descending order on the `updated_at` attribute. { "created_at": 1719492720, "default_locale": "en", - "description": "Default language description", - "help_center_id": 1, "icon": "bookmark", "id": "160", "name": "English section title", @@ -35523,7 +33082,6 @@ Collections will be returned in descending order on the `updated_at` attribute. "id": "170", "name": "English collection title", "order": 22, - "parent_id": "6871118", "translated_content": { "ar": { "description": " Collection description", @@ -35807,7 +33365,6 @@ Collections will be returned in descending order on the `updated_at` attribute. "id": "176", "name": "Update collection name", "order": 25, - "parent_id": "6871118", "translated_content": { "ar": { "description": " Collection description", @@ -36020,7 +33577,6 @@ Collections will be returned in descending order on the `updated_at` attribute. "id": "176", "name": "Update collection name", "order": 25, - "parent_id": "6871118", "translated_content": { "ar": { "description": " Collection description", @@ -36432,12 +33988,10 @@ service: icon: bookmark order: 17 default_locale: en - parent_id: '6871118' help_center_id: 79 - id: '160' workspace_id: this_is_an_id65_that_should_be_at_least_4 name: English section title - description: Default language description created_at: 1719492720 updated_at: 1719492720 url: http://help-center.test/myapp-65/section-1 @@ -36445,7 +33999,6 @@ service: order: 1 default_locale: en parent_id: '159' - help_center_id: 1 createCollection: path: /help_center/collections method: POST @@ -36655,7 +34208,6 @@ service: type: group_content name: Collection name description: ' Collection description' - parent_id: '6871118' help_center_id: 81 - name: Bad Request request: @@ -36823,7 +34375,6 @@ service: type: group_content name: Collection name description: ' Collection description' - parent_id: '6871118' help_center_id: 81 retrieveCollection: path: /help_center/collections/{id} @@ -37011,7 +34562,6 @@ service: type: group_content name: Collection name description: ' Collection description' - parent_id: '6871118' help_center_id: 84 updateCollection: path: /help_center/collections/{id} @@ -37223,7 +34773,6 @@ service: type: group_content name: Collection name description: ' Collection description' - parent_id: '6871118' help_center_id: 87 - name: Collection Not Found path-parameters: @@ -37392,7 +34941,6 @@ service: type: group_content name: Collection name description: ' Collection description' - parent_id: '6871118' help_center_id: 87 deleteCollection: path: /help_center/collections/{id} @@ -38101,7 +35649,6 @@ types: "response": { "body": { "body": "

New costumes in store for this spooky season

", - "cover_image_url": "https://example.com/cover.jpg", "created_at": 1719492978, "deliver_silently": true, "id": "33", @@ -38370,7 +35917,6 @@ types: "response": { "body": { "body": "

Hello there,

", - "cover_image_url": "https://example.com/cover.jpg", "created_at": 1719492979, "deliver_silently": false, "id": "34", @@ -38481,7 +36027,6 @@ types: "response": { "body": { "body": "

New gifts in store for the jolly season

", - "cover_image_url": "https://example.com/cover.jpg", "created_at": 1719492982, "deliver_silently": false, "id": "37", @@ -38523,7 +36068,6 @@ types: "response": { "body": { "body": "

New gifts in store for the jolly season

", - "cover_image_url": "https://example.com/cover.jpg", "created_at": 1719492982, "deliver_silently": false, "id": "37", @@ -38796,7 +36340,6 @@ service: - New - Product - Update - cover_image_url: https://example.com/cover.jpg reactions: - 😆 - 😅 @@ -38838,7 +36381,6 @@ service: published_at: 1719492980 labels: - Product Update - cover_image_url: https://example.com/cover.jpg reactions: - 👍 - 👍 @@ -38892,7 +36434,6 @@ service: published_at: 1674917488 labels: - Product Update - cover_image_url: https://example.com/cover.jpg reactions: - 😝 - 😂 @@ -38922,7 +36463,6 @@ service: published_at: 1674917488 labels: - Product Update - cover_image_url: https://example.com/cover.jpg reactions: - 😝 - 😂 @@ -39455,10 +36995,6 @@ types: }, ], "pages": { - "next": { - "per_page": 2, - "starting_after": "your-cursor-from-response", - }, "page": 1, "per_page": 50, "total_pages": 1, @@ -39696,9 +37232,6 @@ service: pages: type: pages page: 1 - next: - per_page: 2 - starting_after: your-cursor-from-response per_page: 50 total_pages: 1 createNote: @@ -47203,19 +44736,6 @@ docs: Everything about your tickets }, "response": { "body": { - "android_app_name": "Intercom", - "android_app_version": "5.0.0", - "android_device": "Pixel 3", - "android_last_seen_at": 1571672154, - "android_os_version": "10", - "android_sdk_version": "28", - "avatar": { - "image_url": "https://example.org/128Wash.jpg", - "type": "avatar", - }, - "browser": "Chrome", - "browser_language": "en-US", - "browser_version": "80.0.3987.132", "companies": { "has_more": false, "total_count": 0, @@ -47227,30 +44747,13 @@ docs: Everything about your tickets }, "email": "foo@bar.com", "email_domain": "example.com", - "external_id": "f3b87a2e09d514c6c2e79b9a", "formatted_phone": "+1123456789", "has_hard_bounced": false, "id": "667d61d08a68186f43bafea2", - "ios_app_name": "Intercom", - "ios_app_version": "5.0.0", - "ios_device": "iPhone 11", - "ios_last_seen_at": 1571672154, - "ios_os_version": "13.3.1", - "ios_sdk_version": "13.3.1", - "language_override": "en", - "last_contacted_at": 1571672154, - "last_email_clicked_at": 1571672154, - "last_email_opened_at": 1571672154, - "last_replied_at": 1571672154, - "last_seen_at": 1571672154, "location": { - "city": "Dublin", - "country": "Ireland", - "region": "Dublin", "type": "location", }, "marked_email_as_spam": false, - "name": "John Doe", "notes": { "data": [ { @@ -47263,9 +44766,6 @@ docs: Everything about your tickets "total_count": 0, "url": "/contacts/667d61d08a68186f43bafea2/notes", }, - "os": "Mac OS X", - "owner_id": 123, - "phone": "+1123456789", "role": "user", "signed_up_at": 1719493072, "social_profiles": { @@ -47344,7 +44844,6 @@ docs: Everything about your tickets "anonymous": true, "app_id": "this_is_an_id677_that_should_be_at_least_", "avatar": { - "image_url": "https://example.com/avatar.png", "type": "avatar", }, "companies": { @@ -47377,7 +44876,6 @@ docs: Everything about your tickets "custom_attributes": { "key": "value", }, - "do_not_track": false, "email": "", "has_hard_bounced": false, "id": "667d61ce8a68186f43bafe9b", @@ -47393,11 +44891,6 @@ docs: Everything about your tickets "type": "location_data", }, "marked_email_as_spam": false, - "name": "Jane Doe", - "owner_id": "5169261", - "phone": "555-555-5555", - "pseudonym": "Red Duck from Dublin", - "referrer": "https://www.google.com/", "remote_created_at": 1719493070, "segments": { "segments": [ @@ -47426,11 +44919,6 @@ docs: Everything about your tickets "unsubscribed_from_emails": false, "updated_at": 1719493070, "user_id": "3ecf64d0-9ed1-4e9f-88e1-da7d6e6782f3", - "utm_campaign": "intercom-link", - "utm_content": "banner", - "utm_medium": "email", - "utm_source": "Intercom", - "utm_term": "messenger", }, }, }, @@ -47513,7 +45001,6 @@ docs: Everything about your tickets "custom_attributes": { "key": "value", }, - "do_not_track": false, "email": "", "has_hard_bounced": false, "id": "667d61cc8a68186f43bafe95", @@ -47530,10 +45017,7 @@ docs: Everything about your tickets }, "marked_email_as_spam": false, "name": "Gareth Bale", - "owner_id": "5169261", - "phone": "555-555-5555", "pseudonym": "Indigo Ghost", - "referrer": "https://www.google.com/", "remote_created_at": 1719493068, "segments": { "segments": [ @@ -47562,11 +45046,6 @@ docs: Everything about your tickets "unsubscribed_from_emails": false, "updated_at": 1719493068, "user_id": "3ecf64d0-9ed1-4e9f-88e1-da7d6e6782f3", - "utm_campaign": "intercom-link", - "utm_content": "banner", - "utm_medium": "email", - "utm_source": "Intercom", - "utm_term": "messenger", }, }, }, @@ -47614,7 +45093,6 @@ docs: Everything about your tickets "custom_attributes": { "key": "value", }, - "do_not_track": false, "email": "", "has_hard_bounced": false, "id": "667d61cc8a68186f43bafe95", @@ -47631,10 +45109,7 @@ docs: Everything about your tickets }, "marked_email_as_spam": false, "name": "Gareth Bale", - "owner_id": "5169261", - "phone": "555-555-5555", "pseudonym": "Indigo Ghost", - "referrer": "https://www.google.com/", "remote_created_at": 1719493068, "segments": { "segments": [ @@ -47663,11 +45138,6 @@ docs: Everything about your tickets "unsubscribed_from_emails": false, "updated_at": 1719493068, "user_id": "3ecf64d0-9ed1-4e9f-88e1-da7d6e6782f3", - "utm_campaign": "intercom-link", - "utm_content": "banner", - "utm_medium": "email", - "utm_source": "Intercom", - "utm_term": "messenger", }, }, }, @@ -47731,12 +45201,8 @@ service: user_id: 3ecf64d0-9ed1-4e9f-88e1-da7d6e6782f3 anonymous: true email: '' - phone: 555-555-5555 - name: Jane Doe - pseudonym: Red Duck from Dublin avatar: type: avatar - image_url: https://example.com/avatar.png app_id: this_is_an_id677_that_should_be_at_least_ companies: type: company.list @@ -47778,7 +45244,6 @@ service: type: social_profile.list social_profiles: - social_profiles - owner_id: '5169261' unsubscribed_from_emails: false marked_email_as_spam: false has_hard_bounced: false @@ -47793,13 +45258,6 @@ service: - segments custom_attributes: key: value - referrer: https://www.google.com/ - utm_campaign: intercom-link - utm_content: banner - utm_medium: email - utm_source: Intercom - utm_term: messenger - do_not_track: false updateVisitor: path: /visitors method: PUT @@ -47839,7 +45297,6 @@ service: user_id: 3ecf64d0-9ed1-4e9f-88e1-da7d6e6782f3 anonymous: true email: '' - phone: 555-555-5555 name: Gareth Bale pseudonym: Indigo Ghost avatar: @@ -47887,7 +45344,6 @@ service: type: social_profile.list social_profiles: - social_profiles - owner_id: '5169261' unsubscribed_from_emails: false marked_email_as_spam: false has_hard_bounced: false @@ -47902,13 +45358,6 @@ service: - segments custom_attributes: key: value - referrer: https://www.google.com/ - utm_campaign: intercom-link - utm_content: banner - utm_medium: email - utm_source: Intercom - utm_term: messenger - do_not_track: false - name: visitor Not Found request: user_id: fail @@ -47920,7 +45369,6 @@ service: user_id: 3ecf64d0-9ed1-4e9f-88e1-da7d6e6782f3 anonymous: true email: '' - phone: 555-555-5555 name: Gareth Bale pseudonym: Indigo Ghost avatar: @@ -47968,7 +45416,6 @@ service: type: social_profile.list social_profiles: - social_profiles - owner_id: '5169261' unsubscribed_from_emails: false marked_email_as_spam: false has_hard_bounced: false @@ -47983,13 +45430,6 @@ service: - segments custom_attributes: key: value - referrer: https://www.google.com/ - utm_campaign: intercom-link - utm_content: banner - utm_medium: email - utm_source: Intercom - utm_term: messenger - do_not_track: false convertVisitor: path: /visitors/convert method: POST @@ -48038,48 +45478,19 @@ service: body: type: contact id: 667d61d08a68186f43bafea2 - external_id: f3b87a2e09d514c6c2e79b9a workspace_id: this_is_an_id683_that_should_be_at_least_ role: user email: foo@bar.com email_domain: example.com - phone: '+1123456789' formatted_phone: '+1123456789' - name: John Doe - owner_id: 123 has_hard_bounced: false marked_email_as_spam: false unsubscribed_from_emails: false created_at: 1719493072 updated_at: 1719493072 signed_up_at: 1719493072 - last_seen_at: 1571672154 - last_replied_at: 1571672154 - last_contacted_at: 1571672154 - last_email_opened_at: 1571672154 - last_email_clicked_at: 1571672154 - language_override: en - browser: Chrome - browser_version: 80.0.3987.132 - browser_language: en-US - os: Mac OS X - android_app_name: Intercom - android_app_version: 5.0.0 - android_device: Pixel 3 - android_os_version: '10' - android_sdk_version: '28' - android_last_seen_at: 1571672154 - ios_app_name: Intercom - ios_app_version: 5.0.0 - ios_device: iPhone 11 - ios_os_version: 13.3.1 - ios_sdk_version: 13.3.1 - ios_last_seen_at: 1571672154 custom_attributes: key: value - avatar: - type: avatar - image_url: https://example.org/128Wash.jpg tags: data: - type: note @@ -48102,9 +45513,6 @@ service: has_more: false location: type: location - country: Ireland - region: Dublin - city: Dublin social_profiles: data: - type: social_profile diff --git a/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi/uploadcare.json b/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi/uploadcare.json index ef64f8ac9e5..0227feb3f08 100644 --- a/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi/uploadcare.json +++ b/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi/uploadcare.json @@ -2239,7 +2239,6 @@ Log.d("TAG", group.toString()) "body": { "cdn_url": "https://ucarecdn.com/0d712319-b970-4602-850c-bae1ced521a6~1/", "datetime_created": "2018-09-12T10:03:38Z", - "datetime_stored": "2024-01-15T09:30:00Z", "files": [ { "content_info": { @@ -2441,7 +2440,6 @@ Log.d("TAG", group.toString()) "body": { "cdn_url": "https://ucarecdn.com/0d712319-b970-4602-850c-bae1ced521a6~1/", "datetime_created": "2018-09-12T10:03:38Z", - "datetime_stored": "2024-01-15T09:30:00Z", "files": [ { "content_info": { @@ -2599,7 +2597,6 @@ service: body: id: 0d712319-b970-4602-850c-bae1ced521a6~1 datetime_created: '2018-09-12T10:03:38Z' - datetime_stored: '2024-01-15T09:30:00Z' files_count: 1 cdn_url: https://ucarecdn.com/0d712319-b970-4602-850c-bae1ced521a6~1/ url: >- @@ -2781,7 +2778,6 @@ service: body: id: 0d712319-b970-4602-850c-bae1ced521a6~1 datetime_created: '2018-09-12T10:03:38Z' - datetime_stored: '2024-01-15T09:30:00Z' files_count: 1 cdn_url: https://ucarecdn.com/0d712319-b970-4602-850c-bae1ced521a6~1/ url: >- diff --git a/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi/valtown.json b/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi/valtown.json index ca9f13d247f..2f216262394 100644 --- a/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi/valtown.json +++ b/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi/valtown.json @@ -3265,7 +3265,6 @@ docs: Search "columns": [ "id", ], - "lastInsertRowid": "lastInsertRowid", "rows": [ [ 1, @@ -3636,7 +3635,6 @@ service: rows: - - 1 rowsAffected: 0 - lastInsertRowid: lastInsertRowid source: openapi: ../openapi.yml display-name: sqlite diff --git a/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi/webflow.json b/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi/webflow.json index c36b8b86be8..99f0a8f8b63 100644 --- a/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi/webflow.json +++ b/packages/cli/api-importers/openapi/openapi-ir-to-fern-tests/src/__test__/__snapshots__/openapi/webflow.json @@ -1341,7 +1341,6 @@ service: { "displayName": "660d83ce30f3a599ddb0bdb3_Screenshot%202024-03-20%20at%209.03.24%E2%80%AFPM-p-500.png", "format": "png", - "height": 900, "hostedUrl": "https://s3.amazonaws.com/webflow-prod-assets/6258612d1ee792848f805dcf/660d83ce30f3a599ddb0bdb3_Screenshot%202024-03-20%20at%209.03.24%E2%80%AFPM-p-500.png", "originalFileName": "Screenshot%202024-03-20%20at%209.03.24%E2%80%AFPM-p-500.png", "quality": 100, @@ -1399,7 +1398,6 @@ service: "displayName": "emoji icons", "id": "6390c49774a71f0e3c1a08ee", "lastUpdated": "2022-12-07T16:51:37Z", - "parentFolder": "6390c49774a71f99f21a08eb", "siteId": "6390c49674a71f84b51a08d8", }, ], @@ -2487,7 +2485,6 @@ service: 660d83ce30f3a599ddb0bdb3_Screenshot%202024-03-20%20at%209.03.24%E2%80%AFPM-p-500.png format: png width: 500 - height: 900 quality: 100 altText: A red chair create: @@ -2717,7 +2714,6 @@ service: assetFolders: - id: 6390c49774a71f0e3c1a08ee displayName: emoji icons - parentFolder: 6390c49774a71f99f21a08eb assets: - 63e5889e7fe4eafa7384cea4 - 659595234426a9fcbad57043 @@ -2861,7 +2857,6 @@ service: "fields": [ { "displayName": "Name", - "helpText": "helpText", "id": "23cc2d952d4e4631ffd4345d2743db4e", "isEditable": true, "isRequired": true, @@ -3007,7 +3002,6 @@ service: "fields": [ { "displayName": "Name", - "helpText": "helpText", "id": "23cc2d952d4e4631ffd4345d2743db4e", "isEditable": true, "isRequired": true, @@ -3643,7 +3637,6 @@ service: type: PlainText slug: name displayName: Name - helpText: helpText get: path: /collections/{collection_id} method: GET @@ -3685,7 +3678,6 @@ service: type: PlainText slug: name displayName: Name - helpText: helpText delete-collection: path: /collections/{collection_id} method: DELETE @@ -7537,7 +7529,6 @@ service: }, "660d5bcc9c0772150459dfb1": { "displayName": "Name", - "placeholder": "Enter your email", "type": "Plain", "userVisible": true, }, @@ -7548,7 +7539,6 @@ service: "pageId": "6419db964a9c43f6a3af6348", "pageName": "Home", "responseSettings": { - "redirectAction": "POST https://example.com", "redirectMethod": "GET", "redirectUrl": "https://example.com", "sendEmailConfirmation": true, @@ -8876,7 +8866,6 @@ service: 660d5bcc9c0772150459dfb1: displayName: Name type: Plain - placeholder: Enter your email userVisible: true 589a331aa51e760df7ccb89d: displayName: Email @@ -8886,7 +8875,6 @@ service: responseSettings: redirectUrl: https://example.com redirectMethod: GET - redirectAction: POST https://example.com sendEmailConfirmation: true id: 589a331aa51e760df7ccb89e siteId: 580e63e98c9a982ac9b8b741 @@ -10206,14 +10194,6 @@ Required scope | `ecommerce:read` "orderComment": "Please gift wrap with a personal note saying "Happy Birthday, Ford! 🎉", "orderId": "fc7-128", "paymentProcessor": "stripe", - "paypalDetails": { - "captureId": "qwe123rty456uio789p", - "disputeId": "zxcvbnm987poiuytrewq", - "orderId": "1a2b3c4d5e6f7g8h9i0j", - "payerId": "9k8j7i6h5g4f3e2d1c0b", - "refundId": "abcde12345fghij67890", - "refundReason": "Customer requested refund", - }, "purchasedItems": [ { "count": 1, @@ -10299,12 +10279,10 @@ Required scope | `ecommerce:read` "stripeDetails": { "chargeId": "ch_3OzmzDJYFi4lcbXW1ndkkrH2", "customerId": "cus_PpRsNHwWdUoRKR", - "disputeId": "disputeId", "paymentIntentId": "pi_3OzmzDJYFi4lcbXW1hTBW6ft", "paymentMethod": "pm_1OzmzBJYFi4lcbXWHKNdXU7j", "refundId": "re_3OzmzDJYFi4lcbXW1kFAmlBk", "refundReason": "fraudulent", - "subscriptionId": "sub_1J6xwG2eZvKYlo2CXu9Zt0Tn", }, "totals": { "extras": [ @@ -10453,9 +10431,6 @@ Required scope | `ecommerce:read` "unit": "USD", "value": "5892", }, - "disputeLastStatus": "warning_needs_response", - "disputeUpdatedOn": "2018-12-03T22:06:15Z", - "disputedOn": "2018-12-03T22:06:15Z", "downloadFiles": [ { "id": "5e9a5eba75e0ac242e1b6f64", @@ -10463,7 +10438,6 @@ Required scope | `ecommerce:read` "url": "https://webflow.com/dashboard/download-digital-product?payload=5d93ba5e38c6b0160ab711d3;e7634a;5eb1aac72912ec06f561278c;5e9a5eba75e0ac242e1b6f63:ka2nehxy:4a1ee0a632feaab94294350087215ed89533f2f530903e3b933b638940e921aa", }, ], - "fulfilledOn": "2018-12-03T22:06:15Z", "hasDownloads": false, "isCustomerDeleted": false, "isShippingRequired": false, @@ -10478,14 +10452,6 @@ Required scope | `ecommerce:read` "orderComment": "Please gift wrap with a personal note saying "Happy Birthday, Ford! 🎉", "orderId": "7c1-9fd", "paymentProcessor": "stripe", - "paypalDetails": { - "captureId": "qwe123rty456uio789p", - "disputeId": "zxcvbnm987poiuytrewq", - "orderId": "1a2b3c4d5e6f7g8h9i0j", - "payerId": "9k8j7i6h5g4f3e2d1c0b", - "refundId": "abcde12345fghij67890", - "refundReason": "Customer requested refund", - }, "purchasedItems": [ { "count": 2, @@ -10542,7 +10508,6 @@ Required scope | `ecommerce:read` }, ], "purchasedItemsCount": 3, - "refundedOn": "2018-12-03T22:06:15Z", "shippingAddress": { "addressee": "Arthur Dent", "city": "New York", @@ -10642,9 +10607,6 @@ Required scope | `ecommerce:read` "unit": "USD", "value": "5892", }, - "disputeLastStatus": "warning_needs_response", - "disputeUpdatedOn": "2018-12-03T22:06:15Z", - "disputedOn": "2018-12-03T22:06:15Z", "downloadFiles": [ { "id": "5e9a5eba75e0ac242e1b6f64", @@ -10652,7 +10614,6 @@ Required scope | `ecommerce:read` "url": "https://webflow.com/dashboard/download-digital-product?payload=5d93ba5e38c6b0160ab711d3;e7634a;5eb1aac72912ec06f561278c;5e9a5eba75e0ac242e1b6f63:ka2nehxy:4a1ee0a632feaab94294350087215ed89533f2f530903e3b933b638940e921aa", }, ], - "fulfilledOn": "2018-12-03T22:06:15Z", "hasDownloads": false, "isCustomerDeleted": false, "isShippingRequired": true, @@ -10667,14 +10628,6 @@ Required scope | `ecommerce:read` "orderComment": "", "orderId": "fc7-128", "paymentProcessor": "stripe", - "paypalDetails": { - "captureId": "qwe123rty456uio789p", - "disputeId": "zxcvbnm987poiuytrewq", - "orderId": "1a2b3c4d5e6f7g8h9i0j", - "payerId": "9k8j7i6h5g4f3e2d1c0b", - "refundId": "abcde12345fghij67890", - "refundReason": "Customer requested refund", - }, "purchasedItems": [ { "count": 1, @@ -10961,14 +10914,6 @@ Required scope | `ecommerce:write` "orderComment": "Please gift wrap with a personal note saying "Happy Birthday, Ford! 🎉", "orderId": "fc7-128", "paymentProcessor": "stripe", - "paypalDetails": { - "captureId": "qwe123rty456uio789p", - "disputeId": "zxcvbnm987poiuytrewq", - "orderId": "1a2b3c4d5e6f7g8h9i0j", - "payerId": "9k8j7i6h5g4f3e2d1c0b", - "refundId": "abcde12345fghij67890", - "refundReason": "Customer requested refund", - }, "purchasedItems": [ { "count": 1, @@ -11054,12 +10999,10 @@ Required scope | `ecommerce:write` "stripeDetails": { "chargeId": "ch_3OzmzDJYFi4lcbXW1ndkkrH2", "customerId": "cus_PpRsNHwWdUoRKR", - "disputeId": "disputeId", "paymentIntentId": "pi_3OzmzDJYFi4lcbXW1hTBW6ft", "paymentMethod": "pm_1OzmzBJYFi4lcbXWHKNdXU7j", "refundId": "re_3OzmzDJYFi4lcbXW1kFAmlBk", "refundReason": "fraudulent", - "subscriptionId": "sub_1J6xwG2eZvKYlo2CXu9Zt0Tn", }, "totals": { "extras": [ @@ -11251,14 +11194,6 @@ Required scope | `ecommerce:write` "orderComment": "Please gift wrap with a personal note saying "Happy Birthday, Ford! 🎉", "orderId": "fc7-128", "paymentProcessor": "stripe", - "paypalDetails": { - "captureId": "qwe123rty456uio789p", - "disputeId": "zxcvbnm987poiuytrewq", - "orderId": "1a2b3c4d5e6f7g8h9i0j", - "payerId": "9k8j7i6h5g4f3e2d1c0b", - "refundId": "abcde12345fghij67890", - "refundReason": "Customer requested refund", - }, "purchasedItems": [ { "count": 1, @@ -11344,12 +11279,10 @@ Required scope | `ecommerce:write` "stripeDetails": { "chargeId": "ch_3OzmzDJYFi4lcbXW1ndkkrH2", "customerId": "cus_PpRsNHwWdUoRKR", - "disputeId": "disputeId", "paymentIntentId": "pi_3OzmzDJYFi4lcbXW1hTBW6ft", "paymentMethod": "pm_1OzmzBJYFi4lcbXWHKNdXU7j", "refundId": "re_3OzmzDJYFi4lcbXW1kFAmlBk", "refundReason": "fraudulent", - "subscriptionId": "sub_1J6xwG2eZvKYlo2CXu9Zt0Tn", }, "totals": { "extras": [ @@ -11553,14 +11486,6 @@ Required scope | `ecommerce:write` "orderComment": "Please gift wrap with a personal note saying "Happy Birthday, Ford! 🎉", "orderId": "fc7-128", "paymentProcessor": "stripe", - "paypalDetails": { - "captureId": "qwe123rty456uio789p", - "disputeId": "zxcvbnm987poiuytrewq", - "orderId": "1a2b3c4d5e6f7g8h9i0j", - "payerId": "9k8j7i6h5g4f3e2d1c0b", - "refundId": "abcde12345fghij67890", - "refundReason": "Customer requested refund", - }, "purchasedItems": [ { "count": 1, @@ -11646,12 +11571,10 @@ Required scope | `ecommerce:write` "stripeDetails": { "chargeId": "ch_3OzmzDJYFi4lcbXW1ndkkrH2", "customerId": "cus_PpRsNHwWdUoRKR", - "disputeId": "disputeId", "paymentIntentId": "pi_3OzmzDJYFi4lcbXW1hTBW6ft", "paymentMethod": "pm_1OzmzBJYFi4lcbXWHKNdXU7j", "refundId": "re_3OzmzDJYFi4lcbXW1kFAmlBk", "refundReason": "fraudulent", - "subscriptionId": "sub_1J6xwG2eZvKYlo2CXu9Zt0Tn", }, "totals": { "extras": [ @@ -11843,14 +11766,6 @@ Required scope | `ecommerce:write` "orderComment": "Please gift wrap with a personal note saying "Happy Birthday, Ford! 🎉", "orderId": "fc7-128", "paymentProcessor": "stripe", - "paypalDetails": { - "captureId": "qwe123rty456uio789p", - "disputeId": "zxcvbnm987poiuytrewq", - "orderId": "1a2b3c4d5e6f7g8h9i0j", - "payerId": "9k8j7i6h5g4f3e2d1c0b", - "refundId": "abcde12345fghij67890", - "refundReason": "Customer requested refund", - }, "purchasedItems": [ { "count": 1, @@ -11936,12 +11851,10 @@ Required scope | `ecommerce:write` "stripeDetails": { "chargeId": "ch_3OzmzDJYFi4lcbXW1ndkkrH2", "customerId": "cus_PpRsNHwWdUoRKR", - "disputeId": "disputeId", "paymentIntentId": "pi_3OzmzDJYFi4lcbXW1hTBW6ft", "paymentMethod": "pm_1OzmzBJYFi4lcbXWHKNdXU7j", "refundId": "re_3OzmzDJYFi4lcbXW1kFAmlBk", "refundReason": "fraudulent", - "subscriptionId": "sub_1J6xwG2eZvKYlo2CXu9Zt0Tn", }, "totals": { "extras": [ @@ -26169,11 +26082,6 @@ service: Please gift wrap with a personal note saying "Happy Birthday, Ford! 🎉 acceptedOn: '2024-04-10T13:16:21Z' - fulfilledOn: '2018-12-03T22:06:15Z' - refundedOn: '2018-12-03T22:06:15Z' - disputedOn: '2018-12-03T22:06:15Z' - disputeUpdatedOn: '2018-12-03T22:06:15Z' - disputeLastStatus: warning_needs_response customerPaid: unit: USD value: '5892' @@ -26289,13 +26197,6 @@ service: expires: year: 2025 month: 4 - paypalDetails: - orderId: 1a2b3c4d5e6f7g8h9i0j - payerId: 9k8j7i6h5g4f3e2d1c0b - captureId: qwe123rty456uio789p - refundId: abcde12345fghij67890 - refundReason: Customer requested refund - disputeId: zxcvbnm987poiuytrewq customData: - key: value metadata: @@ -26323,11 +26224,7 @@ service: comment: Example comment to myself orderComment: '' acceptedOn: '2024-03-29T21:29:21Z' - fulfilledOn: '2018-12-03T22:06:15Z' refundedOn: '2024-04-08T18:25:04Z' - disputedOn: '2018-12-03T22:06:15Z' - disputeUpdatedOn: '2018-12-03T22:06:15Z' - disputeLastStatus: warning_needs_response customerPaid: unit: USD value: '5892' @@ -26447,13 +26344,6 @@ service: expires: year: 2024 month: 4 - paypalDetails: - orderId: 1a2b3c4d5e6f7g8h9i0j - payerId: 9k8j7i6h5g4f3e2d1c0b - captureId: qwe123rty456uio789p - refundId: abcde12345fghij67890 - refundReason: Customer requested refund - disputeId: zxcvbnm987poiuytrewq customData: - key: value metadata: @@ -26660,12 +26550,10 @@ service: length: 40 purchasedItemsCount: 2 stripeDetails: - subscriptionId: sub_1J6xwG2eZvKYlo2CXu9Zt0Tn paymentMethod: pm_1OzmzBJYFi4lcbXWHKNdXU7j paymentIntentId: pi_3OzmzDJYFi4lcbXW1hTBW6ft customerId: cus_PpRsNHwWdUoRKR chargeId: ch_3OzmzDJYFi4lcbXW1ndkkrH2 - disputeId: disputeId refundId: re_3OzmzDJYFi4lcbXW1kFAmlBk refundReason: fraudulent stripeCard: @@ -26675,13 +26563,6 @@ service: expires: year: 2024 month: 4 - paypalDetails: - orderId: 1a2b3c4d5e6f7g8h9i0j - payerId: 9k8j7i6h5g4f3e2d1c0b - captureId: qwe123rty456uio789p - refundId: abcde12345fghij67890 - refundReason: Customer requested refund - disputeId: zxcvbnm987poiuytrewq customData: - key: value metadata: @@ -26903,12 +26784,10 @@ service: length: 40 purchasedItemsCount: 2 stripeDetails: - subscriptionId: sub_1J6xwG2eZvKYlo2CXu9Zt0Tn paymentMethod: pm_1OzmzBJYFi4lcbXWHKNdXU7j paymentIntentId: pi_3OzmzDJYFi4lcbXW1hTBW6ft customerId: cus_PpRsNHwWdUoRKR chargeId: ch_3OzmzDJYFi4lcbXW1ndkkrH2 - disputeId: disputeId refundId: re_3OzmzDJYFi4lcbXW1kFAmlBk refundReason: fraudulent stripeCard: @@ -26918,13 +26797,6 @@ service: expires: year: 2024 month: 4 - paypalDetails: - orderId: 1a2b3c4d5e6f7g8h9i0j - payerId: 9k8j7i6h5g4f3e2d1c0b - captureId: qwe123rty456uio789p - refundId: abcde12345fghij67890 - refundReason: Customer requested refund - disputeId: zxcvbnm987poiuytrewq customData: - key: value metadata: @@ -27135,12 +27007,10 @@ service: length: 40 purchasedItemsCount: 2 stripeDetails: - subscriptionId: sub_1J6xwG2eZvKYlo2CXu9Zt0Tn paymentMethod: pm_1OzmzBJYFi4lcbXWHKNdXU7j paymentIntentId: pi_3OzmzDJYFi4lcbXW1hTBW6ft customerId: cus_PpRsNHwWdUoRKR chargeId: ch_3OzmzDJYFi4lcbXW1ndkkrH2 - disputeId: disputeId refundId: re_3OzmzDJYFi4lcbXW1kFAmlBk refundReason: fraudulent stripeCard: @@ -27150,13 +27020,6 @@ service: expires: year: 2024 month: 4 - paypalDetails: - orderId: 1a2b3c4d5e6f7g8h9i0j - payerId: 9k8j7i6h5g4f3e2d1c0b - captureId: qwe123rty456uio789p - refundId: abcde12345fghij67890 - refundReason: Customer requested refund - disputeId: zxcvbnm987poiuytrewq customData: - key: value metadata: @@ -27357,12 +27220,10 @@ service: length: 40 purchasedItemsCount: 2 stripeDetails: - subscriptionId: sub_1J6xwG2eZvKYlo2CXu9Zt0Tn paymentMethod: pm_1OzmzBJYFi4lcbXWHKNdXU7j paymentIntentId: pi_3OzmzDJYFi4lcbXW1hTBW6ft customerId: cus_PpRsNHwWdUoRKR chargeId: ch_3OzmzDJYFi4lcbXW1ndkkrH2 - disputeId: disputeId refundId: re_3OzmzDJYFi4lcbXW1kFAmlBk refundReason: fraudulent stripeCard: @@ -27372,13 +27233,6 @@ service: expires: year: 2024 month: 4 - paypalDetails: - orderId: 1a2b3c4d5e6f7g8h9i0j - payerId: 9k8j7i6h5g4f3e2d1c0b - captureId: qwe123rty456uio789p - refundId: abcde12345fghij67890 - refundReason: Customer requested refund - disputeId: zxcvbnm987poiuytrewq customData: - key: value metadata: @@ -27590,12 +27444,10 @@ service: length: 40 purchasedItemsCount: 2 stripeDetails: - subscriptionId: sub_1J6xwG2eZvKYlo2CXu9Zt0Tn paymentMethod: pm_1OzmzBJYFi4lcbXWHKNdXU7j paymentIntentId: pi_3OzmzDJYFi4lcbXW1hTBW6ft customerId: cus_PpRsNHwWdUoRKR chargeId: ch_3OzmzDJYFi4lcbXW1ndkkrH2 - disputeId: disputeId refundId: re_3OzmzDJYFi4lcbXW1kFAmlBk refundReason: fraudulent stripeCard: @@ -27605,13 +27457,6 @@ service: expires: year: 2024 month: 4 - paypalDetails: - orderId: 1a2b3c4d5e6f7g8h9i0j - payerId: 9k8j7i6h5g4f3e2d1c0b - captureId: qwe123rty456uio789p - refundId: abcde12345fghij67890 - refundReason: Customer requested refund - disputeId: zxcvbnm987poiuytrewq customData: - key: value metadata: @@ -28160,7 +28005,6 @@ webhooks: "body": { "archived": false, "canBranch": true, - "collectionId": "6390c49774a71f12831a08e3", "createdOn": "2024-03-11T10:42:00Z", "draft": false, "id": "6596da6045e56dee495bcbba", @@ -28173,7 +28017,6 @@ webhooks: "title": "Explore the Cosmos with The Ultimate Guide", "titleCopied": false, }, - "parentId": "6419db964a9c435aa3af6251", "publishedPath": "/en-us/guide-to-the-galaxy", "seo": { "description": "Everything you need to know about the galaxy, from avoiding Vogon poetry to the importance of towels.", @@ -28237,7 +28080,6 @@ webhooks: { "archived": false, "canBranch": true, - "collectionId": "6390c49774a71f12831a08e3", "createdOn": "2024-03-11T10:42:00Z", "draft": false, "id": "6596da6045e56dee495bcbba", @@ -28250,7 +28092,6 @@ webhooks: "title": "Explore the Cosmos with The Ultimate Guide", "titleCopied": false, }, - "parentId": "6419db964a9c435aa3af6251", "publishedPath": "/en-us/guide-to-the-galaxy", "seo": { "description": "Everything you need to know about the galaxy, from avoiding Vogon poetry to the importance of towels.", @@ -28263,7 +28104,6 @@ webhooks: { "archived": false, "canBranch": true, - "collectionId": "6390c49774a71f12831a08e3", "createdOn": "2024-05-25T09:00:00Z", "draft": false, "id": "6596da6045e56dee495bcbad", @@ -28276,7 +28116,6 @@ webhooks: "title": "Towel Day - Don't Panic", "titleCopied": false, }, - "parentId": "6419db964a9c435aa3af6251", "publishedPath": "/en-us/towel-day", "seo": { "description": "A guide to celebrating Towel Day, in honor of the most massively useful thing an interstellar hitchhiker can have.", @@ -28367,7 +28206,6 @@ webhooks: "body": { "archived": false, "canBranch": true, - "collectionId": "6390c49774a71f12831a08e3", "createdOn": "2024-03-11T10:42:00Z", "draft": false, "id": "6596da6045e56dee495bcbba", @@ -28380,7 +28218,6 @@ webhooks: "title": "Explore the Cosmos with The Ultimate Guide", "titleCopied": false, }, - "parentId": "6419db964a9c435aa3af6251", "publishedPath": "/en-us/guide-to-the-galaxy", "seo": { "description": "Everything you need to know about the galaxy, from avoiding Vogon poetry to the importance of towels.", @@ -29854,8 +29691,6 @@ service: siteId: 6258612d1ee792848f805dcf title: Guide to the Galaxy slug: guide-to-the-galaxy - parentId: 6419db964a9c435aa3af6251 - collectionId: 6390c49774a71f12831a08e3 createdOn: '2024-03-11T10:42:00Z' lastUpdated: '2024-03-11T10:42:42Z' archived: false @@ -29880,8 +29715,6 @@ service: siteId: 6258612d1ee792848f805dcf title: Towel Day Celebrations slug: towel-day - parentId: 6419db964a9c435aa3af6251 - collectionId: 6390c49774a71f12831a08e3 createdOn: '2024-05-25T09:00:00Z' lastUpdated: '2024-05-25T09:42:00Z' archived: false @@ -29950,8 +29783,6 @@ service: siteId: 6258612d1ee792848f805dcf title: Guide to the Galaxy slug: guide-to-the-galaxy - parentId: 6419db964a9c435aa3af6251 - collectionId: 6390c49774a71f12831a08e3 createdOn: '2024-03-11T10:42:00Z' lastUpdated: '2024-03-11T10:42:42Z' archived: false @@ -30044,8 +29875,6 @@ service: siteId: 6258612d1ee792848f805dcf title: Guide to the Galaxy slug: guide-to-the-galaxy - parentId: 6419db964a9c435aa3af6251 - collectionId: 6390c49774a71f12831a08e3 createdOn: '2024-03-11T10:42:00Z' lastUpdated: '2024-03-11T10:42:42Z' archived: false @@ -38103,7 +37932,6 @@ service: "displayName": "Alert", "hostedLocation": "https://cdn.webflow.io/.../alert-0.0.1.js", "id": "alert", - "integrityHash": "integrityHash", "lastUpdated": "lastUpdated", "version": "0.0.1", }, @@ -38113,7 +37941,6 @@ service: "displayName": "Alert", "hostedLocation": "https://cdn.webflow.io/.../alert-0.0.2.js", "id": "alert", - "integrityHash": "integrityHash", "lastUpdated": "lastUpdated", "version": "0.0.2", }, @@ -38265,7 +38092,6 @@ service: "displayName": "Alert", "hostedLocation": "https://uploads-ssl.webflow.com/6258612d1ee792848f805dcf%2F64b6c769ff52ba6c3d904a91%2F660d6e15b3d1696f2d2b1447%2Falert-0.0.1.js", "id": "alert", - "integrityHash": "integrityHash", "lastUpdated": "lastUpdated", "version": "0.0.1", }, @@ -38627,7 +38453,6 @@ service: canCopy: false displayName: Alert hostedLocation: https://cdn.webflow.io/.../alert-0.0.1.js - integrityHash: integrityHash createdOn: '2022-10-26T00:28:54.191Z' lastUpdated: lastUpdated version: 0.0.1 @@ -38635,7 +38460,6 @@ service: canCopy: false displayName: Alert hostedLocation: https://cdn.webflow.io/.../alert-0.0.2.js - integrityHash: integrityHash createdOn: '2022-10-26T00:28:54.191Z' lastUpdated: lastUpdated version: 0.0.2 @@ -38800,7 +38624,6 @@ service: displayName: Alert hostedLocation: >- https://uploads-ssl.webflow.com/6258612d1ee792848f805dcf%2F64b6c769ff52ba6c3d904a91%2F660d6e15b3d1696f2d2b1447%2Falert-0.0.1.js - integrityHash: integrityHash createdOn: '2022-10-26T00:28:54.191Z' lastUpdated: lastUpdated version: 0.0.1 @@ -39047,7 +38870,6 @@ service: }, ], }, - "parentFolderId": "1as2d3f4g5h6j7k8l9z0x1c2v3b4n5m6", "previewUrl": "https://d1otoma47x30pg.cloudfront.net/42e63e98c9a982ac9b8b742/198110121200.png", "shortName": "paranoid-android", "timeZone": "DeepSpace/Depression", @@ -39087,7 +38909,6 @@ service: }, ], }, - "parentFolderId": "1as2d3f4g5h6j7k8l9z0x1c2v3b4n5m6", "previewUrl": "https://d1otoma47x30pg.cloudfront.net/42e63e98c9a982ac9b8b743/198210121200.png", "shortName": "vogon-poetry", "timeZone": "Vogsphere/PoetryHall", @@ -40069,7 +39890,6 @@ service: previewUrl: >- https://d1otoma47x30pg.cloudfront.net/42e63e98c9a982ac9b8b742/198110121200.png timeZone: DeepSpace/Depression - parentFolderId: 1as2d3f4g5h6j7k8l9z0x1c2v3b4n5m6 customDomains: - id: 589a331aa51e760df7ccb89f url: marvin.blog @@ -40100,7 +39920,6 @@ service: previewUrl: >- https://d1otoma47x30pg.cloudfront.net/42e63e98c9a982ac9b8b743/198210121200.png timeZone: Vogsphere/PoetryHall - parentFolderId: 1as2d3f4g5h6j7k8l9z0x1c2v3b4n5m6 customDomains: - id: 589a331aa51e760df7ccb8a0 url: vogonpoetry.galaxy @@ -40319,11 +40138,6 @@ webhooks: "event": "cms_collection", "id": "654c16c7b229e56bcf26872d", "lastUpdated": "2023-11-08T23:16:23Z", - "newValue": "newValue", - "payload": { - "key": "value", - }, - "previousValue": "previousValue", "resourceId": "654c16c7b229e56bcf26870c", "resourceName": "foo-bar", "resourceOperation": "CREATED", @@ -40569,10 +40383,6 @@ service: displayName: John Doe resourceId: 654c16c7b229e56bcf26870c resourceName: foo-bar - newValue: newValue - previousValue: previousValue - payload: - key: value pagination: limit: 25 offset: 0 @@ -40706,7 +40516,6 @@ service: { "createdOn": "2024-04-03T16:49:15Z", "lastUpdated": "2024-04-03T16:49:15Z", - "pageId": "pageId", "scripts": [ { "attributes": { @@ -41551,7 +41360,6 @@ service: body: blocks: - siteId: 6258612d1ee792848f805dcf - pageId: pageId type: site scripts: - id: chartjs @@ -44862,9 +44670,6 @@ webhooks: "response": { "body": { "createdOn": "2022-11-08T23:59:28Z", - "filter": { - "name": "My Form", - }, "id": "582266e0cd48de0f0e3c6d8b", "lastTriggered": "2023-02-08T23:59:28Z", "siteId": "562ac0395358780a1f5e6fbd", @@ -44980,9 +44785,6 @@ webhooks: "response": { "body": { "createdOn": "2022-11-08T23:59:28Z", - "filter": { - "name": "My Form", - }, "id": "582266e0cd48de0f0e3c6d8b", "lastTriggered": "2023-02-08T23:59:28Z", "siteId": "562ac0395358780a1f5e6fbd", @@ -46194,8 +45996,6 @@ service: url: https://webhook.site/7f7f7f7f-7f7f-7f7f-7f7f-7f7f7f7f7f7f workspaceId: 4f4e46fd476ea8c507000001 siteId: 562ac0395358780a1f5e6fbd - filter: - name: My Form lastTriggered: '2023-02-08T23:59:28Z' createdOn: '2022-11-08T23:59:28Z' get: @@ -46229,8 +46029,6 @@ service: url: https://webhook.site/7f7f7f7f-7f7f-7f7f-7f7f-7f7f7f7f7f7f workspaceId: 4f4e46fd476ea8c507000001 siteId: 562ac0395358780a1f5e6fbd - filter: - name: My Form lastTriggered: '2023-02-08T23:59:28Z' createdOn: '2022-11-08T23:59:28Z' delete: diff --git a/packages/cli/cli-source-resolver/tsconfig.json b/packages/cli/cli-source-resolver/tsconfig.json index 49fcfd1846b..8b684f9713a 100644 --- a/packages/cli/cli-source-resolver/tsconfig.json +++ b/packages/cli/cli-source-resolver/tsconfig.json @@ -18,6 +18,9 @@ { "path": "../fern-definition/schema" }, + { + "path": "../source-resolver" + }, { "path": "../task-context" }, diff --git a/packages/cli/cli/versions.yml b/packages/cli/cli/versions.yml index 9145038262a..f2d11eff45e 100644 --- a/packages/cli/cli/versions.yml +++ b/packages/cli/cli/versions.yml @@ -1,3 +1,10 @@ +- changelogEntry: + - summary: | + Generate valid examples using spec validation information; respect `null` entries during example generation. + type: fix + irVersion: 53 + version: 0.45.1-rc0 + - changelogEntry: - summary: | Add `inline` field to type declarations in the Fern definition and IR. diff --git a/packages/cli/docs-resolver/src/DocsDefinitionResolver.ts b/packages/cli/docs-resolver/src/DocsDefinitionResolver.ts index 6e1624b8290..1bbc66289b6 100644 --- a/packages/cli/docs-resolver/src/DocsDefinitionResolver.ts +++ b/packages/cli/docs-resolver/src/DocsDefinitionResolver.ts @@ -913,7 +913,7 @@ function createEditThisPageUrl( const { owner, repo, branch = "main", host = "https://github.com" } = editThisPage.github; - return `${wrapWithHttps(host)}/${owner}/${repo}/blob/${branch}/fern/${pageFilepath}`; + return `${wrapWithHttps(host)}/${owner}/${repo}/blob/${branch}/fern/${pageFilepath}?plain=1`; } function convertAvailability(