• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

.github/H21-Feb-2021-

fixtures/H21-Feb-2021-

internal/H21-Feb-2021-

.codecov.ymlH A D21-Feb-202166

.gitignoreH A D21-Feb-202150

.golangci.ymlH A D21-Feb-2021959

.travis.ymlH A D21-Feb-20211.9 KiB

CODE_OF_CONDUCT.mdH A D21-Feb-20213.2 KiB

LICENSEH A D21-Feb-202111.1 KiB

README.mdH A D21-Feb-20211.7 KiB

analyzer.goH A D21-Feb-202129.3 KiB

analyzer_test.goH A D21-Feb-202129.6 KiB

appveyor.ymlH A D21-Feb-20211.3 KiB

debug.goH A D21-Feb-2021762

doc.goH A D21-Feb-20211.6 KiB

doc_test.goH A D21-Feb-20211.6 KiB

fixer.goH A D21-Feb-20212.3 KiB

fixer_test.goH A D21-Feb-20213.3 KiB

flatten.goH A D21-Feb-202124.1 KiB

flatten_name.goH A D21-Feb-20217 KiB

flatten_name_test.goH A D21-Feb-202115.8 KiB

flatten_options.goH A D21-Feb-20212.5 KiB

flatten_test.goH A D21-Feb-202142 KiB

go.modH A D21-Feb-2021287

go.sumH A D21-Feb-202132 KiB

helpers_spec_test.goH A D21-Feb-20212.3 KiB

mixin.goH A D21-Feb-202112 KiB

mixin_test.goH A D21-Feb-20213.9 KiB

schema.goH A D21-Feb-20216.5 KiB

schema_test.goH A D21-Feb-202111.6 KiB

spec_test.goH A D21-Feb-20216 KiB

README.md

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[![Go Report Card](https://goreportcard.com/badge/github.com/go-openapi/analysis)](https://goreportcard.com/report/github.com/go-openapi/analysis)
10
11
12A foundational library to analyze an OAI specification document for easier reasoning about the content.
13
14## What's inside?
15
16* A analyzer providing methods to walk the functional content of a specification
17* A spec flattener producing a self-contained document bundle, while preserving `$ref`s
18* A spec merger ("mixin") to merge several spec documents into a primary spec
19* A spec "fixer" ensuring that response descriptions are non empty
20
21[Documentation](https://godoc.org/github.com/go-openapi/analysis)
22
23## FAQ
24
25* Does this library support OpenAPI 3?
26
27> No.
28> This package currently only supports OpenAPI 2.0 (aka Swagger 2.0).
29> There is no plan to make it evolve toward supporting OpenAPI 3.x.
30> This [discussion thread](https://github.com/go-openapi/spec/issues/21) relates the full story.
31>
32