{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/keyValuePOSTInput", "title": "keyValuePOSTInput", "type": "object", "description": "Input type for creating a Key Value instance", "required": [ "name", "ownerId", "plan" ], "properties": { "name": { "type": "string", "description": "The name of the Key Value instance" }, "ownerId": { "type": "string", "description": "The ID of the owner of the Key Value instance" }, "plan": { "$ref": "#/components/schemas/keyValuePlan" }, "region": { "type": "string", "description": "The region where the Key Value instance is located" }, "environmentId": { "type": "string" }, "maxmemoryPolicy": { "$ref": "#/components/schemas/maxmemoryPolicy" }, "ipAllowList": { "type": "array", "items": { "$ref": "#/components/schemas/cidrBlockAndDescription" } } } }