-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
58 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
# Copyright 2023 Google LLC | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# https://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
# Examples of checking for related media. | ||
|
||
reports: | ||
- name: My Favorite Report | ||
sections: | ||
- # Additional media related to the media already in the config file. This can | ||
# be useful to find out when a sequel/remake/etc. is released, or to double | ||
# check that nothing is missing from a series. | ||
name: related-media | ||
filter: | ||
wikidata: | ||
languages: | ||
- en | ||
relatedMedia: {} | ||
|
||
media: | ||
- # Movie that has a sequel, and the relatedMedia filter should let us know | ||
# about that. | ||
name: "Airplane! (1980)" | ||
wikidata: https://www.wikidata.org/wiki/Q497256 | ||
- # Book series, with one book missing that relatedMedia should catch. | ||
name: "The Inheritance Trilogy (Jemisin)" | ||
wikidata: https://www.wikidata.org/wiki/Q7742030 | ||
wikidataClassesIgnore: | ||
- # If there are any movie adaptations of the books, ignore them. | ||
https://www.wikidata.org/wiki/Q11424 | ||
parts: | ||
- name: "The Hundred Thousand Kingdoms (2010)" | ||
wikidata: https://www.wikidata.org/wiki/Q3231338 | ||
- name: "The Broken Kingdoms (2010)" | ||
wikidata: https://www.wikidata.org/wiki/Q7720260 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
My Favorite Report: | ||
related-media: | ||
- name: Airplane! (1980) | ||
wikidata: https://www.wikidata.org/wiki/Q497256 | ||
extraInformation: | ||
- 'related item: Airplane II: The Sequel (1982 film directed by Ken Finkleman) <https://www.wikidata.org/wiki/Q502303>' | ||
- name: The Inheritance Trilogy (Jemisin) | ||
wikidata: https://www.wikidata.org/wiki/Q7742030 | ||
extraInformation: | ||
- 'related item: The Kingdom of Gods (novel by N. K. Jemisin) <https://www.wikidata.org/wiki/Q21953042>' | ||
parts: | ||
- 'unmatched part: The Hundred Thousand Kingdoms (2010)' | ||
- 'unmatched part: The Broken Kingdoms (2010)' |