Skip to content

Configuration Reference

The OpenAPI 3.1 specification includes numerous fields and configurations, many of which are supported and recognized by the OpenAPI plug-in.

For comprehensive guidelines on OpenAPI 3.1, please refer to this link.

You can access the full list of annotations applicable to both proto files and configuration files here.

JSON Schema

We recommend using an IDE tool that supports JSON/YAML Schemas based on the file format. This can help you with auto-completion when using the configuration files.

You can also access the schema file here.

Field Configuration

While most of the OpenAPI annotations are directly related to the OpenAPI 3.1 specification, Field Configuration allows you to modify the behavior of the OpenAPI plug-in itself, rather than the specification.

path_param_name

Allows you to specify an alternative name for this field when it is utilized as a path parameter.

required

Allows you to mark the field as required on the field directly. See Explicitly Define Required Fields for other ways to mark the field as required.

OpenAPI differences

While the majority of the annotations align closely with the OpenAPI specification, there are a few notable differences and unique elements that should be highlighted.

Type Slice

Type in the OpenAPI 3.1 specification can be either a single string or an array of strings. In the annotations, it is always represented as an array. However, if only one item is present, the final OpenAPI output will simplify it to a single value.

References

In Schemas, you can use ref to refer to a proto message and popuate its details.

import "meshapi/gateway/annotations.proto";

service MyService {
    rpc Do(Request) returns (Response) {
        option (meshapi.gateway.openapi_operation) = {
            responses: [
                {
                    key: "206",
                    value: {
                        content: [
                            {
                                key: "application/json",
                                value: {
                                    schema: {
                                        ref: ".main.PartialResponse"
                                    }
                                }
                            }
                        ]
                    }
                }
            ]
        };
    };
}
openapi:
  services:
    - selector: "~.MyService"
      methods:
        Do:
          responses:
            "206":
              content:
                application/json:
                  schema:
                    ref: ".main.PartialResponse"

Extras

If you need to specify any additional fields from the OpenAPI specification that are not covered by the annotations, or if you have custom fields you want to include (such as custom extensions), you can use the extra property to add these keys:

1
2
3
4
5
6
7
8
9
import "meshapi/gateway/annotations.proto";

message User {
    option (meshapi.gateway.openapi_schema) = {
    extra: [
      {key: "x-custom-key", value: {string_value: "value"}}
    ]
  };
}
1
2
3
4
5
6
openapi:
  messages:
    - selector: "~.User"
      schema:
        extra:
          key: value