{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ProviderAccount", "title": "Cloud Gateway Provider Account", "description": "Object containing mapping for organization and cloud provider to account ID.", "type": "object", "properties": { "id": { "$ref": "#/components/schemas/ProviderAccountId" }, "provider": { "$ref": "#/components/schemas/ProviderName" }, "provider_account_id": { "description": "ID of the cloud provider account.", "type": "string", "readOnly": true }, "created_at": { "description": "An RFC-3339 timestamp representation of provider account creation date.", "type": "string", "format": "date-time", "example": "2022-11-04T20:10:06.927Z", "readOnly": true }, "updated_at": { "description": "An RFC-3339 timestamp representation of provider account update date.", "type": "string", "format": "date-time", "example": "2022-11-04T20:10:06.927Z", "readOnly": true } }, "required": [ "id", "provider", "provider_account_id", "created_at", "updated_at" ] }