diff options
author | Stephen Finucane <stephen@that.guru> | 2020-04-16 11:48:29 +0100 |
---|---|---|
committer | Stephen Finucane <stephen@that.guru> | 2020-04-18 11:57:28 +0100 |
commit | d11c8e25b982ebc9697ab725a53585781816bba1 (patch) | |
tree | 5ea94fb54b9f8a84dc9bb3c7704aad37fc09bef4 /docs/api/schemas/v1.2 | |
parent | d9d8968c7c6afbbdac1fb81c34a08bc2dc6e6b8b (diff) | |
download | patchwork-d11c8e25b982ebc9697ab725a53585781816bba1.tar patchwork-d11c8e25b982ebc9697ab725a53585781816bba1.tar.gz |
docs: Resolve issues with 'comments'
Each header in the 'headers' field can be either a string or a list
value.
Signed-off-by: Stephen Finucane <stephen@that.guru>
Diffstat (limited to 'docs/api/schemas/v1.2')
-rw-r--r-- | docs/api/schemas/v1.2/patchwork.yaml | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/docs/api/schemas/v1.2/patchwork.yaml b/docs/api/schemas/v1.2/patchwork.yaml index e02c612..f2ee2a8 100644 --- a/docs/api/schemas/v1.2/patchwork.yaml +++ b/docs/api/schemas/v1.2/patchwork.yaml @@ -1518,9 +1518,15 @@ components: minLength: 1 headers: title: Headers - type: array - items: - type: string + anyOf: + - type: object + additionalProperties: + type: array + items: + type: string + - type: object + additionalProperties: + type: string readOnly: true CoverLetterList: type: object |