From 885de12a5d28ffde23f514ff275aaaf355b17a8c Mon Sep 17 00:00:00 2001 From: Richard Towers Date: Tue, 25 Feb 2025 13:11:17 +0000 Subject: [PATCH 1/2] Add owning_organisations to ministers index links Currently we have to expand links from the minsiters index content item to every ministerial department, and from there: - every minister in the department - every role the minister has - every role in the department We then use the department role ids to filter the list of roles for each minister, so we can show a list of departments, the department's ministers, and their roles within the department. Unfortuanetly, the ordered_roles for a department includes _all_ the roles, not just ministerial roles. So there are a lot of them. The ministers index content item currently includes 1,745 roles: curl --silent 'https://www.gov.uk/api/content/government/ministers' | jq -r '.links.ordered_ministerial_departments[].links.ordered_roles[].title' | wc -l The code in collections has to filter the roles for a minister based on this list of all the roles for the department: https://github.com/alphagov/collections/blob/main/app/presenters/ministers_index_presenter.rb#L99 It would be simpler and more efficient if we could link directly from the role back to the departments the role belongs to. This information is already in the database, because organisations have ordered_role links to all the roles they own. This commit introduces a reverse link for ordered_roles - owning_organisations. We can then use this in the expansion rules to include the owning_organisations for each role for each minister for each department. There don't appear to be many tests for specific link expansion scenarios, but you can see this working by doing: Presenters::EditionPresenter.new(Edition.live.find_by(base_path: "/government/ministers")).expanded_links in a rails console and looking for the owning_organisations links. This will affect expanded links for the ministers index page, as well as all the Role content items (which directly have this link). The ordered_roles link expansion is left in place for now, as we need to update collections to use the new links before we can remove the old ordered_roles expansion. --- lib/expansion_rules.rb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/expansion_rules.rb b/lib/expansion_rules.rb index a2d6c9576..bad48240f 100644 --- a/lib/expansion_rules.rb +++ b/lib/expansion_rules.rb @@ -41,7 +41,8 @@ def details_fields(*fields) %i[ordered_house_of_commons_whips role_appointments role], %i[ordered_junior_lords_of_the_treasury_whips role_appointments role], %i[ordered_military_personnel role_appointments role], - %i[ordered_ministerial_departments ordered_ministers role_appointments role], + %i[ordered_ministerial_departments ordered_ministers role_appointments role owning_organisations], + # TODO: Remove the ordered_roles expansion once we're using the owning_organisations link above: %i[ordered_ministerial_departments ordered_roles], %i[ordered_ministers role_appointments role], %i[office_staff role_appointments role], @@ -68,6 +69,7 @@ def details_fields(*fields) person: :role_appointments, role: :role_appointments, ministerial: :ministers, + ordered_roles: :owning_organisations, }.freeze # These fields are required by the frontend_links definition From e69aa59d3f35c97a371b223d4b9579ce85e5081c Mon Sep 17 00:00:00 2001 From: Richard Towers Date: Tue, 25 Feb 2025 13:51:59 +0000 Subject: [PATCH 2/2] Add owning_organisations links to content_schemas In practice, we only expect these to appear on Role and MinistersIndex content items, but the content schemas aren't clever enough to represent that. --- content_schemas/dist/formats/answer/frontend/schema.json | 4 ++++ content_schemas/dist/formats/answer/notification/schema.json | 4 ++++ content_schemas/dist/formats/calendar/frontend/schema.json | 4 ++++ .../dist/formats/calendar/notification/schema.json | 4 ++++ .../dist/formats/call_for_evidence/frontend/schema.json | 4 ++++ .../dist/formats/call_for_evidence/notification/schema.json | 4 ++++ content_schemas/dist/formats/case_study/frontend/schema.json | 4 ++++ .../dist/formats/case_study/notification/schema.json | 4 ++++ .../dist/formats/completed_transaction/frontend/schema.json | 4 ++++ .../formats/completed_transaction/notification/schema.json | 4 ++++ .../dist/formats/consultation/frontend/schema.json | 4 ++++ .../dist/formats/consultation/notification/schema.json | 4 ++++ content_schemas/dist/formats/contact/frontend/schema.json | 4 ++++ content_schemas/dist/formats/contact/notification/schema.json | 4 ++++ .../content_block_email_address/notification/schema.json | 4 ++++ .../formats/content_block_pension/notification/schema.json | 4 ++++ .../content_block_postal_address/notification/schema.json | 4 ++++ .../formats/coronavirus_landing_page/frontend/schema.json | 4 ++++ .../formats/coronavirus_landing_page/notification/schema.json | 4 ++++ .../formats/corporate_information_page/frontend/schema.json | 4 ++++ .../corporate_information_page/notification/schema.json | 4 ++++ .../dist/formats/detailed_guide/frontend/schema.json | 4 ++++ .../dist/formats/detailed_guide/notification/schema.json | 4 ++++ .../dist/formats/document_collection/frontend/schema.json | 4 ++++ .../dist/formats/document_collection/notification/schema.json | 4 ++++ .../dist/formats/email_alert_signup/frontend/schema.json | 4 ++++ .../dist/formats/email_alert_signup/notification/schema.json | 4 ++++ .../dist/formats/embassies_index/frontend/schema.json | 4 ++++ .../dist/formats/embassies_index/notification/schema.json | 4 ++++ .../dist/formats/external_content/notification/schema.json | 4 ++++ content_schemas/dist/formats/facet/frontend/schema.json | 4 ++++ content_schemas/dist/formats/facet/notification/schema.json | 4 ++++ .../dist/formats/fatality_notice/frontend/schema.json | 4 ++++ .../dist/formats/fatality_notice/notification/schema.json | 4 ++++ .../dist/formats/field_of_operation/frontend/schema.json | 4 ++++ .../dist/formats/field_of_operation/notification/schema.json | 4 ++++ .../dist/formats/fields_of_operation/frontend/schema.json | 4 ++++ .../dist/formats/fields_of_operation/notification/schema.json | 4 ++++ content_schemas/dist/formats/finder/frontend/schema.json | 4 ++++ content_schemas/dist/formats/finder/notification/schema.json | 4 ++++ .../dist/formats/finder_email_signup/frontend/schema.json | 4 ++++ .../dist/formats/finder_email_signup/notification/schema.json | 4 ++++ content_schemas/dist/formats/generic/frontend/schema.json | 4 ++++ content_schemas/dist/formats/generic/notification/schema.json | 4 ++++ .../generic_with_external_related_links/frontend/schema.json | 4 ++++ .../notification/schema.json | 4 ++++ .../dist/formats/get_involved/frontend/schema.json | 4 ++++ .../dist/formats/get_involved/notification/schema.json | 4 ++++ content_schemas/dist/formats/gone/frontend/schema.json | 4 ++++ content_schemas/dist/formats/gone/notification/schema.json | 4 ++++ content_schemas/dist/formats/government/frontend/schema.json | 4 ++++ .../dist/formats/government/notification/schema.json | 4 ++++ content_schemas/dist/formats/guide/frontend/schema.json | 4 ++++ content_schemas/dist/formats/guide/notification/schema.json | 4 ++++ content_schemas/dist/formats/help_page/frontend/schema.json | 4 ++++ .../dist/formats/help_page/notification/schema.json | 4 ++++ .../dist/formats/historic_appointment/frontend/schema.json | 4 ++++ .../formats/historic_appointment/notification/schema.json | 4 ++++ .../dist/formats/historic_appointments/frontend/schema.json | 4 ++++ .../formats/historic_appointments/notification/schema.json | 4 ++++ content_schemas/dist/formats/history/frontend/schema.json | 4 ++++ content_schemas/dist/formats/history/notification/schema.json | 4 ++++ content_schemas/dist/formats/hmrc_manual/frontend/schema.json | 4 ++++ .../dist/formats/hmrc_manual/notification/schema.json | 4 ++++ .../dist/formats/hmrc_manual_section/frontend/schema.json | 4 ++++ .../dist/formats/hmrc_manual_section/notification/schema.json | 4 ++++ content_schemas/dist/formats/homepage/frontend/schema.json | 4 ++++ .../dist/formats/homepage/notification/schema.json | 4 ++++ .../dist/formats/how_government_works/frontend/schema.json | 4 ++++ .../formats/how_government_works/notification/schema.json | 4 ++++ .../dist/formats/html_publication/frontend/schema.json | 4 ++++ .../dist/formats/html_publication/notification/schema.json | 4 ++++ .../dist/formats/landing_page/frontend/schema.json | 4 ++++ .../dist/formats/landing_page/notification/schema.json | 4 ++++ content_schemas/dist/formats/licence/frontend/schema.json | 4 ++++ content_schemas/dist/formats/licence/notification/schema.json | 4 ++++ .../dist/formats/link_collection/frontend/schema.json | 4 ++++ .../dist/formats/link_collection/notification/schema.json | 4 ++++ .../dist/formats/local_transaction/frontend/schema.json | 4 ++++ .../dist/formats/local_transaction/notification/schema.json | 4 ++++ .../dist/formats/mainstream_browse_page/frontend/schema.json | 4 ++++ .../formats/mainstream_browse_page/notification/schema.json | 4 ++++ content_schemas/dist/formats/manual/frontend/schema.json | 4 ++++ content_schemas/dist/formats/manual/notification/schema.json | 4 ++++ .../dist/formats/manual_section/frontend/schema.json | 4 ++++ .../dist/formats/manual_section/notification/schema.json | 4 ++++ .../dist/formats/ministers_index/frontend/schema.json | 4 ++++ .../dist/formats/ministers_index/notification/schema.json | 4 ++++ content_schemas/dist/formats/need/frontend/schema.json | 4 ++++ content_schemas/dist/formats/need/notification/schema.json | 4 ++++ .../dist/formats/news_article/frontend/schema.json | 4 ++++ .../dist/formats/news_article/notification/schema.json | 4 ++++ .../dist/formats/organisation/frontend/schema.json | 4 ++++ .../dist/formats/organisation/notification/schema.json | 4 ++++ .../dist/formats/organisations_homepage/frontend/schema.json | 4 ++++ .../formats/organisations_homepage/notification/schema.json | 4 ++++ content_schemas/dist/formats/person/frontend/schema.json | 4 ++++ content_schemas/dist/formats/person/notification/schema.json | 4 ++++ content_schemas/dist/formats/place/frontend/schema.json | 4 ++++ content_schemas/dist/formats/place/notification/schema.json | 4 ++++ content_schemas/dist/formats/publication/frontend/schema.json | 4 ++++ .../dist/formats/publication/notification/schema.json | 4 ++++ content_schemas/dist/formats/redirect/frontend/schema.json | 4 ++++ .../dist/formats/redirect/notification/schema.json | 4 ++++ content_schemas/dist/formats/role/frontend/schema.json | 4 ++++ content_schemas/dist/formats/role/notification/schema.json | 4 ++++ .../dist/formats/role_appointment/frontend/schema.json | 4 ++++ .../dist/formats/role_appointment/notification/schema.json | 4 ++++ .../dist/formats/service_manual_guide/frontend/schema.json | 4 ++++ .../formats/service_manual_guide/notification/schema.json | 4 ++++ .../dist/formats/service_manual_homepage/frontend/schema.json | 4 ++++ .../formats/service_manual_homepage/notification/schema.json | 4 ++++ .../service_manual_service_standard/frontend/schema.json | 4 ++++ .../service_manual_service_standard/notification/schema.json | 4 ++++ .../service_manual_service_toolkit/frontend/schema.json | 4 ++++ .../service_manual_service_toolkit/notification/schema.json | 4 ++++ .../dist/formats/service_manual_topic/frontend/schema.json | 4 ++++ .../formats/service_manual_topic/notification/schema.json | 4 ++++ .../dist/formats/service_sign_in/frontend/schema.json | 4 ++++ .../dist/formats/service_sign_in/notification/schema.json | 4 ++++ .../dist/formats/simple_smart_answer/frontend/schema.json | 4 ++++ .../dist/formats/simple_smart_answer/notification/schema.json | 4 ++++ .../dist/formats/smart_answer/frontend/schema.json | 4 ++++ .../dist/formats/smart_answer/notification/schema.json | 4 ++++ .../dist/formats/special_route/frontend/schema.json | 4 ++++ .../dist/formats/special_route/notification/schema.json | 4 ++++ .../dist/formats/specialist_document/frontend/schema.json | 4 ++++ .../dist/formats/specialist_document/notification/schema.json | 4 ++++ content_schemas/dist/formats/speech/frontend/schema.json | 4 ++++ content_schemas/dist/formats/speech/notification/schema.json | 4 ++++ .../dist/formats/statistical_data_set/frontend/schema.json | 4 ++++ .../formats/statistical_data_set/notification/schema.json | 4 ++++ .../dist/formats/statistics_announcement/frontend/schema.json | 4 ++++ .../formats/statistics_announcement/notification/schema.json | 4 ++++ .../dist/formats/step_by_step_nav/frontend/schema.json | 4 ++++ .../dist/formats/step_by_step_nav/notification/schema.json | 4 ++++ .../dist/formats/substitute/notification/schema.json | 4 ++++ content_schemas/dist/formats/take_part/frontend/schema.json | 4 ++++ .../dist/formats/take_part/notification/schema.json | 4 ++++ content_schemas/dist/formats/taxon/frontend/schema.json | 4 ++++ content_schemas/dist/formats/taxon/notification/schema.json | 4 ++++ .../dist/formats/topical_event/frontend/schema.json | 4 ++++ .../dist/formats/topical_event/notification/schema.json | 4 ++++ .../formats/topical_event_about_page/frontend/schema.json | 4 ++++ .../formats/topical_event_about_page/notification/schema.json | 4 ++++ content_schemas/dist/formats/transaction/frontend/schema.json | 4 ++++ .../dist/formats/transaction/notification/schema.json | 4 ++++ .../dist/formats/travel_advice/frontend/schema.json | 4 ++++ .../dist/formats/travel_advice/notification/schema.json | 4 ++++ .../dist/formats/travel_advice_index/frontend/schema.json | 4 ++++ .../dist/formats/travel_advice_index/notification/schema.json | 4 ++++ content_schemas/dist/formats/vanish/notification/schema.json | 4 ++++ .../dist/formats/working_group/frontend/schema.json | 4 ++++ .../dist/formats/working_group/notification/schema.json | 4 ++++ content_schemas/dist/formats/world_index/frontend/schema.json | 4 ++++ .../dist/formats/world_index/notification/schema.json | 4 ++++ .../dist/formats/world_location/frontend/schema.json | 4 ++++ .../dist/formats/world_location/notification/schema.json | 4 ++++ .../dist/formats/world_location_news/frontend/schema.json | 4 ++++ .../dist/formats/world_location_news/notification/schema.json | 4 ++++ .../worldwide_corporate_information_page/frontend/schema.json | 4 ++++ .../notification/schema.json | 4 ++++ .../dist/formats/worldwide_office/frontend/schema.json | 4 ++++ .../dist/formats/worldwide_office/notification/schema.json | 4 ++++ .../dist/formats/worldwide_organisation/frontend/schema.json | 4 ++++ .../formats/worldwide_organisation/notification/schema.json | 4 ++++ lib/schema_generator/expanded_links.rb | 4 ++++ 167 files changed, 668 insertions(+) diff --git a/content_schemas/dist/formats/answer/frontend/schema.json b/content_schemas/dist/formats/answer/frontend/schema.json index 26ac7a809..683337db9 100644 --- a/content_schemas/dist/formats/answer/frontend/schema.json +++ b/content_schemas/dist/formats/answer/frontend/schema.json @@ -111,6 +111,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/answer/notification/schema.json b/content_schemas/dist/formats/answer/notification/schema.json index 22f3afef8..e6a5e73ce 100644 --- a/content_schemas/dist/formats/answer/notification/schema.json +++ b/content_schemas/dist/formats/answer/notification/schema.json @@ -129,6 +129,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/calendar/frontend/schema.json b/content_schemas/dist/formats/calendar/frontend/schema.json index 3935a06a1..3a4aaada2 100644 --- a/content_schemas/dist/formats/calendar/frontend/schema.json +++ b/content_schemas/dist/formats/calendar/frontend/schema.json @@ -111,6 +111,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/calendar/notification/schema.json b/content_schemas/dist/formats/calendar/notification/schema.json index 9ed914afa..9da8f83fd 100644 --- a/content_schemas/dist/formats/calendar/notification/schema.json +++ b/content_schemas/dist/formats/calendar/notification/schema.json @@ -129,6 +129,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/call_for_evidence/frontend/schema.json b/content_schemas/dist/formats/call_for_evidence/frontend/schema.json index 46833fb39..f439597c9 100644 --- a/content_schemas/dist/formats/call_for_evidence/frontend/schema.json +++ b/content_schemas/dist/formats/call_for_evidence/frontend/schema.json @@ -118,6 +118,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "$ref": "#/definitions/frontend_links_with_base_path" }, diff --git a/content_schemas/dist/formats/call_for_evidence/notification/schema.json b/content_schemas/dist/formats/call_for_evidence/notification/schema.json index 2e712fbf6..5eaae5fbf 100644 --- a/content_schemas/dist/formats/call_for_evidence/notification/schema.json +++ b/content_schemas/dist/formats/call_for_evidence/notification/schema.json @@ -136,6 +136,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "$ref": "#/definitions/frontend_links_with_base_path" }, diff --git a/content_schemas/dist/formats/case_study/frontend/schema.json b/content_schemas/dist/formats/case_study/frontend/schema.json index 604f23592..7efd2919c 100644 --- a/content_schemas/dist/formats/case_study/frontend/schema.json +++ b/content_schemas/dist/formats/case_study/frontend/schema.json @@ -116,6 +116,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/case_study/notification/schema.json b/content_schemas/dist/formats/case_study/notification/schema.json index dd7666022..0514c6f3e 100644 --- a/content_schemas/dist/formats/case_study/notification/schema.json +++ b/content_schemas/dist/formats/case_study/notification/schema.json @@ -134,6 +134,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/completed_transaction/frontend/schema.json b/content_schemas/dist/formats/completed_transaction/frontend/schema.json index 421f4470f..affd6a0a8 100644 --- a/content_schemas/dist/formats/completed_transaction/frontend/schema.json +++ b/content_schemas/dist/formats/completed_transaction/frontend/schema.json @@ -111,6 +111,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/completed_transaction/notification/schema.json b/content_schemas/dist/formats/completed_transaction/notification/schema.json index 52d41935c..5e450a765 100644 --- a/content_schemas/dist/formats/completed_transaction/notification/schema.json +++ b/content_schemas/dist/formats/completed_transaction/notification/schema.json @@ -129,6 +129,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/consultation/frontend/schema.json b/content_schemas/dist/formats/consultation/frontend/schema.json index b2b707f20..78fd3f8ae 100644 --- a/content_schemas/dist/formats/consultation/frontend/schema.json +++ b/content_schemas/dist/formats/consultation/frontend/schema.json @@ -118,6 +118,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "$ref": "#/definitions/frontend_links_with_base_path" }, diff --git a/content_schemas/dist/formats/consultation/notification/schema.json b/content_schemas/dist/formats/consultation/notification/schema.json index 748d193f1..4db408ae4 100644 --- a/content_schemas/dist/formats/consultation/notification/schema.json +++ b/content_schemas/dist/formats/consultation/notification/schema.json @@ -136,6 +136,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "$ref": "#/definitions/frontend_links_with_base_path" }, diff --git a/content_schemas/dist/formats/contact/frontend/schema.json b/content_schemas/dist/formats/contact/frontend/schema.json index b5c94b94c..55119d4e7 100644 --- a/content_schemas/dist/formats/contact/frontend/schema.json +++ b/content_schemas/dist/formats/contact/frontend/schema.json @@ -111,6 +111,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/contact/notification/schema.json b/content_schemas/dist/formats/contact/notification/schema.json index 243a1006b..bc93b4164 100644 --- a/content_schemas/dist/formats/contact/notification/schema.json +++ b/content_schemas/dist/formats/contact/notification/schema.json @@ -129,6 +129,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/content_block_email_address/notification/schema.json b/content_schemas/dist/formats/content_block_email_address/notification/schema.json index 16b1cb2e1..a48bf9016 100644 --- a/content_schemas/dist/formats/content_block_email_address/notification/schema.json +++ b/content_schemas/dist/formats/content_block_email_address/notification/schema.json @@ -129,6 +129,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/content_block_pension/notification/schema.json b/content_schemas/dist/formats/content_block_pension/notification/schema.json index b2da1036c..c3359c317 100644 --- a/content_schemas/dist/formats/content_block_pension/notification/schema.json +++ b/content_schemas/dist/formats/content_block_pension/notification/schema.json @@ -129,6 +129,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/content_block_postal_address/notification/schema.json b/content_schemas/dist/formats/content_block_postal_address/notification/schema.json index caec5d815..ae33e7b39 100644 --- a/content_schemas/dist/formats/content_block_postal_address/notification/schema.json +++ b/content_schemas/dist/formats/content_block_postal_address/notification/schema.json @@ -129,6 +129,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/coronavirus_landing_page/frontend/schema.json b/content_schemas/dist/formats/coronavirus_landing_page/frontend/schema.json index dace98798..90763e395 100644 --- a/content_schemas/dist/formats/coronavirus_landing_page/frontend/schema.json +++ b/content_schemas/dist/formats/coronavirus_landing_page/frontend/schema.json @@ -111,6 +111,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/coronavirus_landing_page/notification/schema.json b/content_schemas/dist/formats/coronavirus_landing_page/notification/schema.json index d088daec5..1da858ead 100644 --- a/content_schemas/dist/formats/coronavirus_landing_page/notification/schema.json +++ b/content_schemas/dist/formats/coronavirus_landing_page/notification/schema.json @@ -129,6 +129,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/corporate_information_page/frontend/schema.json b/content_schemas/dist/formats/corporate_information_page/frontend/schema.json index bc9e5395e..c50c75ab5 100644 --- a/content_schemas/dist/formats/corporate_information_page/frontend/schema.json +++ b/content_schemas/dist/formats/corporate_information_page/frontend/schema.json @@ -136,6 +136,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/corporate_information_page/notification/schema.json b/content_schemas/dist/formats/corporate_information_page/notification/schema.json index 968b1a622..60228efac 100644 --- a/content_schemas/dist/formats/corporate_information_page/notification/schema.json +++ b/content_schemas/dist/formats/corporate_information_page/notification/schema.json @@ -154,6 +154,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/detailed_guide/frontend/schema.json b/content_schemas/dist/formats/detailed_guide/frontend/schema.json index 76b5ffaf6..4c9838600 100644 --- a/content_schemas/dist/formats/detailed_guide/frontend/schema.json +++ b/content_schemas/dist/formats/detailed_guide/frontend/schema.json @@ -115,6 +115,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "$ref": "#/definitions/frontend_links_with_base_path" }, diff --git a/content_schemas/dist/formats/detailed_guide/notification/schema.json b/content_schemas/dist/formats/detailed_guide/notification/schema.json index c58febbbc..a21743c46 100644 --- a/content_schemas/dist/formats/detailed_guide/notification/schema.json +++ b/content_schemas/dist/formats/detailed_guide/notification/schema.json @@ -133,6 +133,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "$ref": "#/definitions/frontend_links_with_base_path" }, diff --git a/content_schemas/dist/formats/document_collection/frontend/schema.json b/content_schemas/dist/formats/document_collection/frontend/schema.json index 4eace6721..f31ff6ef2 100644 --- a/content_schemas/dist/formats/document_collection/frontend/schema.json +++ b/content_schemas/dist/formats/document_collection/frontend/schema.json @@ -118,6 +118,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "$ref": "#/definitions/frontend_links_with_base_path" }, diff --git a/content_schemas/dist/formats/document_collection/notification/schema.json b/content_schemas/dist/formats/document_collection/notification/schema.json index 001057de2..5fe5c1bd0 100644 --- a/content_schemas/dist/formats/document_collection/notification/schema.json +++ b/content_schemas/dist/formats/document_collection/notification/schema.json @@ -136,6 +136,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "$ref": "#/definitions/frontend_links_with_base_path" }, diff --git a/content_schemas/dist/formats/email_alert_signup/frontend/schema.json b/content_schemas/dist/formats/email_alert_signup/frontend/schema.json index 795434c8d..e462c242e 100644 --- a/content_schemas/dist/formats/email_alert_signup/frontend/schema.json +++ b/content_schemas/dist/formats/email_alert_signup/frontend/schema.json @@ -111,6 +111,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/email_alert_signup/notification/schema.json b/content_schemas/dist/formats/email_alert_signup/notification/schema.json index 75d45a6a4..ee831e441 100644 --- a/content_schemas/dist/formats/email_alert_signup/notification/schema.json +++ b/content_schemas/dist/formats/email_alert_signup/notification/schema.json @@ -129,6 +129,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/embassies_index/frontend/schema.json b/content_schemas/dist/formats/embassies_index/frontend/schema.json index 78ab341cb..744f5e1fc 100644 --- a/content_schemas/dist/formats/embassies_index/frontend/schema.json +++ b/content_schemas/dist/formats/embassies_index/frontend/schema.json @@ -111,6 +111,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/embassies_index/notification/schema.json b/content_schemas/dist/formats/embassies_index/notification/schema.json index dd3fd7b92..7e838eeaa 100644 --- a/content_schemas/dist/formats/embassies_index/notification/schema.json +++ b/content_schemas/dist/formats/embassies_index/notification/schema.json @@ -129,6 +129,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/external_content/notification/schema.json b/content_schemas/dist/formats/external_content/notification/schema.json index 50c00cdeb..a6e89414b 100644 --- a/content_schemas/dist/formats/external_content/notification/schema.json +++ b/content_schemas/dist/formats/external_content/notification/schema.json @@ -93,6 +93,10 @@ "description": "Link type automatically added by Publishing API", "$ref": "#/definitions/frontend_links" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "part_of_step_navs": { "description": "Link type automatically added by Publishing API", "$ref": "#/definitions/frontend_links_with_base_path" diff --git a/content_schemas/dist/formats/facet/frontend/schema.json b/content_schemas/dist/formats/facet/frontend/schema.json index e943d0cf8..b16e95e60 100644 --- a/content_schemas/dist/formats/facet/frontend/schema.json +++ b/content_schemas/dist/formats/facet/frontend/schema.json @@ -111,6 +111,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/facet/notification/schema.json b/content_schemas/dist/formats/facet/notification/schema.json index 74f73d6b3..950d2b358 100644 --- a/content_schemas/dist/formats/facet/notification/schema.json +++ b/content_schemas/dist/formats/facet/notification/schema.json @@ -129,6 +129,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/fatality_notice/frontend/schema.json b/content_schemas/dist/formats/fatality_notice/frontend/schema.json index 5225759f2..f8ead3a1f 100644 --- a/content_schemas/dist/formats/fatality_notice/frontend/schema.json +++ b/content_schemas/dist/formats/fatality_notice/frontend/schema.json @@ -115,6 +115,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/fatality_notice/notification/schema.json b/content_schemas/dist/formats/fatality_notice/notification/schema.json index 274ab233f..7bd829968 100644 --- a/content_schemas/dist/formats/fatality_notice/notification/schema.json +++ b/content_schemas/dist/formats/fatality_notice/notification/schema.json @@ -133,6 +133,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/field_of_operation/frontend/schema.json b/content_schemas/dist/formats/field_of_operation/frontend/schema.json index dd1a99648..7fefad40d 100644 --- a/content_schemas/dist/formats/field_of_operation/frontend/schema.json +++ b/content_schemas/dist/formats/field_of_operation/frontend/schema.json @@ -115,6 +115,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/field_of_operation/notification/schema.json b/content_schemas/dist/formats/field_of_operation/notification/schema.json index 10fd821b7..ed4f9b236 100644 --- a/content_schemas/dist/formats/field_of_operation/notification/schema.json +++ b/content_schemas/dist/formats/field_of_operation/notification/schema.json @@ -133,6 +133,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/fields_of_operation/frontend/schema.json b/content_schemas/dist/formats/fields_of_operation/frontend/schema.json index dc4f90208..8d4524bf6 100644 --- a/content_schemas/dist/formats/fields_of_operation/frontend/schema.json +++ b/content_schemas/dist/formats/fields_of_operation/frontend/schema.json @@ -115,6 +115,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/fields_of_operation/notification/schema.json b/content_schemas/dist/formats/fields_of_operation/notification/schema.json index 3bb325e07..7ea6232b7 100644 --- a/content_schemas/dist/formats/fields_of_operation/notification/schema.json +++ b/content_schemas/dist/formats/fields_of_operation/notification/schema.json @@ -133,6 +133,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/finder/frontend/schema.json b/content_schemas/dist/formats/finder/frontend/schema.json index 6138cf645..c616296a1 100644 --- a/content_schemas/dist/formats/finder/frontend/schema.json +++ b/content_schemas/dist/formats/finder/frontend/schema.json @@ -114,6 +114,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/finder/notification/schema.json b/content_schemas/dist/formats/finder/notification/schema.json index e3407c1ff..d5efb0417 100644 --- a/content_schemas/dist/formats/finder/notification/schema.json +++ b/content_schemas/dist/formats/finder/notification/schema.json @@ -132,6 +132,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/finder_email_signup/frontend/schema.json b/content_schemas/dist/formats/finder_email_signup/frontend/schema.json index 9699c7682..349f5d212 100644 --- a/content_schemas/dist/formats/finder_email_signup/frontend/schema.json +++ b/content_schemas/dist/formats/finder_email_signup/frontend/schema.json @@ -110,6 +110,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/finder_email_signup/notification/schema.json b/content_schemas/dist/formats/finder_email_signup/notification/schema.json index df8f60522..994bead07 100644 --- a/content_schemas/dist/formats/finder_email_signup/notification/schema.json +++ b/content_schemas/dist/formats/finder_email_signup/notification/schema.json @@ -128,6 +128,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/generic/frontend/schema.json b/content_schemas/dist/formats/generic/frontend/schema.json index f1348262a..485501ba9 100644 --- a/content_schemas/dist/formats/generic/frontend/schema.json +++ b/content_schemas/dist/formats/generic/frontend/schema.json @@ -299,6 +299,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/generic/notification/schema.json b/content_schemas/dist/formats/generic/notification/schema.json index e69beb453..5e14b705d 100644 --- a/content_schemas/dist/formats/generic/notification/schema.json +++ b/content_schemas/dist/formats/generic/notification/schema.json @@ -317,6 +317,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/generic_with_external_related_links/frontend/schema.json b/content_schemas/dist/formats/generic_with_external_related_links/frontend/schema.json index 93e27f430..92dac3fbc 100644 --- a/content_schemas/dist/formats/generic_with_external_related_links/frontend/schema.json +++ b/content_schemas/dist/formats/generic_with_external_related_links/frontend/schema.json @@ -299,6 +299,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/generic_with_external_related_links/notification/schema.json b/content_schemas/dist/formats/generic_with_external_related_links/notification/schema.json index e925212c5..444e77995 100644 --- a/content_schemas/dist/formats/generic_with_external_related_links/notification/schema.json +++ b/content_schemas/dist/formats/generic_with_external_related_links/notification/schema.json @@ -317,6 +317,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/get_involved/frontend/schema.json b/content_schemas/dist/formats/get_involved/frontend/schema.json index bec19e3cd..5fdd2aa00 100644 --- a/content_schemas/dist/formats/get_involved/frontend/schema.json +++ b/content_schemas/dist/formats/get_involved/frontend/schema.json @@ -111,6 +111,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/get_involved/notification/schema.json b/content_schemas/dist/formats/get_involved/notification/schema.json index f97e2cb57..7ea65fea9 100644 --- a/content_schemas/dist/formats/get_involved/notification/schema.json +++ b/content_schemas/dist/formats/get_involved/notification/schema.json @@ -129,6 +129,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/gone/frontend/schema.json b/content_schemas/dist/formats/gone/frontend/schema.json index 2b246f449..3d5a336e1 100644 --- a/content_schemas/dist/formats/gone/frontend/schema.json +++ b/content_schemas/dist/formats/gone/frontend/schema.json @@ -75,6 +75,10 @@ "description": "Link type automatically added by Publishing API", "$ref": "#/definitions/frontend_links" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "part_of_step_navs": { "description": "Link type automatically added by Publishing API", "$ref": "#/definitions/frontend_links_with_base_path" diff --git a/content_schemas/dist/formats/gone/notification/schema.json b/content_schemas/dist/formats/gone/notification/schema.json index aa84976ae..5e14f2a5f 100644 --- a/content_schemas/dist/formats/gone/notification/schema.json +++ b/content_schemas/dist/formats/gone/notification/schema.json @@ -77,6 +77,10 @@ "description": "Link type automatically added by Publishing API", "$ref": "#/definitions/frontend_links" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "part_of_step_navs": { "description": "Link type automatically added by Publishing API", "$ref": "#/definitions/frontend_links_with_base_path" diff --git a/content_schemas/dist/formats/government/frontend/schema.json b/content_schemas/dist/formats/government/frontend/schema.json index 576c1d76b..a1393545b 100644 --- a/content_schemas/dist/formats/government/frontend/schema.json +++ b/content_schemas/dist/formats/government/frontend/schema.json @@ -111,6 +111,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/government/notification/schema.json b/content_schemas/dist/formats/government/notification/schema.json index 20a001719..fe45d342c 100644 --- a/content_schemas/dist/formats/government/notification/schema.json +++ b/content_schemas/dist/formats/government/notification/schema.json @@ -129,6 +129,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/guide/frontend/schema.json b/content_schemas/dist/formats/guide/frontend/schema.json index 507b143d4..cdf7d67b2 100644 --- a/content_schemas/dist/formats/guide/frontend/schema.json +++ b/content_schemas/dist/formats/guide/frontend/schema.json @@ -111,6 +111,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/guide/notification/schema.json b/content_schemas/dist/formats/guide/notification/schema.json index cf2cdab97..45d831b7d 100644 --- a/content_schemas/dist/formats/guide/notification/schema.json +++ b/content_schemas/dist/formats/guide/notification/schema.json @@ -129,6 +129,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/help_page/frontend/schema.json b/content_schemas/dist/formats/help_page/frontend/schema.json index 046d381fa..23efb241e 100644 --- a/content_schemas/dist/formats/help_page/frontend/schema.json +++ b/content_schemas/dist/formats/help_page/frontend/schema.json @@ -111,6 +111,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/help_page/notification/schema.json b/content_schemas/dist/formats/help_page/notification/schema.json index b5ff4e8bc..cf8b226bb 100644 --- a/content_schemas/dist/formats/help_page/notification/schema.json +++ b/content_schemas/dist/formats/help_page/notification/schema.json @@ -129,6 +129,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/historic_appointment/frontend/schema.json b/content_schemas/dist/formats/historic_appointment/frontend/schema.json index 29a481b65..f70bae608 100644 --- a/content_schemas/dist/formats/historic_appointment/frontend/schema.json +++ b/content_schemas/dist/formats/historic_appointment/frontend/schema.json @@ -111,6 +111,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/historic_appointment/notification/schema.json b/content_schemas/dist/formats/historic_appointment/notification/schema.json index 31d425dc1..3df206a6e 100644 --- a/content_schemas/dist/formats/historic_appointment/notification/schema.json +++ b/content_schemas/dist/formats/historic_appointment/notification/schema.json @@ -129,6 +129,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/historic_appointments/frontend/schema.json b/content_schemas/dist/formats/historic_appointments/frontend/schema.json index 45897cc0a..625378c4c 100644 --- a/content_schemas/dist/formats/historic_appointments/frontend/schema.json +++ b/content_schemas/dist/formats/historic_appointments/frontend/schema.json @@ -115,6 +115,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/historic_appointments/notification/schema.json b/content_schemas/dist/formats/historic_appointments/notification/schema.json index 98b6c4bd5..19d7bb800 100644 --- a/content_schemas/dist/formats/historic_appointments/notification/schema.json +++ b/content_schemas/dist/formats/historic_appointments/notification/schema.json @@ -133,6 +133,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/history/frontend/schema.json b/content_schemas/dist/formats/history/frontend/schema.json index cd441a94c..b6f721928 100644 --- a/content_schemas/dist/formats/history/frontend/schema.json +++ b/content_schemas/dist/formats/history/frontend/schema.json @@ -111,6 +111,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/history/notification/schema.json b/content_schemas/dist/formats/history/notification/schema.json index d7e11ca03..85d07f4ca 100644 --- a/content_schemas/dist/formats/history/notification/schema.json +++ b/content_schemas/dist/formats/history/notification/schema.json @@ -129,6 +129,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/hmrc_manual/frontend/schema.json b/content_schemas/dist/formats/hmrc_manual/frontend/schema.json index 40288542d..662dec198 100644 --- a/content_schemas/dist/formats/hmrc_manual/frontend/schema.json +++ b/content_schemas/dist/formats/hmrc_manual/frontend/schema.json @@ -111,6 +111,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/hmrc_manual/notification/schema.json b/content_schemas/dist/formats/hmrc_manual/notification/schema.json index 6a4ba0e93..4fe67783f 100644 --- a/content_schemas/dist/formats/hmrc_manual/notification/schema.json +++ b/content_schemas/dist/formats/hmrc_manual/notification/schema.json @@ -129,6 +129,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/hmrc_manual_section/frontend/schema.json b/content_schemas/dist/formats/hmrc_manual_section/frontend/schema.json index e3fd81b15..0616a4bcf 100644 --- a/content_schemas/dist/formats/hmrc_manual_section/frontend/schema.json +++ b/content_schemas/dist/formats/hmrc_manual_section/frontend/schema.json @@ -111,6 +111,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/hmrc_manual_section/notification/schema.json b/content_schemas/dist/formats/hmrc_manual_section/notification/schema.json index 0c00cfddd..7a3e89bc9 100644 --- a/content_schemas/dist/formats/hmrc_manual_section/notification/schema.json +++ b/content_schemas/dist/formats/hmrc_manual_section/notification/schema.json @@ -129,6 +129,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/homepage/frontend/schema.json b/content_schemas/dist/formats/homepage/frontend/schema.json index 8cb6ba518..8aefbc4b6 100644 --- a/content_schemas/dist/formats/homepage/frontend/schema.json +++ b/content_schemas/dist/formats/homepage/frontend/schema.json @@ -80,6 +80,10 @@ "description": "Link type automatically added by Publishing API", "$ref": "#/definitions/frontend_links" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "part_of_step_navs": { "description": "Link type automatically added by Publishing API", "$ref": "#/definitions/frontend_links_with_base_path" diff --git a/content_schemas/dist/formats/homepage/notification/schema.json b/content_schemas/dist/formats/homepage/notification/schema.json index 52898bef9..7f327aee5 100644 --- a/content_schemas/dist/formats/homepage/notification/schema.json +++ b/content_schemas/dist/formats/homepage/notification/schema.json @@ -98,6 +98,10 @@ "description": "Link type automatically added by Publishing API", "$ref": "#/definitions/frontend_links" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "part_of_step_navs": { "description": "Link type automatically added by Publishing API", "$ref": "#/definitions/frontend_links_with_base_path" diff --git a/content_schemas/dist/formats/how_government_works/frontend/schema.json b/content_schemas/dist/formats/how_government_works/frontend/schema.json index 303e79816..af8edf630 100644 --- a/content_schemas/dist/formats/how_government_works/frontend/schema.json +++ b/content_schemas/dist/formats/how_government_works/frontend/schema.json @@ -115,6 +115,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/how_government_works/notification/schema.json b/content_schemas/dist/formats/how_government_works/notification/schema.json index 33b79f1ea..a9bee860f 100644 --- a/content_schemas/dist/formats/how_government_works/notification/schema.json +++ b/content_schemas/dist/formats/how_government_works/notification/schema.json @@ -133,6 +133,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/html_publication/frontend/schema.json b/content_schemas/dist/formats/html_publication/frontend/schema.json index ef731f3e6..b89abddee 100644 --- a/content_schemas/dist/formats/html_publication/frontend/schema.json +++ b/content_schemas/dist/formats/html_publication/frontend/schema.json @@ -115,6 +115,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "$ref": "#/definitions/frontend_links_with_base_path" }, diff --git a/content_schemas/dist/formats/html_publication/notification/schema.json b/content_schemas/dist/formats/html_publication/notification/schema.json index 665334fb1..65664fd3d 100644 --- a/content_schemas/dist/formats/html_publication/notification/schema.json +++ b/content_schemas/dist/formats/html_publication/notification/schema.json @@ -133,6 +133,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "$ref": "#/definitions/frontend_links_with_base_path" }, diff --git a/content_schemas/dist/formats/landing_page/frontend/schema.json b/content_schemas/dist/formats/landing_page/frontend/schema.json index b26bfdc24..6ef7b8372 100644 --- a/content_schemas/dist/formats/landing_page/frontend/schema.json +++ b/content_schemas/dist/formats/landing_page/frontend/schema.json @@ -119,6 +119,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "$ref": "#/definitions/frontend_links_with_base_path" }, diff --git a/content_schemas/dist/formats/landing_page/notification/schema.json b/content_schemas/dist/formats/landing_page/notification/schema.json index b002384ea..08c9d2fe6 100644 --- a/content_schemas/dist/formats/landing_page/notification/schema.json +++ b/content_schemas/dist/formats/landing_page/notification/schema.json @@ -137,6 +137,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "$ref": "#/definitions/frontend_links_with_base_path" }, diff --git a/content_schemas/dist/formats/licence/frontend/schema.json b/content_schemas/dist/formats/licence/frontend/schema.json index d9fac981f..8e8d7275c 100644 --- a/content_schemas/dist/formats/licence/frontend/schema.json +++ b/content_schemas/dist/formats/licence/frontend/schema.json @@ -111,6 +111,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/licence/notification/schema.json b/content_schemas/dist/formats/licence/notification/schema.json index da6049b0e..6688d45ba 100644 --- a/content_schemas/dist/formats/licence/notification/schema.json +++ b/content_schemas/dist/formats/licence/notification/schema.json @@ -129,6 +129,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/link_collection/frontend/schema.json b/content_schemas/dist/formats/link_collection/frontend/schema.json index 9ef6aa67d..71c990935 100644 --- a/content_schemas/dist/formats/link_collection/frontend/schema.json +++ b/content_schemas/dist/formats/link_collection/frontend/schema.json @@ -111,6 +111,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/link_collection/notification/schema.json b/content_schemas/dist/formats/link_collection/notification/schema.json index 63bfd00ed..e1f52c0c8 100644 --- a/content_schemas/dist/formats/link_collection/notification/schema.json +++ b/content_schemas/dist/formats/link_collection/notification/schema.json @@ -129,6 +129,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/local_transaction/frontend/schema.json b/content_schemas/dist/formats/local_transaction/frontend/schema.json index d418c55f7..1d8be2f40 100644 --- a/content_schemas/dist/formats/local_transaction/frontend/schema.json +++ b/content_schemas/dist/formats/local_transaction/frontend/schema.json @@ -111,6 +111,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/local_transaction/notification/schema.json b/content_schemas/dist/formats/local_transaction/notification/schema.json index de367971c..e494d625e 100644 --- a/content_schemas/dist/formats/local_transaction/notification/schema.json +++ b/content_schemas/dist/formats/local_transaction/notification/schema.json @@ -129,6 +129,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/mainstream_browse_page/frontend/schema.json b/content_schemas/dist/formats/mainstream_browse_page/frontend/schema.json index 299ee33d1..a0f334a69 100644 --- a/content_schemas/dist/formats/mainstream_browse_page/frontend/schema.json +++ b/content_schemas/dist/formats/mainstream_browse_page/frontend/schema.json @@ -116,6 +116,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/mainstream_browse_page/notification/schema.json b/content_schemas/dist/formats/mainstream_browse_page/notification/schema.json index cb11b6bc1..606e443db 100644 --- a/content_schemas/dist/formats/mainstream_browse_page/notification/schema.json +++ b/content_schemas/dist/formats/mainstream_browse_page/notification/schema.json @@ -134,6 +134,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/manual/frontend/schema.json b/content_schemas/dist/formats/manual/frontend/schema.json index 42d5cb3ba..f23bc1fe8 100644 --- a/content_schemas/dist/formats/manual/frontend/schema.json +++ b/content_schemas/dist/formats/manual/frontend/schema.json @@ -109,6 +109,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/manual/notification/schema.json b/content_schemas/dist/formats/manual/notification/schema.json index 4e7eaa8a2..17b9ba69d 100644 --- a/content_schemas/dist/formats/manual/notification/schema.json +++ b/content_schemas/dist/formats/manual/notification/schema.json @@ -127,6 +127,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/manual_section/frontend/schema.json b/content_schemas/dist/formats/manual_section/frontend/schema.json index 84277895b..66a8367fe 100644 --- a/content_schemas/dist/formats/manual_section/frontend/schema.json +++ b/content_schemas/dist/formats/manual_section/frontend/schema.json @@ -112,6 +112,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/manual_section/notification/schema.json b/content_schemas/dist/formats/manual_section/notification/schema.json index c9e146093..2ce895ea2 100644 --- a/content_schemas/dist/formats/manual_section/notification/schema.json +++ b/content_schemas/dist/formats/manual_section/notification/schema.json @@ -130,6 +130,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/ministers_index/frontend/schema.json b/content_schemas/dist/formats/ministers_index/frontend/schema.json index 4bd8fe447..9ea76d279 100644 --- a/content_schemas/dist/formats/ministers_index/frontend/schema.json +++ b/content_schemas/dist/formats/ministers_index/frontend/schema.json @@ -143,6 +143,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/ministers_index/notification/schema.json b/content_schemas/dist/formats/ministers_index/notification/schema.json index 76ddb2074..acae7858a 100644 --- a/content_schemas/dist/formats/ministers_index/notification/schema.json +++ b/content_schemas/dist/formats/ministers_index/notification/schema.json @@ -161,6 +161,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/need/frontend/schema.json b/content_schemas/dist/formats/need/frontend/schema.json index 362c1e7d5..19e67f1da 100644 --- a/content_schemas/dist/formats/need/frontend/schema.json +++ b/content_schemas/dist/formats/need/frontend/schema.json @@ -111,6 +111,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/need/notification/schema.json b/content_schemas/dist/formats/need/notification/schema.json index 6b8382ae7..e053595c4 100644 --- a/content_schemas/dist/formats/need/notification/schema.json +++ b/content_schemas/dist/formats/need/notification/schema.json @@ -129,6 +129,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/news_article/frontend/schema.json b/content_schemas/dist/formats/news_article/frontend/schema.json index 14132a3ec..81407851a 100644 --- a/content_schemas/dist/formats/news_article/frontend/schema.json +++ b/content_schemas/dist/formats/news_article/frontend/schema.json @@ -119,6 +119,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/news_article/notification/schema.json b/content_schemas/dist/formats/news_article/notification/schema.json index 5c362fedd..d57db1e44 100644 --- a/content_schemas/dist/formats/news_article/notification/schema.json +++ b/content_schemas/dist/formats/news_article/notification/schema.json @@ -137,6 +137,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/organisation/frontend/schema.json b/content_schemas/dist/formats/organisation/frontend/schema.json index 7a8a79ea3..e6faa32fb 100644 --- a/content_schemas/dist/formats/organisation/frontend/schema.json +++ b/content_schemas/dist/formats/organisation/frontend/schema.json @@ -167,6 +167,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent 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 f75564161..6a3e5b033 100644 --- a/content_schemas/dist/formats/organisation/notification/schema.json +++ b/content_schemas/dist/formats/organisation/notification/schema.json @@ -185,6 +185,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/organisations_homepage/frontend/schema.json b/content_schemas/dist/formats/organisations_homepage/frontend/schema.json index d690e72c0..726b897ff 100644 --- a/content_schemas/dist/formats/organisations_homepage/frontend/schema.json +++ b/content_schemas/dist/formats/organisations_homepage/frontend/schema.json @@ -111,6 +111,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/organisations_homepage/notification/schema.json b/content_schemas/dist/formats/organisations_homepage/notification/schema.json index 1eb0475a6..ff9e4b622 100644 --- a/content_schemas/dist/formats/organisations_homepage/notification/schema.json +++ b/content_schemas/dist/formats/organisations_homepage/notification/schema.json @@ -129,6 +129,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/person/frontend/schema.json b/content_schemas/dist/formats/person/frontend/schema.json index 4c78fb7e9..8cab0484f 100644 --- a/content_schemas/dist/formats/person/frontend/schema.json +++ b/content_schemas/dist/formats/person/frontend/schema.json @@ -111,6 +111,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/person/notification/schema.json b/content_schemas/dist/formats/person/notification/schema.json index 361ec3956..7401351a4 100644 --- a/content_schemas/dist/formats/person/notification/schema.json +++ b/content_schemas/dist/formats/person/notification/schema.json @@ -129,6 +129,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/place/frontend/schema.json b/content_schemas/dist/formats/place/frontend/schema.json index cad5b4941..ec951cfbb 100644 --- a/content_schemas/dist/formats/place/frontend/schema.json +++ b/content_schemas/dist/formats/place/frontend/schema.json @@ -111,6 +111,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/place/notification/schema.json b/content_schemas/dist/formats/place/notification/schema.json index fc06b05c3..5f409d92b 100644 --- a/content_schemas/dist/formats/place/notification/schema.json +++ b/content_schemas/dist/formats/place/notification/schema.json @@ -129,6 +129,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/publication/frontend/schema.json b/content_schemas/dist/formats/publication/frontend/schema.json index 5ce16df27..a658e82bc 100644 --- a/content_schemas/dist/formats/publication/frontend/schema.json +++ b/content_schemas/dist/formats/publication/frontend/schema.json @@ -134,6 +134,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "$ref": "#/definitions/frontend_links_with_base_path" }, diff --git a/content_schemas/dist/formats/publication/notification/schema.json b/content_schemas/dist/formats/publication/notification/schema.json index ad8865dcd..d3703d99b 100644 --- a/content_schemas/dist/formats/publication/notification/schema.json +++ b/content_schemas/dist/formats/publication/notification/schema.json @@ -152,6 +152,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "$ref": "#/definitions/frontend_links_with_base_path" }, diff --git a/content_schemas/dist/formats/redirect/frontend/schema.json b/content_schemas/dist/formats/redirect/frontend/schema.json index c2387929a..a734232be 100644 --- a/content_schemas/dist/formats/redirect/frontend/schema.json +++ b/content_schemas/dist/formats/redirect/frontend/schema.json @@ -77,6 +77,10 @@ "description": "Link type automatically added by Publishing API", "$ref": "#/definitions/frontend_links" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "part_of_step_navs": { "description": "Link type automatically added by Publishing API", "$ref": "#/definitions/frontend_links_with_base_path" diff --git a/content_schemas/dist/formats/redirect/notification/schema.json b/content_schemas/dist/formats/redirect/notification/schema.json index 3eb463825..a3ea9dae7 100644 --- a/content_schemas/dist/formats/redirect/notification/schema.json +++ b/content_schemas/dist/formats/redirect/notification/schema.json @@ -79,6 +79,10 @@ "description": "Link type automatically added by Publishing API", "$ref": "#/definitions/frontend_links" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "part_of_step_navs": { "description": "Link type automatically added by Publishing API", "$ref": "#/definitions/frontend_links_with_base_path" diff --git a/content_schemas/dist/formats/role/frontend/schema.json b/content_schemas/dist/formats/role/frontend/schema.json index a859954ea..3cba047b4 100644 --- a/content_schemas/dist/formats/role/frontend/schema.json +++ b/content_schemas/dist/formats/role/frontend/schema.json @@ -132,6 +132,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/role/notification/schema.json b/content_schemas/dist/formats/role/notification/schema.json index 230f8e9bb..ac1700190 100644 --- a/content_schemas/dist/formats/role/notification/schema.json +++ b/content_schemas/dist/formats/role/notification/schema.json @@ -150,6 +150,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/role_appointment/frontend/schema.json b/content_schemas/dist/formats/role_appointment/frontend/schema.json index 0bebd765a..1bded1441 100644 --- a/content_schemas/dist/formats/role_appointment/frontend/schema.json +++ b/content_schemas/dist/formats/role_appointment/frontend/schema.json @@ -111,6 +111,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/role_appointment/notification/schema.json b/content_schemas/dist/formats/role_appointment/notification/schema.json index 56fddaddc..d8f2e87a7 100644 --- a/content_schemas/dist/formats/role_appointment/notification/schema.json +++ b/content_schemas/dist/formats/role_appointment/notification/schema.json @@ -129,6 +129,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/service_manual_guide/frontend/schema.json b/content_schemas/dist/formats/service_manual_guide/frontend/schema.json index d02f39d19..3485702f4 100644 --- a/content_schemas/dist/formats/service_manual_guide/frontend/schema.json +++ b/content_schemas/dist/formats/service_manual_guide/frontend/schema.json @@ -115,6 +115,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/service_manual_guide/notification/schema.json b/content_schemas/dist/formats/service_manual_guide/notification/schema.json index fa712bead..5523cf590 100644 --- a/content_schemas/dist/formats/service_manual_guide/notification/schema.json +++ b/content_schemas/dist/formats/service_manual_guide/notification/schema.json @@ -133,6 +133,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/service_manual_homepage/frontend/schema.json b/content_schemas/dist/formats/service_manual_homepage/frontend/schema.json index 0aa2f26f1..c148e651a 100644 --- a/content_schemas/dist/formats/service_manual_homepage/frontend/schema.json +++ b/content_schemas/dist/formats/service_manual_homepage/frontend/schema.json @@ -111,6 +111,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/service_manual_homepage/notification/schema.json b/content_schemas/dist/formats/service_manual_homepage/notification/schema.json index 32aa83030..69ecf6d6f 100644 --- a/content_schemas/dist/formats/service_manual_homepage/notification/schema.json +++ b/content_schemas/dist/formats/service_manual_homepage/notification/schema.json @@ -129,6 +129,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/service_manual_service_standard/frontend/schema.json b/content_schemas/dist/formats/service_manual_service_standard/frontend/schema.json index adde8b092..e0b188f23 100644 --- a/content_schemas/dist/formats/service_manual_service_standard/frontend/schema.json +++ b/content_schemas/dist/formats/service_manual_service_standard/frontend/schema.json @@ -115,6 +115,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/service_manual_service_standard/notification/schema.json b/content_schemas/dist/formats/service_manual_service_standard/notification/schema.json index d6027739e..c4e548f7d 100644 --- a/content_schemas/dist/formats/service_manual_service_standard/notification/schema.json +++ b/content_schemas/dist/formats/service_manual_service_standard/notification/schema.json @@ -133,6 +133,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/service_manual_service_toolkit/frontend/schema.json b/content_schemas/dist/formats/service_manual_service_toolkit/frontend/schema.json index 57db4ef46..d308d53f2 100644 --- a/content_schemas/dist/formats/service_manual_service_toolkit/frontend/schema.json +++ b/content_schemas/dist/formats/service_manual_service_toolkit/frontend/schema.json @@ -111,6 +111,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/service_manual_service_toolkit/notification/schema.json b/content_schemas/dist/formats/service_manual_service_toolkit/notification/schema.json index a51d1a3b9..5f5529702 100644 --- a/content_schemas/dist/formats/service_manual_service_toolkit/notification/schema.json +++ b/content_schemas/dist/formats/service_manual_service_toolkit/notification/schema.json @@ -129,6 +129,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/service_manual_topic/frontend/schema.json b/content_schemas/dist/formats/service_manual_topic/frontend/schema.json index 9f18fa56d..e143daab5 100644 --- a/content_schemas/dist/formats/service_manual_topic/frontend/schema.json +++ b/content_schemas/dist/formats/service_manual_topic/frontend/schema.json @@ -123,6 +123,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/service_manual_topic/notification/schema.json b/content_schemas/dist/formats/service_manual_topic/notification/schema.json index bcb496026..a84a2f462 100644 --- a/content_schemas/dist/formats/service_manual_topic/notification/schema.json +++ b/content_schemas/dist/formats/service_manual_topic/notification/schema.json @@ -141,6 +141,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/service_sign_in/frontend/schema.json b/content_schemas/dist/formats/service_sign_in/frontend/schema.json index 323233c7d..264e49893 100644 --- a/content_schemas/dist/formats/service_sign_in/frontend/schema.json +++ b/content_schemas/dist/formats/service_sign_in/frontend/schema.json @@ -111,6 +111,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/service_sign_in/notification/schema.json b/content_schemas/dist/formats/service_sign_in/notification/schema.json index 2fa144f19..479345c2b 100644 --- a/content_schemas/dist/formats/service_sign_in/notification/schema.json +++ b/content_schemas/dist/formats/service_sign_in/notification/schema.json @@ -129,6 +129,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/simple_smart_answer/frontend/schema.json b/content_schemas/dist/formats/simple_smart_answer/frontend/schema.json index 0983dc5e1..b7c226222 100644 --- a/content_schemas/dist/formats/simple_smart_answer/frontend/schema.json +++ b/content_schemas/dist/formats/simple_smart_answer/frontend/schema.json @@ -111,6 +111,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/simple_smart_answer/notification/schema.json b/content_schemas/dist/formats/simple_smart_answer/notification/schema.json index a7cc7344b..80054ce93 100644 --- a/content_schemas/dist/formats/simple_smart_answer/notification/schema.json +++ b/content_schemas/dist/formats/simple_smart_answer/notification/schema.json @@ -129,6 +129,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/smart_answer/frontend/schema.json b/content_schemas/dist/formats/smart_answer/frontend/schema.json index 8ec9c2602..3c14a2d86 100644 --- a/content_schemas/dist/formats/smart_answer/frontend/schema.json +++ b/content_schemas/dist/formats/smart_answer/frontend/schema.json @@ -111,6 +111,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/smart_answer/notification/schema.json b/content_schemas/dist/formats/smart_answer/notification/schema.json index 8fed4cd57..9b6a34274 100644 --- a/content_schemas/dist/formats/smart_answer/notification/schema.json +++ b/content_schemas/dist/formats/smart_answer/notification/schema.json @@ -129,6 +129,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/special_route/frontend/schema.json b/content_schemas/dist/formats/special_route/frontend/schema.json index 08fc38712..a73ccbbaa 100644 --- a/content_schemas/dist/formats/special_route/frontend/schema.json +++ b/content_schemas/dist/formats/special_route/frontend/schema.json @@ -114,6 +114,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/special_route/notification/schema.json b/content_schemas/dist/formats/special_route/notification/schema.json index 684595d47..2c6993239 100644 --- a/content_schemas/dist/formats/special_route/notification/schema.json +++ b/content_schemas/dist/formats/special_route/notification/schema.json @@ -132,6 +132,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/specialist_document/frontend/schema.json b/content_schemas/dist/formats/specialist_document/frontend/schema.json index a5ceba553..0e8d60f20 100644 --- a/content_schemas/dist/formats/specialist_document/frontend/schema.json +++ b/content_schemas/dist/formats/specialist_document/frontend/schema.json @@ -296,6 +296,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/specialist_document/notification/schema.json b/content_schemas/dist/formats/specialist_document/notification/schema.json index 710a3eb2e..99646aabe 100644 --- a/content_schemas/dist/formats/specialist_document/notification/schema.json +++ b/content_schemas/dist/formats/specialist_document/notification/schema.json @@ -314,6 +314,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/speech/frontend/schema.json b/content_schemas/dist/formats/speech/frontend/schema.json index 4df46c6fd..5d2fb28b1 100644 --- a/content_schemas/dist/formats/speech/frontend/schema.json +++ b/content_schemas/dist/formats/speech/frontend/schema.json @@ -119,6 +119,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/speech/notification/schema.json b/content_schemas/dist/formats/speech/notification/schema.json index a23dbd916..5ce54212a 100644 --- a/content_schemas/dist/formats/speech/notification/schema.json +++ b/content_schemas/dist/formats/speech/notification/schema.json @@ -137,6 +137,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/statistical_data_set/frontend/schema.json b/content_schemas/dist/formats/statistical_data_set/frontend/schema.json index d851832c4..2cf6c2cde 100644 --- a/content_schemas/dist/formats/statistical_data_set/frontend/schema.json +++ b/content_schemas/dist/formats/statistical_data_set/frontend/schema.json @@ -115,6 +115,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/statistical_data_set/notification/schema.json b/content_schemas/dist/formats/statistical_data_set/notification/schema.json index 176ee2d90..f88f745f1 100644 --- a/content_schemas/dist/formats/statistical_data_set/notification/schema.json +++ b/content_schemas/dist/formats/statistical_data_set/notification/schema.json @@ -133,6 +133,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/statistics_announcement/frontend/schema.json b/content_schemas/dist/formats/statistics_announcement/frontend/schema.json index 264885d69..98e4a6800 100644 --- a/content_schemas/dist/formats/statistics_announcement/frontend/schema.json +++ b/content_schemas/dist/formats/statistics_announcement/frontend/schema.json @@ -114,6 +114,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/statistics_announcement/notification/schema.json b/content_schemas/dist/formats/statistics_announcement/notification/schema.json index b6d83b21b..ceef6dec6 100644 --- a/content_schemas/dist/formats/statistics_announcement/notification/schema.json +++ b/content_schemas/dist/formats/statistics_announcement/notification/schema.json @@ -132,6 +132,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/step_by_step_nav/frontend/schema.json b/content_schemas/dist/formats/step_by_step_nav/frontend/schema.json index e0cc85f91..59dca52d1 100644 --- a/content_schemas/dist/formats/step_by_step_nav/frontend/schema.json +++ b/content_schemas/dist/formats/step_by_step_nav/frontend/schema.json @@ -79,6 +79,10 @@ "description": "Link type automatically added by Publishing API", "$ref": "#/definitions/frontend_links" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "pages_part_of_step_nav": { "description": "A list of content that should be navigable via this step by step journey", "$ref": "#/definitions/frontend_links_with_base_path" diff --git a/content_schemas/dist/formats/step_by_step_nav/notification/schema.json b/content_schemas/dist/formats/step_by_step_nav/notification/schema.json index 2665d3c02..0069c73e0 100644 --- a/content_schemas/dist/formats/step_by_step_nav/notification/schema.json +++ b/content_schemas/dist/formats/step_by_step_nav/notification/schema.json @@ -97,6 +97,10 @@ "description": "Link type automatically added by Publishing API", "$ref": "#/definitions/frontend_links" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "pages_part_of_step_nav": { "description": "A list of content that should be navigable via this step by step journey", "$ref": "#/definitions/frontend_links_with_base_path" diff --git a/content_schemas/dist/formats/substitute/notification/schema.json b/content_schemas/dist/formats/substitute/notification/schema.json index 691fdc6ce..b302160c2 100644 --- a/content_schemas/dist/formats/substitute/notification/schema.json +++ b/content_schemas/dist/formats/substitute/notification/schema.json @@ -79,6 +79,10 @@ "description": "Link type automatically added by Publishing API", "$ref": "#/definitions/frontend_links" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "part_of_step_navs": { "description": "Link type automatically added by Publishing API", "$ref": "#/definitions/frontend_links_with_base_path" diff --git a/content_schemas/dist/formats/take_part/frontend/schema.json b/content_schemas/dist/formats/take_part/frontend/schema.json index ac1fa1a3d..95be63095 100644 --- a/content_schemas/dist/formats/take_part/frontend/schema.json +++ b/content_schemas/dist/formats/take_part/frontend/schema.json @@ -111,6 +111,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/take_part/notification/schema.json b/content_schemas/dist/formats/take_part/notification/schema.json index 64f23209f..0344c507b 100644 --- a/content_schemas/dist/formats/take_part/notification/schema.json +++ b/content_schemas/dist/formats/take_part/notification/schema.json @@ -129,6 +129,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/taxon/frontend/schema.json b/content_schemas/dist/formats/taxon/frontend/schema.json index 7ec6cbc24..1173c441f 100644 --- a/content_schemas/dist/formats/taxon/frontend/schema.json +++ b/content_schemas/dist/formats/taxon/frontend/schema.json @@ -115,6 +115,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/taxon/notification/schema.json b/content_schemas/dist/formats/taxon/notification/schema.json index 0d835f7be..b19bb3a84 100644 --- a/content_schemas/dist/formats/taxon/notification/schema.json +++ b/content_schemas/dist/formats/taxon/notification/schema.json @@ -133,6 +133,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/topical_event/frontend/schema.json b/content_schemas/dist/formats/topical_event/frontend/schema.json index a9ef429a4..307c1185e 100644 --- a/content_schemas/dist/formats/topical_event/frontend/schema.json +++ b/content_schemas/dist/formats/topical_event/frontend/schema.json @@ -111,6 +111,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/topical_event/notification/schema.json b/content_schemas/dist/formats/topical_event/notification/schema.json index e1a8b9fed..7e8c1a796 100644 --- a/content_schemas/dist/formats/topical_event/notification/schema.json +++ b/content_schemas/dist/formats/topical_event/notification/schema.json @@ -129,6 +129,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/topical_event_about_page/frontend/schema.json b/content_schemas/dist/formats/topical_event_about_page/frontend/schema.json index 280582688..7e9a0c61e 100644 --- a/content_schemas/dist/formats/topical_event_about_page/frontend/schema.json +++ b/content_schemas/dist/formats/topical_event_about_page/frontend/schema.json @@ -111,6 +111,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/topical_event_about_page/notification/schema.json b/content_schemas/dist/formats/topical_event_about_page/notification/schema.json index 59d280b85..50a1e85db 100644 --- a/content_schemas/dist/formats/topical_event_about_page/notification/schema.json +++ b/content_schemas/dist/formats/topical_event_about_page/notification/schema.json @@ -129,6 +129,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/transaction/frontend/schema.json b/content_schemas/dist/formats/transaction/frontend/schema.json index 39a767b69..d0444c6b1 100644 --- a/content_schemas/dist/formats/transaction/frontend/schema.json +++ b/content_schemas/dist/formats/transaction/frontend/schema.json @@ -111,6 +111,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/transaction/notification/schema.json b/content_schemas/dist/formats/transaction/notification/schema.json index a6cc568ee..e806daff5 100644 --- a/content_schemas/dist/formats/transaction/notification/schema.json +++ b/content_schemas/dist/formats/transaction/notification/schema.json @@ -129,6 +129,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/travel_advice/frontend/schema.json b/content_schemas/dist/formats/travel_advice/frontend/schema.json index 5551e0f30..644ae392e 100644 --- a/content_schemas/dist/formats/travel_advice/frontend/schema.json +++ b/content_schemas/dist/formats/travel_advice/frontend/schema.json @@ -111,6 +111,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/travel_advice/notification/schema.json b/content_schemas/dist/formats/travel_advice/notification/schema.json index ea1fdc3e7..854fab50e 100644 --- a/content_schemas/dist/formats/travel_advice/notification/schema.json +++ b/content_schemas/dist/formats/travel_advice/notification/schema.json @@ -129,6 +129,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/travel_advice_index/frontend/schema.json b/content_schemas/dist/formats/travel_advice_index/frontend/schema.json index 195e71e04..e2b10f2d1 100644 --- a/content_schemas/dist/formats/travel_advice_index/frontend/schema.json +++ b/content_schemas/dist/formats/travel_advice_index/frontend/schema.json @@ -111,6 +111,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/travel_advice_index/notification/schema.json b/content_schemas/dist/formats/travel_advice_index/notification/schema.json index ba08244fc..39861b4b2 100644 --- a/content_schemas/dist/formats/travel_advice_index/notification/schema.json +++ b/content_schemas/dist/formats/travel_advice_index/notification/schema.json @@ -129,6 +129,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/vanish/notification/schema.json b/content_schemas/dist/formats/vanish/notification/schema.json index aa941b0fa..f780eddb9 100644 --- a/content_schemas/dist/formats/vanish/notification/schema.json +++ b/content_schemas/dist/formats/vanish/notification/schema.json @@ -79,6 +79,10 @@ "description": "Link type automatically added by Publishing API", "$ref": "#/definitions/frontend_links" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "part_of_step_navs": { "description": "Link type automatically added by Publishing API", "$ref": "#/definitions/frontend_links_with_base_path" diff --git a/content_schemas/dist/formats/working_group/frontend/schema.json b/content_schemas/dist/formats/working_group/frontend/schema.json index 652b3da97..72b797739 100644 --- a/content_schemas/dist/formats/working_group/frontend/schema.json +++ b/content_schemas/dist/formats/working_group/frontend/schema.json @@ -111,6 +111,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/working_group/notification/schema.json b/content_schemas/dist/formats/working_group/notification/schema.json index 2e91c0ffb..f34cae4b2 100644 --- a/content_schemas/dist/formats/working_group/notification/schema.json +++ b/content_schemas/dist/formats/working_group/notification/schema.json @@ -129,6 +129,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/world_index/frontend/schema.json b/content_schemas/dist/formats/world_index/frontend/schema.json index 5ca1a9058..3e424bdcf 100644 --- a/content_schemas/dist/formats/world_index/frontend/schema.json +++ b/content_schemas/dist/formats/world_index/frontend/schema.json @@ -111,6 +111,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/world_index/notification/schema.json b/content_schemas/dist/formats/world_index/notification/schema.json index c1d169f71..d71ac9d84 100644 --- a/content_schemas/dist/formats/world_index/notification/schema.json +++ b/content_schemas/dist/formats/world_index/notification/schema.json @@ -129,6 +129,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/world_location/frontend/schema.json b/content_schemas/dist/formats/world_location/frontend/schema.json index de08e961a..ff5863037 100644 --- a/content_schemas/dist/formats/world_location/frontend/schema.json +++ b/content_schemas/dist/formats/world_location/frontend/schema.json @@ -115,6 +115,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/world_location/notification/schema.json b/content_schemas/dist/formats/world_location/notification/schema.json index 03396af51..fdd8422ee 100644 --- a/content_schemas/dist/formats/world_location/notification/schema.json +++ b/content_schemas/dist/formats/world_location/notification/schema.json @@ -133,6 +133,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/world_location_news/frontend/schema.json b/content_schemas/dist/formats/world_location_news/frontend/schema.json index e3a65dfb2..bf3f8a6b7 100644 --- a/content_schemas/dist/formats/world_location_news/frontend/schema.json +++ b/content_schemas/dist/formats/world_location_news/frontend/schema.json @@ -115,6 +115,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/world_location_news/notification/schema.json b/content_schemas/dist/formats/world_location_news/notification/schema.json index 28bcaff9e..3d3870a91 100644 --- a/content_schemas/dist/formats/world_location_news/notification/schema.json +++ b/content_schemas/dist/formats/world_location_news/notification/schema.json @@ -133,6 +133,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/worldwide_corporate_information_page/frontend/schema.json b/content_schemas/dist/formats/worldwide_corporate_information_page/frontend/schema.json index 2b698078b..e5b287427 100644 --- a/content_schemas/dist/formats/worldwide_corporate_information_page/frontend/schema.json +++ b/content_schemas/dist/formats/worldwide_corporate_information_page/frontend/schema.json @@ -132,6 +132,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/worldwide_corporate_information_page/notification/schema.json b/content_schemas/dist/formats/worldwide_corporate_information_page/notification/schema.json index 78a1579a6..d714a37a6 100644 --- a/content_schemas/dist/formats/worldwide_corporate_information_page/notification/schema.json +++ b/content_schemas/dist/formats/worldwide_corporate_information_page/notification/schema.json @@ -150,6 +150,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/worldwide_office/frontend/schema.json b/content_schemas/dist/formats/worldwide_office/frontend/schema.json index b79118305..aa159ff09 100644 --- a/content_schemas/dist/formats/worldwide_office/frontend/schema.json +++ b/content_schemas/dist/formats/worldwide_office/frontend/schema.json @@ -115,6 +115,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/worldwide_office/notification/schema.json b/content_schemas/dist/formats/worldwide_office/notification/schema.json index 85317e00a..5e9b5f3a6 100644 --- a/content_schemas/dist/formats/worldwide_office/notification/schema.json +++ b/content_schemas/dist/formats/worldwide_office/notification/schema.json @@ -133,6 +133,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/worldwide_organisation/frontend/schema.json b/content_schemas/dist/formats/worldwide_organisation/frontend/schema.json index 4f2da2305..4ba9d2e99 100644 --- a/content_schemas/dist/formats/worldwide_organisation/frontend/schema.json +++ b/content_schemas/dist/formats/worldwide_organisation/frontend/schema.json @@ -131,6 +131,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/content_schemas/dist/formats/worldwide_organisation/notification/schema.json b/content_schemas/dist/formats/worldwide_organisation/notification/schema.json index c3679f2c4..185144a96 100644 --- a/content_schemas/dist/formats/worldwide_organisation/notification/schema.json +++ b/content_schemas/dist/formats/worldwide_organisation/notification/schema.json @@ -149,6 +149,10 @@ "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/frontend_links_with_base_path" }, + "owning_organisations": { + "description": "Link type automatically added by Publishing API", + "$ref": "#/definitions/frontend_links_with_base_path" + }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/frontend_links_with_base_path", diff --git a/lib/schema_generator/expanded_links.rb b/lib/schema_generator/expanded_links.rb index 11d3341fa..b18a30d6c 100644 --- a/lib/schema_generator/expanded_links.rb +++ b/lib/schema_generator/expanded_links.rb @@ -47,6 +47,10 @@ class ExpandedLinks # `Role` content items that are ministerial roles will automatically # have a `ministers` link type from the main `ministers` index page. "ministers" => "frontend_links", + + # `Role` content items will automatically have an `owning_organisations` link + # which refers back to the organisations that the role belongs to. + "owning_organisations" => "frontend_links_with_base_path", }.freeze def initialize(format)