← Back to packages

Package google.protobuf

Message Annotation

Message Any

Message BoolValue

Message BytesValue

Message Declaration

Message DescriptorProto

Message DoubleValue

Message Duration

Message EditionDefault

Message Empty

Message EnumDescriptorProto

Message EnumOptions

Message EnumReservedRange

Message EnumValueDescriptorProto

Message EnumValueOptions

Message ExtensionRange

Message ExtensionRangeOptions

Message FeatureSet

Message FeatureSetDefaults

Message FeatureSetEditionDefault

Message FeatureSupport

Message FieldDescriptorProto

Message FieldMask

Message FieldOptions

Message FileDescriptorProto

Message FileDescriptorSet

Message FileOptions

Message FloatValue

Message GeneratedCodeInfo

Message Int32Value

Message Int64Value

Message ListValue

Message Location

Message MessageOptions

Message MethodDescriptorProto

Message MethodOptions

Message NamePart

Message OneofDescriptorProto

Message OneofOptions

Message ReservedRange

Message ServiceDescriptorProto

Message ServiceOptions

Message SourceCodeInfo

Message StringValue

Message Struct

Message Timestamp

Message UInt32Value

Message UInt64Value

Message UninterpretedOption

Message Value

Message VisibilityFeature

Enum CType

Enum DefaultSymbolVisibility

Enum Edition

Enum EnforceNamingStyle

Enum EnumType

Enum FieldPresence

Enum IdempotencyLevel

Enum JSType

Enum JsonFormat

Enum Label

Enum MessageEncoding

Enum NullValue

Enum OptimizeMode

Enum OptionRetention

Enum OptionTargetType

Enum RepeatedFieldEncoding

Enum Semantic

Enum SymbolVisibility

Enum Type

Enum Utf8Validation

Enum VerificationState

Messages

message Annotation (Nested in google.protobuf.GeneratedCodeInfo ) google/protobuf/descriptor.proto

Field Type Description
1 path repeated int32

Identifies the element in the original source .proto file. This field is formatted the same as SourceCodeInfo.Location.path.

2 source_file string

Identifies the filesystem path to the original source .proto.

3 begin int32

Identifies the starting offset in bytes in the generated code that relates to the identified object.

4 end int32

Identifies the ending offset in bytes in the generated code that relates to the identified object. The end offset should be one past the last relevant byte (so the length of the text = end - begin).

5 semantic google.protobuf.GeneratedCodeInfo.Annotation.Semantic

message Any google/protobuf/any.proto

Any contains an arbitrary serialized protocol buffer message along with a URL that describes the type of the serialized message.

Protobuf library provides support to pack/unpack Any values in the form of utility functions or additional generated methods of the Any type.

Example 1: Pack and unpack a message in C++.

Foo foo = ...;
Any any;
any.PackFrom(foo);
...
if (any.UnpackTo(&foo)) {
  ...
}

Example 2: Pack and unpack a message in Java.

Foo foo = ...;
Any any = Any.pack(foo);
...
if (any.is(Foo.class)) {
  foo = any.unpack(Foo.class);
}
// or ...
if (any.isSameTypeAs(Foo.getDefaultInstance())) {
  foo = any.unpack(Foo.getDefaultInstance());
}

Example 3: Pack and unpack a message in Python.

foo = Foo(...)
any = Any()
any.Pack(foo)
...
if any.Is(Foo.DESCRIPTOR):
  any.Unpack(foo)
  ...

Example 4: Pack and unpack a message in Go

 foo := &pb.Foo{...}
 any, err := anypb.New(foo)
 if err != nil {
   ...
 }
 ...
 foo := &pb.Foo{}
 if err := any.UnmarshalTo(foo); err != nil {
   ...
 }

The pack methods provided by protobuf library will by default use 'type.googleapis.com/full.type.name' as the type URL and the unpack methods only use the fully qualified type name after the last '/' in the type URL, for example "foo.bar.com/x/y.z" will yield type name "y.z".

JSON

The JSON representation of an Any value uses the regular representation of the deserialized, embedded message, with an additional field @type which contains the type URL. Example:

package google.profile;
message Person {
  string first_name = 1;
  string last_name = 2;
}

{
  "@type": "type.googleapis.com/google.profile.Person",
  "firstName": <string>,
  "lastName": <string>
}

If the embedded message type is well-known and has a custom JSON representation, that representation will be embedded adding a field value which holds the custom JSON in addition to the @type field. Example (for message [google.protobuf.Duration][]):

{
  "@type": "type.googleapis.com/google.protobuf.Duration",
  "value": "1.212s"
}
Field Type Description
1 type_url string

A URL/resource name that uniquely identifies the type of the serialized protocol buffer message. This string must contain at least one "/" character. The last segment of the URL's path must represent the fully qualified name of the type (as in path/google.protobuf.Duration). The name should be in a canonical form (e.g., leading "." is not accepted).

In practice, teams usually precompile into the binary all types that they expect it to use in the context of Any. However, for URLs which use the scheme http, https, or no scheme, one can optionally set up a type server that maps type URLs to message definitions as follows:

  • If no scheme is provided, https is assumed.
  • An HTTP GET on the URL must yield a [google.protobuf.Type][] value in binary format, or produce an error.
  • Applications are allowed to cache lookup results based on the URL, or have them precompiled into a binary to avoid any lookup. Therefore, binary compatibility needs to be preserved on changes to types. (Use versioned type names to manage breaking changes.)

Note: this functionality is not currently available in the official protobuf release, and it is not used for type URLs beginning with type.googleapis.com. As of May 2023, there are no widely used type server implementations and no plans to implement one.

Schemes other than http, https (or the empty scheme) might be used with implementation specific semantics.

2 value bytes

Must be a valid serialized protocol buffer of the above specified type.

message BoolValue google/protobuf/wrappers.proto

Wrapper message for bool.

The JSON representation for BoolValue is JSON true and false.

Not recommended for use in new APIs, but still useful for legacy APIs and has no plan to be removed.

Field Type Description
1 value bool

The bool value.

message BytesValue google/protobuf/wrappers.proto

Wrapper message for bytes.

The JSON representation for BytesValue is JSON string.

Not recommended for use in new APIs, but still useful for legacy APIs and has no plan to be removed.

Field Type Description
1 value bytes

The bytes value.

message Declaration (Nested in google.protobuf.ExtensionRangeOptions ) google/protobuf/descriptor.proto

Field Type Description
1 number int32

The extension number declared within the extension range.

2 full_name string

The fully-qualified name of the extension field. There must be a leading dot in front of the full name.

3 type string

The fully-qualified type name of the extension field. Unlike Metadata.type, Declaration.type must have a leading dot for messages and enums.

5 reserved bool

If true, indicates that the number is reserved in the extension range, and any extension field with the number will fail to compile. Set this when a declared extension field is deleted.

6 repeated bool

If true, indicates that the extension must be defined as repeated. Otherwise the extension must be defined as optional.

message DescriptorProto google/protobuf/descriptor.proto

Describes a message type.

Field Type Description
1 name string
2 field repeated google.protobuf.FieldDescriptorProto
3 nested_type repeated google.protobuf.DescriptorProto
4 enum_type repeated google.protobuf.EnumDescriptorProto
5 extension_range repeated google.protobuf.DescriptorProto.ExtensionRange
6 extension repeated google.protobuf.FieldDescriptorProto
7 options google.protobuf.MessageOptions
8 oneof_decl repeated google.protobuf.OneofDescriptorProto
9 reserved_range repeated google.protobuf.DescriptorProto.ReservedRange
10 reserved_name repeated string

