diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2018-05-09 18:31:21 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2018-05-09 18:31:21 -0700 |
commit | f36836a6399022338ec02849da42f6f518c7a54f (patch) | |
tree | fc9005e6723ad124acf3e5717280bf2ee77c4813 /fatcat-go/restapi/embedded_spec.go | |
parent | cc57215fc1c5e56e8c745ea76135e2d170f585c7 (diff) | |
download | fatcat-f36836a6399022338ec02849da42f6f518c7a54f.tar.gz fatcat-f36836a6399022338ec02849da42f6f518c7a54f.zip |
first swagger generation
Diffstat (limited to 'fatcat-go/restapi/embedded_spec.go')
-rw-r--r-- | fatcat-go/restapi/embedded_spec.go | 250 |
1 files changed, 250 insertions, 0 deletions
diff --git a/fatcat-go/restapi/embedded_spec.go b/fatcat-go/restapi/embedded_spec.go new file mode 100644 index 00000000..1b193eb9 --- /dev/null +++ b/fatcat-go/restapi/embedded_spec.go @@ -0,0 +1,250 @@ +// Code generated by go-swagger; DO NOT EDIT. + +package restapi + +// This file was generated by the swagger tool. +// Editing this file might prove futile when you re-run the swagger generate command + +import ( + "encoding/json" +) + +var ( + // SwaggerJSON embedded version of the swagger document used at generation time + SwaggerJSON json.RawMessage + // FlatSwaggerJSON embedded flattened version of the swagger document used at generation time + FlatSwaggerJSON json.RawMessage +) + +func init() { + SwaggerJSON = json.RawMessage([]byte(`{ + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "schemes": [ + "http", + "https" + ], + "swagger": "2.0", + "info": { + "description": "A scalable, versioned, API-oriented catalog of bibliographic entities and file metadata", + "title": "fatcat", + "version": "0.1.0" + }, + "host": "api.fatcat.wiki", + "basePath": "/v0", + "paths": { + "/creator": { + "post": { + "parameters": [ + { + "name": "body", + "in": "body", + "schema": { + "$ref": "#/definitions/creator_entity" + } + } + ], + "responses": { + "201": { + "description": "created", + "schema": { + "$ref": "#/definitions/creator_entity" + } + }, + "default": { + "description": "generic error response", + "schema": { + "$ref": "#/definitions/error" + } + } + } + } + }, + "/creator/{id}": { + "get": { + "responses": { + "200": { + "description": "fetch a single creator by id", + "schema": { + "$ref": "#/definitions/creator_entity" + } + }, + "default": { + "description": "generic error response", + "schema": { + "$ref": "#/definitions/error" + } + } + } + }, + "parameters": [ + { + "type": "string", + "name": "id", + "in": "path", + "required": true + } + ] + } + }, + "definitions": { + "creator_entity": { + "type": "object", + "required": [ + "ident", + "state" + ], + "properties": { + "ident": { + "type": "string" + }, + "name": { + "type": "string" + }, + "orcid": { + "type": "string" + }, + "redirect": { + "type": "string" + }, + "revision": { + "type": "string" + }, + "state": { + "type": "string" + } + } + }, + "error": { + "type": "object", + "required": [ + "message" + ], + "properties": { + "message": { + "type": "string" + } + } + } + } +}`)) + FlatSwaggerJSON = json.RawMessage([]byte(`{ + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "schemes": [ + "http", + "https" + ], + "swagger": "2.0", + "info": { + "description": "A scalable, versioned, API-oriented catalog of bibliographic entities and file metadata", + "title": "fatcat", + "version": "0.1.0" + }, + "host": "api.fatcat.wiki", + "basePath": "/v0", + "paths": { + "/creator": { + "post": { + "parameters": [ + { + "name": "body", + "in": "body", + "schema": { + "$ref": "#/definitions/creator_entity" + } + } + ], + "responses": { + "201": { + "description": "created", + "schema": { + "$ref": "#/definitions/creator_entity" + } + }, + "default": { + "description": "generic error response", + "schema": { + "$ref": "#/definitions/error" + } + } + } + } + }, + "/creator/{id}": { + "get": { + "responses": { + "200": { + "description": "fetch a single creator by id", + "schema": { + "$ref": "#/definitions/creator_entity" + } + }, + "default": { + "description": "generic error response", + "schema": { + "$ref": "#/definitions/error" + } + } + } + }, + "parameters": [ + { + "type": "string", + "name": "id", + "in": "path", + "required": true + } + ] + } + }, + "definitions": { + "creator_entity": { + "type": "object", + "required": [ + "ident", + "state" + ], + "properties": { + "ident": { + "type": "string" + }, + "name": { + "type": "string" + }, + "orcid": { + "type": "string" + }, + "redirect": { + "type": "string" + }, + "revision": { + "type": "string" + }, + "state": { + "type": "string" + } + } + }, + "error": { + "type": "object", + "required": [ + "message" + ], + "properties": { + "message": { + "type": "string" + } + } + } + } +}`)) +} |