-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpaths.py
27 lines (22 loc) · 1017 Bytes
/
paths.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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 [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.
"""