action tomtom_get_capabilities { label: "GetCapabilities" description: "The GetCapabilities call is part of TomTom's implementation of version 1.1.1\nthe Web Map Service (WMS). It provides descriptions of the other calls\nthat are available in the implementation." provider: tomtom method: GET path: "/map/{versionNumber}/wms//" encoding: json input: { type: "object" properties: { request: { type: "string" enum: ["GetCapabilities"] } service: { type: "string" enum: ["WMS"] } version: { type: "string" enum: ["1.1.1"] } versionNumber: { type: "integer" enum: [1] } } required: ["request", "service", "versionNumber"] additionalProperties: false } output: { type: "object" additionalProperties: true } }