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

..03-May-2022-

.github/H07-Feb-2021-

fixtures/H07-Feb-2021-

internal/H07-Feb-2021-

.codecov.ymlH A D07-Feb-202166

.gitignoreH A D07-Feb-202150

.golangci.ymlH A D07-Feb-2021907

.travis.ymlH A D07-Feb-20211 KiB

CODE_OF_CONDUCT.mdH A D07-Feb-20213.2 KiB

LICENSEH A D07-Feb-202111.1 KiB

README.mdH A D07-Feb-20211.8 KiB

analyzer.goH A D07-Feb-202129.1 KiB

analyzer_test.goH A D07-Feb-202131 KiB

appveyor.ymlH A D07-Feb-20211.3 KiB

debug.goH A D07-Feb-20211.3 KiB

debug_test.goH A D07-Feb-20211.3 KiB

doc.goH A D07-Feb-20211.6 KiB

doc_test.goH A D07-Feb-20211.6 KiB

fixer.goH A D07-Feb-20212.3 KiB

fixer_test.goH A D07-Feb-20213.2 KiB

flatten.goH A D07-Feb-202152.8 KiB

flatten_test.goH A D07-Feb-202175 KiB

go.modH A D07-Feb-2021287

go.sumH A D07-Feb-202131.9 KiB

helpers_spec_test.goH A D07-Feb-20212.3 KiB

helpers_test.goH A D07-Feb-2021828

mixin.goH A D07-Feb-202111.9 KiB

mixin_test.goH A D07-Feb-20214.8 KiB

schema.goH A D07-Feb-20216 KiB

schema_test.goH A D07-Feb-202111.7 KiB

spec_test.goH A D07-Feb-20216.1 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[![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