action rumble_get_sites { label: "Get all sites" provider: rumble method: GET path: "/org/sites" encoding: json output: { type: "array" items: { type: "object" required: ["id", "name"] properties: { created_at: { type: "integer" format: "int64" } description: { type: "string" } excludes: { type: "string" } id: { type: "string" format: "uuid" } name: { type: "string" } permanent: { type: "boolean" } scope: { type: "string" } subnets: { type: "object" } updated_at: { type: "integer" format: "int64" } } } } }