action ptv_routes_one_or_more_routes { label: "View route names and numbers for all routes" provider: ptv method: GET path: "/v3/routes" encoding: json input: { type: "object" properties: { devid: { type: "string" } route_name: { type: "string" } route_types: { type: "array" items: { type: "integer" format: "int32" enum: [0, 1, 2, 3, 4] } } signature: { type: "string" } token: { type: "string" } } additionalProperties: false } output: { type: "object" properties: { route: { type: "object" properties: {} } status: { type: "object" properties: { health: { type: "integer" format: "int32" description: "API system health status (0=offline, 1=online)" enum: [0, 1] } version: { type: "string" description: "API Version number" } } } } } }