All Downloads are FREE. Search and download functionalities are using the official Maven repository.

schema-provider.proto.sample_schema_defaults.avsc Maven / Gradle / Ivy

The newest version!
/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
{
  "type": "record",
  "name": "Sample",
  "namespace": "test",
  "fields": [
    {
      "name": "primitive_double",
      "type": "double",
      "default": 0.0
    },
    {
      "name": "primitive_float",
      "type": "float",
      "default": 0.0
    },
    {
      "name": "primitive_int",
      "type": "int",
      "default": 0
    },
    {
      "name": "primitive_long",
      "type": "long",
      "default": 0
    },
    {
      "name": "primitive_unsigned_int",
      "type": "long",
      "default": 0
    },
    {
      "name": "primitive_unsigned_long",
      "type": {
        "type": "fixed",
        "name": "unsigned_long",
        "namespace": "org.apache.hudi.protos",
        "size": 9,
        "logicalType": "decimal",
        "precision": 20,
        "scale": 0
      },
      "default": "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000"
    },
    {
      "name": "primitive_signed_int",
      "type": "int",
      "default": 0
    },
    {
      "name": "primitive_signed_long",
      "type": "long",
      "default": 0
    },
    {
      "name": "primitive_fixed_int",
      "type": "int",
      "default": 0
    },
    {
      "name": "primitive_fixed_long",
      "type": "long",
      "default": 0
    },
    {
      "name": "primitive_fixed_signed_int",
      "type": "int",
      "default": 0
    },
    {
      "name": "primitive_fixed_signed_long",
      "type": "long",
      "default": 0
    },
    {
      "name": "primitive_boolean",
      "type": "boolean",
      "default": false
    },
    {
      "name": "primitive_string",
      "type": {
        "type": "string",
        "avro.java.string": "String"
      },
      "default": ""
    },
    {
      "name": "primitive_bytes",
      "type": "bytes",
      "default": ""
    },
    {
      "name": "repeated_primitive",
      "type": {
        "type": "array",
        "items": "int"
      },
      "default": []
    },
    {
      "name": "map_primitive",
      "type": {
        "type": "array",
        "items": {
          "type": "record",
          "name": "MapPrimitiveEntry",
          "namespace": "test.map_primitive",
          "fields": [
            {
              "name": "key",
              "type": {
                "type": "string",
                "avro.java.string": "String"
              },
              "default": ""
            },
            {
              "name": "value",
              "type": "int",
              "default": 0
            }
          ]
        }
      },
      "default": []
    },
    {
      "name": "nested_message",
      "type": [
        "null",
        {
          "type": "record",
          "name": "Nested",
          "namespace": "test.nested_message",
          "fields": [
            {
              "name": "nested_int",
              "type": "int",
              "default": 0
            }
          ]
        }
      ],
      "default": null
    },
    {
      "name": "repeated_message",
      "type": {
        "type": "array",
        "items": {
          "type": "record",
          "name": "Nested",
          "namespace": "test.repeated_message",
          "fields": [
            {
              "name": "nested_int",
              "type": "int",
              "default": 0
            }
          ]
        }
      },
      "default": []
    },
    {
      "name": "map_message",
      "type": {
        "type": "array",
        "items": {
          "type": "record",
          "name": "MapMessageEntry",
          "namespace": "test.map_message",
          "fields": [
            {
              "name": "key",
              "type": {
                "type": "string",
                "avro.java.string": "String"
              },
              "default": ""
            },
            {
              "name": "value",
              "type": [
                "null",
                {
                  "type": "record",
                  "name": "Nested",
                  "namespace": "test.map_message.value",
                  "fields": [
                    {
                      "name": "nested_int",
                      "type": "int",
                      "default": 0
                    }
                  ]
                }
              ],
              "default": null
            }
          ]
        }
      },
      "default": []
    },
    {
      "name": "wrapped_string",
      "type": [
        "null",
        {
          "type": "string",
          "avro.java.string": "String"
        }
      ],
      "default": null
    },
    {
      "name": "wrapped_int",
      "type": [
        "null",
        "int"
      ],
      "default": null
    },
    {
      "name": "wrapped_long",
      "type": [
        "null",
        "long"
      ],
      "default": null
    },
    {
      "name": "wrapped_unsigned_int",
      "type": [
        "null",
        "long"
      ],
      "default": null
    },
    {
      "name": "wrapped_unsigned_long",
      "type": [
        "null",
        "org.apache.hudi.protos.unsigned_long"
      ],
      "default": null
    },
    {
      "name": "wrapped_double",
      "type": [
        "null",
        "double"
      ],
      "default": null
    },
    {
      "name": "wrapped_float",
      "type": [
        "null",
        "float"
      ],
      "default": null
    },
    {
      "name": "wrapped_boolean",
      "type": [
        "null",
        "boolean"
      ],
      "default": null
    },
    {
      "name": "wrapped_bytes",
      "type": [
        "null",
        "bytes"
      ],
      "default": null
    },
    {
      "name": "enum",
      "type": {
        "type": "enum",
        "name": "SampleEnum",
        "symbols": [
          "FIRST",
          "SECOND"
        ]
      },
      "default": "FIRST"
    },
    {
      "name": "timestamp",
      "type": [
        "null",
        {
          "type": "long",
          "logicalType": "timestamp-micros"
        }
      ],
      "default": null
    }
  ]
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy