Skip to content

Commit

Permalink
Add Identity Schema (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
mkchungs authored Nov 30, 2023
1 parent 179dafb commit 06798d4
Showing 1 changed file with 97 additions and 0 deletions.
97 changes: 97 additions & 0 deletions schema/identity.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,97 @@
[
{
"mode": "REQUIRED",
"name": "pubkey",
"type": "STRING"
},
{
"mode": "REQUIRED",
"name": "polkadot_ss58",
"type": "STRING"
},
{
"mode": "REQUIRED",
"name": "kusama_ss58",
"type": "STRING"
},
{
"mode": "NULLABLE",
"name": "polkadot_parent",
"type": "STRING"
},
{
"mode": "NULLABLE",
"name": "polkadot_is_subidentity",
"type": "BOOLEAN"
},
{
"mode": "NULLABLE",
"name": "polkadot_fullname",
"type": "STRING"
},
{
"mode": "NULLABLE",
"name": "polkadot_name",
"type": "STRING"
},
{
"mode": "NULLABLE",
"name": "polkadot_subname",
"type": "STRING"
},
{
"mode": "NULLABLE",
"name": "polkadot_info",
"type": "JSON"
},
{
"mode": "NULLABLE",
"name": "polkadot_judgements",
"type": "JSON"
},
{
"mode": "NULLABLE",
"name": "polkadot_judgement_verified",
"type": "BOOLEAN"
},
{
"mode": "NULLABLE",
"name": "kusama_parent",
"type": "STRING"
},
{
"mode": "NULLABLE",
"name": "kusama_is_subidentity",
"type": "BOOLEAN"
},
{
"mode": "NULLABLE",
"name": "kusama_fullname",
"type": "STRING"
},
{
"mode": "NULLABLE",
"name": "kusama_name",
"type": "STRING"
},
{
"mode": "NULLABLE",
"name": "kusama_subname",
"type": "STRING"
},
{
"mode": "NULLABLE",
"name": "kusama_info",
"type": "JSON"
},
{
"mode": "NULLABLE",
"name": "kusama_judgements",
"type": "JSON"
},
{
"mode": "NULLABLE",
"name": "kusama_judgement_verified",
"type": "BOOLEAN"
}
]

0 comments on commit 06798d4

Please sign in to comment.