仅包含字符串的数据结构

时间:2017-02-06 12:01:12

标签: apiblueprint

我正在尝试创建数据结构

# Data Structures

## Incorrect Credentials (string) 
    - `Insufficient privileges.`

这是它将被使用的地方:

+ Response 401 (application/vnd.api+json)

    Not allowed.

    + Attributes (object)
        + errors (array[Incorrect Credentials])

这是它的输出。我正试图取代“Hello,world!” “权限不足。”。

enter image description here

1 个答案:

答案 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.