Documentation
Documentation is one of the most critical aspects of API design. Users of your API are unable to dig into the implementation to understand the API better; often, the API surface definition and its corresponding documentation will be the only things a user has. Therefore, it is important that documentation be as clear, complete, and unambiguous as possible.
Guidance
In APIs defined in protocol buffers, public comments must be included over every component (service, method, message, field, enum, and enum value) using the protocol buffers comment format. This is important even in cases where the comment is terse and uninteresting, as numerous tools read these comments and use them.
Services, in particular, should have descriptive comments that explain what the service is and what users are able to do with it.
Style
Comments should be in grammatically correct American English. However, the first sentence of each comment should omit the subject and be in the third-person present tense:
Descriptions
Descriptions of messages and fields should be brief but complete. Sometimes comments are necessarily perfunctory because there is little to be said; however, before jumping to that conclusion, consider whether some of the following questions are relevant:
- What is it?
- How do you use it?
- What does it do if it succeeds? What does it do if it fails?
- Is it idempotent?
- What are the units? (Examples: meters, degrees, pixels)
- What are the side effects?
- What are common errors that may break it?
- What is the expected input format?
- What range of values does it accept? (Examples:
[0.0, 1.0)
,[1, 10]
)- Is the range inclusive or exclusive?
- For strings, what is the minimum and maximum length, and what characters
are allowed?
- If a value is above the maximum length, do you truncate or send an error?
- Is it always present? (Example: “Container for voting information. Present only when voting information is recorded.“)
- Does it have a default setting? (Example: “If
page_size
is omitted, the default is 50.“)
Formatting
Any formatting in comments must be in CommonMark. Headings and tables must not be used, as these cause problems for several tools, and are unsuitable for client library reference documentation.
Comments should use code font
for field or method names and for literals
(such as true
).
Raw HTML must not be used.
“ASCII art” attempts to present a diagram within the protos must not be used. The Markdown within the protos is consumed by a large number of renderers, and any ASCII art is very unlikely to be well-presented by all of them. If a diagram is useful in order to understand the API, include a link to a documentation page containing the diagram as an image.
Cross-references
Comments may “link” to another component (service, method, message, field,
enum, or enum value) by using the fully-qualified name of the element as a
Markdown reference link. For example: [Book][company.example.v1.Book]
External links
Comments may link to external pages to provide background information
beyond what is described in the public comments themselves. External links
must use absolute (rather than relative) URLs, including the protocol
(usually https
), and should not assume the documentation is located on
any particular host. For example:
[Spanner Documentation](https://cloud.google.com/spanner/docs)
Trademarked names
When referring to the proper, trademarked names of companies or products in comments, acronyms should not be used, unless the acronym is such dominant colloquial use that avoiding it would obscure the reference (example: IBM).
Comments should spell and capitalize trademarked names consistent with the trademark owner’s current branding.
Deprecations
To deprecate a component (service, method, message, field, enum, or enum value),
the deprecated
option
must be set to true
, and the first line of the respective comment
must start with "Deprecated: "
and provide alternative solutions for
developers. If there is no alternative solution, a deprecation reason must
be given.
Internal comments
Comments may be explicitly marked as internal by wrapping internal content
in (--
and --)
.
Non-public links, internal implementation notes (such as TODO
and FIXME
directives), and other such material must be marked as internal.