{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CapellaBucketUpdateRequest", "title": "CapellaBucketUpdateRequest", "type": "object", "description": "Request to update a Capella bucket", "properties": { "memoryAllocationInMb": { "type": "integer", "description": "Memory allocation in megabytes" }, "durabilityLevel": { "type": "string", "enum": [ "none", "majority", "majorityAndPersistActive", "persistToMajority" ] }, "replicas": { "type": "integer", "minimum": 1, "maximum": 3 }, "flush": { "type": "boolean" }, "timeToLiveInSeconds": { "type": "integer" } } }