Skip to content

Commit 62de511

Browse files
tweeddalexgitbook-bot
authored andcommitted
GITBOOK-394: change request with no subject merged in GitBook
1 parent d7029f5 commit 62de511

File tree

11 files changed

+37
-21
lines changed

11 files changed

+37
-21
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
description: Dive into cheqd's product and identity functionality.
2+
description: Get started with cheqd's identity functionality and product offerings.
33
layout:
44
title:
55
visible: true
@@ -63,7 +63,7 @@ These can be represented through the visual below:
6363

6464
## Partner SaaS products
6565

66-
You can use SaaS products from our partners to create best-in-class credential ecosystems, built on cheqd:
66+
You can also leverage SaaS products from our partners to build high-quality credential ecosystems on top of cheqd’s infrastructure:
6767

6868
<table data-card-size="large" data-view="cards"><thead><tr><th></th><th></th><th data-hidden data-card-cover data-type="files"></th><th data-hidden data-card-target data-type="content-ref"></th></tr></thead><tbody><tr><td><mark style="color:blue;"><strong>Paradym</strong></mark></td><td>Paradym by Animo Solutions fully supports <strong>EU Architecture &#x26; Reference Framework</strong> standards with cheqd under the hood.</td><td><a href=".gitbook/assets/paradym-for-website.png">paradym-for-website.png</a></td><td><a href="https://paradym.id/">https://paradym.id/</a></td></tr><tr><td><mark style="color:blue;">Tr<strong>uvera (Dock)</strong></mark></td><td>Truvera is a full platform that supports credential issuance and management using cheqd as the primary DID Method.</td><td><a href=".gitbook/assets/Truvera.avif">Truvera.avif</a></td><td><a href="https://docs.truvera.io/">https://docs.truvera.io/</a></td></tr><tr><td><mark style="color:blue;"><strong>Hovi</strong></mark></td><td>Hovi provides an all-in-one platform for issuing and managing Verifiable Credentials with cheqd DIDs supported.</td><td><a href=".gitbook/assets/Hovi.png">Hovi.png</a></td><td><a href="https://www.hovi.id/">https://www.hovi.id/</a></td></tr><tr><td><mark style="color:blue;"><strong>Cloud Platform (Walt.id)</strong></mark></td><td>Cloud Platform by Walt.id similarly fully supports <strong>EU Architecture &#x26; Reference Framework</strong> standards with cheqd under the hood.</td><td><a href=".gitbook/assets/walt.id-cloud-platform.png">walt.id-cloud-platform.png</a></td><td><a href="https://walt.id/waitlist">https://walt.id/waitlist</a></td></tr><tr><td><mark style="color:blue;"><strong>Godiddy</strong></mark></td><td>Godiddy from Danube Tech is a DID-specific SaaS offering focussed on enterprise registration and resolution of DIDs across multiple methods.</td><td><a href=".gitbook/assets/godiddy.png">godiddy.png</a></td><td><a href="https://godiddy.com/">https://godiddy.com/</a></td></tr></tbody></table>
6969

SUMMARY.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
## 🟢 Start using cheqd <a href="#studio" id="studio"></a>
2424

25-
* [🆔 Create DIDs and Identity keys](studio/dids/README.md)
25+
* [🆔 Create DIDs and Identity Keys](studio/dids/README.md)
2626
* [Create Issuer DID](studio/dids/create-did.md)
2727
* [Create Identity Keys and Subject DIDs](studio/dids/create-subject-did.md)
2828
* [Resolve a DID](studio/dids/resolve-did.md)

sdk/aca-py/decentralized-identifiers-dids/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
description: Create cheqd DIDs using ACA-Py
2+
description: Create Decentralized Identifiers (DIDs) on cheqd using ACA-Py.
33
---
44

55
# Decentralized Identifiers (DIDs)

sdk/aca-py/decentralized-identifiers-dids/create-a-did.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
description: Create a DID using the did:cheqd method from ACA-Py Agent
2+
description: Create a DID using the did:cheqd method from ACA-Py Agent.
33
---
44

55
# Create a DID
@@ -16,9 +16,9 @@ For wallet storage, utilise a Postgres database to ensure key persistence, enabl
1616

1717
Populate the various `options`and `features`in the JSON request body and call the API to create the DID.&#x20;
1818

19-
{% swagger src="../../../.gitbook/assets/swagger.json" path="/did/cheqd/create" method="post" %}
19+
{% openapi src="../../../.gitbook/assets/swagger.json" path="/did/cheqd/create" method="post" %}
2020
[swagger.json](../../../.gitbook/assets/swagger.json)
21-
{% endswagger %}
21+
{% endopenapi %}
2222

2323
## Request Body
2424

@@ -48,9 +48,9 @@ Optional Object with Key-Value format for additional configuration options, reco
4848

4949
After creating a DID or multiple DIDs, users can list all the created DIDs associated with their wallet. Using the `/wallet/did` API.
5050

51-
{% swagger src="../../../.gitbook/assets/swagger.json" path="/wallet/did" method="get" %}
51+
{% openapi src="../../../.gitbook/assets/swagger.json" path="/wallet/did" method="get" %}
5252
[swagger.json](../../../.gitbook/assets/swagger.json)
53-
{% endswagger %}
53+
{% endopenapi %}
5454

