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,24 @@
from typing import TYPE_CHECKING, Dict
if TYPE_CHECKING:
from .path_item import PathItem
Callback = Dict[str, "PathItem"]
"""
A map of possible out-of band callbacks related to the parent operation.
Each value in the map is a [Path Item Object](#pathItemObject)
that describes a set of requests that may be initiated by the API provider and the
expected responses. The key value used to identify the path item object is an
expression, evaluated at runtime, that identifies a URL to use for the callback
operation.
"""
"""Patterned Fields"""
# {expression}: 'PathItem' = ...
"""
A Path Item Object used to define a callback request and expected responses.
A [complete example](../examples/v3.0/callback-example.yaml) is available.
"""