60 lines
1.6 KiB
Plaintext
60 lines
1.6 KiB
Plaintext
{
|
|
"$schema": "https://json-schema.org/draft/2019-09/schema",
|
|
"$id": "http://example.com/example.json",
|
|
"type": "object",
|
|
"required": [
|
|
"id",
|
|
"jsonrpc",
|
|
"result"
|
|
],
|
|
"properties": {
|
|
"id": {
|
|
"type": "string"
|
|
},
|
|
"jsonrpc": {
|
|
"type": "string"
|
|
},
|
|
"result": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "object",
|
|
"required": [
|
|
"emoji",
|
|
"id",
|
|
"isPopular",
|
|
"isToken",
|
|
"name",
|
|
"shortName",
|
|
"symbol",
|
|
"unicode"
|
|
],
|
|
"properties": {
|
|
"emoji": {
|
|
"type": "string"
|
|
},
|
|
"id": {
|
|
"type": "string"
|
|
},
|
|
"isPopular": {
|
|
"type": "boolean"
|
|
},
|
|
"isToken": {
|
|
"type": "boolean"
|
|
},
|
|
"name": {
|
|
"type": "string"
|
|
},
|
|
"shortName": {
|
|
"type": "string"
|
|
},
|
|
"symbol": {
|
|
"type": "string"
|
|
},
|
|
"unicode": {
|
|
"type": "string"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |