action meraki_get_network_floor_plans { label: "List the floor plans that belong to your network" description: "List the floor plans that belong to your network" provider: meraki method: GET path: "/networks/{networkId}/floorPlans" encoding: json input: { type: "object" properties: { networkId: { type: "string" } } required: ["networkId"] additionalProperties: false } output: { type: "array" items: { type: "object" } } }