1# OpenAPI initiative analysis
2
3[![Build Status](https://travis-ci.org/go-openapi/analysis.svg?branch=master)](https://travis-ci.org/go-openapi/analysis)
4[![Build status](https://ci.appveyor.com/api/projects/status/x377t5o9ennm847o/branch/master?svg=true)](https://ci.appveyor.com/project/casualjim/go-openapi/analysis/branch/master)
5[![codecov](https://codecov.io/gh/go-openapi/analysis/branch/master/graph/badge.svg)](https://codecov.io/gh/go-openapi/analysis)
6[![Slack Status](https://slackin.goswagger.io/badge.svg)](https://slackin.goswagger.io)
7[![license](http://img.shields.io/badge/license-Apache%20v2-orange.svg)](https://raw.githubusercontent.com/go-openapi/analysis/master/LICENSE)
8[![Go Reference](https://pkg.go.dev/badge/github.com/go-openapi/analysis.svg)](https://pkg.go.dev/github.com/go-openapi/analysis)
9[![GolangCI](https://golangci.com/badges/github.com/go-openapi/analysis.svg)](https://golangci.com)
10[![Go Report Card](https://goreportcard.com/badge/github.com/go-openapi/analysis)](https://goreportcard.com/report/github.com/go-openapi/analysis)
11
12
13A foundational library to analyze an OAI specification document for easier reasoning about the content.
14
15## What's inside?
16
17* A analyzer providing methods to walk the functional content of a specification
18* A spec flattener producing a self-contained document bundle, while preserving `$ref`s
19* A spec merger ("mixin") to merge several spec documents into a primary spec
20* A spec "fixer" ensuring that response descriptions are non empty
21
22[Documentation](https://godoc.org/github.com/go-openapi/analysis)
23
24## FAQ
25
26* Does this library support OpenAPI 3?
27
28> No.
29> This package currently only supports OpenAPI 2.0 (aka Swagger 2.0).
30> There is no plan to make it evolve toward supporting OpenAPI 3.x.
31> This [discussion thread](https://github.com/go-openapi/spec/issues/21) relates the full story.
32>
33