Skip to content

Variable: GetReviewByIdSchema

ts
const GetReviewByIdSchema: ZodObject<{
  associations: ZodOptional<ZodArray<ZodObject<{
     associationType: ZodOptional<ZodCustom<
        | string & object
        | "issueIdOrKeys"
        | "serviceIdOrKeys"
        | "ati:cloud:compass:event-source", 
        | string & object
        | "issueIdOrKeys"
        | "serviceIdOrKeys"
       | "ati:cloud:compass:event-source">>;
     values: ZodOptional<ZodArray<ZodString>>;
  }, $loose>>>;
  createdDate: ZodCoercedDate<unknown>;
  description: ZodString;
  id: ZodString;
  lastUpdated: ZodCoercedDate<unknown>;
  reviews: ZodArray<ZodString>;
  schemaVersion: ZodCustom<string & object | "1.0", string & object | "1.0">;
  status: ZodCustom<
     | "unknown"
     | "completed"
     | string & object
     | "in progress"
     | "outstanding actions", 
     | "unknown"
     | "completed"
     | string & object
     | "in progress"
    | "outstanding actions">;
  summary: ZodString;
  updateSequenceNumber: ZodNumber;
  url: ZodURL;
}, $loose>;

Defined in: src/agile/models/getReviewById.ts:5

Data related to a specific post-incident review. Must specify at least one association to an incident.*