Overlay Specification v1.1.0

Version 1.1.0

More details about this document
This version:
https://spec.openapis.org/overlay/v1.1.0.html
Latest published version:
https://spec.openapis.org/overlay/latest.html
Latest editor's draft:
https://github.com/OAI/Overlay-Specification/
Editors:
Lorna Mitchell
Mike Kistler
Ralf Handl
Vincent Biret
Former editors:
Darrel Miller
Greg Dennis
Kevin Swiber
Mike Ralphson
Ron Ratovsky
Participate
GitHub OAI/Overlay-Specification
File a bug
Commit history
Pull requests

What is the Overlay Specification?

The Overlay Specification defines a document format for information that augments an existing [OpenAPI] description yet remains separate from the OpenAPI description’s source document(s).

Status of This Document

The source-of-truth for this specification is the HTML file referenced above as This version.

1. Overlay Specification

1.1 Version 1.1.0

The key words “MUST”, “MUST NOT”, “REQUIRED”, “SHALL”, “SHALL NOT”, “SHOULD”, “SHOULD NOT”, “RECOMMENDED”, “NOT RECOMMENDED”, “MAY”, and “OPTIONAL” in this document are to be interpreted as described in BCP 14 [RFC2119] [RFC8174] when, and only when, they appear in all capitals, as shown here.

This document is licensed under The Apache License, Version 2.0.

2. Introduction

The Overlay Specification is a companion to the [OpenAPI] Specification. An Overlay describes a set of changes to be applied or “overlaid” onto an existing OpenAPI description.

The main purpose of the Overlay Specification is to provide a way to repeatably apply transformations to one or many OpenAPI descriptions. Use cases include updating descriptions, adding metadata to be consumed by another tool, or removing certain elements from an API description before sharing it with partners. An Overlay may be specific to a single OpenAPI description or be designed to apply the same transform to any OpenAPI description.

3. Definitions

3.1 Overlay

An Overlay is a JSON or YAML structure containing an ordered list of Action Objects that are to be applied to the target document. Each Action Object has a target property and a modifier type (update, remove, or copy). The target property is a RFC9535 JSONPath query expression that identifies the elements of the target document to be updated and the modifier determines the change.

4. Specification

4.1 Versions

The Overlay Specification is versioned using a major.minor.patch versioning scheme. The major.minor portion of the version string (for example 1.0) SHALL designate the Overlay feature set. patch versions address errors in, or provide clarifications to, this document, not the feature set. The patch version SHOULD NOT be considered by tooling, making no distinction between 1.0.0 and 1.0.1 for example.

Note: Version 1.0.0 of the Overlay Specification was released after spending some time in draft and being implemented by a few early-adopting tool providers. Check with your tool provider for the details of what is supported in each tool.

4.2 Format

An Overlay document that conforms to the Overlay Specification is itself a JSON object, which may be represented either in JSON or YAML format. Examples in this specification will be shown in YAML for brevity.

Implementations MUST support applying either JSON or YAML Overlay documents to OpenAPI descriptions represented in either YAML or JSON format.

All field names in the specification are case sensitive. This includes all fields that are used as keys in a map, except where explicitly noted that keys are case insensitive.

The Overlay schema defines two types of fields: fixed fields, which have a declared name, and patterned fields, which have a declared pattern for the field name.

Patterned fields MUST have unique names within the containing object.

4.2.1 JSON and YAML Compatibility

In order to preserve the ability to round-trip between YAML and JSON formats, YAML version 1.2 is RECOMMENDED along with the additional constraints listed in [RFC9512] Section 3.4.

The recommendation in previous versions of this specification to restrict YAML to its “JSON” schema ruleset allowed for the inclusion of certain values that (despite the name) cannot be represented in JSON. Overlay authors SHOULD NOT rely on any such JSON-incompatible YAML values.

4.2.2 Case Sensitivity

As most field names and values in the Overlay Specification are case-sensitive, this document endeavors to call out any case-insensitive names and values.

4.2.3 Rich Text Formatting

