Skip to content

Commit

Permalink
add home schema
Browse files Browse the repository at this point in the history
  • Loading branch information
kayhhh committed Apr 29, 2024
1 parent 583aa9c commit c35de9f
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions social/dwn/schemas/home.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://wired-protocol.org/v0/schemas/home.json",
"type": "object",
"properties": {
"world": {
"type": "object",
"properties": {
"did": {
"type": "string"
},
"record": {
"type": "string"
}
},
"required": ["did", "record"]
}
},
"required": ["world"]
}

0 comments on commit c35de9f

Please sign in to comment.