1
0
Fork 0

Adding upstream version 0.5.1.

Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
Daniel Baumann 2025-05-04 22:22:32 +02:00
parent 303fa6e9d8
commit 97e6d74bac
Signed by: daniel
GPG key ID: FBB4F0E80A80222F
110 changed files with 12006 additions and 0 deletions

View file

@ -0,0 +1,28 @@
from typing import Dict
from .path_item import PathItem
Paths = Dict[str, PathItem]
"""
Holds the relative paths to the individual endpoints and their operations.
The path is appended to the URL from the [`Server Object`](#serverObject) in order to
construct the full URL.
The Paths MAY be empty, due to
[Access Control List (ACL) constraints](#securityFiltering).
"""
"""Patterned Fields"""
# "/{path}" : PathItem
"""
A relative path to an individual endpoint.
The field name MUST begin with a forward slash (`/`).
The path is **appended** (no relative URL resolution) to the expanded URL
from the [`Server Object`](#serverObject)'s `url` field in order to construct the full
URL. [Path templating](#pathTemplating) is allowed.
When matching URLs, concrete (non-templated) paths would be matched before their
templated counterparts. Templated paths with the same hierarchy but different templated
names MUST NOT exist as they are identical. In case of ambiguous matching, it's up to
the tooling to decide which one to use.
"""