{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/UpdateServiceInstanceRequest", "title": "UpdateServiceInstanceRequest", "type": "object", "description": "Request body for updating an existing SAP HANA Cloud service instance. Only include the parameters that need to be changed.", "properties": { "name": { "type": "string", "description": "The updated name for the service instance.", "example": "Example Title" }, "parameters": { "$ref": "#/components/schemas/InstanceParameters" }, "labels": { "type": "object", "description": "Updated labels for the service instance.", "additionalProperties": { "type": "array", "items": { "type": "string" } }, "example": "example_value" }, "service_plan_id": { "type": "string", "format": "uuid", "description": "The new service plan identifier if changing the instance plan.", "example": "500123" } } }