Throughout the specification description fields are noted as supporting CommonMark markdown formatting. Where Overlay tooling renders rich text it MUST support, at a minimum, markdown syntax as described by CommonMark 0.27. Tooling MAY choose to ignore some CommonMark or extension features to address security concerns.

While the framing of CommonMark 0.27 as a minimum requirement means that tooling MAY choose to implement extensions on top of it, note that any such extensions are by definition implementation-defined and will not be interoperable. Overlay Description authors SHOULD consider how text using such extensions will be rendered by tools that offer only the minimum support.

4.3 Relative References in URIs

Unless specified otherwise, all fields that are URI references MAY be relative references as defined by [RFC3986] Section 4.2.

4.4 Schema

In the following description, if a field is not explicitly REQUIRED or described with a MUST or SHALL, it can be considered OPTIONAL.

4.4.1 Overlay Object

This is the root object of the Overlay.

4.4.1.1 Fixed Fields
Field Name Type Description
overlay string REQUIRED. This string MUST be the version number of the Overlay Specification that the Overlay document uses. The overlay field SHOULD be used by tooling to interpret the Overlay document.
info Info Object REQUIRED. Provides metadata about the Overlay. The metadata MAY be used by tooling as required.
extends string URI reference that identifies the target document (such as an [OpenAPI] document) this overlay applies to.
actions [Action Object] REQUIRED An ordered list of actions to be applied to the target document. The array MUST contain at least one value.

This object MAY be extended with Specification Extensions.

The list of actions MUST be applied in sequential order to ensure a consistent outcome. Actions are applied to the result of the previous action. This enables objects to be deleted in one action and then re-created in a subsequent action, for example.

The extends property can be used to indicate that the Overlay was designed to update a specific [OpenAPI] document. Where no extends is provided it is the responsibility of tooling to apply the Overlay document to the appropriate OpenAPI document(s).

In the following example the extends property specifies that the overlay is designed to update the OpenAPI Tic Tac Toe example document, identified by an absolute URI.

overlay: 1.0.0
info:
  title: Overlay for the Tic Tac Toe API document
  version: 1.0.0
extends: 'https://raw.githubusercontent.com/OAI/learn.openapis.org/refs/heads/main/examples/v3.1/tictactoe.yaml'
...

The extends property can also specify a relative URI reference.

overlay: 1.0.0
info:
  title: Overlay for the Tic Tac Toe API document
  version: 1.0.0
extends: './tictactoe.yaml'

4.4.2 Info Object

The object provides metadata about the Overlay. The metadata MAY be used by the clients if needed.

4.4.2.1 Fixed Fields
Field Name Type Description
title string REQUIRED. A human readable description of the purpose of the overlay.
version string REQUIRED. A version identifier for indicating changes to the Overlay document.
description string A description of the Overlay Document. [CommonMark] syntax MAY be used for rich text representation.

This object MAY be extended with Specification Extensions.

4.4.3 Action Object

This object represents one or more changes to be applied to the target document at the locations defined by the target JSONPath expression.

4.4.3.1 Fixed Fields
Field Name Type Description
target string REQUIRED A RFC9535 JSONPath query expression selecting nodes in the target document.
description string A description of the action. [CommonMark] syntax MAY be used for rich text representation.
update Any If the target selects object nodes, the value of this field MUST be an object with the properties and values to merge with each selected object. If the target selects array nodes, the value of this field MUST be an array to concatenate with each selected array, or an object or primitive value to append to each selected array. If the target selects primitive nodes, the value of this field MUST be a primitive value to replace each selected node. This field has no impact if the remove field of this action object is true or if the copy field contains a value.
copy string A JSONPath expression selecting a single node to copy into the target nodes. If the target selects object nodes, the value of this field MUST be an object with the properties and values to merge with each selected object. If the target selects array nodes, the value of this field MUST be an array to concatenate with each selected array, or an object or primitive value to append to each selected array. If the target selects primitive nodes, the value of this field MUST be a primitive value to replace each selected node. This field has no impact if the remove field of this action object is true or if the update field contains a value.
remove boolean A boolean value that indicates that each of the target nodes MUST be removed from the the map or array it is contained in. The default value is false.

