We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30dbc80 commit 0319f12Copy full SHA for 0319f12
src/content/stream/example-video/index.yaml
@@ -1,4 +1,5 @@
1
id: streamid
2
+url: example-video
3
title: Example Video
4
description: A Super cool video
5
products:
src/schemas/stream.ts
@@ -3,6 +3,7 @@ import { reference } from "astro:content";
export const streamSchema = z.object({
id: z.string(),
6
+ url: z.string(),
7
title: z.string(),
8
description: z.string(),
9
products: z.array(reference("products")),
0 commit comments