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

..03-May-2022-

.github/H21-Feb-2021-11884

fixtures/H21-Feb-2021-48,94948,322

internal/H21-Feb-2021-1,5661,154

.codecov.ymlH A D21-Feb-202166 65

.gitignoreH A D21-Feb-202150 65

.golangci.ymlH A D21-Feb-2021959 5351

.travis.ymlH A D21-Feb-20211.9 KiB5347

CODE_OF_CONDUCT.mdH A D21-Feb-20213.2 KiB7556

LICENSEH A D21-Feb-202111.1 KiB203169

README.mdH A D21-Feb-20211.7 KiB3222

analyzer.goH A D21-Feb-202129.3 KiB1,065768

analyzer_test.goH A D21-Feb-202129.6 KiB1,025790

appveyor.ymlH A D21-Feb-20211.3 KiB3324

debug.goH A D21-Feb-2021762 246

doc.goH A D21-Feb-20211.6 KiB441

doc_test.goH A D21-Feb-20211.6 KiB5226

fixer.goH A D21-Feb-20212.3 KiB8047

fixer_test.goH A D21-Feb-20213.3 KiB11476

flatten.goH A D21-Feb-202124.1 KiB803500

flatten_name.goH A D21-Feb-20217 KiB294217

flatten_name_test.goH A D21-Feb-202115.8 KiB486416

flatten_options.goH A D21-Feb-20212.5 KiB7950

flatten_test.goH A D21-Feb-202142 KiB1,3851,088

go.modH A D21-Feb-2021287 1310

go.sumH A D21-Feb-202132 KiB346345

helpers_spec_test.goH A D21-Feb-20212.3 KiB9472

mixin.goH A D21-Feb-202112 KiB516344

mixin_test.goH A D21-Feb-20213.9 KiB9560

schema.goH A D21-Feb-20216.5 KiB257193

schema_test.goH A D21-Feb-202111.6 KiB327263

spec_test.goH A D21-Feb-20216 KiB237200

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