34 lines
651 B
JSON
34 lines
651 B
JSON
|
{
|
||
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
||
|
"type": "object",
|
||
|
"properties": {
|
||
|
"id": {
|
||
|
"type": [ "null", "string" ]
|
||
|
},
|
||
|
"name": {
|
||
|
"type": [ "null", "string" ]
|
||
|
},
|
||
|
"username": {
|
||
|
"type": [ "null", "string" ]
|
||
|
},
|
||
|
"created_at": {
|
||
|
"type": [ "null", "string" ]
|
||
|
},
|
||
|
"location": {
|
||
|
"type": [ "null", "string" ]
|
||
|
},
|
||
|
"url": {
|
||
|
"type": [ "null", "string" ]
|
||
|
},
|
||
|
"description": {
|
||
|
"type": [ "null", "string" ]
|
||
|
},
|
||
|
"verified": {
|
||
|
"type": [ "null", "boolean" ]
|
||
|
},
|
||
|
"verified_type": {
|
||
|
"type": [ "null", "string" ]
|
||
|
}
|
||
|
}
|
||
|
}
|