5555

5656

sdk/aca-py/did-linked-resources/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
description: Create cheqd DID-Linked Resources using ACA-Py
2+
description: Create DID-Linked Resources (DLRs) on cheqd using ACA-Py.
33
---
44

55
# DID-Linked Resources

sdk/aca-py/did-linked-resources/create-anoncreds-credential-definition.md

+8-4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
description: Create an AnonCreds Credential Definition using ACA-Py.
3+
---
4+
15
# Create AnonCreds Credential Definition
26

37
## Create Credential Definition
@@ -6,9 +10,9 @@ The request body must contain the `credential_definition` object with the Issuer
610

711
To enable revocation, the `options` must contain the revocation flag, and the size of the revocation registry. Also, ensure that a [Tails Server](https://github.com/bcgov/indy-tails-server) is configured for the issuer.
812

9-
{% swagger src="../../../.gitbook/assets/swagger.json" path="/anoncreds/credential-definition" method="post" %}
13+
{% openapi src="../../../.gitbook/assets/swagger.json" path="/anoncreds/credential-definition" method="post" %}
1014
[swagger.json](../../../.gitbook/assets/swagger.json)
11-
{% endswagger %}
15+
{% endopenapi %}
1216

1317
## Request Body
1418

@@ -36,9 +40,9 @@ To enable revocation, the `options` must contain the revocation flag, and the si
3640

3741
## Check the new Credential Definition
3842

39-
{% swagger src="../../../.gitbook/assets/swagger.json" path="/anoncreds/credential-definition/{cred_def_id}" method="get" %}
43+
{% openapi src="../../../.gitbook/assets/swagger.json" path="/anoncreds/credential-definition/{cred_def_id}" method="get" %}
4044
[swagger.json](../../../.gitbook/assets/swagger.json)
41-
{% endswagger %}
45+
{% endopenapi %}
4246

4347

4448

sdk/aca-py/did-linked-resources/create-anoncreds-schema.md

+8-4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
description: Create an AnonCreds Schema using ACA-Py
3+
---
4+
15
# Create AnonCreds Schema
26

37
To issue Verifiable Credentials, the issuer will have to first create a Schema and then a Credential Definition.
@@ -6,9 +10,9 @@ To issue Verifiable Credentials, the issuer will have to first create a Schema a
610

711
The request body must contain the `schema` object, which defines the attributes, name and version of the Schema. This will create a [DID-Linked Resource](https://docs.cheqd.io/product/sdk/veramo-plugin/did-linked-resources) of type `anonCredsSchema`.
812

9-
{% swagger src="../../../.gitbook/assets/swagger.json" path="/anoncreds/schema" method="post" %}
13+
{% openapi src="../../../.gitbook/assets/swagger.json" path="/anoncreds/schema" method="post" %}
1014
[swagger.json](../../../.gitbook/assets/swagger.json)
11-
{% endswagger %}
15+
{% endopenapi %}
1216

1317
## Request Body
1418

@@ -36,9 +40,9 @@ Optional Key-Value pairs of additional options.
3640

3741
## Check the new Schema
3842

39-
{% swagger src="../../../.gitbook/assets/swagger.json" path="/anoncreds/schema/{schema_id}" method="get" %}
43+
{% openapi src="../../../.gitbook/assets/swagger.json" path="/anoncreds/schema/{schema_id}" method="get" %}
4044
[swagger.json](../../../.gitbook/assets/swagger.json)
41-
{% endswagger %}
45+
{% endopenapi %}
4246

4347

4448

sdk/aca-py/setup-aca-py-agent.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
description: Set up your ACA-Py agent to start using cheqd.
3+
---
4+
15
# Setup ACA-Py Agent
26

37
## Pre-requisites

sdk/aca-py/verifiable-credentials-and-presentations/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
description: Issue credentials with ACA-Py, signed by cheqd DIDs
2+
description: Issue Verifiable Credentials, signed by cheqd DIDs, using ACA-Py.
33
---
44

55
# Verifiable Credentials and Presentations

sdk/aca-py/verifiable-credentials-and-presentations/issue-a-verifiable-credential.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
description: Issue a Verifiable Credential using the ACA-Py API endpoints.
3+
---
4+
15
# Issue a Verifiable Credential
26

37
Using the `/issue-credential-2.0` API endpoints, it is possible to issue Verifiable Credentials, signed by a cheqd DID, in a few clicks or lines of code. By following the following steps, you can effectively issue verifiable credentials using ACA-Py integrated with the cheqd ecosystem.

studio/dids/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
2-
description: Create DIDs and identity keys using cheqd's DID Method (did:cheqd)
2+
description: Create DIDs and identity keys using cheqd's DID Method (did:cheqd).
33
---
44

5-
# 🆔 Create DIDs and Identity keys
5+
# 🆔 Create DIDs and Identity Keys
66

77
A Decentralized Identifier "DID" is a globally unique identifier that does not require a centralized registration authority because it is registered with distributed ledger technology or other form of decentralized network.
88

0 commit comments

Comments
 (0)