Repository: avro Updated Branches: refs/heads/master 52d12bbc1 -> 0e24e2ab4
Added a missing file Project: http://git-wip-us.apache.org/repos/asf/avro/repo Commit: http://git-wip-us.apache.org/repos/asf/avro/commit/0e24e2ab Tree: http://git-wip-us.apache.org/repos/asf/avro/tree/0e24e2ab Diff: http://git-wip-us.apache.org/repos/asf/avro/diff/0e24e2ab Branch: refs/heads/master Commit: 0e24e2ab452ff85641cad8e8b74da81890fb6d03 Parents: 52d12bb Author: Thiruvalluvan M. G <[email protected]> Authored: Tue Feb 21 07:10:01 2017 +0530 Committer: Thiruvalluvan M G <[email protected]> Committed: Tue Feb 21 07:10:01 2017 +0530 ---------------------------------------------------------------------- lang/c++/jsonschemas/primitivetypes | 15 +++++++++++++++ 1 file changed, 15 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/avro/blob/0e24e2ab/lang/c++/jsonschemas/primitivetypes ---------------------------------------------------------------------- diff --git a/lang/c++/jsonschemas/primitivetypes b/lang/c++/jsonschemas/primitivetypes new file mode 100644 index 0000000..0512323 --- /dev/null +++ b/lang/c++/jsonschemas/primitivetypes @@ -0,0 +1,15 @@ +{ + "name": "TestPrimitiveTypes", + "type": "record", + "fields": [ + { "name": "Null", "type": "null" }, + { "name": "Boolean", "type": "boolean" }, + { "name": "Int", "type": "int" }, + { "name": "Long", "type": "long" }, + { "name": "Float", "type": "float" }, + { "name": "Double", "type": "double" }, + { "name": "Bytes", "type": "bytes" }, + { "name": "String", "type": "string" }, + { "name": "SecondNull", "type": "null" } + ] +}