If the target JSONPath expression selects zero nodes, the action succeeds without changing the target document. If the target JSONPath expression selects two or more nodes for an update or copy action, the selected nodes MUST be either all objects or all arrays or all primitives.

The properties of the update or copy object MUST be compatible with the target object referenced by the JSONPath key. When the Overlay document is applied, the update or copy object is merged with the target object by recursively applying these steps:

  • A property that only exists in the target object is left unchanged.
  • A property that only exists in the update or copy object is inserted into the target object.
  • If a property exists in both update or copy and target object:
    • A primitive value of the update or copy property replaces a primitive value of the target property.
    • An array value of the update or copy property is concatenated with an array value of the target property.
    • An object value of the update or copy property is recursively merged with an object value of the target property.
    • Other property value combinations are incompatible and result in an error.

This object MAY be extended with Specification Extensions.

4.5 Examples

4.5.1 Structured Overlay Example

When updating properties throughout the target document it may be more efficient to create a single Action Object that mirrors the structure of the target document. e.g.

overlay: 1.0.0
info:
  title: Structured Overlay
  version: 1.0.0
actions:
  - target: '$' # Root of document
    update:
      info:
        x-overlay-applied: structured-overlay
      paths:
        '/':
          summary: 'The root resource'
          get:
            summary: 'Retrieve the root resource'
            x-rate-limit: 100
        '/pets':
          get:
            summary: 'Retrieve a list of pets'
            x-rate-limit: 100
      components:
      tags:

4.5.2 Targeted Overlay Example

Alternatively, where only a small number of updates need to be applied to a large document, each Action Object MAY be more targeted.

overlay: 1.1.0
info:
  title: Targeted Overlay
  version: 1.0.0
actions:
  - target: $.paths['/foo'].get.description
    update: This is the new description
  - target: $.paths['/bar'].get.description
    update: This is the updated description
  - target: $.paths['/bar']
    update:
      post:
        description: This is an updated description of a child object
        x-safe: false

4.5.3 Wildcard Overlay Example

One significant advantage of using the JSONPath syntax is that it allows referencing multiple nodes in the target document. This would allow a single update object to be applied to multiple target objects using wildcards and other multi-value selectors.

overlay: 1.0.0
info:
  title: Update many objects at once
  version: 1.0.0
actions:
  - target: $.paths.*.get
    update:
      x-safe: true
  - target: $.paths.*.get.parameters[?@.name=='filter' && @.in=='query']
    update:
      schema:
        $ref: '#/components/schemas/filterSchema'

4.5.4 Array Modification Examples

Array elements can be added using the update action.

overlay: 1.0.0
info:
  title: Add an array element
  version: 1.0.0
actions:
  - target: $.paths.*.get.parameters
    update:
      name: newParam
      in: query

Array elements can be deleted using the remove action. Use of array indexes to remove array items should be avoided where possible as indexes will change when items are removed.

overlay: 1.0.0
info:
  title: Remove an array element
  version: 1.0.0
actions:
  - target: $.paths.*.get.parameters[?@.name == 'dummy']
    remove: true

This also works for primitive target nodes:

overlay: 1.1.0
info:
  title: Remove a primitive array element
  version: 1.0.0
actions:
  - target: $.paths.*.get.tags[?@ == 'dummy']
    remove: true

4.5.5 Traits Example

By annotating a target document (such as an [OpenAPI] document) using Specification Extensions such as x-oai-traits, the author of the target document MAY identify where overlay updates should be applied.

openapi: 3.1.0
info:
  title: API with a paged collection
  version: 1.0.0
paths:
  /items:
    get:
      x-oai-traits: ['paged']
      responses:
        200:
          description: OK
  /items/{id}/subitems:
    get:
      x-oai-traits: ['paged']
      parameters:
        - name: id
          in: path
          required: true
      responses:
        200:
          description: OK
  /other:
    get:
      responses:
        200:
          description: OK

With the above OpenAPI document, the following Overlay document will apply the necessary updates to describe how paging is implemented, where that trait has been applied.

overlay: 1.0.0
info:
  title: Apply Traits
  version: 1.0.0
