OpenAPI · Schema

OpenAPI Paths Object

Holds the relative paths to the individual endpoints and their operations. The path is appended to the URL from the Server Object to construct the full URL.

DocumentationRESTSpecification
View JSON Schema on GitHub

JSON Schema

openapi-paths.json Raw ↑
{
  "$id": "openapi-paths.json",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "OpenAPI Paths Object",
  "description": "Holds the relative paths to the individual endpoints and their operations. The path is appended to the URL from the Server Object to construct the full URL.",
  "type": "object",
  "patternProperties": {
    "^\\/": {
      "$ref": "openapi-path-item.json"
    },
    "^x-": {}
  },
  "additionalProperties": false
}