diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2018-05-10 17:10:19 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2018-05-10 17:10:19 -0700 |
commit | c6422b49b8b946386ca1068ec6887bbf07a8b166 (patch) | |
tree | c6c082c0875edfbb0eeb7379813e01024fa74367 /golang/gen/restapi/embedded_spec.go | |
parent | 8827f2a643b5dee773869eccb5d839f636b2295d (diff) | |
download | fatcat-c6422b49b8b946386ca1068ec6887bbf07a8b166.tar.gz fatcat-c6422b49b8b946386ca1068ec6887bbf07a8b166.zip |
404 example
Diffstat (limited to 'golang/gen/restapi/embedded_spec.go')
-rw-r--r-- | golang/gen/restapi/embedded_spec.go | 28 |
1 files changed, 26 insertions, 2 deletions
diff --git a/golang/gen/restapi/embedded_spec.go b/golang/gen/restapi/embedded_spec.go index 6a6cf356..4e08594f 100644 --- a/golang/gen/restapi/embedded_spec.go +++ b/golang/gen/restapi/embedded_spec.go @@ -72,6 +72,12 @@ func init() { "$ref": "#/definitions/creator_entity" } }, + "404": { + "description": "no such creator", + "schema": { + "$ref": "#/definitions/error" + } + }, "default": { "description": "generic error response", "schema": { @@ -114,7 +120,13 @@ func init() { "type": "string" }, "state": { - "type": "string" + "type": "string", + "enum": [ + "wip", + "active", + "redirect", + "deleted" + ] } } }, @@ -186,6 +198,12 @@ func init() { "$ref": "#/definitions/creator_entity" } }, + "404": { + "description": "no such creator", + "schema": { + "$ref": "#/definitions/error" + } + }, "default": { "description": "generic error response", "schema": { @@ -228,7 +246,13 @@ func init() { "type": "string" }, "state": { - "type": "string" + "type": "string", + "enum": [ + "wip", + "active", + "redirect", + "deleted" + ] } } }, |