{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ConfigStore", "title": "ConfigStore", "type": "object", "properties": { "id": { "description": "The Config Store ID.", "type": "string", "format": "uuid", "example": "b9e81174-b5bb-4638-a3c3-8afe61a0abf8", "readOnly": true }, "name": { "description": "The name of the Config Store", "type": "string", "example": "My Name" }, "created_at": { "$ref": "#/components/schemas/CreatedAt" }, "updated_at": { "$ref": "#/components/schemas/UpdatedAt" } } }