Skip to content

Variable: LicenseSchema

ts
const LicenseSchema: ZodObject<{
  applications: ZodArray<ZodObject<{
     id: ZodString;
     plan: ZodCustom<string & object | "UNLICENSED" | "FREE" | "PAID", string & object | "UNLICENSED" | "FREE" | "PAID">;
  }, $loose>>;
}, $loose>;

Defined in: src/cloud/models/license.ts:6

Details about a license for the Jira instance.