Skip to content

Commit 5a20748

Browse files
committed
Schema correction
1 parent 051fcac commit 5a20748

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

schema.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"Features": { "type": "array", "items": { "type": "string" } },
99
"Logo": { "type": "string" },
1010
"Demo": { "type": ["string", "null"], "format": "uri" },
11-
"Pricing": { "type": "string", "enum": ["Free", "Paid plans", "Freemium"] },
11+
"Pricing": { "type": "string", "enum": ["Free", "Paid plans", "Freemium", "Free Trial"] },
1212
"Images": { "type": "array", "items": { "type": "string" } },
1313
"Makers": {
1414
"type": "array",

src/content/config.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const softwareCollection = defineCollection({
1010
Features: z.array(z.string()),
1111
Logo: z.string(),
1212
Demo: z.string().url().optional(),
13-
pricing: z.enum(["Free", "Paid plans", "Freemium"]),
13+
Pricing: z.enum(["Free", "Paid plans", "Freemium", "Free Trial"]),
1414
Images: z.array(z.string()),
1515
Makers: z.array(
1616
z.object({

src/content/software/beeceptor.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Features:
1111
- "No-code interface with CORS support and templating for responses."
1212
Logo: "/logos/beeceptor.jpeg"
1313
Demo: "https://www.youtube.com/watch?v=eauSgng86ac"
14-
pricing: "Freemium"
14+
Pricing: "Freemium"
1515
Images:
1616
- "/thumbnails/beeceptor-main.webp"
1717
- "/thumbnails/beeceptor-local-tunnel.png"

src/content/software/betterbugs.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Features:
1111
- "Supports incognito mode and allows annotations directly in the tool."
1212
Logo: "/logos/betterbugs.png"
1313
Demo: "https://www.betterbugs.io/demo"
14-
pricing: "Free"
14+
Pricing: "Free"
1515
Images:
1616
- "/thumbnails/betterbugs.webp"
1717
- "/thumbnails/betterbugs-record-screen-desktop.jpg"

src/content/software/middleware.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Features:
1111
- "Integration with popular tools like GitHub, Slack, Jira, and more."
1212
Logo: "/logos/middleware.png"
1313
Demo: "https://demo.middlewarehq.com/cockpit"
14-
pricing: "Freemium"
14+
Pricing: "Freemium"
1515
Images:
1616
- "/thumbnails/middleware.webp"
1717
Makers:

0 commit comments

Comments
 (0)