syntax = "proto2"; package kotlinx.serialization.protobuf.schema.generator; // serial name 'kotlinx.serialization.protobuf.schema.GenerationTest.OptionalCollections' message OptionalCollections { repeated int32 requiredList = 1; // WARNING: a default value decoded when value is missing repeated int32 optionalList = 2; // WARNING: an empty collection decoded when a value is missing repeated int32 nullableList = 3; // WARNING: a default value decoded when value is missing repeated int32 nullableOptionalList = 4; map requiredMap = 5; // WARNING: a default value decoded when value is missing map optionalMap = 6; // WARNING: an empty collection decoded when a value is missing map nullableMap = 7; // WARNING: a default value decoded when value is missing map nullableOptionalMap = 8; }