Skip to content

Commit

Permalink
fix/feat : Updated W3C schema response and Implemented schema store l…
Browse files Browse the repository at this point in the history
…ogic (#714)

* feat: added logic to store W3C schema

Signed-off-by: tipusinghaw <[email protected]>

* fix: Error messages

Signed-off-by: tipusinghaw <[email protected]>

---------

Signed-off-by: tipusinghaw <[email protected]>
Signed-off-by: KulkarniShashank <[email protected]>
  • Loading branch information
tipusinghaw authored and KulkarniShashank committed May 14, 2024
1 parent 8c6f305 commit 838f806
Show file tree
Hide file tree
Showing 24 changed files with 188 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"label": "5ebcc4b7-2920-476a-abeb-2d602957e25b_jekads",
"walletId": "dopalos",
"walletKey": "dkemdlksa",
"walletType": "postgres",
"walletUrl": "192.168.31.50:5432",
"walletAccount": "postgres",
"walletPassword": "Password1",
"walletAdminAccount": "postgres",
"walletAdminPassword": "Password1",
"walletScheme": "DatabasePerWallet",
"indyLedger": [],
"endpoint": [
"http://192.168.31.50:9031"
],
"autoAcceptConnections": true,
"autoAcceptCredentials": "contentApproved",
"autoAcceptProofs": "contentApproved",
"logLevel": 5,
"inboundTransport": [
{
"transport": "http",
"port": "9031"
}
],
"outboundTransport": [
"http"
],
"webhookUrl": "http://192.168.31.50:5000/wh/5ebcc4b7-2920-476a-abeb-2d602957e25b",
"adminPort": "8031",
"tenancy": true
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"label": "65cdfdd5-6b67-4982-beba-9ac05f81caf8_Platform-admin",
"walletId": "platform-admin",
"walletKey": "U2FsdGVkX18Y7bdtrjA444InlqFbMTownPCloGszjy0=",
"walletType": "postgres",
"walletUrl": "192.168.1.125:5432",
"walletAccount": "postgres",
"walletPassword": "Password1",
"walletAdminAccount": "postgres",
"walletAdminPassword": "Password1",
"walletScheme": "DatabasePerWallet",
"indyLedger": [],
"endpoint": [
"http://192.168.1.125:9036"
],
"autoAcceptConnections": true,
"autoAcceptCredentials": "contentApproved",
"autoAcceptProofs": "contentApproved",
"logLevel": 5,
"inboundTransport": [
{
"transport": "http",
"port": "9036"
}
],
"outboundTransport": [
"http"
],
"webhookUrl": "http://192.168.1.125:5000/wh/65cdfdd5-6b67-4982-beba-9ac05f81caf8",
"adminPort": "8036",
"tenancy": true
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"label": "e579d9ad-f3de-4a9a-89dc-04b4171c7ce8_dcxzs",
"walletId": "string",
"walletKey": "string",
"walletType": "postgres",
"walletUrl": "192.168.31.50:5432",
"walletAccount": "postgres",
"walletPassword": "Password1",
"walletAdminAccount": "postgres",
"walletAdminPassword": "Password1",
"walletScheme": "DatabasePerWallet",
"indyLedger": [],
"endpoint": [
"http://192.168.31.50:9032"
],
"autoAcceptConnections": true,
"autoAcceptCredentials": "contentApproved",
"autoAcceptProofs": "contentApproved",
"logLevel": 5,
"inboundTransport": [
{
"transport": "http",
"port": "9032"
}
],
"outboundTransport": [
"http"
],
"webhookUrl": "http://192.168.31.50:5000/wh/e579d9ad-f3de-4a9a-89dc-04b4171c7ce8",
"adminPort": "8032",
"tenancy": true
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
version: '3'

services:
agent:
image: afj-0.5.0:latest

container_name: 5ebcc4b7-2920-476a-abeb-2d602957e25b_jekads
restart: always
environment:
AFJ_REST_LOG_LEVEL: 1
ports:
- 9031:9031
- 8031:8031

volumes:
- ./agent-config/5ebcc4b7-2920-476a-abeb-2d602957e25b_jekads.json:/config.json

command: --auto-accept-connections --config /config.json

volumes:
pgdata:
agent-indy_client:
agent-tmp:
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
version: '3'

services:
agent:
image: afj-0.5.0:latest

container_name: 65cdfdd5-6b67-4982-beba-9ac05f81caf8_Platform-admin
restart: always
environment:
AFJ_REST_LOG_LEVEL: 1
ports:
- 9036:9036
- 8036:8036

volumes:
- ./agent-config/65cdfdd5-6b67-4982-beba-9ac05f81caf8_Platform-admin.json:/config.json

command: --auto-accept-connections --config /config.json

volumes:
pgdata:
agent-indy_client:
agent-tmp:
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
version: '3'

services:
agent:
image: afj-0.5.0:latest

container_name: e579d9ad-f3de-4a9a-89dc-04b4171c7ce8_dcxzs
restart: always
environment:
AFJ_REST_LOG_LEVEL: 1
ports:
- 9032:9032
- 8032:8032

volumes:
- ./agent-config/e579d9ad-f3de-4a9a-89dc-04b4171c7ce8_dcxzs.json:/config.json

command: --auto-accept-connections --config /config.json

volumes:
pgdata:
agent-indy_client:
agent-tmp:
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"CONTROLLER_ENDPOINT":"192.168.31.50:8031"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"CONTROLLER_ENDPOINT":"192.168.1.125:8036"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"CONTROLLER_ENDPOINT":"192.168.31.50:8032"
}
Binary file added ngrok-v3-stable-linux-amd64.tgz
Binary file not shown.
1 change: 1 addition & 0 deletions uploadedFiles/exports/Pimpri-Diploma-1714383134.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
"email","Specialization","SL No","Year Of Passing","Course Code","Date","Course Name","Student","Name"
1 change: 1 addition & 0 deletions uploadedFiles/exports/Pimpri-Diploma-1714383186.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
"email","Specialization","SL No","Year Of Passing","Course Code","Date","Course Name","Student","Name"
1 change: 1 addition & 0 deletions uploadedFiles/exports/Pimpri-Diploma-1714383379.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
"email","Specialization","SL No","Year Of Passing","Course Code","Date","Course Name","Student","Name"
1 change: 1 addition & 0 deletions uploadedFiles/exports/Pimpri-Diploma-1714383620.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
"email","Specialization","SL No","Year Of Passing","Course Code","Date","Course Name","Student","Name"
1 change: 1 addition & 0 deletions uploadedFiles/exports/Pune-Diploma-1714376639.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
"email","Specialization","SL No","Year Of Passing","Course Code","Date","Course Name","Student Name","email"
1 change: 1 addition & 0 deletions uploadedFiles/exports/Pune-Diploma-1714382431.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
"email","Specialization","SL No","Year Of Passing","Course Code","Date","Course Name","Student Name","email"
1 change: 1 addition & 0 deletions uploadedFiles/exports/Pune-Diploma-1714382644.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
"email","Specialization","SL No","Year Of Passing","Course Code","Date","Course Name","Student Name","email"
1 change: 1 addition & 0 deletions uploadedFiles/exports/Pune-Diploma-1714382682.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
"email","Specialization","SL No","Year Of Passing","Course Code","Date","Course Name","Student Name","email"
1 change: 1 addition & 0 deletions uploadedFiles/exports/Pune-Diploma-1714382814.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
"email","Specialization","SL No","Year Of Passing","Course Code","Date","Course Name","Student Name","email"
1 change: 1 addition & 0 deletions uploadedFiles/exports/aisop-1711528037.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
"email","name"
1 change: 1 addition & 0 deletions uploadedFiles/exports/aiusuay-1710932762.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
"email","name"
1 change: 1 addition & 0 deletions uploadedFiles/exports/jdflsa-1712317558.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
"email","name"
1 change: 1 addition & 0 deletions uploadedFiles/exports/kjnds-1715681432.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
"email","name"
1 change: 1 addition & 0 deletions uploadedFiles/exports/uusyrra-1710330929.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
"email","name"

0 comments on commit 838f806

Please sign in to comment.