{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AzureVHubPeeringAttachmentConfig", "title": "Azure Virtual Hub Peering Attachment Config", "type": "object", "properties": { "kind": { "enum": [ "azure-vhub-peering-attachment" ], "title": "Azure Virtual Hub Peering Attachment Type" }, "tenant_id": { "description": "Tenant ID of the Azure Virtual Hub resource.", "type": "string", "title": "Tenant ID" }, "subscription_id": { "description": "Subscription ID of the Azure Virtual Hub resource.", "type": "string", "title": "Subscription ID" }, "resource_group_name": { "description": "Resource Group Name of the Azure Virtual Hub resource.", "type": "string", "title": "Resource Group Name" }, "vhub_name": { "description": "Name of the Azure Virtual Hub resource.", "type": "string", "title": "Virtual Hub Name" } }, "additionalProperties": false, "required": [ "kind", "tenant_id", "subscription_id", "resource_group_name", "vhub_name" ] }