28 lines
597 B
Plaintext
28 lines
597 B
Plaintext
{
|
|
// Corresponds to CF_Campaigns / Contentful_Campaigns.ts
|
|
name: "campaigns",
|
|
description: "Global campaign list and enable flag",
|
|
tags: ["marketing", "config"],
|
|
category: "config",
|
|
fields: {
|
|
id: {
|
|
type: "string",
|
|
required: true,
|
|
description: "Unique ID (e.g. campaigns-global)",
|
|
},
|
|
campaigns: {
|
|
type: "array",
|
|
items: {
|
|
type: "reference",
|
|
collection: "campaign",
|
|
},
|
|
description: "Campaign list",
|
|
},
|
|
enable: {
|
|
type: "boolean",
|
|
default: true,
|
|
description: "Campaigns enabled",
|
|
},
|
|
},
|
|
}
|