{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/redis", "title": "redis", "type": "object", "description": "A Redis instance", "required": [ "id", "createdAt", "updatedAt", "status", "region", "plan", "name", "owner", "options", "ipAllowList", "version", "dashboardUrl" ], "properties": { "id": { "description": "The ID of the Redis instance", "type": "string" }, "createdAt": { "description": "The creation time of the Redis instance", "type": "string", "format": "date-time" }, "updatedAt": { "description": "The last updated time of the Redis instance", "type": "string", "format": "date-time" }, "status": { "$ref": "#/components/schemas/databaseStatus" }, "region": { "$ref": "#/components/schemas/region" }, "plan": { "$ref": "#/components/schemas/redisPlan" }, "name": { "description": "The name of the Redis instance", "type": "string" }, "owner": { "$ref": "#/components/schemas/owner" }, "options": { "$ref": "#/components/schemas/redisOptions" }, "ipAllowList": { "description": "The IP allow list for the Redis instance", "type": "array", "items": { "$ref": "#/components/schemas/cidrBlockAndDescription" } }, "environmentId": { "description": "The ID of the environment the Redis instance is associated with", "type": "string" }, "version": { "description": "The version of Redis", "type": "string" }, "dashboardUrl": { "type": "string", "description": "The URL to view the Redis instance in the Render Dashboard" } } }