Files
linguist/samples/JSON/http_response.avsc
John Gardner 2b65318a61 Register 12 new JSON filenames/extensions (#4053)
Added:
* .avsc
* .gltf
* .htmlhintrc
* .jscsrc
* .jslintrc
* .jsonl
* .tern-config
* .tern-project
* .tfstate
* .tfstate.backup
* .webapp
* .webmanifest
2018-03-02 20:33:47 +11:00

19 lines
704 B
JSON

{
"type": "record",
"name": "Response",
"namespace": "org.rflow.message.data.http",
"aliases": [],
"fields": [
{"name": "client_ip", "type": ["string", "null"]},
{"name": "client_port", "type": ["int", "null"]},
{"name": "server_ip", "type": ["string", "null"]},
{"name": "server_port", "type": ["int", "null"]},
{"name": "protocol", "type": "string"},
{"name": "status_code", "type": "int"},
{"name": "status_reason_phrase", "type": "string"},
{"name": "headers", "type": {"type": "map", "values": "string"}},
{"name": "content", "type": "bytes"}
]
}