代码拉取完成,页面将自动刷新
// 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/keyauth.api.v1+json"
],
"produces": [
"application/keyauth.api.v1+json"
],
"schemes": [
"http"
],
"swagger": "2.0",
"info": {
"title": "keyauth debug",
"version": "0.3.0"
},
"basePath": "/api",
"paths": {
"/customers": {
"get": {
"tags": [
"customers"
],
"summary": "Get a customerId given an SSN",
"operationId": "getId",
"parameters": [
{
"name": "info",
"in": "body",
"schema": {
"$ref": "#/definitions/social_id"
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/customer"
}
},
"401": {
"description": "unauthorized",
"schema": {
"$ref": "#/definitions/error"
}
},
"404": {
"description": "resource not found",
"schema": {
"$ref": "#/definitions/error"
}
},
"default": {
"description": "error",
"schema": {
"$ref": "#/definitions/error"
}
}
}
},
"post": {
"tags": [
"customers"
],
"summary": "Create a new customer to track",
"operationId": "create",
"parameters": [
{
"name": "info",
"in": "body",
"schema": {
"$ref": "#/definitions/customer"
}
}
],
"responses": {
"201": {
"description": "created",
"schema": {
"$ref": "#/definitions/customer"
}
},
"default": {
"description": "error",
"schema": {
"$ref": "#/definitions/error"
}
}
}
}
}
},
"definitions": {
"customer": {
"type": "object",
"required": [
"customerId",
"name",
"surname",
"ssn",
"fipsCode"
],
"properties": {
"agentId": {
"description": "agent associated with this customer",
"type": "integer",
"format": "int32"
},
"customerId": {
"description": "internal identifier of a customer",
"type": "integer",
"format": "int64",
"readOnly": true
},
"fipsCode": {
"type": "string",
"format": "string",
"minLength": 1
},
"name": {
"type": "string",
"format": "string",
"minLength": 1
},
"ssn": {
"description": "Lookup identifier to find a customer in the system",
"type": "string",
"format": "string",
"minLength": 11
},
"surname": {
"type": "string",
"format": "string",
"minLength": 1
}
}
},
"error": {
"type": "object",
"required": [
"message"
],
"properties": {
"code": {
"type": "integer",
"format": "int64"
},
"fields": {
"type": "string"
},
"message": {
"type": "string"
}
}
},
"principal": {
"type": "string"
},
"social_id": {
"type": "object",
"required": [
"ssn"
],
"properties": {
"ssn": {
"type": "string",
"format": "string",
"minLength": 11
}
}
}
},
"securityDefinitions": {
"key": {
"type": "apiKey",
"name": "x-token",
"in": "header"
}
},
"security": [
{
"key": null
}
]
}`))
FlatSwaggerJSON = json.RawMessage([]byte(`{
"consumes": [
"application/keyauth.api.v1+json"
],
"produces": [
"application/keyauth.api.v1+json"
],
"schemes": [
"http"
],
"swagger": "2.0",
"info": {
"title": "keyauth debug",
"version": "0.3.0"
},
"basePath": "/api",
"paths": {
"/customers": {
"get": {
"tags": [
"customers"
],
"summary": "Get a customerId given an SSN",
"operationId": "getId",
"parameters": [
{
"name": "info",
"in": "body",
"schema": {
"$ref": "#/definitions/social_id"
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/customer"
}
},
"401": {
"description": "unauthorized",
"schema": {
"$ref": "#/definitions/error"
}
},
"404": {
"description": "resource not found",
"schema": {
"$ref": "#/definitions/error"
}
},
"default": {
"description": "error",
"schema": {
"$ref": "#/definitions/error"
}
}
}
},
"post": {
"tags": [
"customers"
],
"summary": "Create a new customer to track",
"operationId": "create",
"parameters": [
{
"name": "info",
"in": "body",
"schema": {
"$ref": "#/definitions/customer"
}
}
],
"responses": {
"201": {
"description": "created",
"schema": {
"$ref": "#/definitions/customer"
}
},
"default": {
"description": "error",
"schema": {
"$ref": "#/definitions/error"
}
}
}
}
}
},
"definitions": {
"customer": {
"type": "object",
"required": [
"customerId",
"name",
"surname",
"ssn",
"fipsCode"
],
"properties": {
"agentId": {
"description": "agent associated with this customer",
"type": "integer",
"format": "int32"
},
"customerId": {
"description": "internal identifier of a customer",
"type": "integer",
"format": "int64",
"readOnly": true
},
"fipsCode": {
"type": "string",
"format": "string",
"minLength": 1
},
"name": {
"type": "string",
"format": "string",
"minLength": 1
},
"ssn": {
"description": "Lookup identifier to find a customer in the system",
"type": "string",
"format": "string",
"minLength": 11
},
"surname": {
"type": "string",
"format": "string",
"minLength": 1
}
}
},
"error": {
"type": "object",
"required": [
"message"
],
"properties": {
"code": {
"type": "integer",
"format": "int64"
},
"fields": {
"type": "string"
},
"message": {
"type": "string"
}
}
},
"principal": {
"type": "string"
},
"social_id": {
"type": "object",
"required": [
"ssn"
],
"properties": {
"ssn": {
"type": "string",
"format": "string",
"minLength": 11
}
}
}
},
"securityDefinitions": {
"key": {
"type": "apiKey",
"name": "x-token",
"in": "header"
}
},
"security": [
{
"key": []
}
]
}`))
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。