actions:
  - target: $.paths[?(@.get['x-oai-traits'][?(@ == 'paged')])].get
    update:
      parameters:
        - name: top
          in: query
          # ...
        - name: skip
          in: query
          # ...

resulting in

openapi: 3.1.0
info:
  title: API with a paged collection
  version: 1.0.0
paths:
  /items:
    get:
      x-oai-traits: ["paged"]
      responses:
        200:
          description: OK
      parameters:
        - name: top
          in: query
          # ...
        - name: skip
          in: query
          # ...
  /items/{id}/subitems:
    get:
      x-oai-traits: ["paged"]
      parameters:
        - name: id
          in: path
          required: true
        - name: top
          in: query
          # ...
        - name: skip
          in: query
          # ...
      responses:
        200:
          description: OK
  /other:
    get:
      responses:
        200:
          description: OK

This approach allows inversion of control as to where the Overlay updates apply to the target document itself.

4.5.6 Copy Example

Copy actions behave similarly to update actions but source the new values to merge with the target from the document being transformed instead of providing them in the Overlay document. Copy actions MAY be used in sequence with update or remove actions to perform more advanced transformations like moving or renaming nodes.

4.5.6.1 Simple Copy

This example shows how to copy all operations from the items path item to the some-items path item.

4.5.6.1.1 Source Description
openapi: 3.1.0
info:
  title: Example API
  version: 1.0.0
paths:
  /items:
    get:
      responses:
        200:
          description: OK
  /some-items:
    delete:
      responses:
        200:
          description: OK
4.5.6.1.2 Overlay
overlay: 1.1.0
info:
  title: Copy contents of an existing path to a new location
  version: 1.0.0
actions:
  - target: '$.paths["/some-items"]'
    copy: '$.paths["/items"]'
    description: 'copies recursively all elements from the "items" path item to the new "some-items" path item without ensuring the node exists before the copy'
4.5.6.1.3 Result Description
openapi: 3.1.0
info:
  title: Example API
  version: 1.0.0
paths:
  /items:
    get:
      responses:
        200:
          description: OK
  /some-items:
    get:
      responses:
        200:
          description: OK
    delete:
      responses:
        200:
          description: OK
4.5.6.2 Ensure the Target Exists and Copy

This example shows how to copy all operations from the items path item to the other-items path item after first ensuring the target exists with an update action.

4.5.6.2.1 Source Description
openapi: 3.1.0
info:
  title: Example API
  version: 1.0.0
paths:
  /items:
    get:
      responses:
        200:
          description: OK
  /some-items:
    delete:
      responses:
        200:
          description: OK
4.5.6.2.2 Overlay
overlay: 1.1.0
info:
  title: Create a path and copy the contents of an existing path to the new path
  version: 1.0.0
actions:
  - target: '$.paths'
    update: { "/other-items": {} }
  - target: '$.paths["/other-items"]'
    copy: '$.paths["/items"]'
    description: 'copies recursively all elements from the "items" path item to the new "other-items" path item while ensuring the node exists before the copy'
4.5.6.2.3 Result Description
openapi: 3.1.0
info:
  title: Example API
  version: 1.0.0
paths:
  /items:
    get:
      responses:
        200:
          description: OK
  /other-items:
    get:
      responses:
        200:
          description: OK
  /some-items:
    delete:
      responses:
        200:
          description: OK
4.5.6.3 Move Example

This example shows how to rename the items path item to new-items using a sequence of overlay actions:

  1. Use an update action to ensure the target path item exists.
  2. Use a copy action to copy the source path item to the target.
  3. Use a remove action to delete the original source path item.
4.5.6.3.1 Source Description
openapi: 3.1.0
info:
  title: Example API
  version: 1.0.0
paths:
  /items:
    get:
      responses:
        200:
          description: OK
  /some-items:
    delete:
      responses:
        200:
          description: OK
4.5.6.3.2 Overlay
overlay: 1.1.0
info:
  title: Update the path for an API endpoint
  version: 1.0.0