Reserved field names, which may not be used by fields in the same message. A given name may only be reserved once.

11 visibility google.protobuf.SymbolVisibility

Support for export and local keywords on enums.

message DoubleValue google/protobuf/wrappers.proto

Wrapper message for double.

The JSON representation for DoubleValue is JSON number.

Not recommended for use in new APIs, but still useful for legacy APIs and has no plan to be removed.

Field Type Description
1 value double

The double value.

message Duration google/protobuf/duration.proto

A Duration represents a signed, fixed-length span of time represented as a count of seconds and fractions of seconds at nanosecond resolution. It is independent of any calendar and concepts like "day" or "month". It is related to Timestamp in that the difference between two Timestamp values is a Duration and it can be added or subtracted from a Timestamp. Range is approximately +-10,000 years.

Examples

Example 1: Compute Duration from two Timestamps in pseudo code.

Timestamp start = ...;
Timestamp end = ...;
Duration duration = ...;

duration.seconds = end.seconds - start.seconds;
duration.nanos = end.nanos - start.nanos;

if (duration.seconds < 0 && duration.nanos > 0) {
  duration.seconds += 1;
  duration.nanos -= 1000000000;
} else if (duration.seconds > 0 && duration.nanos < 0) {
  duration.seconds -= 1;
  duration.nanos += 1000000000;
}

Example 2: Compute Timestamp from Timestamp + Duration in pseudo code.

Timestamp start = ...;
Duration duration = ...;
Timestamp end = ...;

end.seconds = start.seconds + duration.seconds;
end.nanos = start.nanos + duration.nanos;

if (end.nanos < 0) {
  end.seconds -= 1;
  end.nanos += 1000000000;
} else if (end.nanos >= 1000000000) {
  end.seconds += 1;
  end.nanos -= 1000000000;
}

Example 3: Compute Duration from datetime.timedelta in Python.

td = datetime.timedelta(days=3, minutes=10)
duration = Duration()
duration.FromTimedelta(td)

JSON Mapping

In JSON format, the Duration type is encoded as a string rather than an object, where the string ends in the suffix "s" (indicating seconds) and is preceded by the number of seconds, with nanoseconds expressed as fractional seconds. For example, 3 seconds with 0 nanoseconds should be encoded in JSON format as "3s", while 3 seconds and 1 nanosecond should be expressed in JSON format as "3.000000001s", and 3 seconds and 1 microsecond should be expressed in JSON format as "3.000001s".

Field Type Description
1 seconds int64

Signed seconds of the span of time. Must be from -315,576,000,000 to +315,576,000,000 inclusive. Note: these bounds are computed from: 60 sec/min * 60 min/hr * 24 hr/day * 365.25 days/year * 10000 years

2 nanos int32

Signed fractions of a second at nanosecond resolution of the span of time. Durations less than one second are represented with a 0 seconds field and a positive or negative nanos field. For durations of one second or more, a non-zero value for the nanos field must be of the same sign as the seconds field. Must be from -999,999,999 to +999,999,999 inclusive.

message EditionDefault (Nested in google.protobuf.FieldOptions ) google/protobuf/descriptor.proto

Field Type Description
2 value string

Textproto value.

3 edition google.protobuf.Edition

message Empty google/protobuf/empty.proto

A generic empty message that you can re-use to avoid defining duplicated empty messages in your APIs. A typical example is to use it as the request or the response type of an API method. For instance:

service Foo {
  rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty);
}
Field Type Description

message EnumDescriptorProto google/protobuf/descriptor.proto

Describes an enum type.

Field Type Description
1 name string
2 value repeated google.protobuf.EnumValueDescriptorProto
3 options google.protobuf.EnumOptions
4 reserved_range repeated google.protobuf.EnumDescriptorProto.EnumReservedRange

Range of reserved numeric values. Reserved numeric values may not be used by enum values in the same enum declaration. Reserved ranges may not overlap.

5 reserved_name repeated string

Reserved enum value names, which may not be reused. A given name may only be reserved once.

6 visibility google.protobuf.SymbolVisibility

Support for export and local keywords on enums.

message EnumOptions google/protobuf/descriptor.proto

Field Type Description Default Value
2 allow_alias bool

Set this option to true to allow mapping different tag names to the same value.

3 deprecated bool

Is this enum deprecated? Depending on the target platform, this can emit Deprecated annotations for the enum, or it will be completely ignored; in the very least, this is a formalization for deprecating enums.

false
6 deprecated_legacy_json_field_conflicts bool

Enable the legacy handling of JSON field name conflicts. This lowercases and strips underscored from the fields before comparison in proto3 only. The new behavior takes json_name into account and applies to proto2 as well. TODO Remove this legacy behavior once downstream teams have had time to migrate.

7 features google.protobuf.FeatureSet

Any features defined in the specific edition. WARNING: This field should only be used by protobuf plugins or special cases like the proto compiler. Other uses are discouraged and developers should rely on the protoreflect APIs for their client language.

999 uninterpreted_option repeated google.protobuf.UninterpretedOption

The parser stores options it doesn't recognize here. See above.

message EnumReservedRange (Nested in google.protobuf.EnumDescriptorProto ) google/protobuf/descriptor.proto

Range of reserved numeric values. Reserved values may not be used by entries in the same enum. Reserved ranges may not overlap.

Note that this is distinct from DescriptorProto.ReservedRange in that it is inclusive such that it can appropriately represent the entire int32 domain.

Field Type Description
1 start int32

Inclusive.

2 end int32

Inclusive.

message EnumValueDescriptorProto google/protobuf/descriptor.proto

Describes a value within an enum.

Field Type Description
1 name string
2 number int32
3 options google.protobuf.EnumValueOptions

message EnumValueOptions google/protobuf/descriptor.proto

Field Type Description Default Value
1 deprecated bool

Is this enum value deprecated? Depending on the target platform, this can emit Deprecated annotations for the enum value, or it will be completely ignored; in the very least, this is a formalization for deprecating enum values.

false
2 features google.protobuf.FeatureSet

Any features defined in the specific edition. WARNING: This field should only be used by protobuf plugins or special cases like the proto compiler. Other uses are discouraged and developers should rely on the protoreflect APIs for their client language.

3 debug_redact bool

Indicate that fields annotated with this enum value should not be printed out when using debug formats, e.g. when the field contains sensitive credentials.

false
4 feature_support google.protobuf.FieldOptions.FeatureSupport

Information about the support window of a feature value.

999 uninterpreted_option repeated google.protobuf.UninterpretedOption

The parser stores options it doesn't recognize here. See above.

message ExtensionRange (Nested in google.protobuf.DescriptorProto ) google/protobuf/descriptor.proto

Field Type Description
1 start int32

Inclusive.

2 end int32

Exclusive.

3 options google.protobuf.ExtensionRangeOptions

message ExtensionRangeOptions google/protobuf/descriptor.proto

Field Type Description Default Value
2 declaration repeated google.protobuf.ExtensionRangeOptions.Declaration

For external users: DO NOT USE. We are in the process of open sourcing extension declaration and executing internal cleanups before it can be used externally.

3 verification google.protobuf.ExtensionRangeOptions.VerificationState

The verification state of the range. TODO: flip the default to DECLARATION once all empty ranges are marked as UNVERIFIED.

UNVERIFIED
50 features google.protobuf.FeatureSet

Any features defined in the specific edition.

