Track types/page.json5 for demo schema references

Made-with: Cursor
This commit is contained in:
Peter Meier
2026-03-13 11:00:41 +01:00
parent 606455c59b
commit 00c38a2b39
2 changed files with 10 additions and 1 deletions

3
.gitignore vendored
View File

@@ -16,9 +16,10 @@ content/de/demo/*
content/assets/* content/assets/*
!content/assets/mountains-w300.webp !content/assets/mountains-w300.webp
# Types: ignore all except demo type # Types: ignore all except demo types (demo + page for demo references)
types/* types/*
!types/demo.json5 !types/demo.json5
!types/page.json5
.history .history
.cursor .cursor

8
types/page.json5 Normal file
View File

@@ -0,0 +1,8 @@
{
name: "page",
description: "Simple page type for demo references.",
fields: {
title: { type: "string", required: true },
slug: { type: "string", required: true },
},
}