16 lines
386 B
Plaintext
16 lines
386 B
Plaintext
syntax = "v1"
|
|
|
|
type ErrorDetail {
|
|
BizCode string `json:"biz_code,optional"`
|
|
Scope int64 `json:"scope,optional"`
|
|
Category int64 `json:"category,optional"`
|
|
Detail int64 `json:"detail,optional"`
|
|
}
|
|
|
|
type Status {
|
|
Code int64 `json:"code"`
|
|
Message string `json:"message"`
|
|
Data interface{} `json:"data,optional"`
|
|
Error ErrorDetail `json:"error,optional"`
|
|
}
|