999 uninterpreted_option repeated google.protobuf.UninterpretedOption

The parser stores options it doesn't recognize here. See above.

message FeatureSet google/protobuf/descriptor.proto

TODO Enums in C++ gencode (and potentially other languages) are not well scoped. This means that each of the feature enums below can clash with each other. The short names we've chosen maximize call-site readability, but leave us very open to this scenario. A future feature will be designed and implemented to handle this, hopefully before we ever hit a conflict here.

Field Type Description
1 field_presence google.protobuf.FeatureSet.FieldPresence
2 enum_type google.protobuf.FeatureSet.EnumType
3 repeated_field_encoding google.protobuf.FeatureSet.RepeatedFieldEncoding
4 utf8_validation google.protobuf.FeatureSet.Utf8Validation
5 message_encoding google.protobuf.FeatureSet.MessageEncoding
6 json_format google.protobuf.FeatureSet.JsonFormat
7 enforce_naming_style google.protobuf.FeatureSet.EnforceNamingStyle
8 default_symbol_visibility google.protobuf.FeatureSet.VisibilityFeature.DefaultSymbolVisibility

message FeatureSetDefaults google/protobuf/descriptor.proto

A compiled specification for the defaults of a set of features. These messages are generated from FeatureSet extensions and can be used to seed feature resolution. The resolution with this object becomes a simple search for the closest matching edition, followed by proto merges.

Field Type Description
1 defaults repeated google.protobuf.FeatureSetDefaults.FeatureSetEditionDefault
4 minimum_edition google.protobuf.Edition

The minimum supported edition (inclusive) when this was constructed. Editions before this will not have defaults.

5 maximum_edition google.protobuf.Edition

The maximum known edition (inclusive) when this was constructed. Editions after this will not have reliable defaults.

message FeatureSetEditionDefault (Nested in google.protobuf.FeatureSetDefaults ) google/protobuf/descriptor.proto

A map from every known edition with a unique set of defaults to its defaults. Not all editions may be contained here. For a given edition, the defaults at the closest matching edition ordered at or before it should be used. This field must be in strict ascending order by edition.

Field Type Description
3 edition google.protobuf.Edition
4 overridable_features google.protobuf.FeatureSet

Defaults of features that can be overridden in this edition.

5 fixed_features google.protobuf.FeatureSet

Defaults of features that can't be overridden in this edition.

message FeatureSupport (Nested in google.protobuf.FieldOptions ) google/protobuf/descriptor.proto

Information about the support window of a feature.

Field Type Description
1 edition_introduced google.protobuf.Edition

The edition that this feature was first available in. In editions earlier than this one, the default assigned to EDITION_LEGACY will be used, and proto files will not be able to override it.

2 edition_deprecated google.protobuf.Edition

The edition this feature becomes deprecated in. Using this after this edition may trigger warnings.

3 deprecation_warning string

The deprecation warning text if this feature is used after the edition it was marked deprecated in.

4 edition_removed google.protobuf.Edition

The edition this feature is no longer available in. In editions after this one, the last default assigned will be used, and proto files will not be able to override it.

message FieldDescriptorProto google/protobuf/descriptor.proto

Describes a field within a message.

Field Type Description
1 name string
2 extendee string

For extensions, this is the name of the type being extended. It is resolved in the same manner as type_name.

3 number int32
4 label google.protobuf.FieldDescriptorProto.Label
5 type google.protobuf.FieldDescriptorProto.Type

If type_name is set, this need not be set. If both this and type_name are set, this must be one of TYPE_ENUM, TYPE_MESSAGE or TYPE_GROUP.

6 type_name string

For message and enum types, this is the name of the type. If the name starts with a '.', it is fully-qualified. Otherwise, C++-like scoping rules are used to find the type (i.e. first the nested types within this message are searched, then within the parent, on up to the root namespace).

7 default_value string

For numeric types, contains the original text representation of the value. For booleans, "true" or "false". For strings, contains the default text contents (not escaped in any way). For bytes, contains the C escaped value. All bytes >= 128 are escaped.

8 options google.protobuf.FieldOptions
9 oneof_index int32

If set, gives the index of a oneof in the containing type's oneof_decl list. This field is a member of that oneof.

10 json_name string

JSON name of this field. The value is set by protocol compiler. If the user has set a "json_name" option on this field, that option's value will be used. Otherwise, it's deduced from the field's name by converting it to camelCase.

17 proto3_optional bool

If true, this is a proto3 "optional". When a proto3 field is optional, it tracks presence regardless of field type.

When proto3_optional is true, this field must belong to a oneof to signal to old proto3 clients that presence is tracked for this field. This oneof is known as a "synthetic" oneof, and this field must be its sole member (each proto3 optional field gets its own synthetic oneof). Synthetic oneofs exist in the descriptor only, and do not generate any API. Synthetic oneofs must be ordered after all "real" oneofs.

For message fields, proto3_optional doesn't create any semantic change, since non-repeated message fields always track presence. However it still indicates the semantic detail of whether the user wrote "optional" or not. This can be useful for round-tripping the .proto file. For consistency we give message fields a synthetic oneof also, even though it is not required to track presence. This is especially important because the parser can't tell if a field is a message or an enum, so it must always create a synthetic oneof.

Proto2 optional fields do not set this flag, because they already indicate optional with LABEL_OPTIONAL.

message FieldMask google/protobuf/field_mask.proto

FieldMask represents a set of symbolic field paths, for example:

paths: "f.a"
paths: "f.b.d"

Here f represents a field in some root message, a and b fields in the message found in f, and d a field found in the message in f.b.

Field masks are used to specify a subset of fields that should be returned by a get operation or modified by an update operation. Field masks also have a custom JSON encoding (see below).

Field Masks in Projections

When used in the context of a projection, a response message or sub-message is filtered by the API to only contain those fields as specified in the mask. For example, if the mask in the previous example is applied to a response message as follows:

f {
  a : 22
  b {
    d : 1
    x : 2
  }
  y : 13
}
z: 8

The result will not contain specific values for fields x,y and z (their value will be set to the default, and omitted in proto text output):

f {
  a : 22
  b {
    d : 1
  }
}

A repeated field is not allowed except at the last position of a paths string.

If a FieldMask object is not present in a get operation, the operation applies to all fields (as if a FieldMask of all fields had been specified).

Note that a field mask does not necessarily apply to the top-level response message. In case of a REST get operation, the field mask applies directly to the response, but in case of a REST list operation, the mask instead applies to each individual message in the returned resource list. In case of a REST custom method, other definitions may be used. Where the mask applies will be clearly documented together with its declaration in the API. In any case, the effect on the returned resource/resources is required behavior for APIs.

Field Masks in Update Operations

A field mask in update operations specifies which fields of the targeted resource are going to be updated. The API is required to only change the values of the fields as specified in the mask and leave the others untouched. If a resource is passed in to describe the updated values, the API ignores the values of all fields not covered by the mask.

If a repeated field is specified for an update operation, new values will be appended to the existing repeated field in the target resource. Note that a repeated field is only allowed in the last position of a paths string.

If a sub-message is specified in the last position of the field mask for an update operation, then new value will be merged into the existing sub-message in the target resource.

For example, given the target message:

f {
  b {
    d: 1
    x: 2
  }
  c: [1]
}

And an update message:

f {
  b {
    d: 10
  }
  c: [2]
}

then if the field mask is:

paths: ["f.b", "f.c"]

then the result will be:

