我正在尝试创建数据结构
# Data Structures
## Incorrect Credentials (string)
- `Insufficient privileges.`
这是它将被使用的地方:
+ Response 401 (application/vnd.api+json)
Not allowed.
+ Attributes (object)
+ errors (array[Incorrect Credentials])
这是它的输出。我正试图取代“Hello,world!” “权限不足。”。
答案 0 :(得分:0)
只需将字符串更改为enum
即可解决问题。从原始类型继承时,您无法设置默认值。
# API
# A [GET /]
+ Response 401 (application/vnd.api+json)
Not allowed.
+ Attributes (object)
+ errors (array[Incorrect Credentials])
# Data Structures
## Incorrect Credentials (enum)
- Insufficient privileges.