mirror of
https://github.com/lifegpc/pixiv_downloader.git
synced 2026-06-06 13:59:08 +08:00
29 lines
862 B
JSON
29 lines
862 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema",
|
|
"$id": "https://github.com/lifegpc/pixiv_downloader/raw/master/doc/api/auth/user/add.json",
|
|
"title": "Result object",
|
|
"type": "object",
|
|
"properties": {
|
|
"ok": {
|
|
"description": "Whether the request was successful",
|
|
"type": "boolean"
|
|
},
|
|
"code": {
|
|
"description": "Error code, 0 if it was successful",
|
|
"type": "integer"
|
|
},
|
|
"msg": {
|
|
"description": "Error message",
|
|
"type": "string"
|
|
},
|
|
"debug_msg": {
|
|
"description": "Error message contains debug information"
|
|
},
|
|
"result": {
|
|
"$ref": "user.json",
|
|
"description": "The information about the new user or modified user"
|
|
}
|
|
},
|
|
"required": ["ok", "code"]
|
|
}
|