f {
  b {
    d: 10
    x: 2
  }
  c: [1, 2]
}

An implementation may provide options to override this default behavior for repeated and message fields.

In order to reset a field's value to the default, the field must be in the mask and set to the default value in the provided resource. Hence, in order to reset all fields of a resource, provide a default instance of the resource and set all fields in the mask, or do not provide a mask as described below.

If a field mask is not present on update, the operation applies to all fields (as if a field mask of all fields has been specified). Note that in the presence of schema evolution, this may mean that fields the client does not know and has therefore not filled into the request will be reset to their default. If this is unwanted behavior, a specific service may require a client to always specify a field mask, producing an error if not.

As with get operations, the location of the resource which describes the updated values in the request message depends on the operation kind. In any case, the effect of the field mask is required to be honored by the API.

Considerations for HTTP REST

The HTTP kind of an update operation which uses a field mask must be set to PATCH instead of PUT in order to satisfy HTTP semantics (PUT must only be used for full updates).

JSON Encoding of Field Masks

In JSON, a field mask is encoded as a single string where paths are separated by a comma. Fields name in each path are converted to/from lower-camel naming conventions.

As an example, consider the following message declarations:

message Profile {
  User user = 1;
  Photo photo = 2;
}
message User {
  string display_name = 1;
  string address = 2;
}

In proto a field mask for Profile may look as such:

mask {
  paths: "user.display_name"
  paths: "photo"
}

In JSON, the same mask is represented as below:

{
  mask: "user.displayName,photo"
}

Field Masks and Oneof Fields

Field masks treat fields in oneofs just as regular fields. Consider the following message:

message SampleMessage {
  oneof test_oneof {
    string name = 4;
    SubMessage sub_message = 9;
  }
}

The field mask can be:

mask {
  paths: "name"
}

Or:

mask {
  paths: "sub_message"
}

Note that oneof type names ("test_oneof" in this case) cannot be used in paths.

Field Mask Verification

The implementation of any API method which has a FieldMask type field in the request should verify the included field paths, and return an INVALID_ARGUMENT error if any path is unmappable.

Field Type Description
1 paths repeated string

The set of field mask paths.

message FieldOptions google/protobuf/descriptor.proto

Field Type Description Default Value
1 ctype google.protobuf.FieldOptions.CType

NOTE: ctype is deprecated. Use features.(pb.cpp).string_type instead. The ctype option instructs the C++ code generator to use a different representation of the field than it normally would. See the specific options below. This option is only implemented to support use of [ctype=CORD] and [ctype=STRING] (the default) on non-repeated fields of type "bytes" in the open source release. TODO: make ctype actually deprecated.

STRING
2 packed bool

The packed option can be enabled for repeated primitive fields to enable a more efficient representation on the wire. Rather than repeatedly writing the tag and type for each element, the entire array is encoded as a single length-delimited blob. In proto3, only explicit setting it to false will avoid using packed encoding. This option is prohibited in Editions, but the repeated_field_encoding feature can be used to control the behavior.

3 deprecated bool

Is this field deprecated? Depending on the target platform, this can emit Deprecated annotations for accessors, or it will be completely ignored; in the very least, this is a formalization for deprecating fields.

false
5 lazy bool

Should this field be parsed lazily? Lazy applies only to message-type fields. It means that when the outer message is initially parsed, the inner message's contents will not be parsed but instead stored in encoded form. The inner message will actually be parsed when it is first accessed.

This is only a hint. Implementations are free to choose whether to use eager or lazy parsing regardless of the value of this option. However, setting this option true suggests that the protocol author believes that using lazy parsing on this field is worth the additional bookkeeping overhead typically needed to implement it.

This option does not affect the public interface of any generated code; all method signatures remain the same. Furthermore, thread-safety of the interface is not affected by this option; const methods remain safe to call from multiple threads concurrently, while non-const methods continue to require exclusive access.

Note that lazy message fields are still eagerly verified to check ill-formed wireformat or missing required fields. Calling IsInitialized() on the outer message would fail if the inner message has missing required fields. Failed verification would result in parsing failure (except when uninitialized messages are acceptable).

false
6 jstype google.protobuf.FieldOptions.JSType

The jstype option determines the JavaScript type used for values of the field. The option is permitted only for 64 bit integral and fixed types (int64, uint64, sint64, fixed64, sfixed64). A field with jstype JS_STRING is represented as JavaScript string, which avoids loss of precision that can happen when a large value is converted to a floating point JavaScript. Specifying JS_NUMBER for the jstype causes the generated JavaScript code to use the JavaScript "number" type. The behavior of the default option JS_NORMAL is implementation dependent.

This option is an enum to permit additional types to be added, e.g. goog.math.Integer.

JS_NORMAL
10 weak bool

DEPRECATED. DO NOT USE! For Google-internal migration only. Do not use.

false
15 unverified_lazy bool

unverified_lazy does no correctness checks on the byte stream. This should only be used where lazy with verification is prohibitive for performance reasons.

false
16 debug_redact bool

Indicate that the field value should not be printed out when using debug formats, e.g. when the field contains sensitive credentials.

false
17 retention google.protobuf.FieldOptions.OptionRetention
19 targets repeated google.protobuf.FieldOptions.OptionTargetType
20 edition_defaults repeated google.protobuf.FieldOptions.EditionDefault
21 features google.protobuf.FeatureSet

Any features defined in the specific edition. WARNING: This field should only be used by protobuf plugins or special cases like the proto compiler. Other uses are discouraged and developers should rely on the protoreflect APIs for their client language.

22 feature_support google.protobuf.FieldOptions.FeatureSupport
999 uninterpreted_option repeated google.protobuf.UninterpretedOption

The parser stores options it doesn't recognize here. See above.

message FileDescriptorProto google/protobuf/descriptor.proto

Describes a complete .proto file.

Field Type Description
1 name string

file name, relative to root of source tree

2 package string

e.g. "foo", "foo.bar", etc.

3 dependency repeated string

Names of files imported by this file.

4 message_type repeated google.protobuf.DescriptorProto

All top-level definitions in this file.

5 enum_type repeated google.protobuf.EnumDescriptorProto
6 service repeated google.protobuf.ServiceDescriptorProto
7 extension repeated google.protobuf.FieldDescriptorProto
8 options google.protobuf.FileOptions
9 source_code_info google.protobuf.SourceCodeInfo

This field contains optional information about the original source code. You may safely remove this entire field without harming runtime functionality of the descriptors -- the information is needed only by development tools.

10 public_dependency repeated int32

Indexes of the public imported files in the dependency list above.

11 weak_dependency repeated int32

Indexes of the weak imported files in the dependency list. For Google-internal migration only. Do not use.

12 syntax string

The syntax of the proto file. The supported values are "proto2", "proto3", and "editions".

If edition is present, this value must be "editions". WARNING: This field should only be used by protobuf plugins or special cases like the proto compiler. Other uses are discouraged and developers should rely on the protoreflect APIs for their client language.

14 edition google.protobuf.Edition

The edition of the proto file. WARNING: This field should only be used by protobuf plugins or special cases like the proto compiler. Other uses are discouraged and developers should rely on the protoreflect APIs for their client language.

15 option_dependency repeated string

Names of files imported by this file purely for the purpose of providing option extensions. These are excluded from the dependency list above.

message FileDescriptorSet google/protobuf/descriptor.proto

The protocol compiler can output a FileDescriptorSet containing the .proto files it parses.

Field Type Description
1 file repeated google.protobuf.FileDescriptorProto

