Download OpenAPI specification:
これは[株式会社フォアー](https://www.fore-co.ltd/ja/)が開発するを使ったDecentralizd Identifiers / Verifiable Credentials(DID/VC)に関係する機能を簡単に利用するための REST API です。
本ページではiDroit DashboardにおけるDID/VC管理に関連したAPIのみを公開しています。ユーザー・プロジェクト管理を含めたフルバージョンはお問い合わせください。
現在以下のユースケースをサポートしています。これは今後も拡張されていきます。
- DIDの生成:
- グループ管理機能
- (企業/プロジェクトのまとまり)ごとにユーザー、クライアント、証明書(VC)スキーマを紐付けて管理する。
詳細は以下を参照してください。
- [idroit dashboard公式ホームページ]()
- [idroit dashboard操作マニュアル]()
以下は関連リンクです。
- [Universal Resolver](https://dev.uniresolver.io/)
- [W3C DID Core 1.0](https://www.w3.org/TR/did-core/)
- [Verifiable Credentials Data Model v2.0](https://www.w3.org/TR/vc-data-model-2.0/)
アカウントログインを実行し、認証結果に応じてJSON Web Tokenの値を返します。
email required | string (必須) アカウントログインに用いるメールアドレス。 |
password required | string (必須) アカウントログインに用いるパスワード |
{- "email": "admin@email.com",
- "password": "Password1234"
}
{- "access_token": "jwt.token.hoge"
}
アプリケーションが管理するDID情報を一覧として値を返します。
page | number Example: page=1 (必須) ページネーションを表示する際のページ数に当たるクエリパラメーター。全件取得する際は1を指定。(デフォルト: 1) |
limit | number Example: limit=10 (必須) ページネーションを表示する際のページ数あたりに表示する件数を指定するクエリパラメーター。全件取得する際は0を指定。(デフォルト: 10) |
did | string (任意) 例: "did:key:z6MkhGeGj7u5htkCYjE4PaQ8HUqjYyTmxpDb6Q1MqUpUDsN7" |
manageUuid | string (任意) 例: "32bad62a-4186-4d04-a26a-fcee79d5824b" |
label | string (任意) 例: "did-for-project1" |
method | string Enum: "key" "web" "ethr" "ethr:arbitrum:goerli" "ethr:sepolia" (任意) 例: "did:key |
existPrivateKey | boolean (任意) 例: true |
description | string (任意) |
domainName | string (任意) 例: "did:web:idroit-dashboard.com" |
{- "items": [
- {
- "id": "bde07fae-69de-44c4-bb87-1763c2058b56",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:z6MkhGeGj7u5htkCYjE4PaQ8HUqjYyTmxpDb6Q1MqUpUDsN7",
- "method": "key",
- "label": "did-for-project1",
- "domainName": "",
- "existPrivateKey": true,
- "description": "This is the description of did",
- "createdAt": "2024-10-17T03:32:38.901Z",
- "updatedAt": "2024-10-17T03:32:38.901Z"
}
], - "meta": {
- "totalItems": 1,
- "itemCount": 1,
- "itemsPerPage": 10,
- "totalPages": null,
- "currentPage": 1
}, - "links": {
- "previous": 10,
}
}
新規DIDを生成します。
didMethod required | string (必須) 新規生成するDIDのメソッド。(現在対応するDIDメソッド: "key", "ether", "ethr:sepolia", "ethr:arbitrum:goerli", "web") |
label | string (任意) DIDの識別や整理などの管理するにあったてメタデータとして任意で設定可能な単語のフレーズ。(例: did-for-project1) |
domainName | string (任意) did:webメソッドでDIDを生成する際に必要なドメイン名。DIDによって指定されたドメインがドメインネームシステム(DNS)を通じて解決されるときのホスト名。did:webメソッド以外では必要のないパラメータなため任意の項目である。 |
description | string (任意) DIDの生成目的や用途など任意で設定可能な説明文。 |
{- "didMethod": "key",
- "label": "did-for-project1",
- "domainName": "domain-name.com",
- "description": "DIDの生成目的や用途など任意で設定可能な説明文。"
}
外部で生成されたDIDを本アプリケーションに取り込みます。
did required | string (必須) |
label | string (任意) DIDの識別や整理などの管理するにあったてメタデータとして任意で設定可能な単語のフレーズ。(例: did-for-project1) |
description | string (任意) DIDの生成目的や用途など任意で設定可能な説明文。 |
{- "did": "did:key:z6MkepWVAjYFGvTdffTcJJcE1sJKLHuCefxqw72dPodoxJrP",
- "label": "did-for-project1",
- "description": "This is the description of did"
}
リクエストパラメータのidで指定された単一のDID情報の詳細情報の値を返します。
id required | string |
{- "didInfo": {
- "id": "bde07fae-69de-44c4-bb87-1763c2058b56",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:z6MkhGeGj7u5htkCYjE4PaQ8HUqjYyTmxpDb6Q1MqUpUDsN7",
- "method": "key",
- "label": "did-for-project1",
- "domainName": "",
- "existPrivateKey": true,
- "description": "This is the description of did",
- "user": null,
- "createdBy": null,
- "createdAt": "2024-10-17T03:32:38.901Z",
- "updatedAt": "2024-10-17T03:32:38.901Z"
}, - "didObject": {
- "id": "did:ethr:0x030a48b2e2c4890ff2c26b91b93f8f899191c21bd6d52722e62a5251c55dfa22a5",
- "verificationMethod": [
- {
- "id": "did:ethr:0x030a48b2e2c4890ff2c26b91b93f8f899191c21bd6d52722e62a5251c55dfa22a5#controller",
- "type": "EcdsaSecp256k1RecoveryMethod2020",
- "controller": "did:ethr:0x030a48b2e2c4890ff2c26b91b93f8f899191c21bd6d52722e62a5251c55dfa22a5",
- "blockchainAccountId": "eip155:1:0x28DA61f78488BFa22acFcB25675af265835e8aF8"
}, - {
- "id": "did:ethr:0x030a48b2e2c4890ff2c26b91b93f8f899191c21bd6d52722e62a5251c55dfa22a5#controllerKey",
- "type": "EcdsaSecp256k1VerificationKey2019",
- "controller": "did:ethr:0x030a48b2e2c4890ff2c26b91b93f8f899191c21bd6d52722e62a5251c55dfa22a5",
- "publicKeyHex": "030a48b2e2c4890ff2c26b91b93f8f899191c21bd6d52722e62a5251c55dfa22a5"
}
], - "authentication": [
- "did:ethr:0x030a48b2e2c4890ff2c26b91b93f8f899191c21bd6d52722e62a5251c55dfa22a5#controller",
- "did:ethr:0x030a48b2e2c4890ff2c26b91b93f8f899191c21bd6d52722e62a5251c55dfa22a5#controllerKey"
], - "assertionMethod": [
- "did:ethr:0x030a48b2e2c4890ff2c26b91b93f8f899191c21bd6d52722e62a5251c55dfa22a5#controller",
- "did:ethr:0x030a48b2e2c4890ff2c26b91b93f8f899191c21bd6d52722e62a5251c55dfa22a5#controllerKey"
],
}
}
リクエストパラメータのidで指定された単一のDID情報に対して、任意の管理用ラベルを追加します。
id required | string |
label required | string (必須) DIDの識別や整理などの管理するにあったてメタデータとして任意で設定可能な単語のフレーズ。(例: did-for-project1) |
{- "label": "did-for-project1"
}
{- "didInfo": {
- "id": "bde07fae-69de-44c4-bb87-1763c2058b56",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:z6MkhGeGj7u5htkCYjE4PaQ8HUqjYyTmxpDb6Q1MqUpUDsN7",
- "method": "key",
- "label": "did-for-project1",
- "domainName": "",
- "existPrivateKey": true,
- "description": "This is the description of did",
- "user": null,
- "createdBy": null,
- "createdAt": "2024-10-17T03:32:38.901Z",
- "updatedAt": "2024-10-17T03:32:38.901Z"
}, - "didObject": {
- "id": "did:ethr:0x030a48b2e2c4890ff2c26b91b93f8f899191c21bd6d52722e62a5251c55dfa22a5",
- "verificationMethod": [
- {
- "id": "did:ethr:0x030a48b2e2c4890ff2c26b91b93f8f899191c21bd6d52722e62a5251c55dfa22a5#controller",
- "type": "EcdsaSecp256k1RecoveryMethod2020",
- "controller": "did:ethr:0x030a48b2e2c4890ff2c26b91b93f8f899191c21bd6d52722e62a5251c55dfa22a5",
- "blockchainAccountId": "eip155:1:0x28DA61f78488BFa22acFcB25675af265835e8aF8"
}, - {
- "id": "did:ethr:0x030a48b2e2c4890ff2c26b91b93f8f899191c21bd6d52722e62a5251c55dfa22a5#controllerKey",
- "type": "EcdsaSecp256k1VerificationKey2019",
- "controller": "did:ethr:0x030a48b2e2c4890ff2c26b91b93f8f899191c21bd6d52722e62a5251c55dfa22a5",
- "publicKeyHex": "030a48b2e2c4890ff2c26b91b93f8f899191c21bd6d52722e62a5251c55dfa22a5"
}
], - "authentication": [
- "did:ethr:0x030a48b2e2c4890ff2c26b91b93f8f899191c21bd6d52722e62a5251c55dfa22a5#controller",
- "did:ethr:0x030a48b2e2c4890ff2c26b91b93f8f899191c21bd6d52722e62a5251c55dfa22a5#controllerKey"
], - "assertionMethod": [
- "did:ethr:0x030a48b2e2c4890ff2c26b91b93f8f899191c21bd6d52722e62a5251c55dfa22a5#controller",
- "did:ethr:0x030a48b2e2c4890ff2c26b91b93f8f899191c21bd6d52722e62a5251c55dfa22a5#controllerKey"
],
}
}
DIDを解決した結果であるDID Documentの値を返します。このAPIでは保存などの処理を行いません。生成済みのDIDを保存したい場合、既存DID登録API(/did-infos/register)にリクエストを送信してください。
did required | string (必須) 解決を実施するDID文字列。 |
{- "did": "did:key:z6MkepWVAjYFGvTdffTcJJcE1sJKLHuCefxqw72dPodoxJrP"
}
{- "id": "did:key:z6MkepWVAjYFGvTdffTcJJcE1sJKLHuCefxqw72dPodoxJrP",
- "verificationMethod": [
- {
- "id": "did:key:z6MkepWVAjYFGvTdffTcJJcE1sJKLHuCefxqw72dPodoxJrP#z6MkepWVAjYFGvTdffTcJJcE1sJKLHuCefxqw72dPodoxJrP",
- "type": "Ed25519VerificationKey2018",
- "controller": "did:key:z6MkepWVAjYFGvTdffTcJJcE1sJKLHuCefxqw72dPodoxJrP",
- "publicKeyBase58": "NFSaVHowNyAZAcucjePAmkKWidMEniVF67hZXfo3651"
}, - {
- "id": "did:key:z6MkepWVAjYFGvTdffTcJJcE1sJKLHuCefxqw72dPodoxJrP#z6LShmgtsCTMEhTZ9gKNkCrcW754zWswWSB5FwdF1KiCSwSt",
- "type": "X25519KeyAgreementKey2019",
- "controller": "did:key:z6MkepWVAjYFGvTdffTcJJcE1sJKLHuCefxqw72dPodoxJrP",
- "publicKeyBase58": "76WjLteV9Ejp4HwcDZLfBWrb9NLpopzvNxuZWs4fjZg8"
}
], - "assertionMethod": [
- "did:key:z6MkepWVAjYFGvTdffTcJJcE1sJKLHuCefxqw72dPodoxJrP#z6MkepWVAjYFGvTdffTcJJcE1sJKLHuCefxqw72dPodoxJrP"
], - "authentication": [
- "did:key:z6MkepWVAjYFGvTdffTcJJcE1sJKLHuCefxqw72dPodoxJrP#z6MkepWVAjYFGvTdffTcJJcE1sJKLHuCefxqw72dPodoxJrP"
], - "capabilityInvocation": [
- "did:key:z6MkepWVAjYFGvTdffTcJJcE1sJKLHuCefxqw72dPodoxJrP#z6MkepWVAjYFGvTdffTcJJcE1sJKLHuCefxqw72dPodoxJrP"
], - "capabilityDelegation": [
- "did:key:z6MkepWVAjYFGvTdffTcJJcE1sJKLHuCefxqw72dPodoxJrP#z6MkepWVAjYFGvTdffTcJJcE1sJKLHuCefxqw72dPodoxJrP"
], - "keyAgreement": [
- "did:key:z6MkepWVAjYFGvTdffTcJJcE1sJKLHuCefxqw72dPodoxJrP#z6LShmgtsCTMEhTZ9gKNkCrcW754zWswWSB5FwdF1KiCSwSt"
]
}
アプリケーションが管理するVC情報を一覧として値を返します。
page | number Example: page=1 (必須) ページネーションを表示する際のページ数に当たるクエリパラメーター。全件取得する際は1を指定。(デフォルト: 1) |
limit | number Example: limit=10 (必須) ページネーションを表示する際のページ数あたりに表示する件数を指定するクエリパラメーター。全件取得する際は0を指定。(デフォルト: 10) |
label | string (任意) 例: "vc-for-project1" |
description | string (任意) |
{- "items": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- { }
], - "didInfo": { },
- "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcInfos": [
- { }
], - "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- { }
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdUsers": [
- { }
], - "createdVcInfos": [
- { }
], - "createdVpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- { }
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdDidInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- { }
], - "didInfo": { },
- "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVcSchemas": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- { }
], - "vcContexts": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "vcSchema": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcSchemaProperties": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "propIndex": 1,
- "propName": "prop1",
- "propType": "string",
- "parentObjectIndex": "parentObjectIndex",
- "vcSchema": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "badges": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "sample-badge-1",
- "filename": "badge-12345-12345.png",
- "description": "This is Sample Badge 1.",
- "status": 1,
- "vcSchema": { },
- "vcInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "file": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "filename": "file-1729389547388-110834208.csv",
- "originalname": "testdata.csv",
- "type": "text/csv",
- "fileData": "text/csv",
- "executed": false,
- "status": 0,
- "vcSchema": { },
- "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVerifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- { }
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdFiles": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "filename": "file-1729389547388-110834208.csv",
- "originalname": "testdata.csv",
- "type": "text/csv",
- "fileData": "text/csv",
- "executed": false,
- "status": 0,
- "vcSchema": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- { }
], - "vcContexts": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "vcSchema": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcSchemaProperties": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "propIndex": 1,
- "propName": "prop1",
- "propType": "string",
- "parentObjectIndex": "parentObjectIndex",
- "vcSchema": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "badges": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "sample-badge-1",
- "filename": "badge-12345-12345.png",
- "description": "This is Sample Badge 1.",
- "status": 1,
- "vcSchema": { },
- "vcInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "file": { },
- "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vcSchema": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- { }
], - "vcContexts": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "vcSchema": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcSchemaProperties": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "propIndex": 1,
- "propName": "prop1",
- "propType": "string",
- "parentObjectIndex": "parentObjectIndex",
- "vcSchema": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "badges": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "sample-badge-1",
- "filename": "badge-12345-12345.png",
- "description": "This is Sample Badge 1.",
- "status": 1,
- "vcSchema": { },
- "vcInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "file": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "filename": "file-1729389547388-110834208.csv",
- "originalname": "testdata.csv",
- "type": "text/csv",
- "fileData": "text/csv",
- "executed": false,
- "status": 0,
- "vcSchema": { },
- "createdBy": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": { },
- "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcInfos": [
- { }
], - "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- { }
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdUsers": [
- { }
], - "createdVcInfos": [
- { }
], - "createdVpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- { }
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdDidInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": { },
- "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVcSchemas": [
- { }
], - "createdVerifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdFiles": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdBy": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- { }
], - "didInfo": { },
- "verifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcInfos": [
- { }
], - "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- { }
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdUsers": [
- { }
], - "createdVcInfos": [
- { }
], - "createdVpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- { }
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdDidInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- { }
], - "didInfo": { },
- "verifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVcSchemas": [
- { }
], - "createdVerifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- { }
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdFiles": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "filename": "file-1729389547388-110834208.csv",
- "originalname": "testdata.csv",
- "type": "text/csv",
- "fileData": "text/csv",
- "executed": false,
- "status": 0,
- "vcSchema": { },
- "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "user": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- { }
], - "didInfo": { },
- "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcInfos": [
- { }
], - "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- { }
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdUsers": [
- { }
], - "createdVcInfos": [
- { }
], - "createdVpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- { }
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdDidInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- { }
], - "didInfo": { },
- "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVcSchemas": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- { }
], - "vcContexts": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "vcSchema": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcSchemaProperties": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "propIndex": 1,
- "propName": "prop1",
- "propType": "string",
- "parentObjectIndex": "parentObjectIndex",
- "vcSchema": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "badges": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "sample-badge-1",
- "filename": "badge-12345-12345.png",
- "description": "This is Sample Badge 1.",
- "status": 1,
- "vcSchema": { },
- "vcInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "file": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "filename": "file-1729389547388-110834208.csv",
- "originalname": "testdata.csv",
- "type": "text/csv",
- "fileData": "text/csv",
- "executed": false,
- "status": 0,
- "vcSchema": { },
- "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVerifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- { }
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdFiles": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "filename": "file-1729389547388-110834208.csv",
- "originalname": "testdata.csv",
- "type": "text/csv",
- "fileData": "text/csv",
- "executed": false,
- "status": 0,
- "vcSchema": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- { }
], - "vcContexts": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "vcSchema": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcSchemaProperties": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "propIndex": 1,
- "propName": "prop1",
- "propType": "string",
- "parentObjectIndex": "parentObjectIndex",
- "vcSchema": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "badges": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "sample-badge-1",
- "filename": "badge-12345-12345.png",
- "description": "This is Sample Badge 1.",
- "status": 1,
- "vcSchema": { },
- "vcInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "file": { },
- "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcInfos": [
- { }
], - "vpInfos": [
- { }
], - "createdUsers": [
- { }
], - "createdVcInfos": [
- { }
], - "createdVpInfos": [
- { }
], - "createdDidInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVcSchemas": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- { }
], - "vcContexts": [
- {
- "id": null,
- "context": null,
- "vcSchema": null,
- "createdAt": null,
- "updatedAt": null
}
], - "vcSchemaProperties": [
- {
- "id": null,
- "propIndex": null,
- "propName": null,
- "propType": null,
- "parentObjectIndex": null,
- "vcSchema": null,
- "createdAt": null,
- "updatedAt": null
}
], - "badges": [
- {
- "id": null,
- "label": null,
- "filename": null,
- "description": null,
- "status": null,
- "vcSchema": null,
- "vcInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "file": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "filename": "file-1729389547388-110834208.csv",
- "originalname": "testdata.csv",
- "type": "text/csv",
- "fileData": "text/csv",
- "executed": false,
- "status": 0,
- "vcSchema": { },
- "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVerifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdFiles": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "filename": "file-1729389547388-110834208.csv",
- "originalname": "testdata.csv",
- "type": "text/csv",
- "fileData": "text/csv",
- "executed": false,
- "status": 0,
- "vcSchema": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- null
], - "vcContexts": [
- null
], - "vcSchemaProperties": [
- null
], - "badges": [
- null
], - "file": { },
- "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "user": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcInfos": [
- { }
], - "vpInfos": [
- { }
], - "createdUsers": [
- { }
], - "createdVcInfos": [
- { }
], - "createdVpInfos": [
- { }
], - "createdDidInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVcSchemas": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- { }
], - "vcContexts": [
- {
- "id": null,
- "context": null,
- "vcSchema": null,
- "createdAt": null,
- "updatedAt": null
}
], - "vcSchemaProperties": [
- {
- "id": null,
- "propIndex": null,
- "propName": null,
- "propType": null,
- "parentObjectIndex": null,
- "vcSchema": null,
- "createdAt": null,
- "updatedAt": null
}
], - "badges": [
- {
- "id": null,
- "label": null,
- "filename": null,
- "description": null,
- "status": null,
- "vcSchema": null,
- "vcInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "file": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "filename": "file-1729389547388-110834208.csv",
- "originalname": "testdata.csv",
- "type": "text/csv",
- "fileData": "text/csv",
- "executed": false,
- "status": 0,
- "vcSchema": { },
- "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVerifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdFiles": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "filename": "file-1729389547388-110834208.csv",
- "originalname": "testdata.csv",
- "type": "text/csv",
- "fileData": "text/csv",
- "executed": false,
- "status": 0,
- "vcSchema": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- null
], - "vcContexts": [
- null
], - "vcSchemaProperties": [
- null
], - "badges": [
- null
], - "file": { },
- "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vcInfos": [
- { }
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- { }
], - "vcInfos": [
- { }
], - "vpInfos": [
- { }
], - "createdUsers": [
- { }
], - "createdVcInfos": [
- { }
], - "createdVpInfos": [
- { }
], - "createdDidInfos": [
- { }
], - "createdVcSchemas": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- null
], - "vcContexts": [
- null
], - "vcSchemaProperties": [
- null
], - "badges": [
- null
], - "file": {
- "id": null,
- "filename": null,
- "originalname": null,
- "type": null,
- "fileData": null,
- "executed": null,
- "status": null,
- "vcSchema": null,
- "createdBy": null,
- "createdAt": null,
- "updatedAt": null
}, - "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVerifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdFiles": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "filename": "file-1729389547388-110834208.csv",
- "originalname": "testdata.csv",
- "type": "text/csv",
- "fileData": "text/csv",
- "executed": false,
- "status": 0,
- "vcSchema": {
- "id": null,
- "title": null,
- "version": null,
- "description": null,
- "isBadgeSchema": null,
- "vcInfos": [ ],
- "vcContexts": [ ],
- "vcSchemaProperties": [ ],
- "badges": [ ],
- "file": null,
- "createdBy": null,
- "createdAt": null,
- "updatedAt": null
}, - "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdBy": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- { }
], - "vcInfos": [
- { }
], - "vpInfos": [
- { }
], - "createdUsers": [
- { }
], - "createdVcInfos": [
- { }
], - "createdVpInfos": [
- { }
], - "createdDidInfos": [
- { }
], - "createdVcSchemas": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- null
], - "vcContexts": [
- null
], - "vcSchemaProperties": [
- null
], - "badges": [
- null
], - "file": {
- "id": null,
- "filename": null,
- "originalname": null,
- "type": null,
- "fileData": null,
- "executed": null,
- "status": null,
- "vcSchema": null,
- "createdBy": null,
- "createdAt": null,
- "updatedAt": null
}, - "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVerifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdFiles": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "filename": "file-1729389547388-110834208.csv",
- "originalname": "testdata.csv",
- "type": "text/csv",
- "fileData": "text/csv",
- "executed": false,
- "status": 0,
- "vcSchema": {
- "id": null,
- "title": null,
- "version": null,
- "description": null,
- "isBadgeSchema": null,
- "vcInfos": [ ],
- "vcContexts": [ ],
- "vcSchemaProperties": [ ],
- "badges": [ ],
- "file": null,
- "createdBy": null,
- "createdAt": null,
- "updatedAt": null
}, - "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}
], - "vcInfos": [
- { }
], - "vpInfos": [
- { }
], - "createdUsers": [
- { }
], - "createdVcInfos": [
- { }
], - "createdVpInfos": [
- { }
], - "createdDidInfos": [
- {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdVcSchemas": [
- {
- "id": null,
- "title": null,
- "version": null,
- "description": null,
- "isBadgeSchema": null,
- "vcInfos": [ ],
- "vcContexts": [ ],
- "vcSchemaProperties": [ ],
- "badges": [ ],
- "file": null,
- "createdBy": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdVerifications": [
- { }
], - "createdFiles": [
- {
- "id": null,
- "filename": null,
- "originalname": null,
- "type": null,
- "fileData": null,
- "executed": null,
- "status": null,
- "vcSchema": null,
- "createdBy": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vcInfo": { },
- "vpInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "badge": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "sample-badge-1",
- "filename": "badge-12345-12345.png",
- "description": "This is Sample Badge 1.",
- "status": 1,
- "vcSchema": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- { }
], - "vcContexts": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "vcSchema": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcSchemaProperties": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "propIndex": 1,
- "propName": "prop1",
- "propType": "string",
- "parentObjectIndex": "parentObjectIndex",
- "vcSchema": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "badges": [
- { }
], - "file": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "filename": "file-1729389547388-110834208.csv",
- "originalname": "testdata.csv",
- "type": "text/csv",
- "fileData": "text/csv",
- "executed": false,
- "status": 0,
- "vcSchema": { },
- "createdBy": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "raw": null,
- "createdBy": null,
- "user": null,
- "vcInfos": [ ],
- "didInfo": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcInfos": [
- { }
], - "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdUsers": [
- { }
], - "createdVcInfos": [
- { }
], - "createdVpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdDidInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "raw": null,
- "createdBy": null,
- "user": null,
- "vcInfos": [ ],
- "didInfo": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVcSchemas": [
- { }
], - "createdVerifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "raw": null,
- "createdBy": null,
- "user": null,
- "vcInfos": [ ],
- "didInfo": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdFiles": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdBy": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": { },
- "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcInfos": [
- { }
], - "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- { }
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdUsers": [
- { }
], - "createdVcInfos": [
- { }
], - "createdVpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- { }
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdDidInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": { },
- "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVcSchemas": [
- { }
], - "createdVerifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdFiles": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "filename": "file-1729389547388-110834208.csv",
- "originalname": "testdata.csv",
- "type": "text/csv",
- "fileData": "text/csv",
- "executed": false,
- "status": 0,
- "vcSchema": { },
- "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vcInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": { },
- "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcInfos": [
- { }
], - "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- { }
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdUsers": [
- { }
], - "createdVcInfos": [
- { }
], - "createdVpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- { }
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdDidInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": { },
- "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVcSchemas": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- { }
], - "vcContexts": [
- {
- "id": null,
- "context": null,
- "vcSchema": null,
- "createdAt": null,
- "updatedAt": null
}
], - "vcSchemaProperties": [
- {
- "id": null,
- "propIndex": null,
- "propName": null,
- "propType": null,
- "parentObjectIndex": null,
- "vcSchema": null,
- "createdAt": null,
- "updatedAt": null
}
], - "badges": [
- {
- "id": null,
- "label": null,
- "filename": null,
- "description": null,
- "status": null,
- "vcSchema": null,
- "vcInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "file": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "filename": "file-1729389547388-110834208.csv",
- "originalname": "testdata.csv",
- "type": "text/csv",
- "fileData": "text/csv",
- "executed": false,
- "status": 0,
- "vcSchema": { },
- "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVerifications": [
- { }
], - "createdFiles": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "filename": "file-1729389547388-110834208.csv",
- "originalname": "testdata.csv",
- "type": "text/csv",
- "fileData": "text/csv",
- "executed": false,
- "status": 0,
- "vcSchema": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- null
], - "vcContexts": [
- null
], - "vcSchemaProperties": [
- null
], - "badges": [
- null
], - "file": { },
- "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vcInfo": { },
- "vpInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcInfos": [
- { }
], - "vpInfos": [
- { }
], - "createdUsers": [
- { }
], - "createdVcInfos": [
- { }
], - "createdVpInfos": [
- { }
], - "createdDidInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVcSchemas": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- null
], - "vcContexts": [
- null
], - "vcSchemaProperties": [
- null
], - "badges": [
- null
], - "file": {
- "id": null,
- "filename": null,
- "originalname": null,
- "type": null,
- "fileData": null,
- "executed": null,
- "status": null,
- "vcSchema": null,
- "createdBy": null,
- "createdAt": null,
- "updatedAt": null
}, - "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVerifications": [
- { }
], - "createdFiles": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "filename": "file-1729389547388-110834208.csv",
- "originalname": "testdata.csv",
- "type": "text/csv",
- "fileData": "text/csv",
- "executed": false,
- "status": 0,
- "vcSchema": {
- "id": null,
- "title": null,
- "version": null,
- "description": null,
- "isBadgeSchema": null,
- "vcInfos": [ ],
- "vcContexts": [ ],
- "vcSchemaProperties": [ ],
- "badges": [ ],
- "file": null,
- "createdBy": null,
- "createdAt": null,
- "updatedAt": null
}, - "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "user": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcInfos": [
- { }
], - "vpInfos": [
- { }
], - "createdUsers": [
- { }
], - "createdVcInfos": [
- { }
], - "createdVpInfos": [
- { }
], - "createdDidInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVcSchemas": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- null
], - "vcContexts": [
- null
], - "vcSchemaProperties": [
- null
], - "badges": [
- null
], - "file": {
- "id": null,
- "filename": null,
- "originalname": null,
- "type": null,
- "fileData": null,
- "executed": null,
- "status": null,
- "vcSchema": null,
- "createdBy": null,
- "createdAt": null,
- "updatedAt": null
}, - "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVerifications": [
- { }
], - "createdFiles": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "filename": "file-1729389547388-110834208.csv",
- "originalname": "testdata.csv",
- "type": "text/csv",
- "fileData": "text/csv",
- "executed": false,
- "status": 0,
- "vcSchema": {
- "id": null,
- "title": null,
- "version": null,
- "description": null,
- "isBadgeSchema": null,
- "vcInfos": [ ],
- "vcContexts": [ ],
- "vcSchemaProperties": [ ],
- "badges": [ ],
- "file": null,
- "createdBy": null,
- "createdAt": null,
- "updatedAt": null
}, - "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vcInfos": [
- { }
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- { }
], - "vcInfos": [
- { }
], - "vpInfos": [
- { }
], - "createdUsers": [
- { }
], - "createdVcInfos": [
- { }
], - "createdVpInfos": [
- { }
], - "createdDidInfos": [
- { }
], - "createdVcSchemas": [
- {
- "id": null,
- "title": null,
- "version": null,
- "description": null,
- "isBadgeSchema": null,
- "vcInfos": [ ],
- "vcContexts": [ ],
- "vcSchemaProperties": [ ],
- "badges": [ ],
- "file": null,
- "createdBy": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdVerifications": [
- { }
], - "createdFiles": [
- {
- "id": null,
- "filename": null,
- "originalname": null,
- "type": null,
- "fileData": null,
- "executed": null,
- "status": null,
- "vcSchema": null,
- "createdBy": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdBy": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- { }
], - "vcInfos": [
- { }
], - "vpInfos": [
- { }
], - "createdUsers": [
- { }
], - "createdVcInfos": [
- { }
], - "createdVpInfos": [
- { }
], - "createdDidInfos": [
- { }
], - "createdVcSchemas": [
- {
- "id": null,
- "title": null,
- "version": null,
- "description": null,
- "isBadgeSchema": null,
- "vcInfos": [ ],
- "vcContexts": [ ],
- "vcSchemaProperties": [ ],
- "badges": [ ],
- "file": null,
- "createdBy": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdVerifications": [
- { }
], - "createdFiles": [
- {
- "id": null,
- "filename": null,
- "originalname": null,
- "type": null,
- "fileData": null,
- "executed": null,
- "status": null,
- "vcSchema": null,
- "createdBy": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "meta": {
- "totalItems": 1,
- "itemCount": 1,
- "itemsPerPage": 10,
- "totalPages": null,
- "currentPage": 1
}, - "links": {
- "previous": 10,
}
}
新規VCを発行します。
issuer required | string (必須) VCの発行者の識別子として用いる文字列の値。現在はDIDのみがサポートされていますが、今後のアップデートでDID以外の文字列をサポートする予定です。 |
vcSchemaId required | string (必須) 新規発行するVCの元となるVCスキーマの識別子 |
credentialSubject required | object (必須) VCの主張内容(クレーム)となる値のオブジェクト型の値 |
label | string (任意) VCの識別や整理などの管理するにあったてメタデータとして任意で設定可能な単語のフレーズ。(例: vc-for-project1) |
description | string (任意) VCの発行目的や用途など任意で設定可能な説明文 |
{- "issuer": "did:key:z6MkepWVAjYFGvTdffTcJJcE1sJKLHuCefxqw72dPodoxJrP",
- "vcSchemaId": "3bfc3721-eb7c-4a5b-b5ac-94d1f158911f",
- "credentialSubject": {
- "age": 20,
- "name": "test"
}, - "label": "vc-for-project1",
- "description": "This is the description of VC"
}
{- "vcInfo": {
- "id": "dcb884cb-bf93-437d-906b-67fb893dea98",
- "hash": "Qma1dK93xnJpyuSeQcFiq6JC5LANRTBegE3EUN79udbCcv",
- "description": "",
- "createdBy": {
- "id": "e8973f1a-a80f-4243-8061-144565b640f2",
- "name": "admin",
- "email": "admin@email.com",
- "needActivateFlow": false,
- "status": "active",
- "role": "admin",
- "createdAt": "2025-02-04T22:32:21.343Z",
- "updatedAt": "2025-02-04T22:32:21.343Z"
}, - "vcSchema": {
- "id": "fc765af3-63da-4030-9c2d-3c6b44ae283d",
- "title": "hogeVC",
- "version": "1.0.0",
- "description": "",
- "createdAt": "2024-10-18T04:17:56.564Z",
- "updatedAt": "2024-10-18T04:17:56.564Z"
}, - "user": null,
- "vpInfos": [ ],
- "groups": [ ],
- "badge": null,
- "verifications": [ ],
- "createdAt": "2024-07-09T04:37:14.248Z",
- "updatedAt": "2024-07-09T04:37:14.248Z"
}, - "vcObject": {
- "credentialSubject": {
- "age": 20,
- "name": "test"
}, - "issuer": {
- "id": "did:ethr:0x030a48b2e2c4890ff2c26b91b93f8f899191c21bd6d52722e62a5251c55dfa22a5"
}, - "type": [
- "VerifiableCredential"
], - "issuanceDate": "2024-07-09T04:37:14.000Z",
- "proof": {
- "type": "JwtProof2020",
- "jwt": "eyJhbGciOiJFUzI1NksiLCJ0eXAiOiJKV1QifQ.eyJ2YyI6eyJAY29udGV4dCI6WyJodHRwczovL3d3dy53My5vcmcvMjAxOC9jcmVkZW50aWFscy92MSJdLCJ0eXBlIjpbIlZlcmlmaWFibGVDcmVkZW50aWFsIl0sImNyZWRlbnRpYWxTdWJqZWN0Ijp7ImFnZSI6MjAsIm5hbWUiOiJ0ZXN0In19LCJuYmYiOjE3MjA0OTk4MzQsImlzcyI6ImRpZDpldGhyOjB4MDMwYTQ4YjJlMmM0ODkwZmYyYzI2YjkxYjkzZjhmODk5MTkxYzIxYmQ2ZDUyNzIyZTYyYTUyNTFjNTVkZmEyMmE1In0.1nRHUig219PlBaUDjWUW7h-63C1owP0Qd_epijgLaftlS-XyIafO2KHQQbBF_x2t1-nB49rW1DlhpItkV-Dmmi"
}
}
}
VCスキーマを指定せず直接新規VCを発行します。
issuer required | string (必須) VCの発行者の識別子として用いる文字列の値。現在はDIDのみがサポートされていますが、今後のアップデートでDID以外の文字列をサポートする予定です。 |
credentialSubject required | object (必須) VCの主張内容(クレーム)となる値のオブジェクト型の値 |
label | string (任意) VCの識別や整理などの管理するにあったてメタデータとして任意で設定可能な単語のフレーズ。(例: vc-for-project1) |
description | string (任意) VCの発行目的や用途など任意で設定可能な説明文 |
{- "issuer": "did:key:z6MkepWVAjYFGvTdffTcJJcE1sJKLHuCefxqw72dPodoxJrP",
- "credentialSubject": {
- "age": 20,
- "name": "test"
}, - "label": "vc-for-project1",
- "description": "This is the description of VC"
}
{- "vcInfo": {
- "id": "dcb884cb-bf93-437d-906b-67fb893dea98",
- "hash": "Qma1dK93xnJpyuSeQcFiq6JC5LANRTBegE3EUN79udbCcv",
- "description": "",
- "createdBy": {
- "id": "e8973f1a-a80f-4243-8061-144565b640f2",
- "name": "admin",
- "email": "admin@email.com",
- "needActivateFlow": false,
- "status": "active",
- "role": "admin",
- "createdAt": "2025-02-04T22:32:21.343Z",
- "updatedAt": "2025-02-04T22:32:21.343Z"
}, - "vcSchema": {
- "id": "fc765af3-63da-4030-9c2d-3c6b44ae283d",
- "title": "hogeVC",
- "version": "1.0.0",
- "description": "",
- "createdAt": "2024-10-18T04:17:56.564Z",
- "updatedAt": "2024-10-18T04:17:56.564Z"
}, - "user": null,
- "vpInfos": [ ],
- "groups": [ ],
- "badge": null,
- "verifications": [ ],
- "createdAt": "2024-07-09T04:37:14.248Z",
- "updatedAt": "2024-07-09T04:37:14.248Z"
}, - "vcObject": {
- "credentialSubject": {
- "age": 20,
- "name": "test"
}, - "issuer": {
- "id": "did:ethr:0x030a48b2e2c4890ff2c26b91b93f8f899191c21bd6d52722e62a5251c55dfa22a5"
}, - "type": [
- "VerifiableCredential"
], - "issuanceDate": "2024-07-09T04:37:14.000Z",
- "proof": {
- "type": "JwtProof2020",
- "jwt": "eyJhbGciOiJFUzI1NksiLCJ0eXAiOiJKV1QifQ.eyJ2YyI6eyJAY29udGV4dCI6WyJodHRwczovL3d3dy53My5vcmcvMjAxOC9jcmVkZW50aWFscy92MSJdLCJ0eXBlIjpbIlZlcmlmaWFibGVDcmVkZW50aWFsIl0sImNyZWRlbnRpYWxTdWJqZWN0Ijp7ImFnZSI6MjAsIm5hbWUiOiJ0ZXN0In19LCJuYmYiOjE3MjA0OTk4MzQsImlzcyI6ImRpZDpldGhyOjB4MDMwYTQ4YjJlMmM0ODkwZmYyYzI2YjkxYjkzZjhmODk5MTkxYzIxYmQ2ZDUyNzIyZTYyYTUyNTFjNTVkZmEyMmE1In0.1nRHUig219PlBaUDjWUW7h-63C1owP0Qd_epijgLaftlS-XyIafO2KHQQbBF_x2t1-nB49rW1DlhpItkV-Dmmi"
}
}
}
外部で発行された既存VCをアップロードし、本アプリケーションに保存します。。
credentialObject | object (任意) JSON形式のVCオブジェクト。ファイルアップロードではなくテキストを用いて作成する場合のみ必須 |
label | string (任意) VCの識別や整理などの管理するにあったてメタデータとして任意で設定可能な単語のフレーズ。(例: vc-for-project1) |
description | string (任意) VCの発行目的や用途など任意で設定可能な説明文。 |
{- "vcInfo": {
- "id": "dcb884cb-bf93-437d-906b-67fb893dea98",
- "hash": "Qma1dK93xnJpyuSeQcFiq6JC5LANRTBegE3EUN79udbCcv",
- "description": "",
- "createdBy": {
- "id": "e8973f1a-a80f-4243-8061-144565b640f2",
- "name": "admin",
- "email": "admin@email.com",
- "needActivateFlow": false,
- "status": "active",
- "role": "admin",
- "createdAt": "2025-02-04T22:32:21.343Z",
- "updatedAt": "2025-02-04T22:32:21.343Z"
}, - "vcSchema": {
- "id": "fc765af3-63da-4030-9c2d-3c6b44ae283d",
- "title": "hogeVC",
- "version": "1.0.0",
- "description": "",
- "createdAt": "2024-10-18T04:17:56.564Z",
- "updatedAt": "2024-10-18T04:17:56.564Z"
}, - "user": null,
- "vpInfos": [ ],
- "groups": [ ],
- "badge": null,
- "verifications": [ ],
- "createdAt": "2024-07-09T04:37:14.248Z",
- "updatedAt": "2024-07-09T04:37:14.248Z"
}, - "vcObject": {
- "credentialSubject": {
- "age": 20,
- "name": "test"
}, - "issuer": {
- "id": "did:ethr:0x030a48b2e2c4890ff2c26b91b93f8f899191c21bd6d52722e62a5251c55dfa22a5"
}, - "type": [
- "VerifiableCredential"
], - "issuanceDate": "2024-07-09T04:37:14.000Z",
- "proof": {
- "type": "JwtProof2020",
- "jwt": "eyJhbGciOiJFUzI1NksiLCJ0eXAiOiJKV1QifQ.eyJ2YyI6eyJAY29udGV4dCI6WyJodHRwczovL3d3dy53My5vcmcvMjAxOC9jcmVkZW50aWFscy92MSJdLCJ0eXBlIjpbIlZlcmlmaWFibGVDcmVkZW50aWFsIl0sImNyZWRlbnRpYWxTdWJqZWN0Ijp7ImFnZSI6MjAsIm5hbWUiOiJ0ZXN0In19LCJuYmYiOjE3MjA0OTk4MzQsImlzcyI6ImRpZDpldGhyOjB4MDMwYTQ4YjJlMmM0ODkwZmYyYzI2YjkxYjkzZjhmODk5MTkxYzIxYmQ2ZDUyNzIyZTYyYTUyNTFjNTVkZmEyMmE1In0.1nRHUig219PlBaUDjWUW7h-63C1owP0Qd_epijgLaftlS-XyIafO2KHQQbBF_x2t1-nB49rW1DlhpItkV-Dmmi"
}
}
}
リクエストパラメータのidで指定された単一のVC情報の詳細情報の値を返します。
id required | string |
{- "vcInfo": {
- "id": "dcb884cb-bf93-437d-906b-67fb893dea98",
- "hash": "Qma1dK93xnJpyuSeQcFiq6JC5LANRTBegE3EUN79udbCcv",
- "description": "",
- "createdBy": {
- "id": "e8973f1a-a80f-4243-8061-144565b640f2",
- "name": "admin",
- "email": "admin@email.com",
- "needActivateFlow": false,
- "status": "active",
- "role": "admin",
- "createdAt": "2025-02-04T22:32:21.343Z",
- "updatedAt": "2025-02-04T22:32:21.343Z"
}, - "vcSchema": {
- "id": "fc765af3-63da-4030-9c2d-3c6b44ae283d",
- "title": "hogeVC",
- "version": "1.0.0",
- "description": "",
- "createdAt": "2024-10-18T04:17:56.564Z",
- "updatedAt": "2024-10-18T04:17:56.564Z"
}, - "user": null,
- "vpInfos": [ ],
- "groups": [ ],
- "badge": null,
- "verifications": [ ],
- "createdAt": "2024-07-09T04:37:14.248Z",
- "updatedAt": "2024-07-09T04:37:14.248Z"
}, - "vcObject": {
- "credentialSubject": {
- "age": 20,
- "name": "test"
}, - "issuer": {
- "id": "did:ethr:0x030a48b2e2c4890ff2c26b91b93f8f899191c21bd6d52722e62a5251c55dfa22a5"
}, - "type": [
- "VerifiableCredential"
], - "issuanceDate": "2024-07-09T04:37:14.000Z",
- "proof": {
- "type": "JwtProof2020",
- "jwt": "eyJhbGciOiJFUzI1NksiLCJ0eXAiOiJKV1QifQ.eyJ2YyI6eyJAY29udGV4dCI6WyJodHRwczovL3d3dy53My5vcmcvMjAxOC9jcmVkZW50aWFscy92MSJdLCJ0eXBlIjpbIlZlcmlmaWFibGVDcmVkZW50aWFsIl0sImNyZWRlbnRpYWxTdWJqZWN0Ijp7ImFnZSI6MjAsIm5hbWUiOiJ0ZXN0In19LCJuYmYiOjE3MjA0OTk4MzQsImlzcyI6ImRpZDpldGhyOjB4MDMwYTQ4YjJlMmM0ODkwZmYyYzI2YjkxYjkzZjhmODk5MTkxYzIxYmQ2ZDUyNzIyZTYyYTUyNTFjNTVkZmEyMmE1In0.1nRHUig219PlBaUDjWUW7h-63C1owP0Qd_epijgLaftlS-XyIafO2KHQQbBF_x2t1-nB49rW1DlhpItkV-Dmmi"
}
}
}
VC情報の所有者、関係者などの管理者としてクライアントアカウントを紐付けます。
id required | string |
userId required | string (必須) VC情報を紐づけるアカウントの識別子 |
{- "userId": "3bfc3721-eb7c-4a5b-b5ac-94d1f158911f"
}
リクエストパラメータのidで指定されたVC情報から新規VPを発行します。
id required | string |
didInfoId required | string (必須) VPを生成する際にVCに対しての署名に用いるDIDの識別子 |
{- "didInfoId": "3bfc3721-eb7c-4a5b-b5ac-94d1f158911f"
}
{- "vcInfo": {
- "id": "dcb884cb-bf93-437d-906b-67fb893dea98",
- "hash": "Qma1dK93xnJpyuSeQcFiq6JC5LANRTBegE3EUN79udbCcv",
- "description": "",
- "createdBy": {
- "id": "e8973f1a-a80f-4243-8061-144565b640f2",
- "name": "admin",
- "email": "admin@email.com",
- "needActivateFlow": false,
- "status": "active",
- "role": "admin",
- "createdAt": "2025-02-04T22:32:21.343Z",
- "updatedAt": "2025-02-04T22:32:21.343Z"
}, - "vcSchema": {
- "id": "fc765af3-63da-4030-9c2d-3c6b44ae283d",
- "title": "hogeVC",
- "version": "1.0.0",
- "description": "",
- "createdAt": "2024-10-18T04:17:56.564Z",
- "updatedAt": "2024-10-18T04:17:56.564Z"
}, - "user": null,
- "vpInfos": [ ],
- "groups": [ ],
- "badge": null,
- "verifications": [ ],
- "createdAt": "2024-07-09T04:37:14.248Z",
- "updatedAt": "2024-07-09T04:37:14.248Z"
}, - "vcObject": {
- "credentialSubject": {
- "age": 20,
- "name": "test"
}, - "issuer": {
- "id": "did:ethr:0x030a48b2e2c4890ff2c26b91b93f8f899191c21bd6d52722e62a5251c55dfa22a5"
}, - "type": [
- "VerifiableCredential"
], - "issuanceDate": "2024-07-09T04:37:14.000Z",
- "proof": {
- "type": "JwtProof2020",
- "jwt": "eyJhbGciOiJFUzI1NksiLCJ0eXAiOiJKV1QifQ.eyJ2YyI6eyJAY29udGV4dCI6WyJodHRwczovL3d3dy53My5vcmcvMjAxOC9jcmVkZW50aWFscy92MSJdLCJ0eXBlIjpbIlZlcmlmaWFibGVDcmVkZW50aWFsIl0sImNyZWRlbnRpYWxTdWJqZWN0Ijp7ImFnZSI6MjAsIm5hbWUiOiJ0ZXN0In19LCJuYmYiOjE3MjA0OTk4MzQsImlzcyI6ImRpZDpldGhyOjB4MDMwYTQ4YjJlMmM0ODkwZmYyYzI2YjkxYjkzZjhmODk5MTkxYzIxYmQ2ZDUyNzIyZTYyYTUyNTFjNTVkZmEyMmE1In0.1nRHUig219PlBaUDjWUW7h-63C1owP0Qd_epijgLaftlS-XyIafO2KHQQbBF_x2t1-nB49rW1DlhpItkV-Dmmi"
}
}
}
リクエストパラメータのidで指定された単一のVC情報に対して、任意の管理用ラベルを追加します。
id required | string |
label required | string (必須) VCの識別や整理などの管理するにあったてメタデータとして任意で設定可能な単語のフレーズ。(例: vc-for-project1) |
{- "label": "vc-for-project1"
}
{- "vcInfo": {
- "id": "dcb884cb-bf93-437d-906b-67fb893dea98",
- "hash": "Qma1dK93xnJpyuSeQcFiq6JC5LANRTBegE3EUN79udbCcv",
- "description": "",
- "createdBy": {
- "id": "e8973f1a-a80f-4243-8061-144565b640f2",
- "name": "admin",
- "email": "admin@email.com",
- "needActivateFlow": false,
- "status": "active",
- "role": "admin",
- "createdAt": "2025-02-04T22:32:21.343Z",
- "updatedAt": "2025-02-04T22:32:21.343Z"
}, - "vcSchema": {
- "id": "fc765af3-63da-4030-9c2d-3c6b44ae283d",
- "title": "hogeVC",
- "version": "1.0.0",
- "description": "",
- "createdAt": "2024-10-18T04:17:56.564Z",
- "updatedAt": "2024-10-18T04:17:56.564Z"
}, - "user": null,
- "vpInfos": [ ],
- "groups": [ ],
- "badge": null,
- "verifications": [ ],
- "createdAt": "2024-07-09T04:37:14.248Z",
- "updatedAt": "2024-07-09T04:37:14.248Z"
}, - "vcObject": {
- "credentialSubject": {
- "age": 20,
- "name": "test"
}, - "issuer": {
- "id": "did:ethr:0x030a48b2e2c4890ff2c26b91b93f8f899191c21bd6d52722e62a5251c55dfa22a5"
}, - "type": [
- "VerifiableCredential"
], - "issuanceDate": "2024-07-09T04:37:14.000Z",
- "proof": {
- "type": "JwtProof2020",
- "jwt": "eyJhbGciOiJFUzI1NksiLCJ0eXAiOiJKV1QifQ.eyJ2YyI6eyJAY29udGV4dCI6WyJodHRwczovL3d3dy53My5vcmcvMjAxOC9jcmVkZW50aWFscy92MSJdLCJ0eXBlIjpbIlZlcmlmaWFibGVDcmVkZW50aWFsIl0sImNyZWRlbnRpYWxTdWJqZWN0Ijp7ImFnZSI6MjAsIm5hbWUiOiJ0ZXN0In19LCJuYmYiOjE3MjA0OTk4MzQsImlzcyI6ImRpZDpldGhyOjB4MDMwYTQ4YjJlMmM0ODkwZmYyYzI2YjkxYjkzZjhmODk5MTkxYzIxYmQ2ZDUyNzIyZTYyYTUyNTFjNTVkZmEyMmE1In0.1nRHUig219PlBaUDjWUW7h-63C1owP0Qd_epijgLaftlS-XyIafO2KHQQbBF_x2t1-nB49rW1DlhpItkV-Dmmi"
}
}
}
アプリケーションが管理するVP情報を一覧として値を返します。
page | number Example: page=1 (必須) ページネーションを表示する際のページ数に当たるクエリパラメーター。全件取得する際は1を指定。(デフォルト: 1) |
limit | number Example: limit=10 (必須) ページネーションを表示する際のページ数あたりに表示する件数を指定するクエリパラメーター。全件取得する際は0を指定。(デフォルト: 10) |
label | string (任意) 例: "vc-for-project1" |
description | string (任意) |
{- "items": [
- {
- "id": "dcb884cb-bf93-437d-906b-67fb893dea98",
- "label": null,
- "hash": "Qma1dK93xnJpyuSeQcFiq6JC5LANRTBegE3EUN79udbCcv",
- "description": "",
- "createdAt": "2024-07-09T04:37:14.248Z",
- "updatedAt": "2024-07-09T04:37:14.248Z",
- "raw": "{\"hoge\":\"a\"..."
}
], - "meta": {
- "totalItems": 1,
- "itemCount": 1,
- "itemsPerPage": 10,
- "totalPages": null,
- "currentPage": 1
}, - "links": {
- "previous": 10,
}
}
新規VPを生成します。
vcInfoIds required | Array of strings (必須) VPを生成する元となるVC情報の識別子の配列 |
didInfoId required | string (必須) VP生成時の署名に用いるDID情報の識別子 |
label | string (任意) VPの識別や整理などの管理するにあったてメタデータとして任意で設定可能な単語のフレーズ。(例: vc-for-project1) |
description | string (任意) VPの生成目的や用途などを任意で設定可能な説明文 |
{- "vcInfoIds": [
- "3bfc3721-eb7c-4a5b-b5ac-94d1f158911f"
], - "didInfoId": "3bfc3721-eb7c-4a5b-b5ac-94d1f158911f",
- "label": "vp-for-project1",
- "description": "This is the description of did"
}
外部で発行された既存VPをアップロードし、本アプリケーションに保存します。。
credentialObject | object (任意) JSON形式のVPオブジェクト。ファイルアップロードではなくテキストを用いて作成する場合のみ必須 |
label | string (任意) VPの識別や整理などの管理するにあったてメタデータとして任意で設定可能な単語のフレーズ。(例: vc-for-project1) |
description | string (任意) VPの発行目的や用途など任意で設定可能な説明文。 |
{- "items": [
- {
- "id": "dcb884cb-bf93-437d-906b-67fb893dea98",
- "label": null,
- "hash": "Qma1dK93xnJpyuSeQcFiq6JC5LANRTBegE3EUN79udbCcv",
- "description": "",
- "createdAt": "2024-07-09T04:37:14.248Z",
- "updatedAt": "2024-07-09T04:37:14.248Z",
- "raw": "{\"hoge\":\"a\"..."
}
], - "meta": {
- "totalItems": 1,
- "itemCount": 1,
- "itemsPerPage": 10,
- "totalPages": null,
- "currentPage": 1
}, - "links": {
- "previous": 10,
}
}
リクエストパラメータのidで指定された単一のVP情報の詳細情報の値を返します。
id required | string |
{- "vpInfo": {
- "id": "dcb884cb-bf93-437d-906b-67fb893dea98",
- "label": null,
- "hash": "Qma1dK93xnJpyuSeQcFiq6JC5LANRTBegE3EUN79udbCcv",
- "description": "",
- "raw": "{\"hoge\":\"a\"...",
- "createdBy": {
- "id": "e8973f1a-a80f-4243-8061-144565b640f2",
- "name": "admin",
- "email": "admin@email.com",
- "needActivateFlow": false,
- "status": "active",
- "role": "admin",
- "createdAt": "2025-02-04T22:32:21.343Z",
- "updatedAt": "2025-02-04T22:32:21.343Z"
}, - "user": null,
- "vcInfos": [ ],
- "groups": [ ],
- "didInfos": [ ],
- "verifications": [ ],
- "createdAt": "2024-07-09T04:37:14.248Z",
- "updatedAt": "2024-07-09T04:37:14.248Z"
}, - "vpObject": { }
}
VP情報の所有者、関係者などの管理者としてクライアントアカウントを紐付けます。
id required | string |
userId required | string (必須) VC情報を紐づけるアカウントの識別子 |
{- "userId": "3bfc3721-eb7c-4a5b-b5ac-94d1f158911f"
}
リクエストパラメータのidで指定された単一のVP情報に対して、任意の管理用ラベルを追加します。
id required | string |
label required | string (必須) VPの識別や整理などの管理するにあったてメタデータとして任意で設定可能な単語のフレーズ。(例: vp-for-project1) |
{- "label": "v p-for-project1"
}
{- "items": [
- {
- "id": "dcb884cb-bf93-437d-906b-67fb893dea98",
- "label": null,
- "hash": "Qma1dK93xnJpyuSeQcFiq6JC5LANRTBegE3EUN79udbCcv",
- "description": "",
- "createdAt": "2024-07-09T04:37:14.248Z",
- "updatedAt": "2024-07-09T04:37:14.248Z",
- "raw": "{\"hoge\":\"a\"..."
}
], - "meta": {
- "totalItems": 1,
- "itemCount": 1,
- "itemsPerPage": 10,
- "totalPages": null,
- "currentPage": 1
}, - "links": {
- "previous": 10,
}
}
アプリケーションが管理するVC/VP検証結果を一覧として値を返します。
page | number Example: page=1 (必須) ページネーションを表示する際のページ数に当たるクエリパラメーター。全件取得する際は1を指定。(デフォルト: 1) |
limit | number Example: limit=10 (必須) ページネーションを表示する際のページ数あたりに表示する件数を指定するクエリパラメーター。全件取得する際は0を指定。(デフォルト: 10) |
label | string (任意) 例: "verification-for-project1" |
result | boolean (任意) 例: true |
{- "items": [
- {
- "id": "dcb884cb-bf93-437d-906b-67fb893dea98",
- "label": "verification-1",
- "result": true,
- "createdBy": {
- "id": "e8973f1a-a80f-4243-8061-144565b640f2",
- "name": "admin",
- "email": "admin@email.com",
- "needActivateFlow": false,
- "status": "active",
- "role": "admin",
- "createdAt": "2025-02-04T22:32:21.343Z",
- "updatedAt": "2025-02-04T22:32:21.343Z"
}, - "vcInfo": [
- {
- "id": "dcb884cb-bf93-437d-906b-67fb893dea98",
- "label": "vc-for-project1",
- "hash": "Qma1dK93xnJpyuSeQcFiq6JC5LANRTBegE3EUN79udbCcv",
- "description": "",
- "createdAt": "2024-07-09T04:37:14.248Z",
- "updatedAt": "2024-07-09T04:37:14.248Z"
}
], - "vpInfo": [ ],
- "createdAt": "2024-07-09T04:37:14.248Z",
- "updatedAt": "2024-07-09T04:37:14.248Z"
}
], - "meta": {
- "totalItems": 1,
- "itemCount": 1,
- "itemsPerPage": 10,
- "totalPages": null,
- "currentPage": 1
}, - "links": {
- "previous": 10,
}
}
VC/VPの検証を実行します。
label | string (必須) 検証結果の識別や整理などの管理するにあったてメタデータとして任意で設定可能な単語のフレーズ。(例: verify-for-check) |
vcInfoId | string (任意) 検証を実行するVC情報の識別子。VC情報の識別子を指定して検証を実行する場合は必須。 |
vpInfoId | string (任意) 検証を実行するVP情報の識別子。VP情報の識別子を指定して検証を実行する場合は必須。 |
vcObject | object (任意) 検証を実行するVCのJSONテキストデータ。VCのJSONテキストデータを入力して検証を実行する場合は必須。 |
vpObject | object (任意) 検証を実行するVPのJSONテキストデータ。VPのJSONテキストデータを入力して検証を実行する場合は必須。 |
{- "label": "verify-for-check",
- "vcInfoId": "3bfc3721-eb7c-4a5b-b5ac-94d1f158911f",
- "vpInfoId": "3bfc3721-eb7c-4a5b-b5ac-94d1f158911f",
- "vcObject": {
- "credentialSubject": {
- "age": 20,
- "name": "test"
}, - "issuer": {
- "id": "did:ethr:0x030a48b2e2c4890ff2c26b91b93f8f899191c21bd6d52722e62a5251c55dfa22a5"
}, - "type": [
- "VerifiableCredential"
], - "issuanceDate": "2024-07-09T04:37:14.000Z",
- "proof": {
- "type": "JwtProof2020",
- "jwt": "eyJhbGciOiJFUzI1NksiLCJ0eXAiOiJKV1QifQ.eyJ2YyI6eyJAY29udGV4dCI6WyJodHRwczovL3d3dy53My5vcmcvMjAxOC9jcmVkZW50aWFscy92MSJdLCJ0eXBlIjpbIlZlcmlmaWFibGVDcmVkZW50aWFsIl0sImNyZWRlbnRpYWxTdWJqZWN0Ijp7ImFnZSI6MjAsIm5hbWUiOiJ0ZXN0In19LCJuYmYiOjE3MjA0OTk4MzQsImlzcyI6ImRpZDpldGhyOjB4MDMwYTQ4YjJlMmM0ODkwZmYyYzI2YjkxYjkzZjhmODk5MTkxYzIxYmQ2ZDUyNzIyZTYyYTUyNTFjNTVkZmEyMmE1In0.1nRHUig219PlBaUDjWUW7h-63C1owP0Qd_epijgLaftlS-XyIafO2KHQQbBF_x2t1-nB49rW1DlhpItkV-Dmmi"
}
}, - "vpObject": {
- "credentialSubject": {
- "age": 20,
- "name": "test"
}, - "issuer": {
- "id": "did:ethr:0x030a48b2e2c4890ff2c26b91b93f8f899191c21bd6d52722e62a5251c55dfa22a5"
}, - "type": [
- "VerifiableCredential"
], - "issuanceDate": "2024-07-09T04:37:14.000Z",
- "proof": {
- "type": "JwtProof2020",
- "jwt": "eyJhbGciOiJFUzI1NksiLCJ0eXAiOiJKV1QifQ.eyJ2YyI6eyJAY29udGV4dCI6WyJodHRwczovL3d3dy53My5vcmcvMjAxOC9jcmVkZW50aWFscy92MSJdLCJ0eXBlIjpbIlZlcmlmaWFibGVDcmVkZW50aWFsIl0sImNyZWRlbnRpYWxTdWJqZWN0Ijp7ImFnZSI6MjAsIm5hbWUiOiJ0ZXN0In19LCJuYmYiOjE3MjA0OTk4MzQsImlzcyI6ImRpZDpldGhyOjB4MDMwYTQ4YjJlMmM0ODkwZmYyYzI2YjkxYjkzZjhmODk5MTkxYzIxYmQ2ZDUyNzIyZTYyYTUyNTFjNTVkZmEyMmE1In0.1nRHUig219PlBaUDjWUW7h-63C1owP0Qd_epijgLaftlS-XyIafO2KHQQbBF_x2t1-nB49rW1DlhpItkV-Dmmi"
}
}
}
{- "id": "3bfc3721-eb7c-4a5b-b5ac-94d1f158911f",
- "label": "This is the description of VP",
- "result": true,
- "createdBy": {
- "id": "e8973f1a-a80f-4243-8061-144565b640f2",
- "name": "admin",
- "email": "admin@email.com",
- "needActivateFlow": false,
- "status": "active",
- "role": "admin",
- "createdAt": "2025-02-04T22:32:21.343Z",
- "updatedAt": "2025-02-04T22:32:21.343Z"
}, - "vcInfo": {
- "id": "dcb884cb-bf93-437d-906b-67fb893dea98",
- "title": "schema 1_1720499834247",
- "hash": "Qma1dK93xnJpyuSeQcFiq6JC5LANRTBegE3EUN79udbCcv",
- "description": "",
- "user": null,
- "createdAt": "2024-07-09T04:37:14.248Z",
- "updatedAt": "2024-07-09T04:37:14.248Z"
}, - "vpInfo": {
- "id": "dcb884cb-bf93-437d-906b-67fb893dea98",
- "title": "schema 1_1720499834247",
- "hash": "Qma1dK93xnJpyuSeQcFiq6JC5LANRTBegE3EUN79udbCcv",
- "description": "",
- "user": null,
- "createdAt": "2024-07-09T04:37:14.248Z",
- "updatedAt": "2024-07-09T04:37:14.248Z"
}, - "createdAt": "2024-05-24T06:39:54.352Z",
- "updatedAt": "2024-05-24T06:39:54.352Z"
}
リクエストパラメータのidで指定された単一のVC/VP検証結果の詳細情報の値を返します。
id required | string |
{- "id": "3bfc3721-eb7c-4a5b-b5ac-94d1f158911f",
- "label": "This is the description of VP",
- "result": true,
- "createdBy": {
- "id": "e8973f1a-a80f-4243-8061-144565b640f2",
- "name": "admin",
- "email": "admin@email.com",
- "needActivateFlow": false,
- "status": "active",
- "role": "admin",
- "createdAt": "2025-02-04T22:32:21.343Z",
- "updatedAt": "2025-02-04T22:32:21.343Z"
}, - "vcInfo": {
- "id": "dcb884cb-bf93-437d-906b-67fb893dea98",
- "title": "schema 1_1720499834247",
- "hash": "Qma1dK93xnJpyuSeQcFiq6JC5LANRTBegE3EUN79udbCcv",
- "description": "",
- "user": null,
- "createdAt": "2024-07-09T04:37:14.248Z",
- "updatedAt": "2024-07-09T04:37:14.248Z"
}, - "vpInfo": {
- "id": "dcb884cb-bf93-437d-906b-67fb893dea98",
- "title": "schema 1_1720499834247",
- "hash": "Qma1dK93xnJpyuSeQcFiq6JC5LANRTBegE3EUN79udbCcv",
- "description": "",
- "user": null,
- "createdAt": "2024-07-09T04:37:14.248Z",
- "updatedAt": "2024-07-09T04:37:14.248Z"
}, - "createdAt": "2024-05-24T06:39:54.352Z",
- "updatedAt": "2024-05-24T06:39:54.352Z"
}
VCスキーマを一覧として値を返します。
page | number Example: page=1 (必須) ページネーションを表示する際のページ数に当たるクエリパラメーター。全件取得する際は1を指定。(デフォルト: 1) |
limit | number Example: limit=10 (必須) ページネーションを表示する際のページ数あたりに表示する件数を指定するクエリパラメーター。全件取得する際は0を指定。(デフォルト: 10) |
title | string (任意) 例: "Schema Sample" |
version | string (任意) 例: "1.0.0" |
description | string (任意) 例: |
isBadgeSchema | boolean (任意) 例: true |
{- "items": [
- {
- "id": "fc765af3-63da-4030-9c2d-3c6b44ae283d",
- "title": "hogeVC",
- "version": "1.0.0",
- "vcInfos": [
- {
- "id": "41e840da-ec7a-4c9b-8783-9b4160719bea",
- "label": "cdsd",
- "hash": "QmSfRENacd2K2kbjYzPSxRKThZpYio4yX1Xb9MMnSxxZKu",
- "description": null,
- "createdAt": "2024-10-18T04:18:18.191Z",
- "updatedAt": "2024-10-18T04:18:18.191Z"
}
], - "vcSchemaProperties": [
- {
- "id": "98164eb2-6650-4198-813a-cc9e11c221dd",
- "propIndex": 2,
- "propName": "age",
- "propType": "number",
- "parentObjectIndex": null,
- "createdAt": "2024-10-18T04:17:56.585Z",
- "updatedAt": "2024-10-18T04:17:56.585Z"
}, - {
- "id": "866154a6-e0ba-4caa-aaec-4d923f55cb4a",
- "propIndex": 1,
- "propName": "name",
- "propType": "string",
- "parentObjectIndex": null,
- "createdAt": "2024-10-18T04:17:56.584Z",
- "updatedAt": "2024-10-18T04:17:56.584Z"
}
], - "groups": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Project Group 1",
- "status": "active",
- "description": "This is Project Group 1.",
- "createdAt": "2024-05-24T06:39:54.352Z",
- "updatedAt": "2024-05-24T06:39:54.352Z"
}
], - "createdAt": "2024-10-18T04:17:56.564Z",
- "updatedAt": "2024-10-18T04:17:56.564Z"
}
], - "meta": {
- "totalItems": 1,
- "itemCount": 1,
- "itemsPerPage": 10,
- "totalPages": null,
- "currentPage": 1
}, - "links": {
- "previous": 10,
}
}
新規VCスキーマを作成します。
title required | string (必須) 新規生成するVCスキーマのタイトル |
version required | string (必須) VCスキーマのバージョン(デフォルト: 1.0.0) |
contexts | Array of strings (任意) VCスキーマに設定する@context文字列の配列 |
description | string (任意) VCスキーマの説明文 |
isBadgeSchema required | boolean (任意) このスキーマがバッジのスキーマか否か(デフォルト: false) |
fileId required | string (任意) バッジの画像のファイル識別子。' |
required | Array of objects (VcSchemaProperty) (必須) VCのスキーマの各項目における項目名と項目型のオブジェクトの配列 |
{- "title": "VC Schema sample",
- "version": "1.0.0",
- "description": "This is the description of did",
- "isBadgeSchema": false,
- "fileId": "3bfc3721-eb7c-4a5b-b5ac-94d1f158911f",
- "propArray": [
- {
- "propIndex": 1,
- "propName": "id",
- "propType": "string",
- "parentObjectIndex": null
}, - {
- "propIndex": 2,
- "propName": "status",
- "propType": "object",
- "parentObjectIndex": null
}, - {
- "propIndex": 3,
- "propName": "age",
- "propType": "number",
- "parentObjectIndex": 2
}, - {
- "propIndex": 4,
- "propName": "isActive",
- "propType": "boolean",
- "parentObjectIndex": 2
}, - {
- "propIndex": 5,
- "propName": "hogeArray",
- "propType": "array:string",
- "parentObjectIndex": null
}
]
}
{- "id": "3bfc3721-eb7c-4a5b-b5ac-94d1f158911f",
- "title": "This is VC Schema sample 1",
- "version": "1.0.0",
- "description": "This is VC Schema 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdAt": "2024-05-24T06:39:54.352Z",
- "updatedAt": "2024-05-24T06:39:54.352Z"
}
], - "vcContexts": [ ],
- "vcSchemaProperties": [
- {
- "id": "53d624fb-456b-4500-8673-d53dc672bbeb",
- "propName": "age",
- "propType": "number",
- "createdAt": "2024-07-09T04:25:19.878Z",
- "updatedAt": "2024-07-09T04:25:19.878Z"
}, - {
- "id": "576a7023-141c-4dea-8d8c-b1162b7f5963",
- "propName": "name",
- "propType": "string",
- "createdAt": "2024-07-09T04:25:19.877Z",
- "updatedAt": "2024-07-09T04:25:19.877Z"
}
], - "badges": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "sample-badge-1",
- "filename": "badge-12345-12345.png",
- "description": "This is Sample Badge 1.",
- "status": 1,
- "vcSchema": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "raw": null,
- "createdBy": null,
- "user": null,
- "vcInfos": [ ],
- "didInfo": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcInfos": [
- { }
], - "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdUsers": [
- { }
], - "createdVcInfos": [
- { }
], - "createdVpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdDidInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "raw": null,
- "createdBy": null,
- "user": null,
- "vcInfos": [ ],
- "didInfo": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVcSchemas": [
- { }
], - "createdVerifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "raw": null,
- "createdBy": null,
- "user": null,
- "vcInfos": [ ],
- "didInfo": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdFiles": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "filename": "file-1729389547388-110834208.csv",
- "originalname": "testdata.csv",
- "type": "text/csv",
- "fileData": "text/csv",
- "executed": false,
- "status": 0,
- "vcSchema": { },
- "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vcSchema": { },
- "user": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "raw": null,
- "createdBy": null,
- "user": null,
- "vcInfos": [ ],
- "didInfo": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcInfos": [
- { }
], - "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdUsers": [
- { }
], - "createdVcInfos": [
- { }
], - "createdVpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdDidInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "raw": null,
- "createdBy": null,
- "user": null,
- "vcInfos": [ ],
- "didInfo": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVcSchemas": [
- { }
], - "createdVerifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "raw": null,
- "createdBy": null,
- "user": null,
- "vcInfos": [ ],
- "didInfo": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdFiles": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "filename": "file-1729389547388-110834208.csv",
- "originalname": "testdata.csv",
- "type": "text/csv",
- "fileData": "text/csv",
- "executed": false,
- "status": 0,
- "vcSchema": { },
- "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- null
], - "vcInfos": [
- null
], - "vpInfos": [
- null
], - "createdUsers": [
- null
], - "createdVcInfos": [
- null
], - "createdVpInfos": [
- null
], - "createdDidInfos": [
- null
], - "createdVcSchemas": [
- null
], - "createdVerifications": [
- null
], - "createdFiles": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "user": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- null
], - "vcInfos": [
- null
], - "vpInfos": [
- null
], - "createdUsers": [
- null
], - "createdVcInfos": [
- null
], - "createdVpInfos": [
- null
], - "createdDidInfos": [
- null
], - "createdVcSchemas": [
- null
], - "createdVerifications": [
- null
], - "createdFiles": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vcInfos": [
- { }
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": {
- "id": null,
- "name": null,
- "email": null,
- "password": null,
- "needActivateFlow": null,
- "status": null,
- "role": null,
- "createdBy": null,
- "didInfos": [ ],
- "vcInfos": [ ],
- "vpInfos": [ ],
- "createdUsers": [ ],
- "createdVcInfos": [ ],
- "createdVpInfos": [ ],
- "createdDidInfos": [ ],
- "createdVcSchemas": [ ],
- "createdVerifications": [ ],
- "createdFiles": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "createdBy": {
- "id": null,
- "name": null,
- "email": null,
- "password": null,
- "needActivateFlow": null,
- "status": null,
- "role": null,
- "createdBy": null,
- "didInfos": [ ],
- "vcInfos": [ ],
- "vpInfos": [ ],
- "createdUsers": [ ],
- "createdVcInfos": [ ],
- "createdVpInfos": [ ],
- "createdDidInfos": [ ],
- "createdVcSchemas": [ ],
- "createdVerifications": [ ],
- "createdFiles": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "badge": { },
- "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- null
], - "vcInfos": [
- null
], - "vpInfos": [
- null
], - "createdUsers": [
- null
], - "createdVcInfos": [
- null
], - "createdVpInfos": [
- null
], - "createdDidInfos": [
- null
], - "createdVcSchemas": [
- null
], - "createdVerifications": [
- null
], - "createdFiles": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vcInfo": { },
- "vpInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": {
- "id": null,
- "name": null,
- "email": null,
- "password": null,
- "needActivateFlow": null,
- "status": null,
- "role": null,
- "createdBy": null,
- "didInfos": [ ],
- "vcInfos": [ ],
- "vpInfos": [ ],
- "createdUsers": [ ],
- "createdVcInfos": [ ],
- "createdVpInfos": [ ],
- "createdDidInfos": [ ],
- "createdVcSchemas": [ ],
- "createdVerifications": [ ],
- "createdFiles": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "user": {
- "id": null,
- "name": null,
- "email": null,
- "password": null,
- "needActivateFlow": null,
- "status": null,
- "role": null,
- "createdBy": null,
- "didInfos": [ ],
- "vcInfos": [ ],
- "vpInfos": [ ],
- "createdUsers": [ ],
- "createdVcInfos": [ ],
- "createdVpInfos": [ ],
- "createdDidInfos": [ ],
- "createdVcSchemas": [ ],
- "createdVerifications": [ ],
- "createdFiles": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "vcInfos": [
- null
], - "didInfo": {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcContexts": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "vcSchema": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcSchemaProperties": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "propIndex": 1,
- "propName": "prop1",
- "propType": "string",
- "parentObjectIndex": "parentObjectIndex",
- "vcSchema": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "badges": [
- { }
], - "file": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "filename": "file-1729389547388-110834208.csv",
- "originalname": "testdata.csv",
- "type": "text/csv",
- "fileData": "text/csv",
- "executed": false,
- "status": 0,
- "vcSchema": { },
- "createdBy": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": { },
- "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": { },
- "user": { },
- "vpInfos": [
- {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "raw": null,
- "createdBy": null,
- "user": null,
- "vcInfos": [ ],
- "didInfo": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}
], - "badge": { },
- "verifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "createdBy": null,
- "vcSchema": null,
- "user": null,
- "vpInfos": [ ],
- "badge": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdUsers": [
- { }
], - "createdVcInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": { },
- "user": { },
- "vpInfos": [
- {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "raw": null,
- "createdBy": null,
- "user": null,
- "vcInfos": [ ],
- "didInfo": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}
], - "badge": { },
- "verifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "createdBy": null,
- "vcSchema": null,
- "user": null,
- "vpInfos": [ ],
- "badge": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdDidInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": { },
- "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVcSchemas": [
- { }
], - "createdVerifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": { },
- "user": { },
- "vpInfos": [
- null
], - "badge": { },
- "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vpInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdFiles": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdBy": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "createdBy": null,
- "vcSchema": null,
- "user": null,
- "vpInfos": [ ],
- "badge": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}
], - "didInfo": { },
- "verifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": { },
- "user": { },
- "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "badge": { },
- "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "raw": null,
- "createdBy": null,
- "user": null,
- "vcInfos": [ ],
- "didInfo": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": { },
- "user": { },
- "vpInfos": [
- null
], - "badge": { },
- "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "createdBy": null,
- "vcSchema": null,
- "user": null,
- "vpInfos": [ ],
- "badge": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "vpInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdUsers": [
- { }
], - "createdVcInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": { },
- "user": { },
- "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "badge": { },
- "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "raw": null,
- "createdBy": null,
- "user": null,
- "vcInfos": [ ],
- "didInfo": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": { },
- "user": { },
- "vpInfos": [
- null
], - "badge": { },
- "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "createdBy": null,
- "vcSchema": null,
- "user": null,
- "vpInfos": [ ],
- "badge": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "vpInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdDidInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "createdBy": null,
- "vcSchema": null,
- "user": null,
- "vpInfos": [ ],
- "badge": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}
], - "didInfo": { },
- "verifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVcSchemas": [
- { }
], - "createdVerifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": { },
- "user": { },
- "vpInfos": [
- {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "raw": null,
- "createdBy": null,
- "user": null,
- "vcInfos": [ ],
- "didInfo": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}
], - "badge": { },
- "verifications": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vpInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "createdBy": null,
- "vcSchema": null,
- "user": null,
- "vpInfos": [ ],
- "badge": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdFiles": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "filename": "file-1729389547388-110834208.csv",
- "originalname": "testdata.csv",
- "type": "text/csv",
- "fileData": "text/csv",
- "executed": false,
- "status": 0,
- "vcSchema": { },
- "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vcInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- { }
], - "didInfo": { },
- "verifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcInfos": [
- { }
], - "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- { }
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdUsers": [
- { }
], - "createdVcInfos": [
- { }
], - "createdVpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- { }
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdDidInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- { }
], - "didInfo": { },
- "verifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVcSchemas": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- { }
], - "vcContexts": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "vcSchema": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcSchemaProperties": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "propIndex": 1,
- "propName": "prop1",
- "propType": "string",
- "parentObjectIndex": "parentObjectIndex",
- "vcSchema": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "badges": [
- { }
], - "file": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "filename": "file-1729389547388-110834208.csv",
- "originalname": "testdata.csv",
- "type": "text/csv",
- "fileData": "text/csv",
- "executed": false,
- "status": 0,
- "vcSchema": { },
- "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVerifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- { }
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdFiles": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "filename": "file-1729389547388-110834208.csv",
- "originalname": "testdata.csv",
- "type": "text/csv",
- "fileData": "text/csv",
- "executed": false,
- "status": 0,
- "vcSchema": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- { }
], - "vcContexts": [
- {
- "id": null,
- "context": null,
- "vcSchema": null,
- "createdAt": null,
- "updatedAt": null
}
], - "vcSchemaProperties": [
- {
- "id": null,
- "propIndex": null,
- "propName": null,
- "propType": null,
- "parentObjectIndex": null,
- "vcSchema": null,
- "createdAt": null,
- "updatedAt": null
}
], - "badges": [
- { }
], - "file": { },
- "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vcSchema": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- { }
], - "vcContexts": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "vcSchema": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcSchemaProperties": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "propIndex": 1,
- "propName": "prop1",
- "propType": "string",
- "parentObjectIndex": "parentObjectIndex",
- "vcSchema": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "badges": [
- { }
], - "file": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "filename": "file-1729389547388-110834208.csv",
- "originalname": "testdata.csv",
- "type": "text/csv",
- "fileData": "text/csv",
- "executed": false,
- "status": 0,
- "vcSchema": { },
- "createdBy": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "raw": null,
- "createdBy": null,
- "user": null,
- "vcInfos": [ ],
- "didInfo": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcInfos": [
- { }
], - "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdUsers": [
- { }
], - "createdVcInfos": [
- { }
], - "createdVpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdDidInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "raw": null,
- "createdBy": null,
- "user": null,
- "vcInfos": [ ],
- "didInfo": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVcSchemas": [
- { }
], - "createdVerifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "raw": null,
- "createdBy": null,
- "user": null,
- "vcInfos": [ ],
- "didInfo": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdFiles": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdBy": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": { },
- "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcInfos": [
- { }
], - "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- { }
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdUsers": [
- { }
], - "createdVcInfos": [
- { }
], - "createdVpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- { }
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdDidInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": { },
- "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVcSchemas": [
- { }
], - "createdVerifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdFiles": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "filename": "file-1729389547388-110834208.csv",
- "originalname": "testdata.csv",
- "type": "text/csv",
- "fileData": "text/csv",
- "executed": false,
- "status": 0,
- "vcSchema": { },
- "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "user": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- { }
], - "didInfo": { },
- "verifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcInfos": [
- { }
], - "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- { }
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdUsers": [
- { }
], - "createdVcInfos": [
- { }
], - "createdVpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- { }
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdDidInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- { }
], - "didInfo": { },
- "verifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVcSchemas": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- { }
], - "vcContexts": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "vcSchema": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcSchemaProperties": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "propIndex": 1,
- "propName": "prop1",
- "propType": "string",
- "parentObjectIndex": "parentObjectIndex",
- "vcSchema": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "badges": [
- { }
], - "file": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "filename": "file-1729389547388-110834208.csv",
- "originalname": "testdata.csv",
- "type": "text/csv",
- "fileData": "text/csv",
- "executed": false,
- "status": 0,
- "vcSchema": { },
- "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVerifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- { }
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdFiles": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "filename": "file-1729389547388-110834208.csv",
- "originalname": "testdata.csv",
- "type": "text/csv",
- "fileData": "text/csv",
- "executed": false,
- "status": 0,
- "vcSchema": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- { }
], - "vcContexts": [
- {
- "id": null,
- "context": null,
- "vcSchema": null,
- "createdAt": null,
- "updatedAt": null
}
], - "vcSchemaProperties": [
- {
- "id": null,
- "propIndex": null,
- "propName": null,
- "propType": null,
- "parentObjectIndex": null,
- "vcSchema": null,
- "createdAt": null,
- "updatedAt": null
}
], - "badges": [
- { }
], - "file": { },
- "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcInfos": [
- { }
], - "vpInfos": [
- { }
], - "createdUsers": [
- { }
], - "createdVcInfos": [
- { }
], - "createdVpInfos": [
- { }
], - "createdDidInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVcSchemas": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- null
], - "vcContexts": [
- null
], - "vcSchemaProperties": [
- null
], - "badges": [
- null
], - "file": {
- "id": null,
- "filename": null,
- "originalname": null,
- "type": null,
- "fileData": null,
- "executed": null,
- "status": null,
- "vcSchema": null,
- "createdBy": null,
- "createdAt": null,
- "updatedAt": null
}, - "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVerifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdFiles": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "filename": "file-1729389547388-110834208.csv",
- "originalname": "testdata.csv",
- "type": "text/csv",
- "fileData": "text/csv",
- "executed": false,
- "status": 0,
- "vcSchema": {
- "id": null,
- "title": null,
- "version": null,
- "description": null,
- "isBadgeSchema": null,
- "vcInfos": [ ],
- "vcContexts": [ ],
- "vcSchemaProperties": [ ],
- "badges": [ ],
- "file": null,
- "createdBy": null,
- "createdAt": null,
- "updatedAt": null
}, - "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "user": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcInfos": [
- { }
], - "vpInfos": [
- { }
], - "createdUsers": [
- { }
], - "createdVcInfos": [
- { }
], - "createdVpInfos": [
- { }
], - "createdDidInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVcSchemas": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- null
], - "vcContexts": [
- null
], - "vcSchemaProperties": [
- null
], - "badges": [
- null
], - "file": {
- "id": null,
- "filename": null,
- "originalname": null,
- "type": null,
- "fileData": null,
- "executed": null,
- "status": null,
- "vcSchema": null,
- "createdBy": null,
- "createdAt": null,
- "updatedAt": null
}, - "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVerifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdFiles": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "filename": "file-1729389547388-110834208.csv",
- "originalname": "testdata.csv",
- "type": "text/csv",
- "fileData": "text/csv",
- "executed": false,
- "status": 0,
- "vcSchema": {
- "id": null,
- "title": null,
- "version": null,
- "description": null,
- "isBadgeSchema": null,
- "vcInfos": [ ],
- "vcContexts": [ ],
- "vcSchemaProperties": [ ],
- "badges": [ ],
- "file": null,
- "createdBy": null,
- "createdAt": null,
- "updatedAt": null
}, - "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vcInfos": [
- { }
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- { }
], - "vcInfos": [
- { }
], - "vpInfos": [
- { }
], - "createdUsers": [
- { }
], - "createdVcInfos": [
- { }
], - "createdVpInfos": [
- { }
], - "createdDidInfos": [
- { }
], - "createdVcSchemas": [
- {
- "id": null,
- "title": null,
- "version": null,
- "description": null,
- "isBadgeSchema": null,
- "vcInfos": [ ],
- "vcContexts": [ ],
- "vcSchemaProperties": [ ],
- "badges": [ ],
- "file": null,
- "createdBy": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdVerifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdFiles": [
- {
- "id": null,
- "filename": null,
- "originalname": null,
- "type": null,
- "fileData": null,
- "executed": null,
- "status": null,
- "vcSchema": null,
- "createdBy": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdBy": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- { }
], - "vcInfos": [
- { }
], - "vpInfos": [
- { }
], - "createdUsers": [
- { }
], - "createdVcInfos": [
- { }
], - "createdVpInfos": [
- { }
], - "createdDidInfos": [
- { }
], - "createdVcSchemas": [
- {
- "id": null,
- "title": null,
- "version": null,
- "description": null,
- "isBadgeSchema": null,
- "vcInfos": [ ],
- "vcContexts": [ ],
- "vcSchemaProperties": [ ],
- "badges": [ ],
- "file": null,
- "createdBy": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdVerifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdFiles": [
- {
- "id": null,
- "filename": null,
- "originalname": null,
- "type": null,
- "fileData": null,
- "executed": null,
- "status": null,
- "vcSchema": null,
- "createdBy": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- null
], - "vcInfos": [
- null
], - "vpInfos": [
- null
], - "createdUsers": [
- null
], - "createdVcInfos": [
- null
], - "createdVpInfos": [
- null
], - "createdDidInfos": [
- null
], - "createdVcSchemas": [
- null
], - "createdVerifications": [
- null
], - "createdFiles": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vcInfo": { },
- "vpInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "badge": { },
- "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "raw": null,
- "createdBy": null,
- "user": null,
- "vcInfos": [ ],
- "didInfo": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcInfos": [
- { }
], - "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdUsers": [
- { }
], - "createdVcInfos": [
- { }
], - "createdVpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdDidInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "raw": null,
- "createdBy": null,
- "user": null,
- "vcInfos": [ ],
- "didInfo": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVcSchemas": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- null
], - "vcContexts": [
- null
], - "vcSchemaProperties": [
- null
], - "badges": [
- null
], - "file": {
- "id": null,
- "filename": null,
- "originalname": null,
- "type": null,
- "fileData": null,
- "executed": null,
- "status": null,
- "vcSchema": null,
- "createdBy": null,
- "createdAt": null,
- "updatedAt": null
}, - "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVerifications": [
- { }
], - "createdFiles": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "filename": "file-1729389547388-110834208.csv",
- "originalname": "testdata.csv",
- "type": "text/csv",
- "fileData": "text/csv",
- "executed": false,
- "status": 0,
- "vcSchema": {
- "id": null,
- "title": null,
- "version": null,
- "description": null,
- "isBadgeSchema": null,
- "vcInfos": [ ],
- "vcContexts": [ ],
- "vcSchemaProperties": [ ],
- "badges": [ ],
- "file": null,
- "createdBy": null,
- "createdAt": null,
- "updatedAt": null
}, - "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vcInfo": { },
- "vpInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}
], - "vcInfos": [
- { }
], - "vpInfos": [
- { }
], - "createdUsers": [
- { }
], - "createdVcInfos": [
- { }
], - "createdVpInfos": [
- { }
], - "createdDidInfos": [
- {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdVcSchemas": [
- {
- "id": null,
- "title": null,
- "version": null,
- "description": null,
- "isBadgeSchema": null,
- "vcInfos": [ ],
- "vcContexts": [ ],
- "vcSchemaProperties": [ ],
- "badges": [ ],
- "file": null,
- "createdBy": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdVerifications": [
- { }
], - "createdFiles": [
- {
- "id": null,
- "filename": null,
- "originalname": null,
- "type": null,
- "fileData": null,
- "executed": null,
- "status": null,
- "vcSchema": null,
- "createdBy": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "user": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}
], - "vcInfos": [
- { }
], - "vpInfos": [
- { }
], - "createdUsers": [
- { }
], - "createdVcInfos": [
- { }
], - "createdVpInfos": [
- { }
], - "createdDidInfos": [
- {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdVcSchemas": [
- {
- "id": null,
- "title": null,
- "version": null,
- "description": null,
- "isBadgeSchema": null,
- "vcInfos": [ ],
- "vcContexts": [ ],
- "vcSchemaProperties": [ ],
- "badges": [ ],
- "file": null,
- "createdBy": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdVerifications": [
- { }
], - "createdFiles": [
- {
- "id": null,
- "filename": null,
- "originalname": null,
- "type": null,
- "fileData": null,
- "executed": null,
- "status": null,
- "vcSchema": null,
- "createdBy": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vcInfos": [
- { }
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- null
], - "vcInfos": [
- null
], - "vpInfos": [
- null
], - "createdUsers": [
- null
], - "createdVcInfos": [
- null
], - "createdVpInfos": [
- null
], - "createdDidInfos": [
- null
], - "createdVcSchemas": [
- null
], - "createdVerifications": [
- null
], - "createdFiles": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdBy": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- null
], - "vcInfos": [
- null
], - "vpInfos": [
- null
], - "createdUsers": [
- null
], - "createdVcInfos": [
- null
], - "createdVpInfos": [
- null
], - "createdDidInfos": [
- null
], - "createdVcSchemas": [
- null
], - "createdVerifications": [
- null
], - "createdFiles": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "file": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "filename": "file-1729389547388-110834208.csv",
- "originalname": "testdata.csv",
- "type": "text/csv",
- "fileData": "text/csv",
- "executed": false,
- "status": 0,
- "vcSchema": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": { },
- "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcInfos": [
- { }
], - "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- { }
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdUsers": [
- { }
], - "createdVcInfos": [
- { }
], - "createdVpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- { }
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdDidInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": { },
- "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVcSchemas": [
- { }
], - "createdVerifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdFiles": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vcSchema": { },
- "user": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": { },
- "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcInfos": [
- { }
], - "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- { }
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdUsers": [
- { }
], - "createdVcInfos": [
- { }
], - "createdVpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- { }
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdDidInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": { },
- "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVcSchemas": [
- { }
], - "createdVerifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdFiles": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}
], - "vcInfos": [
- { }
], - "vpInfos": [
- { }
], - "createdUsers": [
- { }
], - "createdVcInfos": [
- { }
], - "createdVpInfos": [
- { }
], - "createdDidInfos": [
- {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdVcSchemas": [
- { }
], - "createdVerifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdFiles": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "user": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}
], - "vcInfos": [
- { }
], - "vpInfos": [
- { }
], - "createdUsers": [
- { }
], - "createdVcInfos": [
- { }
], - "createdVpInfos": [
- { }
], - "createdDidInfos": [
- {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdVcSchemas": [
- { }
], - "createdVerifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdFiles": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vcInfos": [
- { }
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- null
], - "vcInfos": [
- null
], - "vpInfos": [
- null
], - "createdUsers": [
- null
], - "createdVcInfos": [
- null
], - "createdVpInfos": [
- null
], - "createdDidInfos": [
- null
], - "createdVcSchemas": [
- null
], - "createdVerifications": [
- null
], - "createdFiles": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdBy": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- null
], - "vcInfos": [
- null
], - "vpInfos": [
- null
], - "createdUsers": [
- null
], - "createdVcInfos": [
- null
], - "createdVpInfos": [
- null
], - "createdDidInfos": [
- null
], - "createdVcSchemas": [
- null
], - "createdVerifications": [
- null
], - "createdFiles": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": {
- "id": null,
- "name": null,
- "email": null,
- "password": null,
- "needActivateFlow": null,
- "status": null,
- "role": null,
- "createdBy": null,
- "didInfos": [ ],
- "vcInfos": [ ],
- "vpInfos": [ ],
- "createdUsers": [ ],
- "createdVcInfos": [ ],
- "createdVpInfos": [ ],
- "createdDidInfos": [ ],
- "createdVcSchemas": [ ],
- "createdVerifications": [ ],
- "createdFiles": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "vcInfo": { },
- "vpInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "badge": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "sample-badge-1",
- "filename": "badge-12345-12345.png",
- "description": "This is Sample Badge 1.",
- "status": 1,
- "vcSchema": { },
- "vcInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}
], - "vcInfos": [
- { }
], - "vpInfos": [
- {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "raw": null,
- "createdBy": null,
- "user": null,
- "vcInfos": [ ],
- "didInfo": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}
], - "createdUsers": [
- { }
], - "createdVcInfos": [
- { }
], - "createdVpInfos": [
- {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "raw": null,
- "createdBy": null,
- "user": null,
- "vcInfos": [ ],
- "didInfo": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}
], - "createdDidInfos": [
- {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdVcSchemas": [
- { }
], - "createdVerifications": [
- { }
], - "createdFiles": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vcInfo": { },
- "vpInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- null
], - "vcInfos": [
- null
], - "vpInfos": [
- null
], - "createdUsers": [
- null
], - "createdVcInfos": [
- null
], - "createdVpInfos": [
- null
], - "createdDidInfos": [
- null
], - "createdVcSchemas": [
- null
], - "createdVerifications": [
- null
], - "createdFiles": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "user": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- null
], - "vcInfos": [
- null
], - "vpInfos": [
- null
], - "createdUsers": [
- null
], - "createdVcInfos": [
- null
], - "createdVpInfos": [
- null
], - "createdDidInfos": [
- null
], - "createdVcSchemas": [
- null
], - "createdVerifications": [
- null
], - "createdFiles": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vcInfos": [
- { }
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": {
- "id": null,
- "name": null,
- "email": null,
- "password": null,
- "needActivateFlow": null,
- "status": null,
- "role": null,
- "createdBy": null,
- "didInfos": [ ],
- "vcInfos": [ ],
- "vpInfos": [ ],
- "createdUsers": [ ],
- "createdVcInfos": [ ],
- "createdVpInfos": [ ],
- "createdDidInfos": [ ],
- "createdVcSchemas": [ ],
- "createdVerifications": [ ],
- "createdFiles": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "createdBy": {
- "id": null,
- "name": null,
- "email": null,
- "password": null,
- "needActivateFlow": null,
- "status": null,
- "role": null,
- "createdBy": null,
- "didInfos": [ ],
- "vcInfos": [ ],
- "vpInfos": [ ],
- "createdUsers": [ ],
- "createdVcInfos": [ ],
- "createdVpInfos": [ ],
- "createdDidInfos": [ ],
- "createdVcSchemas": [ ],
- "createdVerifications": [ ],
- "createdFiles": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcContexts": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "vcSchema": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcSchemaProperties": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "propIndex": 1,
- "propName": "prop1",
- "propType": "string",
- "parentObjectIndex": "parentObjectIndex",
- "vcSchema": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "badges": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "sample-badge-1",
- "filename": "badge-12345-12345.png",
- "description": "This is Sample Badge 1.",
- "status": 1,
- "vcSchema": { },
- "vcInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "raw": null,
- "createdBy": null,
- "user": null,
- "vcInfos": [ ],
- "didInfo": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcInfos": [
- { }
], - "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdUsers": [
- { }
], - "createdVcInfos": [
- { }
], - "createdVpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdDidInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "raw": null,
- "createdBy": null,
- "user": null,
- "vcInfos": [ ],
- "didInfo": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVcSchemas": [
- { }
], - "createdVerifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "raw": null,
- "createdBy": null,
- "user": null,
- "vcInfos": [ ],
- "didInfo": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdFiles": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vcSchema": { },
- "user": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "raw": null,
- "createdBy": null,
- "user": null,
- "vcInfos": [ ],
- "didInfo": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcInfos": [
- { }
], - "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdUsers": [
- { }
], - "createdVcInfos": [
- { }
], - "createdVpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdDidInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "raw": null,
- "createdBy": null,
- "user": null,
- "vcInfos": [ ],
- "didInfo": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVcSchemas": [
- { }
], - "createdVerifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "raw": null,
- "createdBy": null,
- "user": null,
- "vcInfos": [ ],
- "didInfo": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdFiles": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- null
], - "vcInfos": [
- null
], - "vpInfos": [
- null
], - "createdUsers": [
- null
], - "createdVcInfos": [
- null
], - "createdVpInfos": [
- null
], - "createdDidInfos": [
- null
], - "createdVcSchemas": [
- null
], - "createdVerifications": [
- null
], - "createdFiles": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "user": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- null
], - "vcInfos": [
- null
], - "vpInfos": [
- null
], - "createdUsers": [
- null
], - "createdVcInfos": [
- null
], - "createdVpInfos": [
- null
], - "createdDidInfos": [
- null
], - "createdVcSchemas": [
- null
], - "createdVerifications": [
- null
], - "createdFiles": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vcInfos": [
- { }
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": {
- "id": null,
- "name": null,
- "email": null,
- "password": null,
- "needActivateFlow": null,
- "status": null,
- "role": null,
- "createdBy": null,
- "didInfos": [ ],
- "vcInfos": [ ],
- "vpInfos": [ ],
- "createdUsers": [ ],
- "createdVcInfos": [ ],
- "createdVpInfos": [ ],
- "createdDidInfos": [ ],
- "createdVcSchemas": [ ],
- "createdVerifications": [ ],
- "createdFiles": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "createdBy": {
- "id": null,
- "name": null,
- "email": null,
- "password": null,
- "needActivateFlow": null,
- "status": null,
- "role": null,
- "createdBy": null,
- "didInfos": [ ],
- "vcInfos": [ ],
- "vpInfos": [ ],
- "createdUsers": [ ],
- "createdVcInfos": [ ],
- "createdVpInfos": [ ],
- "createdDidInfos": [ ],
- "createdVcSchemas": [ ],
- "createdVerifications": [ ],
- "createdFiles": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "badge": { },
- "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- null
], - "vcInfos": [
- null
], - "vpInfos": [
- null
], - "createdUsers": [
- null
], - "createdVcInfos": [
- null
], - "createdVpInfos": [
- null
], - "createdDidInfos": [
- null
], - "createdVcSchemas": [
- null
], - "createdVerifications": [
- null
], - "createdFiles": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vcInfo": { },
- "vpInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": {
- "id": null,
- "name": null,
- "email": null,
- "password": null,
- "needActivateFlow": null,
- "status": null,
- "role": null,
- "createdBy": null,
- "didInfos": [ ],
- "vcInfos": [ ],
- "vpInfos": [ ],
- "createdUsers": [ ],
- "createdVcInfos": [ ],
- "createdVpInfos": [ ],
- "createdDidInfos": [ ],
- "createdVcSchemas": [ ],
- "createdVerifications": [ ],
- "createdFiles": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "user": {
- "id": null,
- "name": null,
- "email": null,
- "password": null,
- "needActivateFlow": null,
- "status": null,
- "role": null,
- "createdBy": null,
- "didInfos": [ ],
- "vcInfos": [ ],
- "vpInfos": [ ],
- "createdUsers": [ ],
- "createdVcInfos": [ ],
- "createdVpInfos": [ ],
- "createdDidInfos": [ ],
- "createdVcSchemas": [ ],
- "createdVerifications": [ ],
- "createdFiles": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "vcInfos": [
- null
], - "didInfo": {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "file": { },
- "createdBy": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": { },
- "user": { },
- "vpInfos": [
- null
], - "badge": {
- "id": null,
- "label": null,
- "filename": null,
- "description": null,
- "status": null,
- "vcSchema": null,
- "vcInfo": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "didInfo": { },
- "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "createdBy": null,
- "vcSchema": null,
- "user": null,
- "vpInfos": [ ],
- "badge": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "vpInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": { },
- "user": { },
- "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- { }
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "badge": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "sample-badge-1",
- "filename": "badge-12345-12345.png",
- "description": "This is Sample Badge 1.",
- "status": 1,
- "vcSchema": { },
- "vcInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": { },
- "user": { },
- "vpInfos": [
- { }
], - "badge": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "sample-badge-1",
- "filename": "badge-12345-12345.png",
- "description": "This is Sample Badge 1.",
- "status": 1,
- "vcSchema": { },
- "vcInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": { },
- "user": { },
- "vpInfos": [
- null
], - "badge": {
- "id": null,
- "label": null,
- "filename": null,
- "description": null,
- "status": null,
- "vcSchema": null,
- "vcInfo": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vpInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdUsers": [
- { }
], - "createdVcInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": { },
- "user": { },
- "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- { }
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "badge": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "sample-badge-1",
- "filename": "badge-12345-12345.png",
- "description": "This is Sample Badge 1.",
- "status": 1,
- "vcSchema": { },
- "vcInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": { },
- "user": { },
- "vpInfos": [
- { }
], - "badge": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "sample-badge-1",
- "filename": "badge-12345-12345.png",
- "description": "This is Sample Badge 1.",
- "status": 1,
- "vcSchema": { },
- "vcInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": { },
- "user": { },
- "vpInfos": [
- null
], - "badge": {
- "id": null,
- "label": null,
- "filename": null,
- "description": null,
- "status": null,
- "vcSchema": null,
- "vcInfo": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vpInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdDidInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": { },
- "user": { },
- "vpInfos": [
- null
], - "badge": {
- "id": null,
- "label": null,
- "filename": null,
- "description": null,
- "status": null,
- "vcSchema": null,
- "vcInfo": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "didInfo": { },
- "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "createdBy": null,
- "vcSchema": null,
- "user": null,
- "vpInfos": [ ],
- "badge": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "vpInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVcSchemas": [
- { }
], - "createdVerifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": { },
- "user": { },
- "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "badge": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "sample-badge-1",
- "filename": "badge-12345-12345.png",
- "description": "This is Sample Badge 1.",
- "status": 1,
- "vcSchema": { },
- "vcInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vpInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": { },
- "user": { },
- "vpInfos": [
- null
], - "badge": {
- "id": null,
- "label": null,
- "filename": null,
- "description": null,
- "status": null,
- "vcSchema": null,
- "vcInfo": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdFiles": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdBy": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- null
], - "vcContexts": [
- null
], - "vcSchemaProperties": [
- null
], - "badges": [
- null
], - "file": { },
- "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "user": { },
- "vpInfos": [
- { }
], - "badge": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "sample-badge-1",
- "filename": "badge-12345-12345.png",
- "description": "This is Sample Badge 1.",
- "status": 1,
- "vcSchema": {
- "id": null,
- "title": null,
- "version": null,
- "description": null,
- "isBadgeSchema": null,
- "vcInfos": [ ],
- "vcContexts": [ ],
- "vcSchemaProperties": [ ],
- "badges": [ ],
- "file": null,
- "createdBy": null,
- "createdAt": null,
- "updatedAt": null
}, - "vcInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "didInfo": { },
- "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": {
- "id": null,
- "title": null,
- "version": null,
- "description": null,
- "isBadgeSchema": null,
- "vcInfos": [ ],
- "vcContexts": [ ],
- "vcSchemaProperties": [ ],
- "badges": [ ],
- "file": null,
- "createdBy": null,
- "createdAt": null,
- "updatedAt": null
}, - "user": { },
- "vpInfos": [
- null
], - "badge": {
- "id": null,
- "label": null,
- "filename": null,
- "description": null,
- "status": null,
- "vcSchema": null,
- "vcInfo": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vpInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- { }
], - "vcContexts": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "vcSchema": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcSchemaProperties": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "propIndex": 1,
- "propName": "prop1",
- "propType": "string",
- "parentObjectIndex": "parentObjectIndex",
- "vcSchema": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "badges": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "sample-badge-1",
- "filename": "badge-12345-12345.png",
- "description": "This is Sample Badge 1.",
- "status": 1,
- "vcSchema": { },
- "vcInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "file": { },
- "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "user": { },
- "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- { }
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "badge": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "sample-badge-1",
- "filename": "badge-12345-12345.png",
- "description": "This is Sample Badge 1.",
- "status": 1,
- "vcSchema": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- { }
], - "vcContexts": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "vcSchema": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcSchemaProperties": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "propIndex": 1,
- "propName": "prop1",
- "propType": "string",
- "parentObjectIndex": "parentObjectIndex",
- "vcSchema": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "badges": [
- { }
], - "file": { },
- "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vcInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- { }
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- { }
], - "vcContexts": [
- {
- "id": null,
- "context": null,
- "vcSchema": null,
- "createdAt": null,
- "updatedAt": null
}
], - "vcSchemaProperties": [
- {
- "id": null,
- "propIndex": null,
- "propName": null,
- "propType": null,
- "parentObjectIndex": null,
- "vcSchema": null,
- "createdAt": null,
- "updatedAt": null
}
], - "badges": [
- {
- "id": null,
- "label": null,
- "filename": null,
- "description": null,
- "status": null,
- "vcSchema": null,
- "vcInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "file": { },
- "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "user": { },
- "vpInfos": [
- { }
], - "badge": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "sample-badge-1",
- "filename": "badge-12345-12345.png",
- "description": "This is Sample Badge 1.",
- "status": 1,
- "vcSchema": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- null
], - "vcContexts": [
- null
], - "vcSchemaProperties": [
- null
], - "badges": [
- null
], - "file": { },
- "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vcInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- null
], - "vcContexts": [
- null
], - "vcSchemaProperties": [
- null
], - "badges": [
- null
], - "file": { },
- "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "user": { },
- "vpInfos": [
- { }
], - "badge": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "sample-badge-1",
- "filename": "badge-12345-12345.png",
- "description": "This is Sample Badge 1.",
- "status": 1,
- "vcSchema": {
- "id": null,
- "title": null,
- "version": null,
- "description": null,
- "isBadgeSchema": null,
- "vcInfos": [ ],
- "vcContexts": [ ],
- "vcSchemaProperties": [ ],
- "badges": [ ],
- "file": null,
- "createdBy": null,
- "createdAt": null,
- "updatedAt": null
}, - "vcInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vpInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdUsers": [
- { }
], - "createdVcInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- { }
], - "vcContexts": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "vcSchema": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcSchemaProperties": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "propIndex": 1,
- "propName": "prop1",
- "propType": "string",
- "parentObjectIndex": "parentObjectIndex",
- "vcSchema": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "badges": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "sample-badge-1",
- "filename": "badge-12345-12345.png",
- "description": "This is Sample Badge 1.",
- "status": 1,
- "vcSchema": { },
- "vcInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "file": { },
- "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "user": { },
- "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- { }
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "badge": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "sample-badge-1",
- "filename": "badge-12345-12345.png",
- "description": "This is Sample Badge 1.",
- "status": 1,
- "vcSchema": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- { }
], - "vcContexts": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "vcSchema": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcSchemaProperties": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "propIndex": 1,
- "propName": "prop1",
- "propType": "string",
- "parentObjectIndex": "parentObjectIndex",
- "vcSchema": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "badges": [
- { }
], - "file": { },
- "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vcInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- { }
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- { }
], - "vcContexts": [
- {
- "id": null,
- "context": null,
- "vcSchema": null,
- "createdAt": null,
- "updatedAt": null
}
], - "vcSchemaProperties": [
- {
- "id": null,
- "propIndex": null,
- "propName": null,
- "propType": null,
- "parentObjectIndex": null,
- "vcSchema": null,
- "createdAt": null,
- "updatedAt": null
}
], - "badges": [
- {
- "id": null,
- "label": null,
- "filename": null,
- "description": null,
- "status": null,
- "vcSchema": null,
- "vcInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "file": { },
- "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "user": { },
- "vpInfos": [
- { }
], - "badge": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "sample-badge-1",
- "filename": "badge-12345-12345.png",
- "description": "This is Sample Badge 1.",
- "status": 1,
- "vcSchema": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- null
], - "vcContexts": [
- null
], - "vcSchemaProperties": [
- null
], - "badges": [
- null
], - "file": { },
- "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vcInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- null
], - "vcContexts": [
- null
], - "vcSchemaProperties": [
- null
], - "badges": [
- null
], - "file": { },
- "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "user": { },
- "vpInfos": [
- { }
], - "badge": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "sample-badge-1",
- "filename": "badge-12345-12345.png",
- "description": "This is Sample Badge 1.",
- "status": 1,
- "vcSchema": {
- "id": null,
- "title": null,
- "version": null,
- "description": null,
- "isBadgeSchema": null,
- "vcInfos": [ ],
- "vcContexts": [ ],
- "vcSchemaProperties": [ ],
- "badges": [ ],
- "file": null,
- "createdBy": null,
- "createdAt": null,
- "updatedAt": null
}, - "vcInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vpInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdDidInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- null
], - "vcContexts": [
- null
], - "vcSchemaProperties": [
- null
], - "badges": [
- null
], - "file": { },
- "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "user": { },
- "vpInfos": [
- { }
], - "badge": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "sample-badge-1",
- "filename": "badge-12345-12345.png",
- "description": "This is Sample Badge 1.",
- "status": 1,
- "vcSchema": {
- "id": null,
- "title": null,
- "version": null,
- "description": null,
- "isBadgeSchema": null,
- "vcInfos": [ ],
- "vcContexts": [ ],
- "vcSchemaProperties": [ ],
- "badges": [ ],
- "file": null,
- "createdBy": null,
- "createdAt": null,
- "updatedAt": null
}, - "vcInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "didInfo": { },
- "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": {
- "id": null,
- "title": null,
- "version": null,
- "description": null,
- "isBadgeSchema": null,
- "vcInfos": [ ],
- "vcContexts": [ ],
- "vcSchemaProperties": [ ],
- "badges": [ ],
- "file": null,
- "createdBy": null,
- "createdAt": null,
- "updatedAt": null
}, - "user": { },
- "vpInfos": [
- null
], - "badge": {
- "id": null,
- "label": null,
- "filename": null,
- "description": null,
- "status": null,
- "vcSchema": null,
- "vcInfo": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vpInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVcSchemas": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": { },
- "user": { },
- "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "badge": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "sample-badge-1",
- "filename": "badge-12345-12345.png",
- "description": "This is Sample Badge 1.",
- "status": 1,
- "vcSchema": { },
- "vcInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "raw": null,
- "createdBy": null,
- "user": null,
- "vcInfos": [ ],
- "didInfo": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcContexts": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "vcSchema": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcSchemaProperties": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "propIndex": 1,
- "propName": "prop1",
- "propType": "string",
- "parentObjectIndex": "parentObjectIndex",
- "vcSchema": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "badges": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "sample-badge-1",
- "filename": "badge-12345-12345.png",
- "description": "This is Sample Badge 1.",
- "status": 1,
- "vcSchema": { },
- "vcInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": { },
- "user": { },
- "vpInfos": [
- {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "raw": null,
- "createdBy": null,
- "user": null,
- "vcInfos": [ ],
- "didInfo": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}
], - "badge": { },
- "verifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "file": { },
- "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVerifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- { }
], - "vcContexts": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "vcSchema": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcSchemaProperties": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "propIndex": 1,
- "propName": "prop1",
- "propType": "string",
- "parentObjectIndex": "parentObjectIndex",
- "vcSchema": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "badges": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "sample-badge-1",
- "filename": "badge-12345-12345.png",
- "description": "This is Sample Badge 1.",
- "status": 1,
- "vcSchema": { },
- "vcInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "file": { },
- "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "user": { },
- "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- { }
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "badge": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "sample-badge-1",
- "filename": "badge-12345-12345.png",
- "description": "This is Sample Badge 1.",
- "status": 1,
- "vcSchema": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- { }
], - "vcContexts": [
- {
- "id": null,
- "context": null,
- "vcSchema": null,
- "createdAt": null,
- "updatedAt": null
}
], - "vcSchemaProperties": [
- {
- "id": null,
- "propIndex": null,
- "propName": null,
- "propType": null,
- "parentObjectIndex": null,
- "vcSchema": null,
- "createdAt": null,
- "updatedAt": null
}
], - "badges": [
- { }
], - "file": { },
- "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vcInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vpInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- null
], - "vcContexts": [
- null
], - "vcSchemaProperties": [
- null
], - "badges": [
- null
], - "file": { },
- "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "user": { },
- "vpInfos": [
- { }
], - "badge": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "sample-badge-1",
- "filename": "badge-12345-12345.png",
- "description": "This is Sample Badge 1.",
- "status": 1,
- "vcSchema": {
- "id": null,
- "title": null,
- "version": null,
- "description": null,
- "isBadgeSchema": null,
- "vcInfos": [ ],
- "vcContexts": [ ],
- "vcSchemaProperties": [ ],
- "badges": [ ],
- "file": null,
- "createdBy": null,
- "createdAt": null,
- "updatedAt": null
}, - "vcInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdFiles": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdBy": {
- "id": "e8973f1a-a80f-4243-8061-144565b640f2",
- "name": "admin",
- "email": "admin@email.com",
- "needActivateFlow": false,
- "status": "active",
- "role": "admin",
- "createdAt": "2025-02-04T22:32:21.343Z",
- "updatedAt": "2025-02-04T22:32:21.343Z"
}, - "createdAt": "2024-05-24T06:39:54.352Z",
- "updatedAt": "2024-05-24T06:39:54.352Z"
}
リクエストパラメータのidで指定された単一のVCスキーマの詳細情報の値を返します。
id required | string |
{- "id": "3bfc3721-eb7c-4a5b-b5ac-94d1f158911f",
- "title": "This is VC Schema sample 1",
- "version": "1.0.0",
- "description": "This is VC Schema 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdAt": "2024-05-24T06:39:54.352Z",
- "updatedAt": "2024-05-24T06:39:54.352Z"
}
], - "vcContexts": [ ],
- "vcSchemaProperties": [
- {
- "id": "53d624fb-456b-4500-8673-d53dc672bbeb",
- "propName": "age",
- "propType": "number",
- "createdAt": "2024-07-09T04:25:19.878Z",
- "updatedAt": "2024-07-09T04:25:19.878Z"
}, - {
- "id": "576a7023-141c-4dea-8d8c-b1162b7f5963",
- "propName": "name",
- "propType": "string",
- "createdAt": "2024-07-09T04:25:19.877Z",
- "updatedAt": "2024-07-09T04:25:19.877Z"
}
], - "badges": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "sample-badge-1",
- "filename": "badge-12345-12345.png",
- "description": "This is Sample Badge 1.",
- "status": 1,
- "vcSchema": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "raw": null,
- "createdBy": null,
- "user": null,
- "vcInfos": [ ],
- "didInfo": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcInfos": [
- { }
], - "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdUsers": [
- { }
], - "createdVcInfos": [
- { }
], - "createdVpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdDidInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "raw": null,
- "createdBy": null,
- "user": null,
- "vcInfos": [ ],
- "didInfo": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVcSchemas": [
- { }
], - "createdVerifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "raw": null,
- "createdBy": null,
- "user": null,
- "vcInfos": [ ],
- "didInfo": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdFiles": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "filename": "file-1729389547388-110834208.csv",
- "originalname": "testdata.csv",
- "type": "text/csv",
- "fileData": "text/csv",
- "executed": false,
- "status": 0,
- "vcSchema": { },
- "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vcSchema": { },
- "user": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "raw": null,
- "createdBy": null,
- "user": null,
- "vcInfos": [ ],
- "didInfo": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcInfos": [
- { }
], - "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdUsers": [
- { }
], - "createdVcInfos": [
- { }
], - "createdVpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdDidInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "raw": null,
- "createdBy": null,
- "user": null,
- "vcInfos": [ ],
- "didInfo": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVcSchemas": [
- { }
], - "createdVerifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "raw": null,
- "createdBy": null,
- "user": null,
- "vcInfos": [ ],
- "didInfo": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdFiles": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "filename": "file-1729389547388-110834208.csv",
- "originalname": "testdata.csv",
- "type": "text/csv",
- "fileData": "text/csv",
- "executed": false,
- "status": 0,
- "vcSchema": { },
- "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- null
], - "vcInfos": [
- null
], - "vpInfos": [
- null
], - "createdUsers": [
- null
], - "createdVcInfos": [
- null
], - "createdVpInfos": [
- null
], - "createdDidInfos": [
- null
], - "createdVcSchemas": [
- null
], - "createdVerifications": [
- null
], - "createdFiles": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "user": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- null
], - "vcInfos": [
- null
], - "vpInfos": [
- null
], - "createdUsers": [
- null
], - "createdVcInfos": [
- null
], - "createdVpInfos": [
- null
], - "createdDidInfos": [
- null
], - "createdVcSchemas": [
- null
], - "createdVerifications": [
- null
], - "createdFiles": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vcInfos": [
- { }
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": {
- "id": null,
- "name": null,
- "email": null,
- "password": null,
- "needActivateFlow": null,
- "status": null,
- "role": null,
- "createdBy": null,
- "didInfos": [ ],
- "vcInfos": [ ],
- "vpInfos": [ ],
- "createdUsers": [ ],
- "createdVcInfos": [ ],
- "createdVpInfos": [ ],
- "createdDidInfos": [ ],
- "createdVcSchemas": [ ],
- "createdVerifications": [ ],
- "createdFiles": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "createdBy": {
- "id": null,
- "name": null,
- "email": null,
- "password": null,
- "needActivateFlow": null,
- "status": null,
- "role": null,
- "createdBy": null,
- "didInfos": [ ],
- "vcInfos": [ ],
- "vpInfos": [ ],
- "createdUsers": [ ],
- "createdVcInfos": [ ],
- "createdVpInfos": [ ],
- "createdDidInfos": [ ],
- "createdVcSchemas": [ ],
- "createdVerifications": [ ],
- "createdFiles": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "badge": { },
- "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- null
], - "vcInfos": [
- null
], - "vpInfos": [
- null
], - "createdUsers": [
- null
], - "createdVcInfos": [
- null
], - "createdVpInfos": [
- null
], - "createdDidInfos": [
- null
], - "createdVcSchemas": [
- null
], - "createdVerifications": [
- null
], - "createdFiles": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vcInfo": { },
- "vpInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": {
- "id": null,
- "name": null,
- "email": null,
- "password": null,
- "needActivateFlow": null,
- "status": null,
- "role": null,
- "createdBy": null,
- "didInfos": [ ],
- "vcInfos": [ ],
- "vpInfos": [ ],
- "createdUsers": [ ],
- "createdVcInfos": [ ],
- "createdVpInfos": [ ],
- "createdDidInfos": [ ],
- "createdVcSchemas": [ ],
- "createdVerifications": [ ],
- "createdFiles": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "user": {
- "id": null,
- "name": null,
- "email": null,
- "password": null,
- "needActivateFlow": null,
- "status": null,
- "role": null,
- "createdBy": null,
- "didInfos": [ ],
- "vcInfos": [ ],
- "vpInfos": [ ],
- "createdUsers": [ ],
- "createdVcInfos": [ ],
- "createdVpInfos": [ ],
- "createdDidInfos": [ ],
- "createdVcSchemas": [ ],
- "createdVerifications": [ ],
- "createdFiles": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "vcInfos": [
- null
], - "didInfo": {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcContexts": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "vcSchema": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcSchemaProperties": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "propIndex": 1,
- "propName": "prop1",
- "propType": "string",
- "parentObjectIndex": "parentObjectIndex",
- "vcSchema": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "badges": [
- { }
], - "file": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "filename": "file-1729389547388-110834208.csv",
- "originalname": "testdata.csv",
- "type": "text/csv",
- "fileData": "text/csv",
- "executed": false,
- "status": 0,
- "vcSchema": { },
- "createdBy": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": { },
- "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": { },
- "user": { },
- "vpInfos": [
- {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "raw": null,
- "createdBy": null,
- "user": null,
- "vcInfos": [ ],
- "didInfo": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}
], - "badge": { },
- "verifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "createdBy": null,
- "vcSchema": null,
- "user": null,
- "vpInfos": [ ],
- "badge": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdUsers": [
- { }
], - "createdVcInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": { },
- "user": { },
- "vpInfos": [
- {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "raw": null,
- "createdBy": null,
- "user": null,
- "vcInfos": [ ],
- "didInfo": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}
], - "badge": { },
- "verifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "createdBy": null,
- "vcSchema": null,
- "user": null,
- "vpInfos": [ ],
- "badge": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdDidInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": { },
- "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVcSchemas": [
- { }
], - "createdVerifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": { },
- "user": { },
- "vpInfos": [
- null
], - "badge": { },
- "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vpInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdFiles": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdBy": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "createdBy": null,
- "vcSchema": null,
- "user": null,
- "vpInfos": [ ],
- "badge": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}
], - "didInfo": { },
- "verifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": { },
- "user": { },
- "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "badge": { },
- "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "raw": null,
- "createdBy": null,
- "user": null,
- "vcInfos": [ ],
- "didInfo": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": { },
- "user": { },
- "vpInfos": [
- null
], - "badge": { },
- "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "createdBy": null,
- "vcSchema": null,
- "user": null,
- "vpInfos": [ ],
- "badge": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "vpInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdUsers": [
- { }
], - "createdVcInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": { },
- "user": { },
- "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "badge": { },
- "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "raw": null,
- "createdBy": null,
- "user": null,
- "vcInfos": [ ],
- "didInfo": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": { },
- "user": { },
- "vpInfos": [
- null
], - "badge": { },
- "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "createdBy": null,
- "vcSchema": null,
- "user": null,
- "vpInfos": [ ],
- "badge": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "vpInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdDidInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "createdBy": null,
- "vcSchema": null,
- "user": null,
- "vpInfos": [ ],
- "badge": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}
], - "didInfo": { },
- "verifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVcSchemas": [
- { }
], - "createdVerifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": { },
- "user": { },
- "vpInfos": [
- {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "raw": null,
- "createdBy": null,
- "user": null,
- "vcInfos": [ ],
- "didInfo": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}
], - "badge": { },
- "verifications": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vpInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "createdBy": null,
- "vcSchema": null,
- "user": null,
- "vpInfos": [ ],
- "badge": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdFiles": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "filename": "file-1729389547388-110834208.csv",
- "originalname": "testdata.csv",
- "type": "text/csv",
- "fileData": "text/csv",
- "executed": false,
- "status": 0,
- "vcSchema": { },
- "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vcInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- { }
], - "didInfo": { },
- "verifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcInfos": [
- { }
], - "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- { }
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdUsers": [
- { }
], - "createdVcInfos": [
- { }
], - "createdVpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- { }
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdDidInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- { }
], - "didInfo": { },
- "verifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVcSchemas": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- { }
], - "vcContexts": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "vcSchema": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcSchemaProperties": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "propIndex": 1,
- "propName": "prop1",
- "propType": "string",
- "parentObjectIndex": "parentObjectIndex",
- "vcSchema": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "badges": [
- { }
], - "file": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "filename": "file-1729389547388-110834208.csv",
- "originalname": "testdata.csv",
- "type": "text/csv",
- "fileData": "text/csv",
- "executed": false,
- "status": 0,
- "vcSchema": { },
- "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVerifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- { }
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdFiles": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "filename": "file-1729389547388-110834208.csv",
- "originalname": "testdata.csv",
- "type": "text/csv",
- "fileData": "text/csv",
- "executed": false,
- "status": 0,
- "vcSchema": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- { }
], - "vcContexts": [
- {
- "id": null,
- "context": null,
- "vcSchema": null,
- "createdAt": null,
- "updatedAt": null
}
], - "vcSchemaProperties": [
- {
- "id": null,
- "propIndex": null,
- "propName": null,
- "propType": null,
- "parentObjectIndex": null,
- "vcSchema": null,
- "createdAt": null,
- "updatedAt": null
}
], - "badges": [
- { }
], - "file": { },
- "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vcSchema": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- { }
], - "vcContexts": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "vcSchema": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcSchemaProperties": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "propIndex": 1,
- "propName": "prop1",
- "propType": "string",
- "parentObjectIndex": "parentObjectIndex",
- "vcSchema": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "badges": [
- { }
], - "file": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "filename": "file-1729389547388-110834208.csv",
- "originalname": "testdata.csv",
- "type": "text/csv",
- "fileData": "text/csv",
- "executed": false,
- "status": 0,
- "vcSchema": { },
- "createdBy": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "raw": null,
- "createdBy": null,
- "user": null,
- "vcInfos": [ ],
- "didInfo": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcInfos": [
- { }
], - "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdUsers": [
- { }
], - "createdVcInfos": [
- { }
], - "createdVpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdDidInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "raw": null,
- "createdBy": null,
- "user": null,
- "vcInfos": [ ],
- "didInfo": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVcSchemas": [
- { }
], - "createdVerifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "raw": null,
- "createdBy": null,
- "user": null,
- "vcInfos": [ ],
- "didInfo": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdFiles": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdBy": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": { },
- "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcInfos": [
- { }
], - "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- { }
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdUsers": [
- { }
], - "createdVcInfos": [
- { }
], - "createdVpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- { }
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdDidInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": { },
- "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVcSchemas": [
- { }
], - "createdVerifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdFiles": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "filename": "file-1729389547388-110834208.csv",
- "originalname": "testdata.csv",
- "type": "text/csv",
- "fileData": "text/csv",
- "executed": false,
- "status": 0,
- "vcSchema": { },
- "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "user": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- { }
], - "didInfo": { },
- "verifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcInfos": [
- { }
], - "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- { }
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdUsers": [
- { }
], - "createdVcInfos": [
- { }
], - "createdVpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- { }
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdDidInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- { }
], - "didInfo": { },
- "verifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVcSchemas": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- { }
], - "vcContexts": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "vcSchema": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcSchemaProperties": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "propIndex": 1,
- "propName": "prop1",
- "propType": "string",
- "parentObjectIndex": "parentObjectIndex",
- "vcSchema": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "badges": [
- { }
], - "file": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "filename": "file-1729389547388-110834208.csv",
- "originalname": "testdata.csv",
- "type": "text/csv",
- "fileData": "text/csv",
- "executed": false,
- "status": 0,
- "vcSchema": { },
- "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVerifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- { }
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdFiles": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "filename": "file-1729389547388-110834208.csv",
- "originalname": "testdata.csv",
- "type": "text/csv",
- "fileData": "text/csv",
- "executed": false,
- "status": 0,
- "vcSchema": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- { }
], - "vcContexts": [
- {
- "id": null,
- "context": null,
- "vcSchema": null,
- "createdAt": null,
- "updatedAt": null
}
], - "vcSchemaProperties": [
- {
- "id": null,
- "propIndex": null,
- "propName": null,
- "propType": null,
- "parentObjectIndex": null,
- "vcSchema": null,
- "createdAt": null,
- "updatedAt": null
}
], - "badges": [
- { }
], - "file": { },
- "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcInfos": [
- { }
], - "vpInfos": [
- { }
], - "createdUsers": [
- { }
], - "createdVcInfos": [
- { }
], - "createdVpInfos": [
- { }
], - "createdDidInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVcSchemas": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- null
], - "vcContexts": [
- null
], - "vcSchemaProperties": [
- null
], - "badges": [
- null
], - "file": {
- "id": null,
- "filename": null,
- "originalname": null,
- "type": null,
- "fileData": null,
- "executed": null,
- "status": null,
- "vcSchema": null,
- "createdBy": null,
- "createdAt": null,
- "updatedAt": null
}, - "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVerifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdFiles": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "filename": "file-1729389547388-110834208.csv",
- "originalname": "testdata.csv",
- "type": "text/csv",
- "fileData": "text/csv",
- "executed": false,
- "status": 0,
- "vcSchema": {
- "id": null,
- "title": null,
- "version": null,
- "description": null,
- "isBadgeSchema": null,
- "vcInfos": [ ],
- "vcContexts": [ ],
- "vcSchemaProperties": [ ],
- "badges": [ ],
- "file": null,
- "createdBy": null,
- "createdAt": null,
- "updatedAt": null
}, - "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "user": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcInfos": [
- { }
], - "vpInfos": [
- { }
], - "createdUsers": [
- { }
], - "createdVcInfos": [
- { }
], - "createdVpInfos": [
- { }
], - "createdDidInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVcSchemas": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- null
], - "vcContexts": [
- null
], - "vcSchemaProperties": [
- null
], - "badges": [
- null
], - "file": {
- "id": null,
- "filename": null,
- "originalname": null,
- "type": null,
- "fileData": null,
- "executed": null,
- "status": null,
- "vcSchema": null,
- "createdBy": null,
- "createdAt": null,
- "updatedAt": null
}, - "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVerifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdFiles": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "filename": "file-1729389547388-110834208.csv",
- "originalname": "testdata.csv",
- "type": "text/csv",
- "fileData": "text/csv",
- "executed": false,
- "status": 0,
- "vcSchema": {
- "id": null,
- "title": null,
- "version": null,
- "description": null,
- "isBadgeSchema": null,
- "vcInfos": [ ],
- "vcContexts": [ ],
- "vcSchemaProperties": [ ],
- "badges": [ ],
- "file": null,
- "createdBy": null,
- "createdAt": null,
- "updatedAt": null
}, - "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vcInfos": [
- { }
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- { }
], - "vcInfos": [
- { }
], - "vpInfos": [
- { }
], - "createdUsers": [
- { }
], - "createdVcInfos": [
- { }
], - "createdVpInfos": [
- { }
], - "createdDidInfos": [
- { }
], - "createdVcSchemas": [
- {
- "id": null,
- "title": null,
- "version": null,
- "description": null,
- "isBadgeSchema": null,
- "vcInfos": [ ],
- "vcContexts": [ ],
- "vcSchemaProperties": [ ],
- "badges": [ ],
- "file": null,
- "createdBy": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdVerifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdFiles": [
- {
- "id": null,
- "filename": null,
- "originalname": null,
- "type": null,
- "fileData": null,
- "executed": null,
- "status": null,
- "vcSchema": null,
- "createdBy": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdBy": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- { }
], - "vcInfos": [
- { }
], - "vpInfos": [
- { }
], - "createdUsers": [
- { }
], - "createdVcInfos": [
- { }
], - "createdVpInfos": [
- { }
], - "createdDidInfos": [
- { }
], - "createdVcSchemas": [
- {
- "id": null,
- "title": null,
- "version": null,
- "description": null,
- "isBadgeSchema": null,
- "vcInfos": [ ],
- "vcContexts": [ ],
- "vcSchemaProperties": [ ],
- "badges": [ ],
- "file": null,
- "createdBy": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdVerifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdFiles": [
- {
- "id": null,
- "filename": null,
- "originalname": null,
- "type": null,
- "fileData": null,
- "executed": null,
- "status": null,
- "vcSchema": null,
- "createdBy": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- null
], - "vcInfos": [
- null
], - "vpInfos": [
- null
], - "createdUsers": [
- null
], - "createdVcInfos": [
- null
], - "createdVpInfos": [
- null
], - "createdDidInfos": [
- null
], - "createdVcSchemas": [
- null
], - "createdVerifications": [
- null
], - "createdFiles": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vcInfo": { },
- "vpInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "badge": { },
- "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "raw": null,
- "createdBy": null,
- "user": null,
- "vcInfos": [ ],
- "didInfo": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcInfos": [
- { }
], - "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdUsers": [
- { }
], - "createdVcInfos": [
- { }
], - "createdVpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdDidInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "raw": null,
- "createdBy": null,
- "user": null,
- "vcInfos": [ ],
- "didInfo": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVcSchemas": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- null
], - "vcContexts": [
- null
], - "vcSchemaProperties": [
- null
], - "badges": [
- null
], - "file": {
- "id": null,
- "filename": null,
- "originalname": null,
- "type": null,
- "fileData": null,
- "executed": null,
- "status": null,
- "vcSchema": null,
- "createdBy": null,
- "createdAt": null,
- "updatedAt": null
}, - "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVerifications": [
- { }
], - "createdFiles": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "filename": "file-1729389547388-110834208.csv",
- "originalname": "testdata.csv",
- "type": "text/csv",
- "fileData": "text/csv",
- "executed": false,
- "status": 0,
- "vcSchema": {
- "id": null,
- "title": null,
- "version": null,
- "description": null,
- "isBadgeSchema": null,
- "vcInfos": [ ],
- "vcContexts": [ ],
- "vcSchemaProperties": [ ],
- "badges": [ ],
- "file": null,
- "createdBy": null,
- "createdAt": null,
- "updatedAt": null
}, - "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vcInfo": { },
- "vpInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}
], - "vcInfos": [
- { }
], - "vpInfos": [
- { }
], - "createdUsers": [
- { }
], - "createdVcInfos": [
- { }
], - "createdVpInfos": [
- { }
], - "createdDidInfos": [
- {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdVcSchemas": [
- {
- "id": null,
- "title": null,
- "version": null,
- "description": null,
- "isBadgeSchema": null,
- "vcInfos": [ ],
- "vcContexts": [ ],
- "vcSchemaProperties": [ ],
- "badges": [ ],
- "file": null,
- "createdBy": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdVerifications": [
- { }
], - "createdFiles": [
- {
- "id": null,
- "filename": null,
- "originalname": null,
- "type": null,
- "fileData": null,
- "executed": null,
- "status": null,
- "vcSchema": null,
- "createdBy": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "user": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}
], - "vcInfos": [
- { }
], - "vpInfos": [
- { }
], - "createdUsers": [
- { }
], - "createdVcInfos": [
- { }
], - "createdVpInfos": [
- { }
], - "createdDidInfos": [
- {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdVcSchemas": [
- {
- "id": null,
- "title": null,
- "version": null,
- "description": null,
- "isBadgeSchema": null,
- "vcInfos": [ ],
- "vcContexts": [ ],
- "vcSchemaProperties": [ ],
- "badges": [ ],
- "file": null,
- "createdBy": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdVerifications": [
- { }
], - "createdFiles": [
- {
- "id": null,
- "filename": null,
- "originalname": null,
- "type": null,
- "fileData": null,
- "executed": null,
- "status": null,
- "vcSchema": null,
- "createdBy": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vcInfos": [
- { }
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- null
], - "vcInfos": [
- null
], - "vpInfos": [
- null
], - "createdUsers": [
- null
], - "createdVcInfos": [
- null
], - "createdVpInfos": [
- null
], - "createdDidInfos": [
- null
], - "createdVcSchemas": [
- null
], - "createdVerifications": [
- null
], - "createdFiles": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdBy": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- null
], - "vcInfos": [
- null
], - "vpInfos": [
- null
], - "createdUsers": [
- null
], - "createdVcInfos": [
- null
], - "createdVpInfos": [
- null
], - "createdDidInfos": [
- null
], - "createdVcSchemas": [
- null
], - "createdVerifications": [
- null
], - "createdFiles": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "file": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "filename": "file-1729389547388-110834208.csv",
- "originalname": "testdata.csv",
- "type": "text/csv",
- "fileData": "text/csv",
- "executed": false,
- "status": 0,
- "vcSchema": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": { },
- "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcInfos": [
- { }
], - "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- { }
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdUsers": [
- { }
], - "createdVcInfos": [
- { }
], - "createdVpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- { }
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdDidInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": { },
- "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVcSchemas": [
- { }
], - "createdVerifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdFiles": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vcSchema": { },
- "user": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": { },
- "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcInfos": [
- { }
], - "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- { }
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdUsers": [
- { }
], - "createdVcInfos": [
- { }
], - "createdVpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- { }
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdDidInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": { },
- "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVcSchemas": [
- { }
], - "createdVerifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdFiles": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}
], - "vcInfos": [
- { }
], - "vpInfos": [
- { }
], - "createdUsers": [
- { }
], - "createdVcInfos": [
- { }
], - "createdVpInfos": [
- { }
], - "createdDidInfos": [
- {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdVcSchemas": [
- { }
], - "createdVerifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdFiles": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "user": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}
], - "vcInfos": [
- { }
], - "vpInfos": [
- { }
], - "createdUsers": [
- { }
], - "createdVcInfos": [
- { }
], - "createdVpInfos": [
- { }
], - "createdDidInfos": [
- {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdVcSchemas": [
- { }
], - "createdVerifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdFiles": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vcInfos": [
- { }
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- null
], - "vcInfos": [
- null
], - "vpInfos": [
- null
], - "createdUsers": [
- null
], - "createdVcInfos": [
- null
], - "createdVpInfos": [
- null
], - "createdDidInfos": [
- null
], - "createdVcSchemas": [
- null
], - "createdVerifications": [
- null
], - "createdFiles": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdBy": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- null
], - "vcInfos": [
- null
], - "vpInfos": [
- null
], - "createdUsers": [
- null
], - "createdVcInfos": [
- null
], - "createdVpInfos": [
- null
], - "createdDidInfos": [
- null
], - "createdVcSchemas": [
- null
], - "createdVerifications": [
- null
], - "createdFiles": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": {
- "id": null,
- "name": null,
- "email": null,
- "password": null,
- "needActivateFlow": null,
- "status": null,
- "role": null,
- "createdBy": null,
- "didInfos": [ ],
- "vcInfos": [ ],
- "vpInfos": [ ],
- "createdUsers": [ ],
- "createdVcInfos": [ ],
- "createdVpInfos": [ ],
- "createdDidInfos": [ ],
- "createdVcSchemas": [ ],
- "createdVerifications": [ ],
- "createdFiles": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "vcInfo": { },
- "vpInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "badge": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "sample-badge-1",
- "filename": "badge-12345-12345.png",
- "description": "This is Sample Badge 1.",
- "status": 1,
- "vcSchema": { },
- "vcInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}
], - "vcInfos": [
- { }
], - "vpInfos": [
- {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "raw": null,
- "createdBy": null,
- "user": null,
- "vcInfos": [ ],
- "didInfo": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}
], - "createdUsers": [
- { }
], - "createdVcInfos": [
- { }
], - "createdVpInfos": [
- {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "raw": null,
- "createdBy": null,
- "user": null,
- "vcInfos": [ ],
- "didInfo": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}
], - "createdDidInfos": [
- {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdVcSchemas": [
- { }
], - "createdVerifications": [
- { }
], - "createdFiles": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vcInfo": { },
- "vpInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- null
], - "vcInfos": [
- null
], - "vpInfos": [
- null
], - "createdUsers": [
- null
], - "createdVcInfos": [
- null
], - "createdVpInfos": [
- null
], - "createdDidInfos": [
- null
], - "createdVcSchemas": [
- null
], - "createdVerifications": [
- null
], - "createdFiles": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "user": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- null
], - "vcInfos": [
- null
], - "vpInfos": [
- null
], - "createdUsers": [
- null
], - "createdVcInfos": [
- null
], - "createdVpInfos": [
- null
], - "createdDidInfos": [
- null
], - "createdVcSchemas": [
- null
], - "createdVerifications": [
- null
], - "createdFiles": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vcInfos": [
- { }
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": {
- "id": null,
- "name": null,
- "email": null,
- "password": null,
- "needActivateFlow": null,
- "status": null,
- "role": null,
- "createdBy": null,
- "didInfos": [ ],
- "vcInfos": [ ],
- "vpInfos": [ ],
- "createdUsers": [ ],
- "createdVcInfos": [ ],
- "createdVpInfos": [ ],
- "createdDidInfos": [ ],
- "createdVcSchemas": [ ],
- "createdVerifications": [ ],
- "createdFiles": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "createdBy": {
- "id": null,
- "name": null,
- "email": null,
- "password": null,
- "needActivateFlow": null,
- "status": null,
- "role": null,
- "createdBy": null,
- "didInfos": [ ],
- "vcInfos": [ ],
- "vpInfos": [ ],
- "createdUsers": [ ],
- "createdVcInfos": [ ],
- "createdVpInfos": [ ],
- "createdDidInfos": [ ],
- "createdVcSchemas": [ ],
- "createdVerifications": [ ],
- "createdFiles": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcContexts": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "vcSchema": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcSchemaProperties": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "propIndex": 1,
- "propName": "prop1",
- "propType": "string",
- "parentObjectIndex": "parentObjectIndex",
- "vcSchema": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "badges": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "sample-badge-1",
- "filename": "badge-12345-12345.png",
- "description": "This is Sample Badge 1.",
- "status": 1,
- "vcSchema": { },
- "vcInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "raw": null,
- "createdBy": null,
- "user": null,
- "vcInfos": [ ],
- "didInfo": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcInfos": [
- { }
], - "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdUsers": [
- { }
], - "createdVcInfos": [
- { }
], - "createdVpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdDidInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "raw": null,
- "createdBy": null,
- "user": null,
- "vcInfos": [ ],
- "didInfo": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVcSchemas": [
- { }
], - "createdVerifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "raw": null,
- "createdBy": null,
- "user": null,
- "vcInfos": [ ],
- "didInfo": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdFiles": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vcSchema": { },
- "user": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "raw": null,
- "createdBy": null,
- "user": null,
- "vcInfos": [ ],
- "didInfo": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcInfos": [
- { }
], - "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdUsers": [
- { }
], - "createdVcInfos": [
- { }
], - "createdVpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdDidInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "raw": null,
- "createdBy": null,
- "user": null,
- "vcInfos": [ ],
- "didInfo": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVcSchemas": [
- { }
], - "createdVerifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "raw": null,
- "createdBy": null,
- "user": null,
- "vcInfos": [ ],
- "didInfo": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdFiles": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- null
], - "vcInfos": [
- null
], - "vpInfos": [
- null
], - "createdUsers": [
- null
], - "createdVcInfos": [
- null
], - "createdVpInfos": [
- null
], - "createdDidInfos": [
- null
], - "createdVcSchemas": [
- null
], - "createdVerifications": [
- null
], - "createdFiles": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "user": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- null
], - "vcInfos": [
- null
], - "vpInfos": [
- null
], - "createdUsers": [
- null
], - "createdVcInfos": [
- null
], - "createdVpInfos": [
- null
], - "createdDidInfos": [
- null
], - "createdVcSchemas": [
- null
], - "createdVerifications": [
- null
], - "createdFiles": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vcInfos": [
- { }
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": {
- "id": null,
- "name": null,
- "email": null,
- "password": null,
- "needActivateFlow": null,
- "status": null,
- "role": null,
- "createdBy": null,
- "didInfos": [ ],
- "vcInfos": [ ],
- "vpInfos": [ ],
- "createdUsers": [ ],
- "createdVcInfos": [ ],
- "createdVpInfos": [ ],
- "createdDidInfos": [ ],
- "createdVcSchemas": [ ],
- "createdVerifications": [ ],
- "createdFiles": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "createdBy": {
- "id": null,
- "name": null,
- "email": null,
- "password": null,
- "needActivateFlow": null,
- "status": null,
- "role": null,
- "createdBy": null,
- "didInfos": [ ],
- "vcInfos": [ ],
- "vpInfos": [ ],
- "createdUsers": [ ],
- "createdVcInfos": [ ],
- "createdVpInfos": [ ],
- "createdDidInfos": [ ],
- "createdVcSchemas": [ ],
- "createdVerifications": [ ],
- "createdFiles": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "badge": { },
- "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- null
], - "vcInfos": [
- null
], - "vpInfos": [
- null
], - "createdUsers": [
- null
], - "createdVcInfos": [
- null
], - "createdVpInfos": [
- null
], - "createdDidInfos": [
- null
], - "createdVcSchemas": [
- null
], - "createdVerifications": [
- null
], - "createdFiles": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vcInfo": { },
- "vpInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": {
- "id": null,
- "name": null,
- "email": null,
- "password": null,
- "needActivateFlow": null,
- "status": null,
- "role": null,
- "createdBy": null,
- "didInfos": [ ],
- "vcInfos": [ ],
- "vpInfos": [ ],
- "createdUsers": [ ],
- "createdVcInfos": [ ],
- "createdVpInfos": [ ],
- "createdDidInfos": [ ],
- "createdVcSchemas": [ ],
- "createdVerifications": [ ],
- "createdFiles": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "user": {
- "id": null,
- "name": null,
- "email": null,
- "password": null,
- "needActivateFlow": null,
- "status": null,
- "role": null,
- "createdBy": null,
- "didInfos": [ ],
- "vcInfos": [ ],
- "vpInfos": [ ],
- "createdUsers": [ ],
- "createdVcInfos": [ ],
- "createdVpInfos": [ ],
- "createdDidInfos": [ ],
- "createdVcSchemas": [ ],
- "createdVerifications": [ ],
- "createdFiles": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "vcInfos": [
- null
], - "didInfo": {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "file": { },
- "createdBy": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": { },
- "user": { },
- "vpInfos": [
- null
], - "badge": {
- "id": null,
- "label": null,
- "filename": null,
- "description": null,
- "status": null,
- "vcSchema": null,
- "vcInfo": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "didInfo": { },
- "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "createdBy": null,
- "vcSchema": null,
- "user": null,
- "vpInfos": [ ],
- "badge": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "vpInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": { },
- "user": { },
- "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- { }
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "badge": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "sample-badge-1",
- "filename": "badge-12345-12345.png",
- "description": "This is Sample Badge 1.",
- "status": 1,
- "vcSchema": { },
- "vcInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": { },
- "user": { },
- "vpInfos": [
- { }
], - "badge": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "sample-badge-1",
- "filename": "badge-12345-12345.png",
- "description": "This is Sample Badge 1.",
- "status": 1,
- "vcSchema": { },
- "vcInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": { },
- "user": { },
- "vpInfos": [
- null
], - "badge": {
- "id": null,
- "label": null,
- "filename": null,
- "description": null,
- "status": null,
- "vcSchema": null,
- "vcInfo": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vpInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdUsers": [
- { }
], - "createdVcInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": { },
- "user": { },
- "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- { }
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "badge": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "sample-badge-1",
- "filename": "badge-12345-12345.png",
- "description": "This is Sample Badge 1.",
- "status": 1,
- "vcSchema": { },
- "vcInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": { },
- "user": { },
- "vpInfos": [
- { }
], - "badge": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "sample-badge-1",
- "filename": "badge-12345-12345.png",
- "description": "This is Sample Badge 1.",
- "status": 1,
- "vcSchema": { },
- "vcInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": { },
- "user": { },
- "vpInfos": [
- null
], - "badge": {
- "id": null,
- "label": null,
- "filename": null,
- "description": null,
- "status": null,
- "vcSchema": null,
- "vcInfo": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vpInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdDidInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": { },
- "user": { },
- "vpInfos": [
- null
], - "badge": {
- "id": null,
- "label": null,
- "filename": null,
- "description": null,
- "status": null,
- "vcSchema": null,
- "vcInfo": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "didInfo": { },
- "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "createdBy": null,
- "vcSchema": null,
- "user": null,
- "vpInfos": [ ],
- "badge": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "vpInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVcSchemas": [
- { }
], - "createdVerifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": { },
- "user": { },
- "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "badge": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "sample-badge-1",
- "filename": "badge-12345-12345.png",
- "description": "This is Sample Badge 1.",
- "status": 1,
- "vcSchema": { },
- "vcInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vpInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": { },
- "user": { },
- "vpInfos": [
- null
], - "badge": {
- "id": null,
- "label": null,
- "filename": null,
- "description": null,
- "status": null,
- "vcSchema": null,
- "vcInfo": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdFiles": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdBy": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- null
], - "vcContexts": [
- null
], - "vcSchemaProperties": [
- null
], - "badges": [
- null
], - "file": { },
- "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "user": { },
- "vpInfos": [
- { }
], - "badge": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "sample-badge-1",
- "filename": "badge-12345-12345.png",
- "description": "This is Sample Badge 1.",
- "status": 1,
- "vcSchema": {
- "id": null,
- "title": null,
- "version": null,
- "description": null,
- "isBadgeSchema": null,
- "vcInfos": [ ],
- "vcContexts": [ ],
- "vcSchemaProperties": [ ],
- "badges": [ ],
- "file": null,
- "createdBy": null,
- "createdAt": null,
- "updatedAt": null
}, - "vcInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "didInfo": { },
- "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": {
- "id": null,
- "title": null,
- "version": null,
- "description": null,
- "isBadgeSchema": null,
- "vcInfos": [ ],
- "vcContexts": [ ],
- "vcSchemaProperties": [ ],
- "badges": [ ],
- "file": null,
- "createdBy": null,
- "createdAt": null,
- "updatedAt": null
}, - "user": { },
- "vpInfos": [
- null
], - "badge": {
- "id": null,
- "label": null,
- "filename": null,
- "description": null,
- "status": null,
- "vcSchema": null,
- "vcInfo": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vpInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- { }
], - "vcContexts": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "vcSchema": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcSchemaProperties": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "propIndex": 1,
- "propName": "prop1",
- "propType": "string",
- "parentObjectIndex": "parentObjectIndex",
- "vcSchema": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "badges": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "sample-badge-1",
- "filename": "badge-12345-12345.png",
- "description": "This is Sample Badge 1.",
- "status": 1,
- "vcSchema": { },
- "vcInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "file": { },
- "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "user": { },
- "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- { }
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "badge": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "sample-badge-1",
- "filename": "badge-12345-12345.png",
- "description": "This is Sample Badge 1.",
- "status": 1,
- "vcSchema": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- { }
], - "vcContexts": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "vcSchema": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcSchemaProperties": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "propIndex": 1,
- "propName": "prop1",
- "propType": "string",
- "parentObjectIndex": "parentObjectIndex",
- "vcSchema": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "badges": [
- { }
], - "file": { },
- "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vcInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- { }
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- { }
], - "vcContexts": [
- {
- "id": null,
- "context": null,
- "vcSchema": null,
- "createdAt": null,
- "updatedAt": null
}
], - "vcSchemaProperties": [
- {
- "id": null,
- "propIndex": null,
- "propName": null,
- "propType": null,
- "parentObjectIndex": null,
- "vcSchema": null,
- "createdAt": null,
- "updatedAt": null
}
], - "badges": [
- {
- "id": null,
- "label": null,
- "filename": null,
- "description": null,
- "status": null,
- "vcSchema": null,
- "vcInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "file": { },
- "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "user": { },
- "vpInfos": [
- { }
], - "badge": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "sample-badge-1",
- "filename": "badge-12345-12345.png",
- "description": "This is Sample Badge 1.",
- "status": 1,
- "vcSchema": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- null
], - "vcContexts": [
- null
], - "vcSchemaProperties": [
- null
], - "badges": [
- null
], - "file": { },
- "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vcInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- null
], - "vcContexts": [
- null
], - "vcSchemaProperties": [
- null
], - "badges": [
- null
], - "file": { },
- "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "user": { },
- "vpInfos": [
- { }
], - "badge": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "sample-badge-1",
- "filename": "badge-12345-12345.png",
- "description": "This is Sample Badge 1.",
- "status": 1,
- "vcSchema": {
- "id": null,
- "title": null,
- "version": null,
- "description": null,
- "isBadgeSchema": null,
- "vcInfos": [ ],
- "vcContexts": [ ],
- "vcSchemaProperties": [ ],
- "badges": [ ],
- "file": null,
- "createdBy": null,
- "createdAt": null,
- "updatedAt": null
}, - "vcInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vpInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdUsers": [
- { }
], - "createdVcInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- { }
], - "vcContexts": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "vcSchema": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcSchemaProperties": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "propIndex": 1,
- "propName": "prop1",
- "propType": "string",
- "parentObjectIndex": "parentObjectIndex",
- "vcSchema": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "badges": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "sample-badge-1",
- "filename": "badge-12345-12345.png",
- "description": "This is Sample Badge 1.",
- "status": 1,
- "vcSchema": { },
- "vcInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "file": { },
- "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "user": { },
- "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- { }
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "badge": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "sample-badge-1",
- "filename": "badge-12345-12345.png",
- "description": "This is Sample Badge 1.",
- "status": 1,
- "vcSchema": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- { }
], - "vcContexts": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "vcSchema": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcSchemaProperties": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "propIndex": 1,
- "propName": "prop1",
- "propType": "string",
- "parentObjectIndex": "parentObjectIndex",
- "vcSchema": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "badges": [
- { }
], - "file": { },
- "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vcInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- { }
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- { }
], - "vcContexts": [
- {
- "id": null,
- "context": null,
- "vcSchema": null,
- "createdAt": null,
- "updatedAt": null
}
], - "vcSchemaProperties": [
- {
- "id": null,
- "propIndex": null,
- "propName": null,
- "propType": null,
- "parentObjectIndex": null,
- "vcSchema": null,
- "createdAt": null,
- "updatedAt": null
}
], - "badges": [
- {
- "id": null,
- "label": null,
- "filename": null,
- "description": null,
- "status": null,
- "vcSchema": null,
- "vcInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "file": { },
- "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "user": { },
- "vpInfos": [
- { }
], - "badge": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "sample-badge-1",
- "filename": "badge-12345-12345.png",
- "description": "This is Sample Badge 1.",
- "status": 1,
- "vcSchema": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- null
], - "vcContexts": [
- null
], - "vcSchemaProperties": [
- null
], - "badges": [
- null
], - "file": { },
- "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vcInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- null
], - "vcContexts": [
- null
], - "vcSchemaProperties": [
- null
], - "badges": [
- null
], - "file": { },
- "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "user": { },
- "vpInfos": [
- { }
], - "badge": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "sample-badge-1",
- "filename": "badge-12345-12345.png",
- "description": "This is Sample Badge 1.",
- "status": 1,
- "vcSchema": {
- "id": null,
- "title": null,
- "version": null,
- "description": null,
- "isBadgeSchema": null,
- "vcInfos": [ ],
- "vcContexts": [ ],
- "vcSchemaProperties": [ ],
- "badges": [ ],
- "file": null,
- "createdBy": null,
- "createdAt": null,
- "updatedAt": null
}, - "vcInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vpInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdDidInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- null
], - "vcContexts": [
- null
], - "vcSchemaProperties": [
- null
], - "badges": [
- null
], - "file": { },
- "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "user": { },
- "vpInfos": [
- { }
], - "badge": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "sample-badge-1",
- "filename": "badge-12345-12345.png",
- "description": "This is Sample Badge 1.",
- "status": 1,
- "vcSchema": {
- "id": null,
- "title": null,
- "version": null,
- "description": null,
- "isBadgeSchema": null,
- "vcInfos": [ ],
- "vcContexts": [ ],
- "vcSchemaProperties": [ ],
- "badges": [ ],
- "file": null,
- "createdBy": null,
- "createdAt": null,
- "updatedAt": null
}, - "vcInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "didInfo": { },
- "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": {
- "id": null,
- "title": null,
- "version": null,
- "description": null,
- "isBadgeSchema": null,
- "vcInfos": [ ],
- "vcContexts": [ ],
- "vcSchemaProperties": [ ],
- "badges": [ ],
- "file": null,
- "createdBy": null,
- "createdAt": null,
- "updatedAt": null
}, - "user": { },
- "vpInfos": [
- null
], - "badge": {
- "id": null,
- "label": null,
- "filename": null,
- "description": null,
- "status": null,
- "vcSchema": null,
- "vcInfo": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vpInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVcSchemas": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": { },
- "user": { },
- "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "badge": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "sample-badge-1",
- "filename": "badge-12345-12345.png",
- "description": "This is Sample Badge 1.",
- "status": 1,
- "vcSchema": { },
- "vcInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "raw": null,
- "createdBy": null,
- "user": null,
- "vcInfos": [ ],
- "didInfo": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcContexts": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "vcSchema": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcSchemaProperties": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "propIndex": 1,
- "propName": "prop1",
- "propType": "string",
- "parentObjectIndex": "parentObjectIndex",
- "vcSchema": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "badges": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "sample-badge-1",
- "filename": "badge-12345-12345.png",
- "description": "This is Sample Badge 1.",
- "status": 1,
- "vcSchema": { },
- "vcInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": { },
- "user": { },
- "vpInfos": [
- {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "raw": null,
- "createdBy": null,
- "user": null,
- "vcInfos": [ ],
- "didInfo": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}
], - "badge": { },
- "verifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "file": { },
- "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVerifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- { }
], - "vcContexts": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "vcSchema": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcSchemaProperties": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "propIndex": 1,
- "propName": "prop1",
- "propType": "string",
- "parentObjectIndex": "parentObjectIndex",
- "vcSchema": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "badges": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "sample-badge-1",
- "filename": "badge-12345-12345.png",
- "description": "This is Sample Badge 1.",
- "status": 1,
- "vcSchema": { },
- "vcInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "file": { },
- "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "user": { },
- "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- { }
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "badge": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "sample-badge-1",
- "filename": "badge-12345-12345.png",
- "description": "This is Sample Badge 1.",
- "status": 1,
- "vcSchema": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- { }
], - "vcContexts": [
- {
- "id": null,
- "context": null,
- "vcSchema": null,
- "createdAt": null,
- "updatedAt": null
}
], - "vcSchemaProperties": [
- {
- "id": null,
- "propIndex": null,
- "propName": null,
- "propType": null,
- "parentObjectIndex": null,
- "vcSchema": null,
- "createdAt": null,
- "updatedAt": null
}
], - "badges": [
- { }
], - "file": { },
- "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vcInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vpInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- null
], - "vcContexts": [
- null
], - "vcSchemaProperties": [
- null
], - "badges": [
- null
], - "file": { },
- "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "user": { },
- "vpInfos": [
- { }
], - "badge": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "sample-badge-1",
- "filename": "badge-12345-12345.png",
- "description": "This is Sample Badge 1.",
- "status": 1,
- "vcSchema": {
- "id": null,
- "title": null,
- "version": null,
- "description": null,
- "isBadgeSchema": null,
- "vcInfos": [ ],
- "vcContexts": [ ],
- "vcSchemaProperties": [ ],
- "badges": [ ],
- "file": null,
- "createdBy": null,
- "createdAt": null,
- "updatedAt": null
}, - "vcInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdFiles": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdBy": {
- "id": "e8973f1a-a80f-4243-8061-144565b640f2",
- "name": "admin",
- "email": "admin@email.com",
- "needActivateFlow": false,
- "status": "active",
- "role": "admin",
- "createdAt": "2025-02-04T22:32:21.343Z",
- "updatedAt": "2025-02-04T22:32:21.343Z"
}, - "createdAt": "2024-05-24T06:39:54.352Z",
- "updatedAt": "2024-05-24T06:39:54.352Z"
}
VCスキーマに関連するグループを紐付けます。
id required | string |
groupIds | Array of strings (必須) VCスキーマを紐づけるグループ識別子の配列。 |
contexts | Array of strings (必須) VCスキーマを紐づけるcontext項目の配列。 |
{- "groupIds": [
- "3bfc3721-eb7c-4a5b-b5ac-94d1f158911f"
],
}
{- "id": "3bfc3721-eb7c-4a5b-b5ac-94d1f158911f",
- "title": "This is VC Schema sample 1",
- "version": "1.0.0",
- "description": "This is VC Schema 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdAt": "2024-05-24T06:39:54.352Z",
- "updatedAt": "2024-05-24T06:39:54.352Z"
}
], - "vcContexts": [ ],
- "vcSchemaProperties": [
- {
- "id": "53d624fb-456b-4500-8673-d53dc672bbeb",
- "propName": "age",
- "propType": "number",
- "createdAt": "2024-07-09T04:25:19.878Z",
- "updatedAt": "2024-07-09T04:25:19.878Z"
}, - {
- "id": "576a7023-141c-4dea-8d8c-b1162b7f5963",
- "propName": "name",
- "propType": "string",
- "createdAt": "2024-07-09T04:25:19.877Z",
- "updatedAt": "2024-07-09T04:25:19.877Z"
}
], - "badges": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "sample-badge-1",
- "filename": "badge-12345-12345.png",
- "description": "This is Sample Badge 1.",
- "status": 1,
- "vcSchema": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "raw": null,
- "createdBy": null,
- "user": null,
- "vcInfos": [ ],
- "didInfo": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcInfos": [
- { }
], - "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdUsers": [
- { }
], - "createdVcInfos": [
- { }
], - "createdVpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdDidInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "raw": null,
- "createdBy": null,
- "user": null,
- "vcInfos": [ ],
- "didInfo": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVcSchemas": [
- { }
], - "createdVerifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "raw": null,
- "createdBy": null,
- "user": null,
- "vcInfos": [ ],
- "didInfo": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdFiles": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "filename": "file-1729389547388-110834208.csv",
- "originalname": "testdata.csv",
- "type": "text/csv",
- "fileData": "text/csv",
- "executed": false,
- "status": 0,
- "vcSchema": { },
- "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vcSchema": { },
- "user": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "raw": null,
- "createdBy": null,
- "user": null,
- "vcInfos": [ ],
- "didInfo": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcInfos": [
- { }
], - "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdUsers": [
- { }
], - "createdVcInfos": [
- { }
], - "createdVpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdDidInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "raw": null,
- "createdBy": null,
- "user": null,
- "vcInfos": [ ],
- "didInfo": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVcSchemas": [
- { }
], - "createdVerifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "raw": null,
- "createdBy": null,
- "user": null,
- "vcInfos": [ ],
- "didInfo": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdFiles": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "filename": "file-1729389547388-110834208.csv",
- "originalname": "testdata.csv",
- "type": "text/csv",
- "fileData": "text/csv",
- "executed": false,
- "status": 0,
- "vcSchema": { },
- "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- null
], - "vcInfos": [
- null
], - "vpInfos": [
- null
], - "createdUsers": [
- null
], - "createdVcInfos": [
- null
], - "createdVpInfos": [
- null
], - "createdDidInfos": [
- null
], - "createdVcSchemas": [
- null
], - "createdVerifications": [
- null
], - "createdFiles": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "user": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- null
], - "vcInfos": [
- null
], - "vpInfos": [
- null
], - "createdUsers": [
- null
], - "createdVcInfos": [
- null
], - "createdVpInfos": [
- null
], - "createdDidInfos": [
- null
], - "createdVcSchemas": [
- null
], - "createdVerifications": [
- null
], - "createdFiles": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vcInfos": [
- { }
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": {
- "id": null,
- "name": null,
- "email": null,
- "password": null,
- "needActivateFlow": null,
- "status": null,
- "role": null,
- "createdBy": null,
- "didInfos": [ ],
- "vcInfos": [ ],
- "vpInfos": [ ],
- "createdUsers": [ ],
- "createdVcInfos": [ ],
- "createdVpInfos": [ ],
- "createdDidInfos": [ ],
- "createdVcSchemas": [ ],
- "createdVerifications": [ ],
- "createdFiles": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "createdBy": {
- "id": null,
- "name": null,
- "email": null,
- "password": null,
- "needActivateFlow": null,
- "status": null,
- "role": null,
- "createdBy": null,
- "didInfos": [ ],
- "vcInfos": [ ],
- "vpInfos": [ ],
- "createdUsers": [ ],
- "createdVcInfos": [ ],
- "createdVpInfos": [ ],
- "createdDidInfos": [ ],
- "createdVcSchemas": [ ],
- "createdVerifications": [ ],
- "createdFiles": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "badge": { },
- "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- null
], - "vcInfos": [
- null
], - "vpInfos": [
- null
], - "createdUsers": [
- null
], - "createdVcInfos": [
- null
], - "createdVpInfos": [
- null
], - "createdDidInfos": [
- null
], - "createdVcSchemas": [
- null
], - "createdVerifications": [
- null
], - "createdFiles": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vcInfo": { },
- "vpInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": {
- "id": null,
- "name": null,
- "email": null,
- "password": null,
- "needActivateFlow": null,
- "status": null,
- "role": null,
- "createdBy": null,
- "didInfos": [ ],
- "vcInfos": [ ],
- "vpInfos": [ ],
- "createdUsers": [ ],
- "createdVcInfos": [ ],
- "createdVpInfos": [ ],
- "createdDidInfos": [ ],
- "createdVcSchemas": [ ],
- "createdVerifications": [ ],
- "createdFiles": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "user": {
- "id": null,
- "name": null,
- "email": null,
- "password": null,
- "needActivateFlow": null,
- "status": null,
- "role": null,
- "createdBy": null,
- "didInfos": [ ],
- "vcInfos": [ ],
- "vpInfos": [ ],
- "createdUsers": [ ],
- "createdVcInfos": [ ],
- "createdVpInfos": [ ],
- "createdDidInfos": [ ],
- "createdVcSchemas": [ ],
- "createdVerifications": [ ],
- "createdFiles": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "vcInfos": [
- null
], - "didInfo": {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcContexts": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "vcSchema": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcSchemaProperties": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "propIndex": 1,
- "propName": "prop1",
- "propType": "string",
- "parentObjectIndex": "parentObjectIndex",
- "vcSchema": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "badges": [
- { }
], - "file": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "filename": "file-1729389547388-110834208.csv",
- "originalname": "testdata.csv",
- "type": "text/csv",
- "fileData": "text/csv",
- "executed": false,
- "status": 0,
- "vcSchema": { },
- "createdBy": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": { },
- "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": { },
- "user": { },
- "vpInfos": [
- {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "raw": null,
- "createdBy": null,
- "user": null,
- "vcInfos": [ ],
- "didInfo": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}
], - "badge": { },
- "verifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "createdBy": null,
- "vcSchema": null,
- "user": null,
- "vpInfos": [ ],
- "badge": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdUsers": [
- { }
], - "createdVcInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": { },
- "user": { },
- "vpInfos": [
- {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "raw": null,
- "createdBy": null,
- "user": null,
- "vcInfos": [ ],
- "didInfo": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}
], - "badge": { },
- "verifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "createdBy": null,
- "vcSchema": null,
- "user": null,
- "vpInfos": [ ],
- "badge": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdDidInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": { },
- "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVcSchemas": [
- { }
], - "createdVerifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": { },
- "user": { },
- "vpInfos": [
- null
], - "badge": { },
- "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vpInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdFiles": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdBy": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "createdBy": null,
- "vcSchema": null,
- "user": null,
- "vpInfos": [ ],
- "badge": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}
], - "didInfo": { },
- "verifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": { },
- "user": { },
- "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "badge": { },
- "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "raw": null,
- "createdBy": null,
- "user": null,
- "vcInfos": [ ],
- "didInfo": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": { },
- "user": { },
- "vpInfos": [
- null
], - "badge": { },
- "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "createdBy": null,
- "vcSchema": null,
- "user": null,
- "vpInfos": [ ],
- "badge": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "vpInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdUsers": [
- { }
], - "createdVcInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": { },
- "user": { },
- "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "badge": { },
- "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "raw": null,
- "createdBy": null,
- "user": null,
- "vcInfos": [ ],
- "didInfo": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": { },
- "user": { },
- "vpInfos": [
- null
], - "badge": { },
- "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "createdBy": null,
- "vcSchema": null,
- "user": null,
- "vpInfos": [ ],
- "badge": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "vpInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdDidInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "createdBy": null,
- "vcSchema": null,
- "user": null,
- "vpInfos": [ ],
- "badge": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}
], - "didInfo": { },
- "verifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVcSchemas": [
- { }
], - "createdVerifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": { },
- "user": { },
- "vpInfos": [
- {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "raw": null,
- "createdBy": null,
- "user": null,
- "vcInfos": [ ],
- "didInfo": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}
], - "badge": { },
- "verifications": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vpInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "createdBy": null,
- "vcSchema": null,
- "user": null,
- "vpInfos": [ ],
- "badge": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdFiles": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "filename": "file-1729389547388-110834208.csv",
- "originalname": "testdata.csv",
- "type": "text/csv",
- "fileData": "text/csv",
- "executed": false,
- "status": 0,
- "vcSchema": { },
- "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vcInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- { }
], - "didInfo": { },
- "verifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcInfos": [
- { }
], - "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- { }
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdUsers": [
- { }
], - "createdVcInfos": [
- { }
], - "createdVpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- { }
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdDidInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- { }
], - "didInfo": { },
- "verifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVcSchemas": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- { }
], - "vcContexts": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "vcSchema": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcSchemaProperties": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "propIndex": 1,
- "propName": "prop1",
- "propType": "string",
- "parentObjectIndex": "parentObjectIndex",
- "vcSchema": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "badges": [
- { }
], - "file": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "filename": "file-1729389547388-110834208.csv",
- "originalname": "testdata.csv",
- "type": "text/csv",
- "fileData": "text/csv",
- "executed": false,
- "status": 0,
- "vcSchema": { },
- "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVerifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- { }
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdFiles": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "filename": "file-1729389547388-110834208.csv",
- "originalname": "testdata.csv",
- "type": "text/csv",
- "fileData": "text/csv",
- "executed": false,
- "status": 0,
- "vcSchema": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- { }
], - "vcContexts": [
- {
- "id": null,
- "context": null,
- "vcSchema": null,
- "createdAt": null,
- "updatedAt": null
}
], - "vcSchemaProperties": [
- {
- "id": null,
- "propIndex": null,
- "propName": null,
- "propType": null,
- "parentObjectIndex": null,
- "vcSchema": null,
- "createdAt": null,
- "updatedAt": null
}
], - "badges": [
- { }
], - "file": { },
- "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vcSchema": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- { }
], - "vcContexts": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "vcSchema": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcSchemaProperties": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "propIndex": 1,
- "propName": "prop1",
- "propType": "string",
- "parentObjectIndex": "parentObjectIndex",
- "vcSchema": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "badges": [
- { }
], - "file": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "filename": "file-1729389547388-110834208.csv",
- "originalname": "testdata.csv",
- "type": "text/csv",
- "fileData": "text/csv",
- "executed": false,
- "status": 0,
- "vcSchema": { },
- "createdBy": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "raw": null,
- "createdBy": null,
- "user": null,
- "vcInfos": [ ],
- "didInfo": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcInfos": [
- { }
], - "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdUsers": [
- { }
], - "createdVcInfos": [
- { }
], - "createdVpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdDidInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "raw": null,
- "createdBy": null,
- "user": null,
- "vcInfos": [ ],
- "didInfo": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVcSchemas": [
- { }
], - "createdVerifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "raw": null,
- "createdBy": null,
- "user": null,
- "vcInfos": [ ],
- "didInfo": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdFiles": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdBy": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": { },
- "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcInfos": [
- { }
], - "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- { }
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdUsers": [
- { }
], - "createdVcInfos": [
- { }
], - "createdVpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- { }
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdDidInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": { },
- "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVcSchemas": [
- { }
], - "createdVerifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdFiles": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "filename": "file-1729389547388-110834208.csv",
- "originalname": "testdata.csv",
- "type": "text/csv",
- "fileData": "text/csv",
- "executed": false,
- "status": 0,
- "vcSchema": { },
- "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "user": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- { }
], - "didInfo": { },
- "verifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcInfos": [
- { }
], - "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- { }
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdUsers": [
- { }
], - "createdVcInfos": [
- { }
], - "createdVpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- { }
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdDidInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- { }
], - "didInfo": { },
- "verifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVcSchemas": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- { }
], - "vcContexts": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "vcSchema": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcSchemaProperties": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "propIndex": 1,
- "propName": "prop1",
- "propType": "string",
- "parentObjectIndex": "parentObjectIndex",
- "vcSchema": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "badges": [
- { }
], - "file": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "filename": "file-1729389547388-110834208.csv",
- "originalname": "testdata.csv",
- "type": "text/csv",
- "fileData": "text/csv",
- "executed": false,
- "status": 0,
- "vcSchema": { },
- "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVerifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- { }
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdFiles": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "filename": "file-1729389547388-110834208.csv",
- "originalname": "testdata.csv",
- "type": "text/csv",
- "fileData": "text/csv",
- "executed": false,
- "status": 0,
- "vcSchema": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- { }
], - "vcContexts": [
- {
- "id": null,
- "context": null,
- "vcSchema": null,
- "createdAt": null,
- "updatedAt": null
}
], - "vcSchemaProperties": [
- {
- "id": null,
- "propIndex": null,
- "propName": null,
- "propType": null,
- "parentObjectIndex": null,
- "vcSchema": null,
- "createdAt": null,
- "updatedAt": null
}
], - "badges": [
- { }
], - "file": { },
- "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcInfos": [
- { }
], - "vpInfos": [
- { }
], - "createdUsers": [
- { }
], - "createdVcInfos": [
- { }
], - "createdVpInfos": [
- { }
], - "createdDidInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVcSchemas": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- null
], - "vcContexts": [
- null
], - "vcSchemaProperties": [
- null
], - "badges": [
- null
], - "file": {
- "id": null,
- "filename": null,
- "originalname": null,
- "type": null,
- "fileData": null,
- "executed": null,
- "status": null,
- "vcSchema": null,
- "createdBy": null,
- "createdAt": null,
- "updatedAt": null
}, - "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVerifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdFiles": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "filename": "file-1729389547388-110834208.csv",
- "originalname": "testdata.csv",
- "type": "text/csv",
- "fileData": "text/csv",
- "executed": false,
- "status": 0,
- "vcSchema": {
- "id": null,
- "title": null,
- "version": null,
- "description": null,
- "isBadgeSchema": null,
- "vcInfos": [ ],
- "vcContexts": [ ],
- "vcSchemaProperties": [ ],
- "badges": [ ],
- "file": null,
- "createdBy": null,
- "createdAt": null,
- "updatedAt": null
}, - "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "user": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcInfos": [
- { }
], - "vpInfos": [
- { }
], - "createdUsers": [
- { }
], - "createdVcInfos": [
- { }
], - "createdVpInfos": [
- { }
], - "createdDidInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVcSchemas": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- null
], - "vcContexts": [
- null
], - "vcSchemaProperties": [
- null
], - "badges": [
- null
], - "file": {
- "id": null,
- "filename": null,
- "originalname": null,
- "type": null,
- "fileData": null,
- "executed": null,
- "status": null,
- "vcSchema": null,
- "createdBy": null,
- "createdAt": null,
- "updatedAt": null
}, - "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVerifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdFiles": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "filename": "file-1729389547388-110834208.csv",
- "originalname": "testdata.csv",
- "type": "text/csv",
- "fileData": "text/csv",
- "executed": false,
- "status": 0,
- "vcSchema": {
- "id": null,
- "title": null,
- "version": null,
- "description": null,
- "isBadgeSchema": null,
- "vcInfos": [ ],
- "vcContexts": [ ],
- "vcSchemaProperties": [ ],
- "badges": [ ],
- "file": null,
- "createdBy": null,
- "createdAt": null,
- "updatedAt": null
}, - "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vcInfos": [
- { }
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- { }
], - "vcInfos": [
- { }
], - "vpInfos": [
- { }
], - "createdUsers": [
- { }
], - "createdVcInfos": [
- { }
], - "createdVpInfos": [
- { }
], - "createdDidInfos": [
- { }
], - "createdVcSchemas": [
- {
- "id": null,
- "title": null,
- "version": null,
- "description": null,
- "isBadgeSchema": null,
- "vcInfos": [ ],
- "vcContexts": [ ],
- "vcSchemaProperties": [ ],
- "badges": [ ],
- "file": null,
- "createdBy": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdVerifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdFiles": [
- {
- "id": null,
- "filename": null,
- "originalname": null,
- "type": null,
- "fileData": null,
- "executed": null,
- "status": null,
- "vcSchema": null,
- "createdBy": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdBy": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- { }
], - "vcInfos": [
- { }
], - "vpInfos": [
- { }
], - "createdUsers": [
- { }
], - "createdVcInfos": [
- { }
], - "createdVpInfos": [
- { }
], - "createdDidInfos": [
- { }
], - "createdVcSchemas": [
- {
- "id": null,
- "title": null,
- "version": null,
- "description": null,
- "isBadgeSchema": null,
- "vcInfos": [ ],
- "vcContexts": [ ],
- "vcSchemaProperties": [ ],
- "badges": [ ],
- "file": null,
- "createdBy": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdVerifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdFiles": [
- {
- "id": null,
- "filename": null,
- "originalname": null,
- "type": null,
- "fileData": null,
- "executed": null,
- "status": null,
- "vcSchema": null,
- "createdBy": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- null
], - "vcInfos": [
- null
], - "vpInfos": [
- null
], - "createdUsers": [
- null
], - "createdVcInfos": [
- null
], - "createdVpInfos": [
- null
], - "createdDidInfos": [
- null
], - "createdVcSchemas": [
- null
], - "createdVerifications": [
- null
], - "createdFiles": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vcInfo": { },
- "vpInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "badge": { },
- "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "raw": null,
- "createdBy": null,
- "user": null,
- "vcInfos": [ ],
- "didInfo": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcInfos": [
- { }
], - "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdUsers": [
- { }
], - "createdVcInfos": [
- { }
], - "createdVpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdDidInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "raw": null,
- "createdBy": null,
- "user": null,
- "vcInfos": [ ],
- "didInfo": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVcSchemas": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- null
], - "vcContexts": [
- null
], - "vcSchemaProperties": [
- null
], - "badges": [
- null
], - "file": {
- "id": null,
- "filename": null,
- "originalname": null,
- "type": null,
- "fileData": null,
- "executed": null,
- "status": null,
- "vcSchema": null,
- "createdBy": null,
- "createdAt": null,
- "updatedAt": null
}, - "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVerifications": [
- { }
], - "createdFiles": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "filename": "file-1729389547388-110834208.csv",
- "originalname": "testdata.csv",
- "type": "text/csv",
- "fileData": "text/csv",
- "executed": false,
- "status": 0,
- "vcSchema": {
- "id": null,
- "title": null,
- "version": null,
- "description": null,
- "isBadgeSchema": null,
- "vcInfos": [ ],
- "vcContexts": [ ],
- "vcSchemaProperties": [ ],
- "badges": [ ],
- "file": null,
- "createdBy": null,
- "createdAt": null,
- "updatedAt": null
}, - "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vcInfo": { },
- "vpInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}
], - "vcInfos": [
- { }
], - "vpInfos": [
- { }
], - "createdUsers": [
- { }
], - "createdVcInfos": [
- { }
], - "createdVpInfos": [
- { }
], - "createdDidInfos": [
- {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdVcSchemas": [
- {
- "id": null,
- "title": null,
- "version": null,
- "description": null,
- "isBadgeSchema": null,
- "vcInfos": [ ],
- "vcContexts": [ ],
- "vcSchemaProperties": [ ],
- "badges": [ ],
- "file": null,
- "createdBy": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdVerifications": [
- { }
], - "createdFiles": [
- {
- "id": null,
- "filename": null,
- "originalname": null,
- "type": null,
- "fileData": null,
- "executed": null,
- "status": null,
- "vcSchema": null,
- "createdBy": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "user": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}
], - "vcInfos": [
- { }
], - "vpInfos": [
- { }
], - "createdUsers": [
- { }
], - "createdVcInfos": [
- { }
], - "createdVpInfos": [
- { }
], - "createdDidInfos": [
- {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdVcSchemas": [
- {
- "id": null,
- "title": null,
- "version": null,
- "description": null,
- "isBadgeSchema": null,
- "vcInfos": [ ],
- "vcContexts": [ ],
- "vcSchemaProperties": [ ],
- "badges": [ ],
- "file": null,
- "createdBy": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdVerifications": [
- { }
], - "createdFiles": [
- {
- "id": null,
- "filename": null,
- "originalname": null,
- "type": null,
- "fileData": null,
- "executed": null,
- "status": null,
- "vcSchema": null,
- "createdBy": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vcInfos": [
- { }
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- null
], - "vcInfos": [
- null
], - "vpInfos": [
- null
], - "createdUsers": [
- null
], - "createdVcInfos": [
- null
], - "createdVpInfos": [
- null
], - "createdDidInfos": [
- null
], - "createdVcSchemas": [
- null
], - "createdVerifications": [
- null
], - "createdFiles": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdBy": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- null
], - "vcInfos": [
- null
], - "vpInfos": [
- null
], - "createdUsers": [
- null
], - "createdVcInfos": [
- null
], - "createdVpInfos": [
- null
], - "createdDidInfos": [
- null
], - "createdVcSchemas": [
- null
], - "createdVerifications": [
- null
], - "createdFiles": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "file": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "filename": "file-1729389547388-110834208.csv",
- "originalname": "testdata.csv",
- "type": "text/csv",
- "fileData": "text/csv",
- "executed": false,
- "status": 0,
- "vcSchema": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": { },
- "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcInfos": [
- { }
], - "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- { }
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdUsers": [
- { }
], - "createdVcInfos": [
- { }
], - "createdVpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- { }
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdDidInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": { },
- "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVcSchemas": [
- { }
], - "createdVerifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdFiles": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vcSchema": { },
- "user": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": { },
- "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcInfos": [
- { }
], - "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- { }
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdUsers": [
- { }
], - "createdVcInfos": [
- { }
], - "createdVpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- { }
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdDidInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": { },
- "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVcSchemas": [
- { }
], - "createdVerifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdFiles": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}
], - "vcInfos": [
- { }
], - "vpInfos": [
- { }
], - "createdUsers": [
- { }
], - "createdVcInfos": [
- { }
], - "createdVpInfos": [
- { }
], - "createdDidInfos": [
- {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdVcSchemas": [
- { }
], - "createdVerifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdFiles": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "user": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}
], - "vcInfos": [
- { }
], - "vpInfos": [
- { }
], - "createdUsers": [
- { }
], - "createdVcInfos": [
- { }
], - "createdVpInfos": [
- { }
], - "createdDidInfos": [
- {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdVcSchemas": [
- { }
], - "createdVerifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdFiles": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vcInfos": [
- { }
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- null
], - "vcInfos": [
- null
], - "vpInfos": [
- null
], - "createdUsers": [
- null
], - "createdVcInfos": [
- null
], - "createdVpInfos": [
- null
], - "createdDidInfos": [
- null
], - "createdVcSchemas": [
- null
], - "createdVerifications": [
- null
], - "createdFiles": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdBy": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- null
], - "vcInfos": [
- null
], - "vpInfos": [
- null
], - "createdUsers": [
- null
], - "createdVcInfos": [
- null
], - "createdVpInfos": [
- null
], - "createdDidInfos": [
- null
], - "createdVcSchemas": [
- null
], - "createdVerifications": [
- null
], - "createdFiles": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": {
- "id": null,
- "name": null,
- "email": null,
- "password": null,
- "needActivateFlow": null,
- "status": null,
- "role": null,
- "createdBy": null,
- "didInfos": [ ],
- "vcInfos": [ ],
- "vpInfos": [ ],
- "createdUsers": [ ],
- "createdVcInfos": [ ],
- "createdVpInfos": [ ],
- "createdDidInfos": [ ],
- "createdVcSchemas": [ ],
- "createdVerifications": [ ],
- "createdFiles": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "vcInfo": { },
- "vpInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "badge": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "sample-badge-1",
- "filename": "badge-12345-12345.png",
- "description": "This is Sample Badge 1.",
- "status": 1,
- "vcSchema": { },
- "vcInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}
], - "vcInfos": [
- { }
], - "vpInfos": [
- {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "raw": null,
- "createdBy": null,
- "user": null,
- "vcInfos": [ ],
- "didInfo": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}
], - "createdUsers": [
- { }
], - "createdVcInfos": [
- { }
], - "createdVpInfos": [
- {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "raw": null,
- "createdBy": null,
- "user": null,
- "vcInfos": [ ],
- "didInfo": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}
], - "createdDidInfos": [
- {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdVcSchemas": [
- { }
], - "createdVerifications": [
- { }
], - "createdFiles": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vcInfo": { },
- "vpInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- null
], - "vcInfos": [
- null
], - "vpInfos": [
- null
], - "createdUsers": [
- null
], - "createdVcInfos": [
- null
], - "createdVpInfos": [
- null
], - "createdDidInfos": [
- null
], - "createdVcSchemas": [
- null
], - "createdVerifications": [
- null
], - "createdFiles": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "user": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- null
], - "vcInfos": [
- null
], - "vpInfos": [
- null
], - "createdUsers": [
- null
], - "createdVcInfos": [
- null
], - "createdVpInfos": [
- null
], - "createdDidInfos": [
- null
], - "createdVcSchemas": [
- null
], - "createdVerifications": [
- null
], - "createdFiles": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vcInfos": [
- { }
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": {
- "id": null,
- "name": null,
- "email": null,
- "password": null,
- "needActivateFlow": null,
- "status": null,
- "role": null,
- "createdBy": null,
- "didInfos": [ ],
- "vcInfos": [ ],
- "vpInfos": [ ],
- "createdUsers": [ ],
- "createdVcInfos": [ ],
- "createdVpInfos": [ ],
- "createdDidInfos": [ ],
- "createdVcSchemas": [ ],
- "createdVerifications": [ ],
- "createdFiles": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "createdBy": {
- "id": null,
- "name": null,
- "email": null,
- "password": null,
- "needActivateFlow": null,
- "status": null,
- "role": null,
- "createdBy": null,
- "didInfos": [ ],
- "vcInfos": [ ],
- "vpInfos": [ ],
- "createdUsers": [ ],
- "createdVcInfos": [ ],
- "createdVpInfos": [ ],
- "createdDidInfos": [ ],
- "createdVcSchemas": [ ],
- "createdVerifications": [ ],
- "createdFiles": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcContexts": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "vcSchema": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcSchemaProperties": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "propIndex": 1,
- "propName": "prop1",
- "propType": "string",
- "parentObjectIndex": "parentObjectIndex",
- "vcSchema": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "badges": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "sample-badge-1",
- "filename": "badge-12345-12345.png",
- "description": "This is Sample Badge 1.",
- "status": 1,
- "vcSchema": { },
- "vcInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "raw": null,
- "createdBy": null,
- "user": null,
- "vcInfos": [ ],
- "didInfo": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcInfos": [
- { }
], - "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdUsers": [
- { }
], - "createdVcInfos": [
- { }
], - "createdVpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdDidInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "raw": null,
- "createdBy": null,
- "user": null,
- "vcInfos": [ ],
- "didInfo": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVcSchemas": [
- { }
], - "createdVerifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "raw": null,
- "createdBy": null,
- "user": null,
- "vcInfos": [ ],
- "didInfo": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdFiles": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vcSchema": { },
- "user": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "raw": null,
- "createdBy": null,
- "user": null,
- "vcInfos": [ ],
- "didInfo": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcInfos": [
- { }
], - "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdUsers": [
- { }
], - "createdVcInfos": [
- { }
], - "createdVpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdDidInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "raw": null,
- "createdBy": null,
- "user": null,
- "vcInfos": [ ],
- "didInfo": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVcSchemas": [
- { }
], - "createdVerifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "raw": null,
- "createdBy": null,
- "user": null,
- "vcInfos": [ ],
- "didInfo": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdFiles": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- null
], - "vcInfos": [
- null
], - "vpInfos": [
- null
], - "createdUsers": [
- null
], - "createdVcInfos": [
- null
], - "createdVpInfos": [
- null
], - "createdDidInfos": [
- null
], - "createdVcSchemas": [
- null
], - "createdVerifications": [
- null
], - "createdFiles": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "user": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- null
], - "vcInfos": [
- null
], - "vpInfos": [
- null
], - "createdUsers": [
- null
], - "createdVcInfos": [
- null
], - "createdVpInfos": [
- null
], - "createdDidInfos": [
- null
], - "createdVcSchemas": [
- null
], - "createdVerifications": [
- null
], - "createdFiles": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vcInfos": [
- { }
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": {
- "id": null,
- "name": null,
- "email": null,
- "password": null,
- "needActivateFlow": null,
- "status": null,
- "role": null,
- "createdBy": null,
- "didInfos": [ ],
- "vcInfos": [ ],
- "vpInfos": [ ],
- "createdUsers": [ ],
- "createdVcInfos": [ ],
- "createdVpInfos": [ ],
- "createdDidInfos": [ ],
- "createdVcSchemas": [ ],
- "createdVerifications": [ ],
- "createdFiles": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "createdBy": {
- "id": null,
- "name": null,
- "email": null,
- "password": null,
- "needActivateFlow": null,
- "status": null,
- "role": null,
- "createdBy": null,
- "didInfos": [ ],
- "vcInfos": [ ],
- "vpInfos": [ ],
- "createdUsers": [ ],
- "createdVcInfos": [ ],
- "createdVpInfos": [ ],
- "createdDidInfos": [ ],
- "createdVcSchemas": [ ],
- "createdVerifications": [ ],
- "createdFiles": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "badge": { },
- "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- null
], - "vcInfos": [
- null
], - "vpInfos": [
- null
], - "createdUsers": [
- null
], - "createdVcInfos": [
- null
], - "createdVpInfos": [
- null
], - "createdDidInfos": [
- null
], - "createdVcSchemas": [
- null
], - "createdVerifications": [
- null
], - "createdFiles": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vcInfo": { },
- "vpInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": {
- "id": null,
- "name": null,
- "email": null,
- "password": null,
- "needActivateFlow": null,
- "status": null,
- "role": null,
- "createdBy": null,
- "didInfos": [ ],
- "vcInfos": [ ],
- "vpInfos": [ ],
- "createdUsers": [ ],
- "createdVcInfos": [ ],
- "createdVpInfos": [ ],
- "createdDidInfos": [ ],
- "createdVcSchemas": [ ],
- "createdVerifications": [ ],
- "createdFiles": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "user": {
- "id": null,
- "name": null,
- "email": null,
- "password": null,
- "needActivateFlow": null,
- "status": null,
- "role": null,
- "createdBy": null,
- "didInfos": [ ],
- "vcInfos": [ ],
- "vpInfos": [ ],
- "createdUsers": [ ],
- "createdVcInfos": [ ],
- "createdVpInfos": [ ],
- "createdDidInfos": [ ],
- "createdVcSchemas": [ ],
- "createdVerifications": [ ],
- "createdFiles": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "vcInfos": [
- null
], - "didInfo": {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "file": { },
- "createdBy": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": { },
- "user": { },
- "vpInfos": [
- null
], - "badge": {
- "id": null,
- "label": null,
- "filename": null,
- "description": null,
- "status": null,
- "vcSchema": null,
- "vcInfo": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "didInfo": { },
- "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "createdBy": null,
- "vcSchema": null,
- "user": null,
- "vpInfos": [ ],
- "badge": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "vpInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": { },
- "user": { },
- "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- { }
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "badge": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "sample-badge-1",
- "filename": "badge-12345-12345.png",
- "description": "This is Sample Badge 1.",
- "status": 1,
- "vcSchema": { },
- "vcInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": { },
- "user": { },
- "vpInfos": [
- { }
], - "badge": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "sample-badge-1",
- "filename": "badge-12345-12345.png",
- "description": "This is Sample Badge 1.",
- "status": 1,
- "vcSchema": { },
- "vcInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": { },
- "user": { },
- "vpInfos": [
- null
], - "badge": {
- "id": null,
- "label": null,
- "filename": null,
- "description": null,
- "status": null,
- "vcSchema": null,
- "vcInfo": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vpInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdUsers": [
- { }
], - "createdVcInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": { },
- "user": { },
- "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- { }
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "badge": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "sample-badge-1",
- "filename": "badge-12345-12345.png",
- "description": "This is Sample Badge 1.",
- "status": 1,
- "vcSchema": { },
- "vcInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": { },
- "user": { },
- "vpInfos": [
- { }
], - "badge": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "sample-badge-1",
- "filename": "badge-12345-12345.png",
- "description": "This is Sample Badge 1.",
- "status": 1,
- "vcSchema": { },
- "vcInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": { },
- "user": { },
- "vpInfos": [
- null
], - "badge": {
- "id": null,
- "label": null,
- "filename": null,
- "description": null,
- "status": null,
- "vcSchema": null,
- "vcInfo": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vpInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdDidInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": { },
- "user": { },
- "vpInfos": [
- null
], - "badge": {
- "id": null,
- "label": null,
- "filename": null,
- "description": null,
- "status": null,
- "vcSchema": null,
- "vcInfo": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "didInfo": { },
- "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "createdBy": null,
- "vcSchema": null,
- "user": null,
- "vpInfos": [ ],
- "badge": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "vpInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVcSchemas": [
- { }
], - "createdVerifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": { },
- "user": { },
- "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "badge": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "sample-badge-1",
- "filename": "badge-12345-12345.png",
- "description": "This is Sample Badge 1.",
- "status": 1,
- "vcSchema": { },
- "vcInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vpInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": { },
- "user": { },
- "vpInfos": [
- null
], - "badge": {
- "id": null,
- "label": null,
- "filename": null,
- "description": null,
- "status": null,
- "vcSchema": null,
- "vcInfo": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdFiles": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdBy": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- null
], - "vcContexts": [
- null
], - "vcSchemaProperties": [
- null
], - "badges": [
- null
], - "file": { },
- "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "user": { },
- "vpInfos": [
- { }
], - "badge": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "sample-badge-1",
- "filename": "badge-12345-12345.png",
- "description": "This is Sample Badge 1.",
- "status": 1,
- "vcSchema": {
- "id": null,
- "title": null,
- "version": null,
- "description": null,
- "isBadgeSchema": null,
- "vcInfos": [ ],
- "vcContexts": [ ],
- "vcSchemaProperties": [ ],
- "badges": [ ],
- "file": null,
- "createdBy": null,
- "createdAt": null,
- "updatedAt": null
}, - "vcInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "didInfo": { },
- "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": {
- "id": null,
- "title": null,
- "version": null,
- "description": null,
- "isBadgeSchema": null,
- "vcInfos": [ ],
- "vcContexts": [ ],
- "vcSchemaProperties": [ ],
- "badges": [ ],
- "file": null,
- "createdBy": null,
- "createdAt": null,
- "updatedAt": null
}, - "user": { },
- "vpInfos": [
- null
], - "badge": {
- "id": null,
- "label": null,
- "filename": null,
- "description": null,
- "status": null,
- "vcSchema": null,
- "vcInfo": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vpInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- { }
], - "vcContexts": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "vcSchema": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcSchemaProperties": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "propIndex": 1,
- "propName": "prop1",
- "propType": "string",
- "parentObjectIndex": "parentObjectIndex",
- "vcSchema": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "badges": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "sample-badge-1",
- "filename": "badge-12345-12345.png",
- "description": "This is Sample Badge 1.",
- "status": 1,
- "vcSchema": { },
- "vcInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "file": { },
- "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "user": { },
- "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- { }
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "badge": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "sample-badge-1",
- "filename": "badge-12345-12345.png",
- "description": "This is Sample Badge 1.",
- "status": 1,
- "vcSchema": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- { }
], - "vcContexts": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "vcSchema": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcSchemaProperties": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "propIndex": 1,
- "propName": "prop1",
- "propType": "string",
- "parentObjectIndex": "parentObjectIndex",
- "vcSchema": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "badges": [
- { }
], - "file": { },
- "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vcInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- { }
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- { }
], - "vcContexts": [
- {
- "id": null,
- "context": null,
- "vcSchema": null,
- "createdAt": null,
- "updatedAt": null
}
], - "vcSchemaProperties": [
- {
- "id": null,
- "propIndex": null,
- "propName": null,
- "propType": null,
- "parentObjectIndex": null,
- "vcSchema": null,
- "createdAt": null,
- "updatedAt": null
}
], - "badges": [
- {
- "id": null,
- "label": null,
- "filename": null,
- "description": null,
- "status": null,
- "vcSchema": null,
- "vcInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "file": { },
- "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "user": { },
- "vpInfos": [
- { }
], - "badge": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "sample-badge-1",
- "filename": "badge-12345-12345.png",
- "description": "This is Sample Badge 1.",
- "status": 1,
- "vcSchema": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- null
], - "vcContexts": [
- null
], - "vcSchemaProperties": [
- null
], - "badges": [
- null
], - "file": { },
- "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vcInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- null
], - "vcContexts": [
- null
], - "vcSchemaProperties": [
- null
], - "badges": [
- null
], - "file": { },
- "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "user": { },
- "vpInfos": [
- { }
], - "badge": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "sample-badge-1",
- "filename": "badge-12345-12345.png",
- "description": "This is Sample Badge 1.",
- "status": 1,
- "vcSchema": {
- "id": null,
- "title": null,
- "version": null,
- "description": null,
- "isBadgeSchema": null,
- "vcInfos": [ ],
- "vcContexts": [ ],
- "vcSchemaProperties": [ ],
- "badges": [ ],
- "file": null,
- "createdBy": null,
- "createdAt": null,
- "updatedAt": null
}, - "vcInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vpInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdUsers": [
- { }
], - "createdVcInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- { }
], - "vcContexts": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "vcSchema": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcSchemaProperties": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "propIndex": 1,
- "propName": "prop1",
- "propType": "string",
- "parentObjectIndex": "parentObjectIndex",
- "vcSchema": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "badges": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "sample-badge-1",
- "filename": "badge-12345-12345.png",
- "description": "This is Sample Badge 1.",
- "status": 1,
- "vcSchema": { },
- "vcInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "file": { },
- "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "user": { },
- "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- { }
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "badge": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "sample-badge-1",
- "filename": "badge-12345-12345.png",
- "description": "This is Sample Badge 1.",
- "status": 1,
- "vcSchema": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- { }
], - "vcContexts": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "vcSchema": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcSchemaProperties": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "propIndex": 1,
- "propName": "prop1",
- "propType": "string",
- "parentObjectIndex": "parentObjectIndex",
- "vcSchema": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "badges": [
- { }
], - "file": { },
- "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vcInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- { }
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- { }
], - "vcContexts": [
- {
- "id": null,
- "context": null,
- "vcSchema": null,
- "createdAt": null,
- "updatedAt": null
}
], - "vcSchemaProperties": [
- {
- "id": null,
- "propIndex": null,
- "propName": null,
- "propType": null,
- "parentObjectIndex": null,
- "vcSchema": null,
- "createdAt": null,
- "updatedAt": null
}
], - "badges": [
- {
- "id": null,
- "label": null,
- "filename": null,
- "description": null,
- "status": null,
- "vcSchema": null,
- "vcInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "file": { },
- "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "user": { },
- "vpInfos": [
- { }
], - "badge": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "sample-badge-1",
- "filename": "badge-12345-12345.png",
- "description": "This is Sample Badge 1.",
- "status": 1,
- "vcSchema": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- null
], - "vcContexts": [
- null
], - "vcSchemaProperties": [
- null
], - "badges": [
- null
], - "file": { },
- "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vcInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- null
], - "vcContexts": [
- null
], - "vcSchemaProperties": [
- null
], - "badges": [
- null
], - "file": { },
- "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "user": { },
- "vpInfos": [
- { }
], - "badge": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "sample-badge-1",
- "filename": "badge-12345-12345.png",
- "description": "This is Sample Badge 1.",
- "status": 1,
- "vcSchema": {
- "id": null,
- "title": null,
- "version": null,
- "description": null,
- "isBadgeSchema": null,
- "vcInfos": [ ],
- "vcContexts": [ ],
- "vcSchemaProperties": [ ],
- "badges": [ ],
- "file": null,
- "createdBy": null,
- "createdAt": null,
- "updatedAt": null
}, - "vcInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vpInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdDidInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- null
], - "vcContexts": [
- null
], - "vcSchemaProperties": [
- null
], - "badges": [
- null
], - "file": { },
- "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "user": { },
- "vpInfos": [
- { }
], - "badge": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "sample-badge-1",
- "filename": "badge-12345-12345.png",
- "description": "This is Sample Badge 1.",
- "status": 1,
- "vcSchema": {
- "id": null,
- "title": null,
- "version": null,
- "description": null,
- "isBadgeSchema": null,
- "vcInfos": [ ],
- "vcContexts": [ ],
- "vcSchemaProperties": [ ],
- "badges": [ ],
- "file": null,
- "createdBy": null,
- "createdAt": null,
- "updatedAt": null
}, - "vcInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "didInfo": { },
- "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": {
- "id": null,
- "title": null,
- "version": null,
- "description": null,
- "isBadgeSchema": null,
- "vcInfos": [ ],
- "vcContexts": [ ],
- "vcSchemaProperties": [ ],
- "badges": [ ],
- "file": null,
- "createdBy": null,
- "createdAt": null,
- "updatedAt": null
}, - "user": { },
- "vpInfos": [
- null
], - "badge": {
- "id": null,
- "label": null,
- "filename": null,
- "description": null,
- "status": null,
- "vcSchema": null,
- "vcInfo": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vpInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVcSchemas": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": { },
- "user": { },
- "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "badge": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "sample-badge-1",
- "filename": "badge-12345-12345.png",
- "description": "This is Sample Badge 1.",
- "status": 1,
- "vcSchema": { },
- "vcInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "raw": null,
- "createdBy": null,
- "user": null,
- "vcInfos": [ ],
- "didInfo": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcContexts": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "vcSchema": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcSchemaProperties": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "propIndex": 1,
- "propName": "prop1",
- "propType": "string",
- "parentObjectIndex": "parentObjectIndex",
- "vcSchema": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "badges": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "sample-badge-1",
- "filename": "badge-12345-12345.png",
- "description": "This is Sample Badge 1.",
- "status": 1,
- "vcSchema": { },
- "vcInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": { },
- "user": { },
- "vpInfos": [
- {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "raw": null,
- "createdBy": null,
- "user": null,
- "vcInfos": [ ],
- "didInfo": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}
], - "badge": { },
- "verifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "file": { },
- "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVerifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- { }
], - "vcContexts": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "vcSchema": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcSchemaProperties": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "propIndex": 1,
- "propName": "prop1",
- "propType": "string",
- "parentObjectIndex": "parentObjectIndex",
- "vcSchema": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "badges": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "sample-badge-1",
- "filename": "badge-12345-12345.png",
- "description": "This is Sample Badge 1.",
- "status": 1,
- "vcSchema": { },
- "vcInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "file": { },
- "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "user": { },
- "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- { }
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "badge": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "sample-badge-1",
- "filename": "badge-12345-12345.png",
- "description": "This is Sample Badge 1.",
- "status": 1,
- "vcSchema": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- { }
], - "vcContexts": [
- {
- "id": null,
- "context": null,
- "vcSchema": null,
- "createdAt": null,
- "updatedAt": null
}
], - "vcSchemaProperties": [
- {
- "id": null,
- "propIndex": null,
- "propName": null,
- "propType": null,
- "parentObjectIndex": null,
- "vcSchema": null,
- "createdAt": null,
- "updatedAt": null
}
], - "badges": [
- { }
], - "file": { },
- "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vcInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vpInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- null
], - "vcContexts": [
- null
], - "vcSchemaProperties": [
- null
], - "badges": [
- null
], - "file": { },
- "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "user": { },
- "vpInfos": [
- { }
], - "badge": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "sample-badge-1",
- "filename": "badge-12345-12345.png",
- "description": "This is Sample Badge 1.",
- "status": 1,
- "vcSchema": {
- "id": null,
- "title": null,
- "version": null,
- "description": null,
- "isBadgeSchema": null,
- "vcInfos": [ ],
- "vcContexts": [ ],
- "vcSchemaProperties": [ ],
- "badges": [ ],
- "file": null,
- "createdBy": null,
- "createdAt": null,
- "updatedAt": null
}, - "vcInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdFiles": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdBy": {
- "id": "e8973f1a-a80f-4243-8061-144565b640f2",
- "name": "admin",
- "email": "admin@email.com",
- "needActivateFlow": false,
- "status": "active",
- "role": "admin",
- "createdAt": "2025-02-04T22:32:21.343Z",
- "updatedAt": "2025-02-04T22:32:21.343Z"
}, - "createdAt": "2024-05-24T06:39:54.352Z",
- "updatedAt": "2024-05-24T06:39:54.352Z"
}
アプリケーションが管理するバッジ情報を一覧として値を返します。
page | number Example: page=1 (必須) ページネーションを表示する際のページ数に当たるクエリパラメーター。全件取得する際は1を指定。(デフォルト: 1) |
limit | number Example: limit=10 (必須) ページネーションを表示する際のページ数あたりに表示する件数を指定するクエリパラメーター。全件取得する際は0を指定。(デフォルト: 10) |
label | string (任意) 例: "sample-badge-1" |
filename | string (任意) 例: "badge-12345-12345.png" |
description | string (任意) |
status | number (任意) 例: 1 |
{- "items": [
- {
- "id": "3bfc3721-eb7c-4a5b-b5ac-94d1f158911f",
- "label": "sample-badge-1",
- "filename": "badge-12345-12345.png",
- "description": "This is Group A for Project X.",
- "status": 1,
- "vcSchema": {
- "id": "fc765af3-63da-4030-9c2d-3c6b44ae283d",
- "title": "hogeVC",
- "version": "1.0.0",
- "vcInfos": [
- {
- "id": "41e840da-ec7a-4c9b-8783-9b4160719bea",
- "label": "cdsd",
- "hash": "QmSfRENacd2K2kbjYzPSxRKThZpYio4yX1Xb9MMnSxxZKu",
- "description": null,
- "createdAt": "2024-10-18T04:18:18.191Z",
- "updatedAt": "2024-10-18T04:18:18.191Z"
}
], - "vcSchemaProperties": [
- {
- "id": "98164eb2-6650-4198-813a-cc9e11c221dd",
- "propIndex": 2,
- "propName": "age",
- "propType": "number",
- "parentObject": null,
- "createdAt": "2024-10-18T04:17:56.585Z",
- "updatedAt": "2024-10-18T04:17:56.585Z"
}, - {
- "id": "866154a6-e0ba-4caa-aaec-4d923f55cb4a",
- "propIndex": 1,
- "propName": "name",
- "propType": "string",
- "parentObject": null,
- "createdAt": "2024-10-18T04:17:56.584Z",
- "updatedAt": "2024-10-18T04:17:56.584Z"
}
], - "groups": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Project Group 1",
- "status": "active",
- "description": "This is Project Group 1.",
- "createdAt": "2024-05-24T06:39:54.352Z",
- "updatedAt": "2024-05-24T06:39:54.352Z"
}
], - "createdAt": "2024-10-18T04:17:56.564Z",
- "updatedAt": "2024-10-18T04:17:56.564Z"
}, - "vcInfo": {
- "id": "dcb884cb-bf93-437d-906b-67fb893dea98",
- "hash": "Qma1dK93xnJpyuSeQcFiq6JC5LANRTBegE3EUN79udbCcv",
- "description": "",
- "user": null,
- "createdBy": null,
- "createdAt": "2024-07-09T04:37:14.248Z",
- "updatedAt": "2024-07-09T04:37:14.248Z"
}, - "createdAt": "2024-05-24T06:39:54.352Z",
- "updatedAt": "2024-05-24T06:39:54.352Z"
}
], - "meta": {
- "totalItems": 1,
- "itemCount": 1,
- "itemsPerPage": 10,
- "totalPages": null,
- "currentPage": 1
}, - "links": {
- "previous": 10,
}
}
新規バッジを発行します。
label | string (任意) バッジのタイトル |
description | string (任意) グループの作成目的や用途など任意で設定可能な説明文 |
issuer required | string (必須) VCの発行者の識別子として用いる文字列の値。現在はDIDのみがサポートされていますが、今後のアップデートでDID以外の文字列をサポートする予定です。 |
credentialSubject required | object (必須) VCの主張内容(クレーム)となる値のオブジェクト型の値 |
vcSchemaId required | string (必須) 新規発行するVCの元となるVCスキーマの識別子 |
{- "label": "Sample Badge 1",
- "description": "This is Group A for Project X.",
- "issuer": "did:key:z6MkepWVAjYFGvTdffTcJJcE1sJKLHuCefxqw72dPodoxJrP",
- "credentialSubject": {
- "age": 20,
- "name": "test"
}, - "vcSchemaId": "3bfc3721-eb7c-4a5b-b5ac-94d1f158911f"
}
{- "id": "3bfc3721-eb7c-4a5b-b5ac-94d1f158911f",
- "label": "sample-badge-1",
- "filename": "badge-12345-12345.png",
- "description": "This is Group A for Project X.",
- "status": 1,
- "vcSchema": {
- "id": "fc765af3-63da-4030-9c2d-3c6b44ae283d",
- "title": "hogeVC",
- "version": "1.0.0",
- "vcInfos": [
- {
- "id": "41e840da-ec7a-4c9b-8783-9b4160719bea",
- "label": "cdsd",
- "hash": "QmSfRENacd2K2kbjYzPSxRKThZpYio4yX1Xb9MMnSxxZKu",
- "description": null,
- "createdAt": "2024-10-18T04:18:18.191Z",
- "updatedAt": "2024-10-18T04:18:18.191Z"
}
], - "vcSchemaProperties": [
- {
- "id": "98164eb2-6650-4198-813a-cc9e11c221dd",
- "propIndex": 2,
- "propName": "age",
- "propType": "number",
- "parentObject": null,
- "createdAt": "2024-10-18T04:17:56.585Z",
- "updatedAt": "2024-10-18T04:17:56.585Z"
}, - {
- "id": "866154a6-e0ba-4caa-aaec-4d923f55cb4a",
- "propIndex": 1,
- "propName": "name",
- "propType": "string",
- "parentObject": null,
- "createdAt": "2024-10-18T04:17:56.584Z",
- "updatedAt": "2024-10-18T04:17:56.584Z"
}
], - "groups": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Project Group 1",
- "status": "active",
- "description": "This is Project Group 1.",
- "createdAt": "2024-05-24T06:39:54.352Z",
- "updatedAt": "2024-05-24T06:39:54.352Z"
}
], - "createdAt": "2024-10-18T04:17:56.564Z",
- "updatedAt": "2024-10-18T04:17:56.564Z"
}, - "vcInfo": {
- "id": "dcb884cb-bf93-437d-906b-67fb893dea98",
- "hash": "Qma1dK93xnJpyuSeQcFiq6JC5LANRTBegE3EUN79udbCcv",
- "description": "",
- "user": null,
- "createdBy": null,
- "createdAt": "2024-07-09T04:37:14.248Z",
- "updatedAt": "2024-07-09T04:37:14.248Z"
}, - "createdAt": "2024-05-24T06:39:54.352Z",
- "updatedAt": "2024-05-24T06:39:54.352Z"
}
リクエストパラメータのidで指定された単一のバッジ情報の詳細情報の値を返します。
id required | string |
{- "id": "3bfc3721-eb7c-4a5b-b5ac-94d1f158911f",
- "label": "sample-badge-1",
- "filename": "badge-12345-12345.png",
- "description": "This is Group A for Project X.",
- "status": 1,
- "vcSchema": {
- "id": "fc765af3-63da-4030-9c2d-3c6b44ae283d",
- "title": "hogeVC",
- "version": "1.0.0",
- "vcInfos": [
- {
- "id": "41e840da-ec7a-4c9b-8783-9b4160719bea",
- "label": "cdsd",
- "hash": "QmSfRENacd2K2kbjYzPSxRKThZpYio4yX1Xb9MMnSxxZKu",
- "description": null,
- "createdAt": "2024-10-18T04:18:18.191Z",
- "updatedAt": "2024-10-18T04:18:18.191Z"
}
], - "vcSchemaProperties": [
- {
- "id": "98164eb2-6650-4198-813a-cc9e11c221dd",
- "propIndex": 2,
- "propName": "age",
- "propType": "number",
- "parentObject": null,
- "createdAt": "2024-10-18T04:17:56.585Z",
- "updatedAt": "2024-10-18T04:17:56.585Z"
}, - {
- "id": "866154a6-e0ba-4caa-aaec-4d923f55cb4a",
- "propIndex": 1,
- "propName": "name",
- "propType": "string",
- "parentObject": null,
- "createdAt": "2024-10-18T04:17:56.584Z",
- "updatedAt": "2024-10-18T04:17:56.584Z"
}
], - "groups": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Project Group 1",
- "status": "active",
- "description": "This is Project Group 1.",
- "createdAt": "2024-05-24T06:39:54.352Z",
- "updatedAt": "2024-05-24T06:39:54.352Z"
}
], - "createdAt": "2024-10-18T04:17:56.564Z",
- "updatedAt": "2024-10-18T04:17:56.564Z"
}, - "vcInfo": {
- "id": "dcb884cb-bf93-437d-906b-67fb893dea98",
- "hash": "Qma1dK93xnJpyuSeQcFiq6JC5LANRTBegE3EUN79udbCcv",
- "description": "",
- "user": null,
- "createdBy": null,
- "createdAt": "2024-07-09T04:37:14.248Z",
- "updatedAt": "2024-07-09T04:37:14.248Z"
}, - "createdAt": "2024-05-24T06:39:54.352Z",
- "updatedAt": "2024-05-24T06:39:54.352Z"
}
リクエストパラメータのidで指定された単一のBadgeに対して、任意の管理用ラベルを追加します。
id required | string |
label required | string (必須) Badgeの識別や整理などの管理するにあったてメタデータとして任意で設定可能な単語のフレーズ。(例: badge-for-project1) |
{- "label": "badge-for-project1"
}
{- "id": "3bfc3721-eb7c-4a5b-b5ac-94d1f158911f",
- "label": "sample-badge-1",
- "filename": "badge-12345-12345.png",
- "description": "This is Group A for Project X.",
- "status": 1,
- "vcSchema": {
- "id": "fc765af3-63da-4030-9c2d-3c6b44ae283d",
- "title": "hogeVC",
- "version": "1.0.0",
- "vcInfos": [
- {
- "id": "41e840da-ec7a-4c9b-8783-9b4160719bea",
- "label": "cdsd",
- "hash": "QmSfRENacd2K2kbjYzPSxRKThZpYio4yX1Xb9MMnSxxZKu",
- "description": null,
- "createdAt": "2024-10-18T04:18:18.191Z",
- "updatedAt": "2024-10-18T04:18:18.191Z"
}
], - "vcSchemaProperties": [
- {
- "id": "98164eb2-6650-4198-813a-cc9e11c221dd",
- "propIndex": 2,
- "propName": "age",
- "propType": "number",
- "parentObject": null,
- "createdAt": "2024-10-18T04:17:56.585Z",
- "updatedAt": "2024-10-18T04:17:56.585Z"
}, - {
- "id": "866154a6-e0ba-4caa-aaec-4d923f55cb4a",
- "propIndex": 1,
- "propName": "name",
- "propType": "string",
- "parentObject": null,
- "createdAt": "2024-10-18T04:17:56.584Z",
- "updatedAt": "2024-10-18T04:17:56.584Z"
}
], - "groups": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Project Group 1",
- "status": "active",
- "description": "This is Project Group 1.",
- "createdAt": "2024-05-24T06:39:54.352Z",
- "updatedAt": "2024-05-24T06:39:54.352Z"
}
], - "createdAt": "2024-10-18T04:17:56.564Z",
- "updatedAt": "2024-10-18T04:17:56.564Z"
}, - "vcInfo": {
- "id": "dcb884cb-bf93-437d-906b-67fb893dea98",
- "hash": "Qma1dK93xnJpyuSeQcFiq6JC5LANRTBegE3EUN79udbCcv",
- "description": "",
- "user": null,
- "createdBy": null,
- "createdAt": "2024-07-09T04:37:14.248Z",
- "updatedAt": "2024-07-09T04:37:14.248Z"
}, - "createdAt": "2024-05-24T06:39:54.352Z",
- "updatedAt": "2024-05-24T06:39:54.352Z"
}
バッジのVC/VPの検証を実行します。
id required | string |
veriifyVC | boolean Default: true (任意) バッジに紐づいたVC情報を検証するか否か。 |
vpInfoId required | string Default: false (任意) |
{- "veriifyVC": true,
- "vpInfoId": "3bfc3721-eb7c-4a5b-b5ac-94d1f158911f"
}
{- "result": "3bfc3721-eb7c-4a5b-b5ac-94d1f158911f"
}
ファイルを一覧として値を返します。
page | number Example: page=1 (必須) ページネーションを表示する際のページ数に当たるクエリパラメーター。全件取得する際は1を指定。(デフォルト: 1) |
limit | number Example: limit=10 (必須) ページネーションを表示する際のページ数あたりに表示する件数を指定するクエリパラメーター。全件取得する際は0を指定。(デフォルト: 10) |
filename | string (任意) 例: "file-1732019975229-394515535.png" |
originalname | string (任意) 例: "english-badge.png" |
executed | boolean (任意) 例: true |
type | string (任意) 例: "image/png" |
status | number (任意) 例: 0 |
{- "items": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "filename": "file-1729389547388-110834208.csv",
- "originalname": "testdata.csv",
- "type": "text/csv",
- "fileData": "text/csv",
- "executed": false,
- "status": 0,
- "vcSchema": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "raw": null,
- "createdBy": null,
- "user": null,
- "vcInfos": [ ],
- "didInfo": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcInfos": [
- { }
], - "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdUsers": [
- { }
], - "createdVcInfos": [
- { }
], - "createdVpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdDidInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "raw": null,
- "createdBy": null,
- "user": null,
- "vcInfos": [ ],
- "didInfo": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVcSchemas": [
- { }
], - "createdVerifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "raw": null,
- "createdBy": null,
- "user": null,
- "vcInfos": [ ],
- "didInfo": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdFiles": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vcSchema": { },
- "user": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "raw": null,
- "createdBy": null,
- "user": null,
- "vcInfos": [ ],
- "didInfo": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcInfos": [
- { }
], - "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdUsers": [
- { }
], - "createdVcInfos": [
- { }
], - "createdVpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdDidInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "raw": null,
- "createdBy": null,
- "user": null,
- "vcInfos": [ ],
- "didInfo": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVcSchemas": [
- { }
], - "createdVerifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "raw": null,
- "createdBy": null,
- "user": null,
- "vcInfos": [ ],
- "didInfo": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdFiles": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- null
], - "vcInfos": [
- null
], - "vpInfos": [
- null
], - "createdUsers": [
- null
], - "createdVcInfos": [
- null
], - "createdVpInfos": [
- null
], - "createdDidInfos": [
- null
], - "createdVcSchemas": [
- null
], - "createdVerifications": [
- null
], - "createdFiles": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "user": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- null
], - "vcInfos": [
- null
], - "vpInfos": [
- null
], - "createdUsers": [
- null
], - "createdVcInfos": [
- null
], - "createdVpInfos": [
- null
], - "createdDidInfos": [
- null
], - "createdVcSchemas": [
- null
], - "createdVerifications": [
- null
], - "createdFiles": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vcInfos": [
- { }
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": {
- "id": null,
- "name": null,
- "email": null,
- "password": null,
- "needActivateFlow": null,
- "status": null,
- "role": null,
- "createdBy": null,
- "didInfos": [ ],
- "vcInfos": [ ],
- "vpInfos": [ ],
- "createdUsers": [ ],
- "createdVcInfos": [ ],
- "createdVpInfos": [ ],
- "createdDidInfos": [ ],
- "createdVcSchemas": [ ],
- "createdVerifications": [ ],
- "createdFiles": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "createdBy": {
- "id": null,
- "name": null,
- "email": null,
- "password": null,
- "needActivateFlow": null,
- "status": null,
- "role": null,
- "createdBy": null,
- "didInfos": [ ],
- "vcInfos": [ ],
- "vpInfos": [ ],
- "createdUsers": [ ],
- "createdVcInfos": [ ],
- "createdVpInfos": [ ],
- "createdDidInfos": [ ],
- "createdVcSchemas": [ ],
- "createdVerifications": [ ],
- "createdFiles": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "badge": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "sample-badge-1",
- "filename": "badge-12345-12345.png",
- "description": "This is Sample Badge 1.",
- "status": 1,
- "vcSchema": { },
- "vcInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- null
], - "vcInfos": [
- null
], - "vpInfos": [
- null
], - "createdUsers": [
- null
], - "createdVcInfos": [
- null
], - "createdVpInfos": [
- null
], - "createdDidInfos": [
- null
], - "createdVcSchemas": [
- null
], - "createdVerifications": [
- null
], - "createdFiles": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vcInfo": { },
- "vpInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": {
- "id": null,
- "name": null,
- "email": null,
- "password": null,
- "needActivateFlow": null,
- "status": null,
- "role": null,
- "createdBy": null,
- "didInfos": [ ],
- "vcInfos": [ ],
- "vpInfos": [ ],
- "createdUsers": [ ],
- "createdVcInfos": [ ],
- "createdVpInfos": [ ],
- "createdDidInfos": [ ],
- "createdVcSchemas": [ ],
- "createdVerifications": [ ],
- "createdFiles": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "user": {
- "id": null,
- "name": null,
- "email": null,
- "password": null,
- "needActivateFlow": null,
- "status": null,
- "role": null,
- "createdBy": null,
- "didInfos": [ ],
- "vcInfos": [ ],
- "vpInfos": [ ],
- "createdUsers": [ ],
- "createdVcInfos": [ ],
- "createdVpInfos": [ ],
- "createdDidInfos": [ ],
- "createdVcSchemas": [ ],
- "createdVerifications": [ ],
- "createdFiles": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "vcInfos": [
- null
], - "didInfo": {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcContexts": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "vcSchema": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcSchemaProperties": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "propIndex": 1,
- "propName": "prop1",
- "propType": "string",
- "parentObjectIndex": "parentObjectIndex",
- "vcSchema": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "badges": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "sample-badge-1",
- "filename": "badge-12345-12345.png",
- "description": "This is Sample Badge 1.",
- "status": 1,
- "vcSchema": { },
- "vcInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}
], - "vcInfos": [
- { }
], - "vpInfos": [
- {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "raw": null,
- "createdBy": null,
- "user": null,
- "vcInfos": [ ],
- "didInfo": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}
], - "createdUsers": [
- { }
], - "createdVcInfos": [
- { }
], - "createdVpInfos": [
- {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "raw": null,
- "createdBy": null,
- "user": null,
- "vcInfos": [ ],
- "didInfo": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}
], - "createdDidInfos": [
- {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdVcSchemas": [
- { }
], - "createdVerifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdFiles": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vcSchema": { },
- "user": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}
], - "vcInfos": [
- { }
], - "vpInfos": [
- {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "raw": null,
- "createdBy": null,
- "user": null,
- "vcInfos": [ ],
- "didInfo": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}
], - "createdUsers": [
- { }
], - "createdVcInfos": [
- { }
], - "createdVpInfos": [
- {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "raw": null,
- "createdBy": null,
- "user": null,
- "vcInfos": [ ],
- "didInfo": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}
], - "createdDidInfos": [
- {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdVcSchemas": [
- { }
], - "createdVerifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdFiles": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": {
- "id": null,
- "name": null,
- "email": null,
- "password": null,
- "needActivateFlow": null,
- "status": null,
- "role": null,
- "createdBy": null,
- "didInfos": [ ],
- "vcInfos": [ ],
- "vpInfos": [ ],
- "createdUsers": [ ],
- "createdVcInfos": [ ],
- "createdVpInfos": [ ],
- "createdDidInfos": [ ],
- "createdVcSchemas": [ ],
- "createdVerifications": [ ],
- "createdFiles": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "user": {
- "id": null,
- "name": null,
- "email": null,
- "password": null,
- "needActivateFlow": null,
- "status": null,
- "role": null,
- "createdBy": null,
- "didInfos": [ ],
- "vcInfos": [ ],
- "vpInfos": [ ],
- "createdUsers": [ ],
- "createdVcInfos": [ ],
- "createdVpInfos": [ ],
- "createdDidInfos": [ ],
- "createdVcSchemas": [ ],
- "createdVerifications": [ ],
- "createdFiles": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "vcInfos": [
- null
], - "didInfo": {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "badge": { },
- "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": {
- "id": null,
- "name": null,
- "email": null,
- "password": null,
- "needActivateFlow": null,
- "status": null,
- "role": null,
- "createdBy": null,
- "didInfos": [ ],
- "vcInfos": [ ],
- "vpInfos": [ ],
- "createdUsers": [ ],
- "createdVcInfos": [ ],
- "createdVpInfos": [ ],
- "createdDidInfos": [ ],
- "createdVcSchemas": [ ],
- "createdVerifications": [ ],
- "createdFiles": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "vcInfo": { },
- "vpInfo": {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "raw": null,
- "createdBy": null,
- "user": null,
- "vcInfos": [ ],
- "didInfo": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "file": { },
- "createdBy": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "createdBy": null,
- "vcSchema": null,
- "user": null,
- "vpInfos": [ ],
- "badge": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}
], - "didInfo": { },
- "verifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": { },
- "user": { },
- "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "badge": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "sample-badge-1",
- "filename": "badge-12345-12345.png",
- "description": "This is Sample Badge 1.",
- "status": 1,
- "vcSchema": { },
- "vcInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "raw": null,
- "createdBy": null,
- "user": null,
- "vcInfos": [ ],
- "didInfo": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": { },
- "user": { },
- "vpInfos": [
- null
], - "badge": {
- "id": null,
- "label": null,
- "filename": null,
- "description": null,
- "status": null,
- "vcSchema": null,
- "vcInfo": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "createdBy": null,
- "vcSchema": null,
- "user": null,
- "vpInfos": [ ],
- "badge": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "vpInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdUsers": [
- { }
], - "createdVcInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": { },
- "user": { },
- "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "badge": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "sample-badge-1",
- "filename": "badge-12345-12345.png",
- "description": "This is Sample Badge 1.",
- "status": 1,
- "vcSchema": { },
- "vcInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "raw": null,
- "createdBy": null,
- "user": null,
- "vcInfos": [ ],
- "didInfo": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": { },
- "user": { },
- "vpInfos": [
- null
], - "badge": {
- "id": null,
- "label": null,
- "filename": null,
- "description": null,
- "status": null,
- "vcSchema": null,
- "vcInfo": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "createdBy": null,
- "vcSchema": null,
- "user": null,
- "vpInfos": [ ],
- "badge": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "vpInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdDidInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "createdBy": null,
- "vcSchema": null,
- "user": null,
- "vpInfos": [ ],
- "badge": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}
], - "didInfo": { },
- "verifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVcSchemas": [
- { }
], - "createdVerifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": { },
- "user": { },
- "vpInfos": [
- {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "raw": null,
- "createdBy": null,
- "user": null,
- "vcInfos": [ ],
- "didInfo": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}
], - "badge": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "sample-badge-1",
- "filename": "badge-12345-12345.png",
- "description": "This is Sample Badge 1.",
- "status": 1,
- "vcSchema": { },
- "vcInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vpInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "createdBy": null,
- "vcSchema": null,
- "user": null,
- "vpInfos": [ ],
- "badge": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdFiles": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdBy": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "name": "Jhon Doe",
- "email": "user@email.com",
- "password": "Password1234",
- "needActivateFlow": false,
- "status": "active",
- "role": "client",
- "createdBy": { },
- "didInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": {
- "id": null,
- "title": null,
- "version": null,
- "description": null,
- "isBadgeSchema": null,
- "vcInfos": [ ],
- "vcContexts": [ ],
- "vcSchemaProperties": [ ],
- "badges": [ ],
- "file": null,
- "createdBy": null,
- "createdAt": null,
- "updatedAt": null
}, - "user": { },
- "vpInfos": [
- null
], - "badge": {
- "id": null,
- "label": null,
- "filename": null,
- "description": null,
- "status": null,
- "vcSchema": null,
- "vcInfo": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "didInfo": { },
- "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "createdBy": null,
- "vcSchema": null,
- "user": null,
- "vpInfos": [ ],
- "badge": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "vpInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- { }
], - "vcContexts": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "vcSchema": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcSchemaProperties": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "propIndex": 1,
- "propName": "prop1",
- "propType": "string",
- "parentObjectIndex": "parentObjectIndex",
- "vcSchema": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "badges": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "sample-badge-1",
- "filename": "badge-12345-12345.png",
- "description": "This is Sample Badge 1.",
- "status": 1,
- "vcSchema": { },
- "vcInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "file": { },
- "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "user": { },
- "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- { }
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "badge": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "sample-badge-1",
- "filename": "badge-12345-12345.png",
- "description": "This is Sample Badge 1.",
- "status": 1,
- "vcSchema": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- { }
], - "vcContexts": [
- {
- "id": null,
- "context": null,
- "vcSchema": null,
- "createdAt": null,
- "updatedAt": null
}
], - "vcSchemaProperties": [
- {
- "id": null,
- "propIndex": null,
- "propName": null,
- "propType": null,
- "parentObjectIndex": null,
- "vcSchema": null,
- "createdAt": null,
- "updatedAt": null
}
], - "badges": [
- { }
], - "file": { },
- "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vcInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- null
], - "vcContexts": [
- null
], - "vcSchemaProperties": [
- null
], - "badges": [
- null
], - "file": { },
- "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "user": { },
- "vpInfos": [
- { }
], - "badge": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "sample-badge-1",
- "filename": "badge-12345-12345.png",
- "description": "This is Sample Badge 1.",
- "status": 1,
- "vcSchema": {
- "id": null,
- "title": null,
- "version": null,
- "description": null,
- "isBadgeSchema": null,
- "vcInfos": [ ],
- "vcContexts": [ ],
- "vcSchemaProperties": [ ],
- "badges": [ ],
- "file": null,
- "createdBy": null,
- "createdAt": null,
- "updatedAt": null
}, - "vcInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": {
- "id": null,
- "title": null,
- "version": null,
- "description": null,
- "isBadgeSchema": null,
- "vcInfos": [ ],
- "vcContexts": [ ],
- "vcSchemaProperties": [ ],
- "badges": [ ],
- "file": null,
- "createdBy": null,
- "createdAt": null,
- "updatedAt": null
}, - "user": { },
- "vpInfos": [
- null
], - "badge": {
- "id": null,
- "label": null,
- "filename": null,
- "description": null,
- "status": null,
- "vcSchema": null,
- "vcInfo": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vpInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdUsers": [
- { }
], - "createdVcInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- { }
], - "vcContexts": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "vcSchema": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcSchemaProperties": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "propIndex": 1,
- "propName": "prop1",
- "propType": "string",
- "parentObjectIndex": "parentObjectIndex",
- "vcSchema": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "badges": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "sample-badge-1",
- "filename": "badge-12345-12345.png",
- "description": "This is Sample Badge 1.",
- "status": 1,
- "vcSchema": { },
- "vcInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "file": { },
- "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "user": { },
- "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- { }
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "badge": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "sample-badge-1",
- "filename": "badge-12345-12345.png",
- "description": "This is Sample Badge 1.",
- "status": 1,
- "vcSchema": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- { }
], - "vcContexts": [
- {
- "id": null,
- "context": null,
- "vcSchema": null,
- "createdAt": null,
- "updatedAt": null
}
], - "vcSchemaProperties": [
- {
- "id": null,
- "propIndex": null,
- "propName": null,
- "propType": null,
- "parentObjectIndex": null,
- "vcSchema": null,
- "createdAt": null,
- "updatedAt": null
}
], - "badges": [
- { }
], - "file": { },
- "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vcInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": { },
- "vpInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- null
], - "vcContexts": [
- null
], - "vcSchemaProperties": [
- null
], - "badges": [
- null
], - "file": { },
- "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "user": { },
- "vpInfos": [
- { }
], - "badge": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "sample-badge-1",
- "filename": "badge-12345-12345.png",
- "description": "This is Sample Badge 1.",
- "status": 1,
- "vcSchema": {
- "id": null,
- "title": null,
- "version": null,
- "description": null,
- "isBadgeSchema": null,
- "vcInfos": [ ],
- "vcContexts": [ ],
- "vcSchemaProperties": [ ],
- "badges": [ ],
- "file": null,
- "createdBy": null,
- "createdAt": null,
- "updatedAt": null
}, - "vcInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": {
- "id": null,
- "title": null,
- "version": null,
- "description": null,
- "isBadgeSchema": null,
- "vcInfos": [ ],
- "vcContexts": [ ],
- "vcSchemaProperties": [ ],
- "badges": [ ],
- "file": null,
- "createdBy": null,
- "createdAt": null,
- "updatedAt": null
}, - "user": { },
- "vpInfos": [
- null
], - "badge": {
- "id": null,
- "label": null,
- "filename": null,
- "description": null,
- "status": null,
- "vcSchema": null,
- "vcInfo": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vpInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdDidInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": {
- "id": null,
- "title": null,
- "version": null,
- "description": null,
- "isBadgeSchema": null,
- "vcInfos": [ ],
- "vcContexts": [ ],
- "vcSchemaProperties": [ ],
- "badges": [ ],
- "file": null,
- "createdBy": null,
- "createdAt": null,
- "updatedAt": null
}, - "user": { },
- "vpInfos": [
- null
], - "badge": {
- "id": null,
- "label": null,
- "filename": null,
- "description": null,
- "status": null,
- "vcSchema": null,
- "vcInfo": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "didInfo": { },
- "verifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "createdBy": null,
- "vcSchema": null,
- "user": null,
- "vpInfos": [ ],
- "badge": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}, - "vpInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVcSchemas": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": { },
- "user": { },
- "vpInfos": [
- {
- "id": null,
- "label": null,
- "hash": null,
- "description": null,
- "raw": null,
- "createdBy": null,
- "user": null,
- "vcInfos": [ ],
- "didInfo": null,
- "verifications": [ ],
- "createdAt": null,
- "updatedAt": null
}
], - "badge": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "sample-badge-1",
- "filename": "badge-12345-12345.png",
- "description": "This is Sample Badge 1.",
- "status": 1,
- "vcSchema": { },
- "vcInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- {
- "id": null,
- "label": null,
- "result": null,
- "createdBy": null,
- "vcInfo": null,
- "vpInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcContexts": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "vcSchema": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "vcSchemaProperties": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "propIndex": 1,
- "propName": "prop1",
- "propType": "string",
- "parentObjectIndex": "parentObjectIndex",
- "vcSchema": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "badges": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "sample-badge-1",
- "filename": "badge-12345-12345.png",
- "description": "This is Sample Badge 1.",
- "status": 1,
- "vcSchema": { },
- "vcInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": { },
- "user": { },
- "vpInfos": [
- null
], - "badge": { },
- "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "file": { },
- "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdVerifications": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "verification-1",
- "result": true,
- "createdBy": { },
- "vcInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- { }
], - "vcContexts": [
- {
- "id": null,
- "context": null,
- "vcSchema": null,
- "createdAt": null,
- "updatedAt": null
}
], - "vcSchemaProperties": [
- {
- "id": null,
- "propIndex": null,
- "propName": null,
- "propType": null,
- "parentObjectIndex": null,
- "vcSchema": null,
- "createdAt": null,
- "updatedAt": null
}
], - "badges": [
- {
- "id": null,
- "label": null,
- "filename": null,
- "description": null,
- "status": null,
- "vcSchema": null,
- "vcInfo": null,
- "createdAt": null,
- "updatedAt": null
}
], - "file": { },
- "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "user": { },
- "vpInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- null
], - "didInfo": {
- "id": null,
- "manageUuid": null,
- "did": null,
- "method": null,
- "label": null,
- "domainName": null,
- "existPrivateKey": null,
- "description": null,
- "user": null,
- "createdBy": null,
- "vpInfos": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "badge": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "sample-badge-1",
- "filename": "badge-12345-12345.png",
- "description": "This is Sample Badge 1.",
- "status": 1,
- "vcSchema": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "title": "VC Schema 1",
- "version": "1.0.0",
- "description": "This is Project Group 1.",
- "isBadgeSchema": false,
- "vcInfos": [
- null
], - "vcContexts": [
- null
], - "vcSchemaProperties": [
- null
], - "badges": [
- null
], - "file": { },
- "createdBy": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vcInfo": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "vpInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vp-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is VP for hoge.",
- "raw": "",
- "createdBy": { },
- "user": { },
- "vcInfos": [
- {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "label": "vc-info-1",
- "hash": "11bf5b37-e0b8-42e0-8dcf-dc8c4aefc000",
- "description": "This is Project Group 1.",
- "createdBy": { },
- "vcSchema": {
- "id": null,
- "title": null,
- "version": null,
- "description": null,
- "isBadgeSchema": null,
- "vcInfos": [ ],
- "vcContexts": [ ],
- "vcSchemaProperties": [ ],
- "badges": [ ],
- "file": null,
- "createdBy": null,
- "createdAt": null,
- "updatedAt": null
}, - "user": { },
- "vpInfos": [
- null
], - "badge": {
- "id": null,
- "label": null,
- "filename": null,
- "description": null,
- "status": null,
- "vcSchema": null,
- "vcInfo": null,
- "createdAt": null,
- "updatedAt": null
}, - "verifications": [
- null
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "didInfo": {
- "id": "123e4567-e89b-12d3-a456-426614174000",
- "manageUuid": "32bad62a-4186-4d04-a26a-fcee79d5824b",
- "did": "did:key:12345",
- "method": "key",
- "label": "did-info-1",
- "domainName": "domain-name.com",
- "existPrivateKey": true,
- "description": "This is Project Group 1.",
- "user": { },
- "createdBy": { },
- "vpInfos": { },
- "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "verifications": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "createdFiles": [
- { }
], - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}, - "createdAt": "2024-05-24T06:39:25.756Z",
- "updatedAt": "2024-05-24T06:39:25.756Z"
}
], - "meta": {
- "totalItems": 1,
- "itemCount": 1,
- "itemsPerPage": 10,
- "totalPages": null,
- "currentPage": 1
}, - "links": {
- "previous": 10,
}
}
新規ファイルアップロードを作成します。
file | string <binary> |
{- "id": "3bfc3721-eb7c-4a5b-b5ac-94d1f158911f",
- "filename": "sample_file",
- "originalname": "sample_file",
- "fileData": "text/csv:nfhorif2Efr2",
- "fileType": "text/csv",
- "type": "image/png",
- "executed": false,
- "status": 0,
- "createdBy": {
- "id": "e8973f1a-a80f-4243-8061-144565b640f2",
- "name": "admin",
- "email": "admin@email.com",
- "needActivateFlow": false,
- "status": "active",
- "role": "admin",
- "createdAt": "2025-02-04T22:32:21.343Z",
- "updatedAt": "2025-02-04T22:32:21.343Z"
}, - "createdAt": "2024-05-24T06:39:54.352Z",
- "updatedAt": "2024-05-24T06:39:54.352Z"
}
リクエストパラメータのidで指定された単一のファイルの詳細情報の値を返します。
id required | string |
{- "id": "3bfc3721-eb7c-4a5b-b5ac-94d1f158911f",
- "filename": "sample_file",
- "originalname": "sample_file",
- "fileData": "text/csv:nfhorif2Efr2",
- "fileType": "text/csv",
- "type": "image/png",
- "executed": false,
- "status": 0,
- "createdBy": {
- "id": "e8973f1a-a80f-4243-8061-144565b640f2",
- "name": "admin",
- "email": "admin@email.com",
- "needActivateFlow": false,
- "status": "active",
- "role": "admin",
- "createdAt": "2025-02-04T22:32:21.343Z",
- "updatedAt": "2025-02-04T22:32:21.343Z"
}, - "createdAt": "2024-05-24T06:39:54.352Z",
- "updatedAt": "2024-05-24T06:39:54.352Z"
}
(非推奨) ユーザー、クライアント情報を記載したCSVファイルを実行し、新規アカウントを作成します。
id required | string |
didMethod required | string (必須) 新規生成するDIDのメソッド。(現在対応するDIDメソッド: "key", "ether", "ethr:sepolia", "ethr:arbitrum:goerli", "web") |
label | string (任意) DIDの識別や整理などの管理するにあったてメタデータとして任意で設定可能な単語のフレーズ。(例: did-for-project1) |
domainName | string (任意) did:webメソッドでDIDを生成する際に必要なドメイン名。DIDによって指定されたドメインがドメインネームシステム(DNS)を通じて解決されるときのホスト名。did:webメソッド以外では必要のないパラメータなため任意の項目である。 |
description | string (任意) DIDの生成目的や用途など任意で設定可能な説明文。 |
{- "didMethod": "key",
- "label": "did-for-project1",
- "domainName": "domain-name.com",
- "description": "DIDの生成目的や用途など任意で設定可能な説明文。"
}