mirror of https://github.com/lukechilds/docs.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
939 B
37 lines
939 B
{
|
|
"$schema": "http://json-schema.org/draft-04/schema#",
|
|
"title": "Blockstack Token File",
|
|
"description": "A file containing Blockstack profile & key delegation JWTs",
|
|
"type": "object",
|
|
"properties": {
|
|
"version": {
|
|
"description": "The unique identifier for a product",
|
|
"type": "number",
|
|
"minimum": 0
|
|
},
|
|
"profile": {
|
|
"description": "User profile",
|
|
"type": "object",
|
|
"properties": {
|
|
"header": {
|
|
|
|
},
|
|
"payload": {
|
|
"type": "object",
|
|
"properties": {
|
|
|
|
}
|
|
},
|
|
"signature": {
|
|
|
|
}
|
|
},
|
|
"required": ["header", "payload", "signature"]
|
|
},
|
|
"keys": {
|
|
"type": "object",
|
|
"minimum": 1
|
|
}
|
|
},
|
|
"required": ["version", "profile", "keys"]
|
|
}
|
|
|