{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CreateServiceInstanceRequest", "title": "CreateServiceInstanceRequest", "type": "object", "description": "Request body for creating a new SAP HANA Cloud service instance.", "required": [ "name", "service_plan_id", "parameters" ], "properties": { "name": { "type": "string", "description": "The name for the new service instance. Must be unique within the subaccount.", "example": "Example Title" }, "service_plan_id": { "type": "string", "format": "uuid", "description": "The service plan identifier determining the instance type and available features.", "example": "500123" }, "parameters": { "$ref": "#/components/schemas/InstanceParameters" }, "labels": { "type": "object", "description": "Labels to assign to the instance for organization and filtering.", "additionalProperties": { "type": "array", "items": { "type": "string" } }, "example": "example_value" } } }