message FileOptions google/protobuf/descriptor.proto

Field Type Description Default Value
1 java_package string

Sets the Java package where classes generated from this .proto will be placed. By default, the proto package is used, but this is often inappropriate because proto packages do not normally start with backwards domain names.

8 java_outer_classname string

Controls the name of the wrapper Java class generated for the .proto file. That class will always contain the .proto file's getDescriptor() method as well as any top-level extensions defined in the .proto file. If java_multiple_files is disabled, then all the other classes from the .proto file will be nested inside the single wrapper outer class.

9 optimize_for google.protobuf.FileOptions.OptimizeMode SPEED
10 java_multiple_files bool

If enabled, then the Java code generator will generate a separate .java file for each top-level message, enum, and service defined in the .proto file. Thus, these types will not be nested inside the wrapper class named by java_outer_classname. However, the wrapper class will still be generated to contain the file's getDescriptor() method as well as any top-level extensions defined in the file.

false
11 go_package string

Sets the Go package where structs generated from this .proto will be placed. If omitted, the Go package will be derived from the following: - The basename of the package import path, if provided. - Otherwise, the package statement in the .proto file, if present. - Otherwise, the basename of the .proto file, without extension.

16 cc_generic_services bool

Should generic services be generated in each language? "Generic" services are not specific to any particular RPC system. They are generated by the main code generators in each language (without additional plugins). Generic services were the only kind of service generation supported by early versions of google.protobuf.

Generic services are now considered deprecated in favor of using plugins that generate code specific to your particular RPC system. Therefore, these default to false. Old code which depends on generic services should explicitly set them to true.

false
17 java_generic_services bool false
18 py_generic_services bool false
20 java_generate_equals_and_hash bool

This option does nothing.

23 deprecated bool

Is this file deprecated? Depending on the target platform, this can emit Deprecated annotations for everything in the file, or it will be completely ignored; in the very least, this is a formalization for deprecating files.

false
27 java_string_check_utf8 bool

A proto2 file can set this to true to opt in to UTF-8 checking for Java, which will throw an exception if invalid UTF-8 is parsed from the wire or assigned to a string field.

TODO: clarify exactly what kinds of field types this option applies to, and update these docs accordingly.

Proto3 files already perform these checks. Setting the option explicitly to false has no effect: it cannot be used to opt proto3 files out of UTF-8 checks.

false
31 cc_enable_arenas bool

Enables the use of arenas for the proto messages in this file. This applies only to generated classes for C++.

true
36 objc_class_prefix string

Sets the objective c class prefix which is prepended to all objective c generated classes from this .proto. There is no default.

37 csharp_namespace string

Namespace for generated classes; defaults to the package.

39 swift_prefix string

By default Swift generators will take the proto package and CamelCase it replacing '.' with underscore and use that to prefix the types/symbols defined. When this options is provided, they will use this value instead to prefix the types/symbols defined.

40 php_class_prefix string

Sets the php class prefix which is prepended to all php generated classes from this .proto. Default is empty.

41 php_namespace string

Use this option to change the namespace of php generated classes. Default is empty. When this option is empty, the package name will be used for determining the namespace.

44 php_metadata_namespace string

Use this option to change the namespace of php generated metadata classes. Default is empty. When this option is empty, the proto file name will be used for determining the namespace.

45 ruby_package string

Use this option to change the package of ruby generated classes. Default is empty. When this option is not set, the package name will be used for determining the ruby package.

50 features google.protobuf.FeatureSet

Any features defined in the specific edition. WARNING: This field should only be used by protobuf plugins or special cases like the proto compiler. Other uses are discouraged and developers should rely on the protoreflect APIs for their client language.

999 uninterpreted_option repeated google.protobuf.UninterpretedOption

The parser stores options it doesn't recognize here. See the documentation for the "Options" section above.

message FloatValue google/protobuf/wrappers.proto

Wrapper message for float.

The JSON representation for FloatValue is JSON number.

Not recommended for use in new APIs, but still useful for legacy APIs and has no plan to be removed.

Field Type Description
1 value float

The float value.

message GeneratedCodeInfo google/protobuf/descriptor.proto

Describes the relationship between generated code and its original source file. A GeneratedCodeInfo message is associated with only one generated source file, but may contain references to different source .proto files.

Field Type Description
1 annotation repeated google.protobuf.GeneratedCodeInfo.Annotation

An Annotation connects some span of text in generated code to an element of its generating .proto file.

message Int32Value google/protobuf/wrappers.proto

Wrapper message for int32.

The JSON representation for Int32Value is JSON number.

Not recommended for use in new APIs, but still useful for legacy APIs and has no plan to be removed.

Field Type Description
1 value int32

The int32 value.

message Int64Value google/protobuf/wrappers.proto

Wrapper message for int64.

The JSON representation for Int64Value is JSON string.

Not recommended for use in new APIs, but still useful for legacy APIs and has no plan to be removed.

Field Type Description
1 value int64

The int64 value.

message ListValue google/protobuf/struct.proto

ListValue is a wrapper around a repeated field of values.

The JSON representation for ListValue is JSON array.

Field Type Description
1 values repeated google.protobuf.Value

Repeated field of dynamically typed values.

message Location (Nested in google.protobuf.SourceCodeInfo ) google/protobuf/descriptor.proto

Field Type Description
1 path repeated int32

Identifies which part of the FileDescriptorProto was defined at this location.

Each element is a field number or an index. They form a path from the root FileDescriptorProto to the place where the definition appears. For example, this path: [ 4, 3, 2, 7, 1 ] refers to: file.message_type(3) // 4, 3 .field(7) // 2, 7 .name() // 1 This is because FileDescriptorProto.message_type has field number 4: repeated DescriptorProto message_type = 4; and DescriptorProto.field has field number 2: repeated FieldDescriptorProto field = 2; and FieldDescriptorProto.name has field number 1: optional string name = 1;

Thus, the above path gives the location of a field name. If we removed the last element: [ 4, 3, 2, 7 ] this path refers to the whole field declaration (from the beginning of the label to the terminating semicolon).

2 span repeated int32

Always has exactly three or four elements: start line, start column, end line (optional, otherwise assumed same as start line), end column. These are packed into a single field for efficiency. Note that line and column numbers are zero-based -- typically you will want to add 1 to each before displaying to a user.

3 leading_comments string

If this SourceCodeInfo represents a complete declaration, these are any comments appearing before and after the declaration which appear to be attached to the declaration.

A series of line comments appearing on consecutive lines, with no other tokens appearing on those lines, will be treated as a single comment.

leading_detached_comments will keep paragraphs of comments that appear before (but not connected to) the current element. Each paragraph, separated by empty lines, will be one comment element in the repeated field.

