Skip to content
Snippets Groups Projects
Commit 41b5d677 authored by Kalin Canov's avatar Kalin Canov :fishing_pole_and_fish:
Browse files

update

parent 1df9d78f
No related branches found
No related tags found
No related merge requests found
File added
GAIA-X-OCM-BlockDiagram.png

90.5 KiB

GAIA-X-OCM.Participant Onboarding.drawio.png

150 KiB

GAIA-X-Overview-blockDiagram.png

105 KiB

File moved
```mermaid
sequenceDiagram
participant OCM Admin
participant OCM Attestation Manager
par
OCM Admin ->> OCM Attestation Manager: Calls the POST method credentialDef with relevant attributes.
OCM Attestation Manager ->> OCM Admin: Responds with status code 201, with message 'Credential definition created successfully', if credential definition is created on ledger successfully
end
```
```mermaid
sequenceDiagram
participant OCM Admin
participant OCM Attestation Manager
par
OCM Admin ->> OCM Attestation Manager: Calls the POST method Schemas with relevant attributes.
OCM Attestation Manager ->> OCM Admin: Responds with status code 201, with message 'Schema created successfully', if schema is created on ledger successfully
end
```
# OCM ER Diagram
```mermaid
erDiagram
Participant ||--o{ Schema : Creates-Consume
Schema ||--|{ Attributes : Has
CredentialDef ||--|| Schema : Has
Connection ||--o{ Credential : Issues
Credential ||--|| CredentialDef : Has
Participant ||--o{ Connection : Has
Proof }o--|| Connection : Requests
Agent }o--|| Participant : Has
Agent ||--|{ Ledger : Has
User }|--|| Participant : Has
OTP ||--|| Participant : Sends-Email-OTP
Config {
uuid id
string key
string value
DateTime created_date
DateTime updated_date
}
OTP {
uuid id
string otp
DateTime created_date
DateTime updated_date
}
Participant {
uuid id
string name
string address
string website
DateTime created_date
uuid created_by
DateTime updated_date
uuid updated_by
}
User {
uuid id
string email
string password
string otp_id
Boolean is_verified
Role role
uuid participant_id
DateTime created_date
uuid created_by
DateTime updated_date
uuid updated_by
}
Agent {
uuid id
uuid participant_id
string agent_url
string invitation_url
string public_did
string wallet_name
string status
DateTime created_date
uuid created_by
DateTime updated_date
uuid updated_by
}
Ledger {
uuid id
uuid agent_id
string network
Blob genesis_file
string environment
DateTime created_date
DateTime updated_date
}
Schema {
uuid id
string schemaID
string participant_did
string name
DateTime created_date
uuid created_by
DateTime updated_date
uuid updated_by
}
Attributes {
uuid id
string schemaID
string name
DateTime created_date
uuid created_by
DateTime updated_date
uuid updated_by
}
Credential {
uuid id
uuid exchange_id
uuid cred_def_id
string connection_id
string participant_id
string principal_did
DateTime created_date
DateTime updated_date
}
CredentialDef {
uuid id
string cred_def_id
string schemaID
string name
Boolean is_auto_issue
Boolean is_revokable
DateTime created_date
uuid created_by
DateTime updated_date
uuid updated_by
}
Connection {
uuid id
string connection_id
string status
string participant_did
string their_did
string their_label
DateTime created_date
uuid created_by
DateTime updated_date
uuid updated_by
}
Proof {
uuid id
string presentation_id
string credential_def_id
string participant_did
string their_did
string status
DateTime created_date
DateTime updated_date
}
```
```mermaid
sequenceDiagram
participant PCM User
participant PCM App
participant OCM Admin
participant OCM Attestation Manager
par
OCM Admin ->> OCM Attestation Manager: Calls the POST method create-offer-Credential with connectionId, credentialDefinitionId and relevant attributes and their values.
OCM Attestation Manager ->> PCM App: Offers the Credential to the corresponding PCM
PCM User->> PCM App: Accepts the Credential
PCM App ->> OCM Attestation Manager: Sends acknowledgement
OCM Attestation Manager ->> PCM App: Accepts the acknowledgement on accept-request API, and issues the Verifiable Credential, which gets stored in PCM wallet.
end
```
# OCM ER Diagram
```mermaid
flowchart LR
gateway[API Gateway] -->Connection
subgraph test
service1 --> service2
subgraph subgraph
subgraph2-->subgraph1
end
end
```
# Onboarding Diagram
```mermaid
flowchart LR
subgraph AA["Authentication & Authorization"]
g-reg["Registration"]
end
subgraph gaiax[Gaiax]
TSA["Trust Services API"]
subgraph ocm
AISBL
Services-->g-db
g-reg-->Services
Services-- Request -->AISBL
AISBL-- callback -->Services
end
g-db[(Database)]
end
subgraph ayanworks[Ayanworks]
aAdmin((Admin))
aAdmin-->g-reg
a-ocm["OCM Services"]-- Request -->a-afj
a-afj["AFJ"]-- callback -->a-ocm
a-ocm-->a-db[(Database)]
AISBL-- "Credential Issue v2" -->a-afj
a-TSA["Trust Service API"]
end
subgraph vereign[Vereign]
vAdmin((Admin))
vAdmin-->g-reg
v-ocm["OCM Services"]-- Request -->v-afj
v-afj["AFJ"]-- callback -->v-ocm
v-ocm-->v-db[(Database)]
AISBL-- "Credential Issue v2" -->v-afj
v-TSA["Trust Service API"]
end
subgraph pcm[PCM]
p-afj["Mobile Aries Agent"]-- "Registration connection" -->AISBL
p-afj-- "Subscription Connection" -->v-afj
end
subgraph Certifier
cAriesAgent["Aries Agent"]-- eIDAS VC -->a-afj
cAriesAgent["Aries Agent"]-- eIDAS VC -->v-afj
end
```
```mermaid
sequenceDiagram
participant PCM User
participant PCM App
participant OCM Admin
participant OCM Proof Manager
par
OCM Admin ->> OCM Proof Manager: Calls the POST method send-out-of-band-presentation-request, with either schemaId or credentialDefinitionId and required attributes.
OCM Proof Manager ->> OCM Admin: Sends the URL generated of proof presentation request
OCM Admin->> OCM Admin: Receives the URL and converts it to QR code and displays the same.
PCM App ->> OCM Admin: Scans the QR code for Out of Band Proof Presentation.
PCM User ->> PCM App: The User accepts to share the requested attributes of specified credential.
PCM App ->> OCM Proof Manager: Sends the requested attributes, if proof verification is successful it sets isVerified as true and state as done in the database.
OCM Admin ->> OCM Proof Manager: Calls Get method find-by-presentation-id API, against the presentation-id of proof request, and confirms the status of isVerified and state.
end
```
## Principal Credential Schema
This schema is used to issue VC to Principal User at the time of registration. This VC will indicate respective principal user is part of Gaiax ecosystem. This VC will also be used every time to make respective connection as Trusted via Proof Verification of this schemaID
Following attributes should be in schema (case sensitive)
```
1. email // principalUser email address
2. issuerDID // issuer OCM organization public DID
3. subjectDID // holder pairwise DID
```
```mermaid
sequenceDiagram
participant Playstore/Appstore
participant PCM User
participant PCM App
participant OCM Notification Manager(Federation)
participant Mediator
participant OCM Admin
participant OCM Connection Manager
participant OCM Principal Manager
participant OCM Attestation Manager
par
User Device->>Playstore/Appstore: Downloads PCM App
PCM User ->> PCM App: Enters email
PCM App ->>OCM Notification Manager(Federation): sends email Address to notification/sendOTP(), for OTP generation
OCM Notification Manager(Federation) ->> PCM User: Sends OTP to Email address provided
PCM User->>PCM App: Enters OTP
PCM App ->>OCM Notification Manager(Federation): Sends OTP to notification/verifyOTP()
OCM Notification Manager(Federation)->>PCM App: On successful verification, returns success
PCM User ->> PCM App: Enters Pin and Biometric
PCM App ->> PCM App: Create Wallet, show mnemonic
PCM User->>PCM App: copies and saves mnemonic
end
par
PCM App->> Mediator: Sends DIDComm Connection
Mediator->>PCM App: On successful connection sends connected
end
par
OCM Admin ->> OCM Connection Manager: Uses invitationURL(), to generate new Invitation URL with parameter 'alias = member'
OCM Admin ->> OCM Admin: Converts URL to QR, and displays
PCM App ->> OCM Admin: Scans the QR code, and the connection between PCM and OCM gets completed and active
OCM Connection Manager ->> OCM Principal Manager: Request for issuance of Principal credential
OCM Principal Manager ->> OCM Attestation Manager: Requests Attestation Manager with Principal Credential CredDef to issue credential based on CredDef
OCM Attestation Manager ->> PCM App: Issues Credential to the individual and the credential gets stored in PCM App's wallet
end
```
```mermaid
sequenceDiagram
participant PCM User
participant PCM App
participant OCM Admin
participant OCM Proof Manager
par
OCM Admin ->> OCM Proof Manager: Calls the POST method send-presentation-request, against the connectionID, with either schemaId or credentialDefinitionId and required attributes.
OCM Proof Manager ->> PCM App: Sends the Proof Presentation Request.
PCM User ->> PCM App: The User accepts to share the requested attributes of specified credential.
PCM App ->> OCM Proof Manager: Sends the requested attributes, if proof verification is successful it sets isVerified as true and state as done in the database.
OCM Admin ->> OCM Proof Manager: Calls Get method find-by-presentation-id API, against the presentation-id of proof request, and confirms the status of isVerified and state.
end
```
```mermaid
sequenceDiagram
participant PCM App
participant OCM Admin
participant OCM Connection Manager
participant OCM Connection Manager Db
participant OCM Principal Manager
participant OCM Proof Manager
par
OCM Admin ->> OCM Connection Manager: Uses invitationURL(), to generate new Invitation URL with parameter 'alias = subscriber'
OCM Admin ->> OCM Admin: Converts URL to QR, and displays
PCM App ->> OCM Admin: Scans the QR code, and the connection between PCM and OCM gets completed and active
OCM Connection Manager ->> OCM Principal Manager: Requests for Proof Verification on Principal credential, to turn connection from active to trusted
OCM Principal Manager ->> OCM Proof Manager: Requests Proof Verification on sendMembershipProofRequest() on Principal Credential schema
OCM Proof Manager ->> PCM App: Requests for proof verification from PCM App
PCM App ->> OCM Proof Manager: Responds with Proof Request.
OCM Proof Manager ->> OCM Connection Manager Db: Changes the status of Connection to Trusted from Completed if proof verification is successful
end
```
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment