diff options
author | Stephen Finucane <stephen@that.guru> | 2020-04-16 00:51:17 +0100 |
---|---|---|
committer | Stephen Finucane <stephen@that.guru> | 2020-04-18 11:57:28 +0100 |
commit | 9da843141155c1f0835f671bc473e7c7424244e3 (patch) | |
tree | e0ddb2a4ae8b9b30924a7707ffa692b520a3f56f /docs/api/schemas/v1.0 | |
parent | cdceccaa939a08190dc438fe3614659c3090aa8e (diff) | |
download | patchwork-9da843141155c1f0835f671bc473e7c7424244e3.tar patchwork-9da843141155c1f0835f671bc473e7c7424244e3.tar.gz |
docs: Resolve issues with 'covers'
Two issues to correct:
- Each header in the 'headers' field can be either a string or a list
value.
- We state that the 'content' field will always have content but our
tests were configuring otherwise.
Signed-off-by: Stephen Finucane <stephen@that.guru>
Diffstat (limited to 'docs/api/schemas/v1.0')
-rw-r--r-- | docs/api/schemas/v1.0/patchwork.yaml | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/docs/api/schemas/v1.0/patchwork.yaml b/docs/api/schemas/v1.0/patchwork.yaml index a2b1b85..680d4d6 100644 --- a/docs/api/schemas/v1.0/patchwork.yaml +++ b/docs/api/schemas/v1.0/patchwork.yaml @@ -1386,9 +1386,15 @@ components: - properties: headers: title: Headers - type: array - items: - type: string + anyOf: + - type: object + additionalProperties: + type: array + items: + type: string + - type: object + additionalProperties: + type: string readOnly: true content: title: Content |