Skip to content

Variable: CreateRelationshipSchema

ts
const CreateRelationshipSchema: ZodObject<{
  relationName: ZodString;
  sourceKey: ZodString;
  sourceStatus: ZodOptional<ZodString>;
  sourceType: ZodCustom<"content" | "user" | string & object | "space", "content" | "user" | string & object | "space">;
  sourceVersion: ZodOptional<ZodNumber>;
  targetKey: ZodString;
  targetStatus: ZodOptional<ZodString>;
  targetType: ZodCustom<"content" | "user" | string & object | "space", "content" | "user" | string & object | "space">;
  targetVersion: ZodOptional<ZodNumber>;
}, $strip>;

Defined in: src/v1/parameters/createRelationship.ts:4