22 lines
416 B
Plaintext
22 lines
416 B
Plaintext
{
|
|
name: "demo",
|
|
description: "Demo content type (kept in version control as example).",
|
|
tags: ["content"],
|
|
category: "content",
|
|
fields: {
|
|
title: {
|
|
type: "string",
|
|
required: true,
|
|
description: "Title",
|
|
},
|
|
body: {
|
|
type: "string",
|
|
description: "Optional body text",
|
|
},
|
|
image: {
|
|
type: "string",
|
|
description: "Image URL (asset path)",
|
|
},
|
|
},
|
|
}
|