action apis_get_services { label: "List all serviceNames for a particular provider" description: "List all serviceNames in the directory for a particular providerName\n" provider: apis method: GET path: "/{provider}/services.json" encoding: json input: { type: "object" properties: { provider: { type: "string" } } required: ["provider"] additionalProperties: false } output: { type: "object" properties: { data: { type: "array" items: { type: "string" } } } } }