{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/UpdateParametersRequest", "title": "UpdateParametersRequest", "type": "object", "required": [ "updateDetails" ], "description": "Request body for updating dataset parameters", "properties": { "updateDetails": { "type": "array", "items": { "type": "object", "required": [ "name", "newValue" ], "properties": { "name": { "type": "string", "description": "The parameter name" }, "newValue": { "type": "string", "description": "The new value for the parameter" } } }, "example": [] } } }