action maif_find_all_global_jwt_verifiers { label: "Get all global JWT verifiers" description: "Get all global JWT verifiers" provider: maif method: GET path: "/api/verifiers" encoding: json output: { type: "array" items: { type: "object" description: "A JWT verifier used by multiple service descriptor" required: ["type", "id", "name", "desc", "enabled", "strict", "source", "algoSettings", "strategy"] properties: { algoSettings: { type: "object" } desc: { type: "string" description: "Verifier description" } enabled: { type: "boolean" description: "Is it enabled" } id: { type: "string" description: "Verifier id" } name: { type: "string" description: "Verifier name" } source: { type: "object" } strategy: { type: "object" } strict: { type: "boolean" description: "Does it fail if JWT not found" } } } } }