fix volume.manageable-volumes schema

another badly constructed schema were squeezing through json and openapi
validation

Change-Id: Ie8f9290a750503332384847fc5d99dbe37b0b322
This commit is contained in:
Artem Goncharov 2024-04-20 11:56:54 +02:00
parent e634ecbe11
commit 4d69a3d081

View File

@ -62,7 +62,7 @@ MANAGEABLE_VOLUME_DETAIL_SCHEMA: dict[str, Any] = {
"type": ["string", "null"], "type": ["string", "null"],
"description": "More information about the resource.", "description": "More information about the resource.",
}, },
**MANAGEABLE_VOLUME_SCHEMA, **MANAGEABLE_VOLUME_SCHEMA["properties"],
}, },
} }