actions:
  - target: '$.paths'
    update: { "/new-items": {} }
  - target: '$.paths["/new-items"]'
    copy: '$.paths["/items"]'
  - target: '$.paths["/items"]'
    remove: true
    description: 'moves (renames) the "items" path item to "new-items"'
4.5.6.3.3 Result Description
openapi: 3.1.0
info:
  title: Example API
  version: 1.0.0
paths:
  /new-items:
    get:
      responses:
        200:
          description: OK
  /some-items:
    delete:
      responses:
        200:
          description: OK

4.6 Specification Extensions

While the Overlay Specification tries to accommodate most use cases, additional data can be added to extend the specification at certain points.

The extension properties are implemented as patterned fields that are always prefixed by "x-".

Field Pattern Type Description
^x- Any Allows extensions to the Overlay Specification. The field name MUST begin with x-, for example, x-internal-id. Field names beginning x-oai- and x-oas- are reserved for uses defined by the OpenAPI Initiative. The value MAY be null, a primitive, an array or an object.

The extensions may or may not be supported by the available tooling, but those may be extended as well to add requested support (if tools are internal or open-sourced).

4.7 File Naming Convention

Overlay files MAY choose to follow the convention of a purpose.overlay.yaml file naming pattern. Other file naming conventions are also supported.

4.8 RFC9535 Compliance

[RFC9535] is a recent specification and libraries implementing JSONPath support might predate the RFC. Those libraries might differ entirely (expressions syntax is incompatible), or implement additional capabilities (superset of the RFC). A tool or library MUST fully implement [RFC9535] when parsing and expanding JSONPath query expressions to be compliant with the Overlay specification.

Interoperable Overlay Documents MUST use RFC9535 JSONPath query expressions and MUST NOT use tool-specific JSONPath extensions.

4.9 Comments in OpenAPI Descriptions

Some formats, like YAML or JSONC, support using comments which do not impact the semantic meaning of the description. Applying Overlay Actions to a description MAY result in the loss of such comments in the updated description. The exact behavior is specific to the tool implementing the Overlay Specification.

A. Appendix A: Revision History

Version Date Notes
1.1.0 2026-01-14 Release of the Overlay Specification 1.1.0
1.0.0 2024-10-17 First release of the Overlay Specification

B. References

B.1 Normative references

[CommonMark]
CommonMark Spec. URL: https://spec.commonmark.org/
[OpenAPI]
OpenAPI Specification. Darrell Miller; Jason Harmon; Jeremy Whitlock; Marsh Gardiner; Mike Ralphson; Ron Ratovsky; Tony Tam; Uri Sarid. OpenAPI Initiative. URL: https://www.openapis.org/
[RFC2119]
Key words for use in RFCs to Indicate Requirement Levels. S. Bradner. IETF. March 1997. Best Current Practice. URL: https://www.rfc-editor.org/rfc/rfc2119
[RFC3986]
Uniform Resource Identifier (URI): Generic Syntax. T. Berners-Lee; R. Fielding; L. Masinter. IETF. January 2005. Internet Standard. URL: https://www.rfc-editor.org/rfc/rfc3986
[RFC8174]
Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words. B. Leiba. IETF. May 2017. Best Current Practice. URL: https://www.rfc-editor.org/rfc/rfc8174
[RFC8259]
The JavaScript Object Notation (JSON) Data Interchange Format. T. Bray, Ed. IETF. December 2017. Internet Standard. URL: https://www.rfc-editor.org/rfc/rfc8259
[RFC9512]
YAML Media Type. R. Polli; E. Wilde; E. Aro. IETF. February 2024. Informational. URL: https://www.rfc-editor.org/rfc/rfc9512
[RFC9535]
JSONPath: Query Expressions for JSON. S. Gössner, Ed.; G. Normington, Ed.; C. Bormann, Ed. IETF. February 2024. Proposed Standard. URL: https://www.rfc-editor.org/rfc/rfc9535
[YAML]
YAML Ain’t Markup Language (YAML™) Version 1.2. Oren Ben-Kiki; Clark Evans; Ingy döt Net. 1 October 2009. URL: http://yaml.org/spec/1.2/spec.html