Files
rustycms/types/calendar_item.json5
Peter Meier 4de99db670
Some checks failed
Deploy to Server / deploy (push) Failing after 7s
Track all types in git, sync to server on deploy
2026-03-15 14:38:37 +01:00

33 lines
724 B
Plaintext

{
name: "calendar_item",
description: "Single calendar entry (event) with title, description and time.",
tags: [
"content"
],
category: "content",
fields: {
title: {
type: "string",
required: true,
description: "Event title",
section: "Event",
},
description: {
type: "string",
description: "Event description",
section: "Event",
},
terminZeit: {
type: "datetime",
required: true,
description: "Event date/time",
section: "Date & link",
},
link: {
type: "reference",
collection: "link",
description: "Optional link (e.g. registration or details page)",
section: "Date & link",
},
},
}