action maif_patch_global_jwt_verifier { label: "Update one global JWT verifiers" description: "Update one global JWT verifiers" provider: maif method: PATCH path: "/api/verifiers/{verifierId}" encoding: json input: { type: "object" properties: { verifierId: { type: "string" } } required: ["verifierId"] additionalProperties: false } output: { type: "object" description: "A JWT verifier used by multiple service descriptor" required: ["algoSettings", "desc", "enabled", "id", "name", "source", "strategy", "strict", "type"] 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" } } } }