Only the comment content is provided; comment markers (e.g. //) are stripped out. For block comments, leading whitespace and an asterisk will be stripped from the beginning of each line other than the first. Newlines are included in the output.

Examples:

optional int32 foo = 1; // Comment attached to foo. // Comment attached to bar. optional int32 bar = 2;

optional string baz = 3; // Comment attached to baz. // Another line attached to baz.

// Comment attached to moo. // // Another line attached to moo. optional double moo = 4;

// Detached comment for corge. This is not leading or trailing comments // to moo or corge because there are blank lines separating it from // both.

// Detached comment for corge paragraph 2.

optional string corge = 5; / Block comment attached * to corge. Leading asterisks * will be removed. / / Block comment attached to * grault. / optional int32 grault = 6;

// ignored detached comments.

4 trailing_comments string
6 leading_detached_comments repeated string

message MessageOptions google/protobuf/descriptor.proto

Field Type Description Default Value
1 message_set_wire_format bool

Set true to use the old proto1 MessageSet wire format for extensions. This is provided for backwards-compatibility with the MessageSet wire format. You should not use this for any other reason: It's less efficient, has fewer features, and is more complicated.

The message must be defined exactly as follows: message Foo { option message_set_wire_format = true; extensions 4 to max; } Note that the message cannot have any defined fields; MessageSets only have extensions.

All extensions of your type must be singular messages; e.g. they cannot be int32s, enums, or repeated messages.

Because this is an option, the above two restrictions are not enforced by the protocol compiler.

false
2 no_standard_descriptor_accessor bool

Disables the generation of the standard "descriptor()" accessor, which can conflict with a field of the same name. This is meant to make migration from proto1 easier; new code should avoid fields named "descriptor".

false
3 deprecated bool

Is this message deprecated? Depending on the target platform, this can emit Deprecated annotations for the message, or it will be completely ignored; in the very least, this is a formalization for deprecating messages.

false
7 map_entry bool

Whether the message is an automatically generated map entry type for the maps field.

For maps fields: map map_field = 1; The parsed descriptor looks like: message MapFieldEntry { option map_entry = true; optional KeyType key = 1; optional ValueType value = 2; } repeated MapFieldEntry map_field = 1;

Implementations may choose not to generate the map_entry=true message, but use a native map in the target language to hold the keys and values. The reflection APIs in such implementations still need to work as if the field is a repeated message field.

NOTE: Do not set the option in .proto files. Always use the maps syntax instead. The option should only be implicitly set by the proto compiler parser.

11 deprecated_legacy_json_field_conflicts bool

Enable the legacy handling of JSON field name conflicts. This lowercases and strips underscored from the fields before comparison in proto3 only. The new behavior takes json_name into account and applies to proto2 as well.

This should only be used as a temporary measure against broken builds due to the change in behavior for JSON field name conflicts.

TODO This is legacy behavior we plan to remove once downstream teams have had time to migrate.

12 features google.protobuf.FeatureSet

Any features defined in the specific edition. WARNING: This field should only be used by protobuf plugins or special cases like the proto compiler. Other uses are discouraged and developers should rely on the protoreflect APIs for their client language.

999 uninterpreted_option repeated google.protobuf.UninterpretedOption

The parser stores options it doesn't recognize here. See above.

message MethodDescriptorProto google/protobuf/descriptor.proto

Describes a method of a service.

Field Type Description Default Value
1 name string
2 input_type string

Input and output type names. These are resolved in the same way as FieldDescriptorProto.type_name, but must refer to a message type.

3 output_type string
4 options google.protobuf.MethodOptions
5 client_streaming bool

Identifies if client streams multiple client messages

false
6 server_streaming bool

Identifies if server streams multiple server messages

false

message MethodOptions google/protobuf/descriptor.proto

Field Type Description Default Value
33 deprecated bool

Is this method deprecated? Depending on the target platform, this can emit Deprecated annotations for the method, or it will be completely ignored; in the very least, this is a formalization for deprecating methods.

false
34 idempotency_level google.protobuf.MethodOptions.IdempotencyLevel IDEMPOTENCY_UNKNOWN
35 features google.protobuf.FeatureSet

Any features defined in the specific edition. WARNING: This field should only be used by protobuf plugins or special cases like the proto compiler. Other uses are discouraged and developers should rely on the protoreflect APIs for their client language.

999 uninterpreted_option repeated google.protobuf.UninterpretedOption

The parser stores options it doesn't recognize here. See above.

message NamePart (Nested in google.protobuf.UninterpretedOption ) google/protobuf/descriptor.proto

The name of the uninterpreted option. Each string represents a segment in a dot-separated name. is_extension is true iff a segment represents an extension (denoted with parentheses in options specs in .proto files). E.g.,{ ["foo", false], ["bar.baz", true], ["moo", false] } represents "foo.(bar.baz).moo".

Field Type Description
1 name_part required string
2 is_extension required bool

message OneofDescriptorProto google/protobuf/descriptor.proto

Describes a oneof.

Field Type Description
1 name string
2 options google.protobuf.OneofOptions

message OneofOptions google/protobuf/descriptor.proto

Field Type Description
1 features google.protobuf.FeatureSet

Any features defined in the specific edition. WARNING: This field should only be used by protobuf plugins or special cases like the proto compiler. Other uses are discouraged and developers should rely on the protoreflect APIs for their client language.

999 uninterpreted_option repeated google.protobuf.UninterpretedOption

The parser stores options it doesn't recognize here. See above.

message ReservedRange (Nested in google.protobuf.DescriptorProto ) google/protobuf/descriptor.proto

Range of reserved tag numbers. Reserved tag numbers may not be used by fields or extension ranges in the same message. Reserved ranges may not overlap.

Field Type Description
1 start int32

Inclusive.

2 end int32

Exclusive.

message ServiceDescriptorProto google/protobuf/descriptor.proto

Describes a service.

Field Type Description
1 name string
2 method repeated google.protobuf.MethodDescriptorProto
3 options google.protobuf.ServiceOptions

message ServiceOptions google/protobuf/descriptor.proto

Field Type Description Default Value
33 deprecated bool

Is this service deprecated? Depending on the target platform, this can emit Deprecated annotations for the service, or it will be completely ignored; in the very least, this is a formalization for deprecating services.

false
34 features google.protobuf.FeatureSet

Any features defined in the specific edition. WARNING: This field should only be used by protobuf plugins or special cases like the proto compiler. Other uses are discouraged and developers should rely on the protoreflect APIs for their client language.

999 uninterpreted_option repeated google.protobuf.UninterpretedOption

The parser stores options it doesn't recognize here. See above.

message SourceCodeInfo google/protobuf/descriptor.proto

Encapsulates information about the original source file from which a FileDescriptorProto was generated.

Field Type Description
1 location repeated google.protobuf.SourceCodeInfo.Location

A Location identifies a piece of source code in a .proto file which corresponds to a particular definition. This information is intended to be useful to IDEs, code indexers, documentation generators, and similar tools.

For example, say we have a file like: message Foo { optional string foo = 1; } Let's look at just the field definition: optional string foo = 1; ^ ^^ ^^ ^ ^^^ a bc de f ghi We have the following locations: span path represents [a,i) [ 4, 0, 2, 0 ] The whole field definition. [a,b) [ 4, 0, 2, 0, 4 ] The label (optional). [c,d) [ 4, 0, 2, 0, 5 ] The type (string). [e,f) [ 4, 0, 2, 0, 1 ] The name (foo). [g,h) [ 4, 0, 2, 0, 3 ] The number (1).

Notes: - A location may refer to a repeated field itself (i.e. not to any particular index within it). This is used whenever a set of elements are logically enclosed in a single code segment. For example, an entire extend block (possibly containing multiple extension definitions) will have an outer location whose path refers to the "extensions" repeated field without an index. - Multiple locations may have the same path. This happens when a single logical declaration is spread out across multiple places. The most obvious example is the "extend" block again -- there may be multiple extend blocks in the same scope, each of which will have the same path. - A location's span is not always a subset of its parent's span. For example, the "extendee" of an extension declaration appears at the beginning of the "extend" block and is shared by all extensions within the block. - Just because a location's span is a subset of some other location's span does not mean that it is a descendant. For example, a "group" defines both a type and a field in a single declaration. Thus, the locations corresponding to the type and field and their components will overlap. - Code which tries to interpret locations should probably be designed to ignore those that it doesn't understand, as more types of locations could be recorded in the future.

message StringValue google/protobuf/wrappers.proto

Wrapper message for string.

The JSON representation for StringValue is JSON string.

Not recommended for use in new APIs, but still useful for legacy APIs and has no plan to be removed.

Field Type Description
1 value string

The string value.

message Struct google/protobuf/struct.proto

Struct represents a structured data value, consisting of fields which map to dynamically typed values. In some languages, Struct might be supported by a native representation. For example, in scripting languages like JS a struct is represented as an object. The details of that representation are described together with the proto support for the language.

The JSON representation for Struct is JSON object.

Field Type Description
1 fields map<string, Value>

Unordered map of dynamically typed values.

message Timestamp google/protobuf/timestamp.proto

A Timestamp represents a point in time independent of any time zone or local calendar, encoded as a count of seconds and fractions of seconds at nanosecond resolution. The count is relative to an epoch at UTC midnight on January 1, 1970, in the proleptic Gregorian calendar which extends the Gregorian calendar backwards to year one.

All minutes are 60 seconds long. Leap seconds are "smeared" so that no leap second table is needed for interpretation, using a 24-hour linear smear.

The range is from 0001-01-01T00:00:00Z to 9999-12-31T23:59:59.999999999Z. By restricting to that range, we ensure that we can convert to and from RFC 3339 date strings.

Examples

Example 1: Compute Timestamp from POSIX time().

Timestamp timestamp;
timestamp.set_seconds(time(NULL));
timestamp.set_nanos(0);

Example 2: Compute Timestamp from POSIX gettimeofday().

struct timeval tv;
gettimeofday(&tv, NULL);

Timestamp timestamp;
timestamp.set_seconds(tv.tv_sec);
timestamp.set_nanos(tv.tv_usec * 1000);

Example 3: Compute Timestamp from Win32 GetSystemTimeAsFileTime().

FILETIME ft;
GetSystemTimeAsFileTime(&ft);
UINT64 ticks = (((UINT64)ft.dwHighDateTime) << 32) | ft.dwLowDateTime;

// A Windows tick is 100 nanoseconds. Windows epoch 1601-01-01T00:00:00Z
// is 11644473600 seconds before Unix epoch 1970-01-01T00:00:00Z.
Timestamp timestamp;
timestamp.set_seconds((INT64) ((ticks / 10000000) - 11644473600LL));
timestamp.set_nanos((INT32) ((ticks % 10000000) * 100));

Example 4: Compute Timestamp from Java System.currentTimeMillis().

long millis = System.currentTimeMillis();

Timestamp timestamp = Timestamp.newBuilder().setSeconds(millis / 1000)
    .setNanos((int) ((millis % 1000) * 1000000)).build();

Example 5: Compute Timestamp from Java Instant.now().

Instant now = Instant.now();

Timestamp timestamp =
    Timestamp.newBuilder().setSeconds(now.getEpochSecond())
        .setNanos(now.getNano()).build();

Example 6: Compute Timestamp from current time in Python.

timestamp = Timestamp()
timestamp.GetCurrentTime()

JSON Mapping

In JSON format, the Timestamp type is encoded as a string in the RFC 3339 format. That is, the format is "{year}-{month}-{day}T{hour}:{min}:{sec}[.{frac_sec}]Z" where {year} is always expressed using four digits while {month}, {day}, {hour}, {min}, and {sec} are zero-padded to two digits each. The fractional seconds, which can go up to 9 digits (i.e. up to 1 nanosecond resolution), are optional. The "Z" suffix indicates the timezone ("UTC"); the timezone is required. A proto3 JSON serializer should always use UTC (as indicated by "Z") when printing the Timestamp type and a proto3 JSON parser should be able to accept both UTC and other timezones (as indicated by an offset).

For example, "2017-01-15T01:30:15.01Z" encodes 15.01 seconds past 01:30 UTC on January 15, 2017.

In JavaScript, one can convert a Date object to this format using the standard toISOString() method. In Python, a standard datetime.datetime object can be converted to this format using strftime with the time format spec '%Y-%m-%dT%H:%M:%S.%fZ'. Likewise, in Java, one can use the Joda Time's ISODateTimeFormat.dateTime() to obtain a formatter capable of generating timestamps in this format.

Field Type Description
1 seconds int64

Represents seconds of UTC time since Unix epoch 1970-01-01T00:00:00Z. Must be from 0001-01-01T00:00:00Z to 9999-12-31T23:59:59Z inclusive.

2 nanos int32

Non-negative fractions of a second at nanosecond resolution. Negative second values with fractions must still have non-negative nanos values that count forward in time. Must be from 0 to 999,999,999 inclusive.

message UInt32Value google/protobuf/wrappers.proto

Wrapper message for uint32.

The JSON representation for UInt32Value is JSON number.

Not recommended for use in new APIs, but still useful for legacy APIs and has no plan to be removed.

Field Type Description
1 value uint32

The uint32 value.

message UInt64Value google/protobuf/wrappers.proto

Wrapper message for uint64.

The JSON representation for UInt64Value is JSON string.

Not recommended for use in new APIs, but still useful for legacy APIs and has no plan to be removed.

Field Type Description
1 value uint64

The uint64 value.

message UninterpretedOption google/protobuf/descriptor.proto

A message representing a option the parser does not recognize. This only appears in options protos created by the compiler::Parser class. DescriptorPool resolves these when building Descriptor objects. Therefore, options protos in descriptor objects (e.g. returned by Descriptor::options(), or produced by Descriptor::CopyTo()) will never have UninterpretedOptions in them.

Field Type Description
2 name repeated google.protobuf.UninterpretedOption.NamePart
3 identifier_value string

The value of the uninterpreted option, in whatever type the tokenizer identified it as during parsing. Exactly one of these should be set.

4 positive_int_value uint64
5 negative_int_value int64
6 double_value double
7 string_value bytes
8 aggregate_value string

message Value google/protobuf/struct.proto

Value represents a dynamically typed value which can be either null, a number, a string, a boolean, a recursive struct value, or a list of values. A producer of value is expected to set one of these variants. Absence of any variant indicates an error.

The JSON representation for Value is JSON value.

Field Type Description
oneof kind
1 null_value google.protobuf.NullValue

Represents a null value.

2 number_value double

Represents a double value.

3 string_value string

Represents a string value.

4 bool_value bool

Represents a boolean value.

5 struct_value google.protobuf.Struct

Represents a structured value.

6 list_value google.protobuf.ListValue

Represents a repeated Value.

message VisibilityFeature (Nested in google.protobuf.FeatureSet ) google/protobuf/descriptor.proto

Field Type Description

Enums

enum CType google/protobuf/descriptor.proto

Name Number Description
STRING 0

Default mode.

CORD 1

The option [ctype=CORD] may be applied to a non-repeated field of type "bytes". It indicates that in C++, the data should be stored in a Cord instead of a string. For very large strings, this may reduce memory fragmentation. It may also allow better performance when parsing from a Cord, or when parsing with aliasing enabled, as the parsed Cord may then alias the original buffer.

STRING_PIECE 2

enum DefaultSymbolVisibility google/protobuf/descriptor.proto

Name Number Description
DEFAULT_SYMBOL_VISIBILITY_UNKNOWN 0
EXPORT_ALL 1

Default pre-EDITION_2024, all UNSET visibility are export.

EXPORT_TOP_LEVEL 2

All top-level symbols default to export, nested default to local.

LOCAL_ALL 3

All symbols default to local.

STRICT 4

All symbols local by default. Nested types cannot be exported. With special case caveat for message { enum {} reserved 1 to max; } This is the recommended setting for new protos.

enum Edition google/protobuf/descriptor.proto

The full set of known editions.

Name Number Description
EDITION_UNKNOWN 0

A placeholder for an unknown edition value.

EDITION_LEGACY 900

A placeholder edition for specifying default behaviors before a feature was first introduced. This is effectively an "infinite past".

EDITION_PROTO2 998

Legacy syntax "editions". These pre-date editions, but behave much like distinct editions. These can't be used to specify the edition of proto files, but feature definitions must supply proto2/proto3 defaults for backwards compatibility.

EDITION_PROTO3 999
EDITION_2023 1000

Editions that have been released. The specific values are arbitrary and should not be depended on, but they will always be time-ordered for easy comparison.

EDITION_2024 1001
EDITION_1_TEST_ONLY 1

Placeholder editions for testing feature resolution. These should not be used or relied on outside of tests.

EDITION_2_TEST_ONLY 2
EDITION_99997_TEST_ONLY 99997
EDITION_99998_TEST_ONLY 99998
EDITION_99999_TEST_ONLY 99999
EDITION_MAX 2147483647

Placeholder for specifying unbounded edition support. This should only ever be used by plugins that can expect to never require any changes to support a new edition.

enum EnforceNamingStyle google/protobuf/descriptor.proto

Name Number Description
ENFORCE_NAMING_STYLE_UNKNOWN 0
STYLE2024 1
STYLE_LEGACY 2

enum EnumType google/protobuf/descriptor.proto

Name Number Description
ENUM_TYPE_UNKNOWN 0
OPEN 1
CLOSED 2

enum FieldPresence google/protobuf/descriptor.proto

Name Number Description
FIELD_PRESENCE_UNKNOWN 0
EXPLICIT 1
IMPLICIT 2
LEGACY_REQUIRED 3

enum IdempotencyLevel google/protobuf/descriptor.proto

Is this method side-effect-free (or safe in HTTP parlance), or idempotent, or neither? HTTP based RPC implementation may choose GET verb for safe methods, and PUT verb for idempotent methods instead of the default POST.

Name Number Description
IDEMPOTENCY_UNKNOWN 0
NO_SIDE_EFFECTS 1

implies idempotent

IDEMPOTENT 2

idempotent, but may have side effects

enum JSType google/protobuf/descriptor.proto

Name Number Description
JS_NORMAL 0

Use the default type.

JS_STRING 1

Use JavaScript strings.

JS_NUMBER 2

Use JavaScript numbers.

enum JsonFormat google/protobuf/descriptor.proto

Name Number Description
JSON_FORMAT_UNKNOWN 0
ALLOW 1
LEGACY_BEST_EFFORT 2

enum Label google/protobuf/descriptor.proto

Name Number Description
LABEL_OPTIONAL 1

0 is reserved for errors

LABEL_REPEATED 3
LABEL_REQUIRED 2

The required label is only allowed in google.protobuf. In proto3 and Editions it's explicitly prohibited. In Editions, the field_presence feature can be used to get this behavior.

enum MessageEncoding google/protobuf/descriptor.proto

Name Number Description
MESSAGE_ENCODING_UNKNOWN 0
LENGTH_PREFIXED 1
DELIMITED 2

enum NullValue google/protobuf/struct.proto

NullValue is a singleton enumeration to represent the null value for the Value type union.

The JSON representation for NullValue is JSON null.

Name Number Description
NULL_VALUE 0

Null value.

enum OptimizeMode google/protobuf/descriptor.proto

Generated classes can be optimized for speed or code size.

Name Number Description
SPEED 1

Generate complete code for parsing, serialization,

CODE_SIZE 2

etc.

Use ReflectionOps to implement these methods.

LITE_RUNTIME 3

Generate code using MessageLite and the lite runtime.

enum OptionRetention google/protobuf/descriptor.proto

If set to RETENTION_SOURCE, the option will be omitted from the binary.

Name Number Description
RETENTION_UNKNOWN 0
RETENTION_RUNTIME 1
RETENTION_SOURCE 2

enum OptionTargetType google/protobuf/descriptor.proto

This indicates the types of entities that the field may apply to when used as an option. If it is unset, then the field may be freely used as an option on any kind of entity.

Name Number Description
TARGET_TYPE_UNKNOWN 0
TARGET_TYPE_FILE 1
TARGET_TYPE_EXTENSION_RANGE 2
TARGET_TYPE_MESSAGE 3
TARGET_TYPE_FIELD 4
TARGET_TYPE_ONEOF 5
TARGET_TYPE_ENUM 6
TARGET_TYPE_ENUM_ENTRY 7
TARGET_TYPE_SERVICE 8
TARGET_TYPE_METHOD 9

enum RepeatedFieldEncoding google/protobuf/descriptor.proto

Name Number Description
REPEATED_FIELD_ENCODING_UNKNOWN 0
PACKED 1
EXPANDED 2

enum Semantic google/protobuf/descriptor.proto

Represents the identified object's effect on the element in the original .proto file.

Name Number Description
NONE 0

There is no effect or the effect is indescribable.

SET 1

The element is set or otherwise mutated.

ALIAS 2

An alias to the element is returned.

enum SymbolVisibility google/protobuf/descriptor.proto

Describes the 'visibility' of a symbol with respect to the proto import system. Symbols can only be imported when the visibility rules do not prevent it (ex: local symbols cannot be imported). Visibility modifiers can only set on message and enum as they are the only types available to be referenced from other files.

Name Number Description
VISIBILITY_UNSET 0
VISIBILITY_LOCAL 1
VISIBILITY_EXPORT 2

enum Type google/protobuf/descriptor.proto

Name Number Description
TYPE_DOUBLE 1

0 is reserved for errors. Order is weird for historical reasons.

TYPE_FLOAT 2
TYPE_INT64 3

Not ZigZag encoded. Negative numbers take 10 bytes. Use TYPE_SINT64 if negative values are likely.

TYPE_UINT64 4
TYPE_INT32 5

Not ZigZag encoded. Negative numbers take 10 bytes. Use TYPE_SINT32 if negative values are likely.

TYPE_FIXED64 6
TYPE_FIXED32 7
TYPE_BOOL 8
TYPE_STRING 9
TYPE_GROUP 10

Tag-delimited aggregate. Group type is deprecated and not supported after google.protobuf. However, Proto3 implementations should still be able to parse the group wire format and treat group fields as unknown fields. In Editions, the group wire format can be enabled via the message_encoding feature.

TYPE_MESSAGE 11

Length-delimited aggregate.

TYPE_BYTES 12

New in version 2.

TYPE_UINT32 13
TYPE_ENUM 14
TYPE_SFIXED32 15
TYPE_SFIXED64 16
TYPE_SINT32 17

Uses ZigZag encoding.

TYPE_SINT64 18

Uses ZigZag encoding.

enum Utf8Validation google/protobuf/descriptor.proto

Name Number Description
UTF8_VALIDATION_UNKNOWN 0
VERIFY 2
NONE 3

enum VerificationState google/protobuf/descriptor.proto

The verification state of the extension range.

Name Number Description
DECLARATION 0

All the extensions of the range must be declared.

UNVERIFIED 1