action ix_api_facilities_list { label: "facilities_list" description: "Get a (filtered) list of `facilities`." provider: ix_api method: GET path: "/facilities" encoding: json input: { type: "object" properties: { address_country: { type: "string" } address_locality: { type: "string" } capability_media_type: { type: "string" } capability_speed: { type: "integer" } capability_speed__gt: { type: "integer" } capability_speed__gte: { type: "integer" } capability_speed__lt: { type: "integer" } capability_speed__lte: { type: "integer" } id: { type: "array" items: { type: "string" } } metro_area: { type: "string" } metro_area_network: { type: "string" } organisation_name: { type: "string" } postal_code: { type: "string" } } additionalProperties: false } output: { type: "array" items: { type: "object" } } }