diff --git a/content_schemas/dist/formats/organisation/frontend/schema.json b/content_schemas/dist/formats/organisation/frontend/schema.json index dfeb73284..fb16bc6b2 100644 --- a/content_schemas/dist/formats/organisation/frontend/schema.json +++ b/content_schemas/dist/formats/organisation/frontend/schema.json @@ -201,6 +201,14 @@ "description": "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.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "superseded_organisations": { + "description": "Organisations this organisation supersedes", + "$ref": "#/definitions/frontend_links_with_base_path" + }, + "superseding_organisations": { + "description": "Organisations superseding this organisation", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "taxons": { "description": "Prototype-stage taxonomy label for this content item", "$ref": "#/definitions/frontend_links_with_base_path" diff --git a/content_schemas/dist/formats/organisation/notification/schema.json b/content_schemas/dist/formats/organisation/notification/schema.json index 7221b08c4..d24da24f8 100644 --- a/content_schemas/dist/formats/organisation/notification/schema.json +++ b/content_schemas/dist/formats/organisation/notification/schema.json @@ -219,6 +219,14 @@ "description": "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.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "superseded_organisations": { + "description": "Organisations this organisation supersedes", + "$ref": "#/definitions/frontend_links_with_base_path" + }, + "superseding_organisations": { + "description": "Organisations superseding this organisation", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "taxons": { "description": "Prototype-stage taxonomy label for this content item", "$ref": "#/definitions/frontend_links_with_base_path" @@ -345,6 +353,14 @@ "description": "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.", "$ref": "#/definitions/guid_list" }, + "superseded_organisations": { + "description": "Organisations this organisation supersedes", + "$ref": "#/definitions/guid_list" + }, + "superseding_organisations": { + "description": "Organisations superseding this organisation", + "$ref": "#/definitions/guid_list" + }, "taxons": { "description": "Prototype-stage taxonomy label for this content item", "$ref": "#/definitions/guid_list" diff --git a/content_schemas/dist/formats/organisation/publisher_v2/links.json b/content_schemas/dist/formats/organisation/publisher_v2/links.json index e63d5ba17..cc0d1e0ba 100644 --- a/content_schemas/dist/formats/organisation/publisher_v2/links.json +++ b/content_schemas/dist/formats/organisation/publisher_v2/links.json @@ -112,6 +112,14 @@ "description": "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.", "$ref": "#/definitions/guid_list" }, + "superseded_organisations": { + "description": "Organisations this organisation supersedes", + "$ref": "#/definitions/guid_list" + }, + "superseding_organisations": { + "description": "Organisations superseding this organisation", + "$ref": "#/definitions/guid_list" + }, "taxons": { "description": "Prototype-stage taxonomy label for this content item", "$ref": "#/definitions/guid_list" diff --git a/content_schemas/formats/organisation.jsonnet b/content_schemas/formats/organisation.jsonnet index e880555bc..26a936408 100644 --- a/content_schemas/formats/organisation.jsonnet +++ b/content_schemas/formats/organisation.jsonnet @@ -195,5 +195,7 @@ ordered_special_representatives: "Special representatives primarily for use with Whitehall organisations.", ordered_successor_organisations: "Successor organisations primarily for use with closed Whitehall organisations.", ordered_traffic_commissioners: "Traffic commissioners primarily for use with Whitehall organisations.", + superseded_organisations: "Organisations this organisation supersedes", + superseding_organisations: "Organisations superseding this organisation", }, }