go-types-to-jsonschema

command module
v0.0.0-...-dfd0391 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 9, 2019 License: Apache-2.0 Imports: 3 Imported by: 0

README

Go annotated types to JSON schema converter

Go Report Card Go Doc

Command-line tool to convert annotated go types specified in a package to json schema. It parses the Go file into an abstract-syntax-tree and generates its corresponding json-schema output. If any of the types depend on types from other packages, they will also be recursively converted.

How it works

The tool uses go parser to parse all the go files in the provided package. If it accesses types from other packages, it recursively processes those as well. It uses go get and go list commands to fetch and list files in a package. It is smart enough to not process types that are not relevant.

Example

Package contents
package types

type Person struct {
  Name     string    `yaml:"name"`
  Age      int       `yaml:"age,omitempty"`
  Address  *Address  `yaml:"address,omitempty"`
}

type Car struct {
  Make     string    `json:"make"`
}

type Address struct {
}
Command to run
$> go build
$> go-types-to-json --package-name="github.com/pkg/name" --output-file="output.json" --types="Person,Car"
Contents of output.json
{
  "definitions": {
    "Person": {
      "properties": {
        "name": {
          "type": "string"
        },
        "age": {
          "type": "number"
        },
        "address": {
          "$ref": "#/definitions/Address"
        }
      },
      "required": ["name"]
    },
    "Address": { },
    "Car": {
      "properties": {
        "make": {
          "type": "string"
        }
      },
      "required": ["make"]
    }
  }
}

Note: This is not an official Google product

Documentation

The Go Gopher

There is no documentation for this package.

Directories

Path Synopsis
pkg
crd

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL