Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add taxonomy_topic_email_override to document collection schema #2440

Merged
merged 1 commit into from
Aug 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,11 @@
"description": "New A/B test suggestions for related items. Used for displaying related content on most pages, except for step-by-step and fatality notices. Links and their ordering are determined by the machine learning algorithms included in this A/B test.",
"$ref": "#/definitions/frontend_links_with_base_path"
},
"taxonomy_topic_email_override": {
"description": "The taxonomy topic that email subscriptions for this document collection should go to - only for document collections converted from specialist topics",
"$ref": "#/definitions/frontend_links_with_base_path",
"maxItems": 1
},
"taxons": {
"description": "Prototype-stage taxonomy label for this content item",
"$ref": "#/definitions/frontend_links_with_base_path"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,11 @@
"description": "New A/B test suggestions for related items. Used for displaying related content on most pages, except for step-by-step and fatality notices. Links and their ordering are determined by the machine learning algorithms included in this A/B test.",
"$ref": "#/definitions/frontend_links_with_base_path"
},
"taxonomy_topic_email_override": {
"description": "The taxonomy topic that email subscriptions for this document collection should go to - only for document collections converted from specialist topics",
"$ref": "#/definitions/frontend_links_with_base_path",
"maxItems": 1
},
"taxons": {
"description": "Prototype-stage taxonomy label for this content item",
"$ref": "#/definitions/frontend_links_with_base_path"
Expand Down Expand Up @@ -271,6 +276,11 @@
"description": "New A/B test suggestions for related items. Used for displaying related content on most pages, except for step-by-step and fatality notices. Links and their ordering are determined by the machine learning algorithms included in this A/B test.",
"$ref": "#/definitions/guid_list"
},
"taxonomy_topic_email_override": {
"description": "The taxonomy topic that email subscriptions for this document collection should go to - only for document collections converted from specialist topics",
"$ref": "#/definitions/guid_list",
"maxItems": 1
},
"taxons": {
"description": "Prototype-stage taxonomy label for this content item",
"$ref": "#/definitions/guid_list"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,11 @@
"description": "New A/B test suggestions for related items. Used for displaying related content on most pages, except for step-by-step and fatality notices. Links and their ordering are determined by the machine learning algorithms included in this A/B test.",
"$ref": "#/definitions/guid_list"
},
"taxonomy_topic_email_override": {
"description": "The taxonomy topic that email subscriptions for this document collection should go to - only for document collections converted from specialist topics",
"$ref": "#/definitions/guid_list",
"maxItems": 1
},
"taxons": {
"description": "Prototype-stage taxonomy label for this content item",
"$ref": "#/definitions/guid_list"
Expand Down
4 changes: 4 additions & 0 deletions content_schemas/formats/document_collection.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -80,5 +80,9 @@
related_mainstream_content: "",
documents: "",
topical_events: "The topical events that are part of this document collection.",
taxonomy_topic_email_override: {
description: "The taxonomy topic that email subscriptions for this document collection should go to - only for document collections converted from specialist topics",
maxItems: 1
},
},
}