npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

openapi-aws-decorator

v0.0.2

Published

This decorates OpenAPI 3.0.X files with AWS APIGateway OpenAPI tags: https://docs.aws.amazon.com/apigateway/latest/developerguide/api-gateway-documenting-api-content-representation.html

Downloads

8

Readme

OpenAPI-AWS-Decorator

This will decorate an Open API v3 document with specific x-amazon- OpenAPI syntax.

Install

To install: Using npm:

npm install openapi-aws-decorator

Usage

x-amazon-apigateway-documentation

To decorate an OpenAPI file with x-amazon-apigateway-documentation, which are Documentation Parts you can run this code:

const OpenAPIDecorator = require("openapi-aws-decorator");

const openAPI = {
  openapi: "3.0.1",
  info: {
    description:
      "The Data Set API (DSAPI) allows the public users to discover and search USPTO exported data sets. This is a generic API that allows USPTO users to make any CSV based data files searchable through API. With the help of GET call, it returns the list of data fields that are searchable. With the help of POST call, data can be fetched based on the filters on the field names. Please note that POST call is used to search the actual data. The reason for the POST call is that it allows users to specify any complex search criteria without worry about the GET size limitations as well as encoding of the input parameters.",
    version: "1.0.0",
    title: "USPTO Data Set API",
    contact: {
      name: "Open Data Portal",
      url: "https://developer.uspto.gov",
      email: "[email protected]",
    },
  },
  paths: {
    "/": {
      get: {
        operationId: "list-data-sets",
        summary: "List available data sets",
        responses: {
          200: {
            description: "Returns a list of data sets",
            content: {
              "application/json": {
                schema: {
                  $ref: "#/components/schemas/responseData",
                },
              },
            },
          },
        },
      },
    },
  },
  components: {
    schemas: {
      responseData: {
        type: "string",
      },
    },
  },
};

const openAPIDecorator = new OpenAPIDecorator(openAPI);
openAPIDecorator.decorate();

console.log(openAPIDecorator.openAPI);

This will end up with the original OpenAPI document containing a new property section of x-amazon-apigateway-documentation with the various Documentation Parts listed out.

{
  "openapi": "3.0.1",
  "info": {
    "description": "The Data Set API (DSAPI) allows the public users to discover and search USPTO exported data sets. This is a generic API that allows USPTO users to make any CSV based data files searchable through API. With the help of GET call, it returns the list of data fields that are searchable. With the help of POST call, data can be fetched based on the filters on the field names. Please note that POST call is used to search the actual data. The reason for the POST call is that it allows users to specify any complex search criteria without worry about the GET size limitations as well as encoding of the input parameters.",
    "version": "1.0.0",
    "title": "USPTO Data Set API",
    "contact": {
      "name": "Open Data Portal",
      "url": "https://developer.uspto.gov",
      "email": "[email protected]"
    }
  },
  ...
  "x-amazon-apigateway-documentation": {
    "version": "1.0.0",
    "documentationParts": [
      {
        "location": { "type": "API" },
        "properties": {
          "description": "The Data Set API (DSAPI) allows the public users to discover and search USPTO exported data sets. This is a generic API that allows USPTO users to make any CSV based data files searchable through API. With the help of GET call, it returns the list of data fields that are searchable. With the help of POST call, data can be fetched based on the filters on the field names. Please note that POST call is used to search the actual data. The reason for the POST call is that it allows users to specify any complex search criteria without worry about the GET size limitations as well as encoding of the input parameters.",
          "version": "1.0.0",
          "title": "USPTO Data Set API",
          "contact": {
            "name": "Open Data Portal",
            "url": "https://developer.uspto.gov",
            "email": "[email protected]"
          }
        }
      },
      { "location": { "type": "RESOURCE", "path": "/" }, "properties": {} },
      {
        "location": { "type": "METHOD", "path": "/", "method": "get" },
        "properties": { "summary": "List available data sets" }
      },
      {
        "location": {
          "path": "/",
          "method": "get",
          "statusCode": "200",
          "type": "RESPONSE"
        },
        "properties": { "description": "Returns a list of data sets" }
      }
    ]
  }
}

You can then use the AWS CLI v2 command to upload the documentation parts:

aws apigateway import-documentation-parts --rest-api-id your-rest-api-id --body fileb://openAPI.json

This asusmes that you have saved the augmented OpenAPI to a file called openAPI.json and that you know your rest-api-id.