Variable: ContentPermissionRequestSchema
ts
const ContentPermissionRequestSchema: ZodObject<{
operation: ZodCustom<"update" | string & object | "delete" | "read", "update" | string & object | "delete" | "read">;
subject: ZodObject<{
identifier: ZodString;
type: ZodCustom<"user" | "group" | string & object, "user" | "group" | string & object>;
}, $loose>;
}, $loose>;Defined in: src/v1/models/contentPermissionRequest.ts:6
This object represents the request for the content permission check API.