We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 934b1ef commit 7c5b1bbCopy full SHA for 7c5b1bb
packages/models-library/src/models_library/api_schemas_catalog/services_ports.py
@@ -28,7 +28,7 @@ class ServicePortGet(BaseModel):
28
29
@staticmethod
30
def _update_json_schema_extra(schema: JsonDict) -> None:
31
- input_example = {
+ example_input: dict[str, Any] = {
32
"key": "input_1",
33
"kind": "input",
34
"content_schema": {
@@ -41,9 +41,9 @@ def _update_json_schema_extra(schema: JsonDict) -> None:
41
}
42
schema.update(
43
{
44
- "example": input_example,
+ "example": example_input,
45
"examples": [
46
- input_example,
+ example_input,
47
48
"key": "output_1",
49
"kind": "output",
0 commit comments