Skip to content

Latest commit

 

History

History
87 lines (66 loc) · 5 KB

doc-comments-guide.md

File metadata and controls

87 lines (66 loc) · 5 KB

Documenting the API specification

A specification is not only about formalizing data structures, it's also about explaining what these structures and their properties are used for.

Documentation of the TypeScript specification is made using JSDoc comments, i.e. multiline comments starting with /** above a type or field declaration.

The first phrase is used as the mandatory operation summary in the OpenAPI document. Refer to API documentation guidelines.

NOTE: You must add a period or \n at the end of the phrase for it to parse correctly. The period will be properly omitted from the output OpenAPI document.

Additional lines start with a * followed by a space. Long lines are allowed but it's better if text is formatted to a maximum of 120 characters per line.

Example

/**
 * Get ranking evaluation.
 * Enables you to evaluate the quality of ranked search results over a set of typical search queries.
 * @rest_spec_name rank_eval
 * @availability stack since=6.2.0 stability=stable
 * @index_privileges read
 */
export interface Request extends RequestBase {
  path_parts: {
    /**
     * Comma-separated list of data streams, indices, and index aliases used to limit the request. Wildcard (`*`) expressions are supported.
     * To target all data streams and indices in a cluster, omit this parameter or use `_all` or `*`.
     */
    index: Indices
  }
  query_parameters: {
    /**
     * If `false`, the request returns an error if any wildcard expression, index alias, or `_all` value targets only missing or closed indices. This behavior applies even if the request targets other open indices. For example, a request targeting `foo*,bar*` returns an error if an index starts with `foo` but no index starts with `bar`.
     * @server_default true
     */
    allow_no_indices?: boolean
    expand_wildcards?: ExpandWildcards
    /**
     * If `true`, missing or closed indices are not included in the response.
     * @server_default false
     */
    ignore_unavailable?: boolean
    search_type?: string
  }
  body: {
    /** A set of typical search requests, together with their provided ratings. */
    requests: RankEvalRequestItem[]
    /**
     * Definition of the evaluation metric to calculate.
     */
    metric?: RankEvalMetric
  }
}

(original source code)

For more information about the tags in this example (and other common tags such as @deprecated and @doc_id), refer to the Modeling Guide.

Markup language

The specification is the starting point for a number of generators that produce a large range of artifacts, starting with source code in 10 different programming languages. It's essential for the API documentation to be part of these generated artifacts, e.g. to provide autocompletion help in IDEs when using a client library.

Each of these targets has a different way to format inline documentation: Java code uses HTML, Python uses reStructuredText, Rust uses Markdown, etc. To enable rich documentation to be output, the specification doc comments must not be just plain text, but use a well-defined markup language so that generators can reliably transcode them to their target representation.

We have settled on using GitHub Flavored Markdown (GFM) for doc comments. It is based on the well-defined CommonMark specification with a few additions, most notably tables.

GFM also has implementations in most languages, meaning that code generators will be able to easily parse the doc comments and transcode them.

Structuring a doc-comment

Terseness

Doc comments are reference material: they should be as succinct as possible while capturing all the necessary information to use the elements they're documenting. Remember that they will often show up in small IDE autocompletion popups!

In particular, doc comments are not the right place for tutorials or examples, which should be in dedicated documentation pages. These pages can of course be linked from the doc comments.

API endpoints will also have a @doc_url JSDoc tag that links to that API's detailed documentation page.

Multi-paragraph doc comments

A single sentence is not always enough to explain a type or a field and doc comments will have multiple paragraphs. It is important that the first paragraph provides a self-contained description of the item that is being documented. The reason is twofold:

  • people skim documentation quickly and should get the gist of the information from that first sentence, and read others if they want to dive in,
  • Some IDEs may choose to display only the first paragraph or even the first sentence of a doc-comment in their help popup to keep it small, and then require an additional action from the user to display the full text.