An open API service indexing awesome lists of open source software.

https://github.com/liues1992/json2pbdef

generate protobuf definition from json/yaml data
https://github.com/liues1992/json2pbdef

json protobuf yaml

Last synced: 5 months ago
JSON representation

generate protobuf definition from json/yaml data

Awesome Lists containing this project

README

          


# json2pbdef
create protobuf definition from json data

# Usage

```
json2pbdef '{"msg":"hello"}'

# output
message Message {
string msg = 1;
}
```

```
json2pbdef input.txt

json2pbdef http://jsonapi.com/some_json_response

cat text.json | json2pbdef

```

# TODO
- List rules that the json data must obey
- Add more tests