···11+import { z } from "zod/v4";
22+33+export const comAtprotoRepoStrongRefSchema = z
44+ .object({
55+ uri: z.string().describe("AT-URI of the referenced record."),
66+ cid: z.string().describe("CID hash of the referenced record."),
77+ })
88+ .describe("A URI with a content-hash fingerprint.");
99+1010+export type ComAtprotoRepoStrongRef = z.infer<
1111+ typeof comAtprotoRepoStrongRefSchema
1212+>;