action snyk_get_an_organization_s_entitlement_value { label: "Get an organization's entitlement value" description: "" provider: snyk method: GET path: "/org/{orgId}/entitlement/{entitlementKey}" encoding: json input: { type: "object" properties: { entitlementKey: { type: "string" enum: ["licenses", "reports", "fullVulnDB"] } orgId: { type: "string" } } required: ["entitlementKey", "orgId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }