swagger: "2.0" info: version: "1.0.0" title: Swagger API host: qap.api.wiley.com basePath: /onlinelibrary/content/v1 schemes: - http - https consumes: - application/json produces: - application/json paths: /articles?term=blood : x-swagger-router-controller: hello_world get: description: Returns search term related article metadata parameters: - name: Apikey in: header description: API key required: false type: string format: string default: xxxx operationId: search responses: "200": description: Success schema: $ref: "#/definitions/feed" default: description: Error schema: $ref: "#/definitions/ErrorResponse" definitions: entry: required: - id properties: id: type: string title: type: string categories: type: array items: $ref: "#/definitions/category" authors: type: array items: $ref: "#/definitions/author" updated: type: string doi: type: string page-range: type: string starting-page: type: string ending-page: type: string rights: type: string first-publish-online-date: type: string first-publish-display-date: type: string first-published-date: type: string publication-name: type: string links: type: array items: $ref: "#/definitions/link" volume: type: string number: type: string issue-cover-display-date: type: string issue-cover-date: type: string content: type: string category: properties: term: type: string scheme: type: string author: properties: name: type: string link: properties: rel: type: string text: type: string feed: required: - id properties: id: type: string search-results: type: string updated: type: string term-expression: type: string hit-count: type: string start: type: string count: type: string order-by: type: string order: type: string entries: type: array items: $ref: "#/definitions/entry" ErrorResponse: required: - id properties: id: type: string