enrich: logo enrichment for JP custodians (1350 processed, 10746 remaining)

This commit is contained in:
kempersc 2025-12-23 20:56:21 +01:00
parent 54869589d1
commit 38292d1918
208 changed files with 3604 additions and 101 deletions

View file

@ -568,16 +568,31 @@ def extract_llm_response_metadata(
if finish_reason is None and isinstance(choice, dict):
finish_reason = choice.get("finish_reason")
# Extract usage statistics
usage = last_entry.get("usage", {})
prompt_tokens = usage.get("prompt_tokens")
completion_tokens = usage.get("completion_tokens")
total_tokens = usage.get("total_tokens")
# Check for cached_tokens (some providers include this)
# Extract usage statistics - handle both dict and object types
# (DSPy/OpenAI SDK may return CompletionUsage objects instead of dicts)
usage = last_entry.get("usage")
prompt_tokens = None
completion_tokens = None
total_tokens = None
cached_tokens = None
if "prompt_tokens_details" in usage:
cached_tokens = usage["prompt_tokens_details"].get("cached_tokens")
if usage is not None:
if hasattr(usage, "prompt_tokens"):
# It's an object (e.g., CompletionUsage from OpenAI SDK)
prompt_tokens = getattr(usage, "prompt_tokens", None)
completion_tokens = getattr(usage, "completion_tokens", None)
total_tokens = getattr(usage, "total_tokens", None)
prompt_details = getattr(usage, "prompt_tokens_details", None)
if prompt_details is not None:
cached_tokens = getattr(prompt_details, "cached_tokens", None)
elif isinstance(usage, dict):
# It's a plain dict
prompt_tokens = usage.get("prompt_tokens")
completion_tokens = usage.get("completion_tokens")
total_tokens = usage.get("total_tokens")
prompt_details = usage.get("prompt_tokens_details")
if isinstance(prompt_details, dict):
cached_tokens = prompt_details.get("cached_tokens")
# Extract model info
model = last_entry.get("response_model") or last_entry.get("model")

View file

@ -6656,7 +6656,227 @@
"JP-06-FUK-L-FL.yaml",
"JP-06-FUK-M-FCHM.yaml",
"JP-06-HAR-M-FJ.yaml",
"JP-06-KIT-M-FCSM.yaml"
"JP-06-KIT-M-FCSM.yaml",
"JP-06-KOI-L-FPL-fukui_prefectural_library.yaml",
"JP-06-OBA-M-YTMM.yaml",
"JP-06-OTS-H-OT.yaml",
"JP-07-AMA-M-AHM.yaml",
"JP-07-FUK-M-FPMA-fukuoka_prefectural_museum_of_art.yaml",
"JP-07-JON-L-KL.yaml",
"JP-07-KAM-M-IMZP.yaml",
"JP-07-KOK-M-KNOHM.yaml",
"JP-07-KUR-M-HMKPM.yaml",
"JP-07-MAT-M-MKSU.yaml",
"JP-07-NIS-A-FCPL.yaml",
"JP-07-OKI-M-TM.yaml",
"JP-07-ORA-L-TL.yaml",
"JP-07-SHA-M-KUM.yaml",
"JP-07-TAG-M-TSSRH.yaml",
"JP-07-UMI-M-UT.yaml",
"JP-08-AIZ-M-SRA.yaml",
"JP-08-AKI-M-MMBE.yaml",
"JP-08-BAN-L-BL-bandoshiritsusashima_library.yaml",
"JP-08-BAN-L-BL.yaml",
"JP-08-BAN-M-BPM.yaml",
"JP-08-BAN-M-INM.yaml",
"JP-08-CHI-L-CL-chikuseishiritsuakeno_library.yaml",
"JP-08-CHI-L-CL.yaml",
"JP-08-CHI-L-CLK.yaml",
"JP-08-CHI-L-CLS.yaml",
"JP-08-CHI-M-HIMH.yaml",
"JP-08-CHI-M-HMA.yaml",
"JP-08-CHI-M-SMA.yaml",
"JP-08-FUJ-L-KL.yaml",
"JP-08-HIG-L-IL.yaml",
"JP-08-HIG-L-ITICIP.yaml",
"JP-08-HIG-L-K.yaml",
"JP-08-HIG-L-N.yaml",
"JP-08-HIG-L-O.yaml",
"JP-08-HIG-L-SL.yaml",
"JP-08-HIG-M-GKT.yaml",
"JP-08-HIG-M-IPOA.yaml",
"JP-08-HIG-M-OMBM.yaml",
"JP-08-HIG-M-OMM.yaml",
"JP-08-HIG-M-OWCSSM.yaml",
"JP-08-HIT-A-HCA-hitachiomiya_city_archives.yaml",
"JP-08-HIT-A-HCA.yaml",
"JP-08-HIT-L-H-hitachiomiyashigozenyamakominkantoshoshitsu.yaml",
"JP-08-HIT-L-H-hitachiomiyashimiwakominkantoshoshitsu.yaml",
"JP-08-HIT-L-H-hitachiomiyashiogawasogosentatoshoshitsu.yaml",
"JP-08-HIT-L-H-hitachiomiyashiyamagatakominkantoshoshitsu.yaml",
"JP-08-HIT-L-H.yaml",
"JP-08-HIT-L-HBIUL.yaml",
"JP-08-HIT-L-HL-hitachinakashiritsuchuo_library.yaml",
"JP-08-HIT-L-HL-hitachinakashiritsunakaminato_library.yaml",
"JP-08-HIT-L-HL-hitachinakashiritsusano_library.yaml",
"JP-08-HIT-L-HL-hitachishiritsujuo_library.yaml",
"JP-08-HIT-L-HL-hitachishiritsunambu_library.yaml",
"JP-08-HIT-L-HL-hitachishiritsutaga_library.yaml",
"JP-08-HIT-L-HL.yaml",
"JP-08-HIT-L-HLK.yaml",
"JP-08-HIT-L-HLS-hitachiotashiritsu_library_satomibunshitsu.yaml",
"JP-08-HIT-L-HLS.yaml",
"JP-08-HIT-L-HLT.yaml",
"JP-08-HIT-L-HPL.yaml",
"JP-08-HIT-L-ICUL.yaml",
"JP-08-HIT-L-IL.yaml",
"JP-08-HIT-M-HCCSS.yaml",
"JP-08-HIT-M-HCLHM.yaml",
"JP-08-HIT-M-HCM.yaml",
"JP-08-HIT-M-HMCC.yaml",
"JP-08-HIT-M-HSHFMH.yaml",
"JP-08-HIT-M-NG.yaml",
"JP-08-HIT-M-NMM.yaml",
"JP-08-HIT-M-NWM.yaml",
"JP-08-HOK-L-HLA.yaml",
"JP-08-HOK-L-HLT.yaml",
"JP-08-HOK-L-HPL.yaml",
"JP-08-INA-L-ABIUL.yaml",
"JP-08-INA-L-AL.yaml",
"JP-08-INA-L-I-inashikishisakuragawakominkantoshoshitsu.yaml",
"JP-08-INA-L-I-inashikishishintonekominkantoshoshitsu.yaml",
"JP-08-INA-L-I.yaml",
"JP-08-INA-L-ICCL.yaml",
"JP-08-INA-L-IPUHSL.yaml",
"JP-08-INA-L-K.yaml",
"JP-08-INA-L-M.yaml",
"JP-08-INA-L-TDIL.yaml",
"JP-08-INA-L-TLH.yaml",
"JP-08-INA-M-ICHFCM.yaml",
"JP-08-INA-M-TKM.yaml",
"JP-08-ISH-L-I-ishiokashijonanchikukominkantoshoshitsu.yaml",
"JP-08-ISH-L-I.yaml",
"JP-08-ISH-L-ICCL.yaml",
"JP-08-ISH-L-ICYL.yaml",
"JP-08-ISH-M-IF.yaml",
"JP-08-ISH-M-IFM.yaml",
"JP-08-ISH-M-TRGB.yaml",
"JP-08-ITA-L-I-itakoshiritsuitakokominkantoshoshitsu.yaml",
"JP-08-ITA-L-I-itakoshiritsunobukatakominkantoshoshitsu.yaml",
"JP-08-ITA-L-I-itakoshiritsuouharakominkantoshoshitsu.yaml",
"JP-08-ITA-L-I-itakoshiritsutsuchikominkantoshoshitsu.yaml",
"JP-08-ITA-L-I.yaml",
"JP-08-ITA-L-IPL.yaml",
"JP-08-JOS-L-J.yaml",
"JP-08-JOS-L-JPL.yaml",
"JP-08-JOS-M-JSMFH.yaml",
"JP-08-KAM-L-K-kamisushiwakamatsukominkantoshoshitsu.yaml",
"JP-08-KAM-L-K-kamisushiyatabekominkantoshoshitsu.yaml",
"JP-08-KAM-L-K.yaml",
"JP-08-KAM-L-KFSNRDAJFR.yaml",
"JP-08-KAM-L-KL-kamisushiritsuzumo_library.yaml",
"JP-08-KAM-L-KL.yaml",
"JP-08-KAM-M-KMHF.yaml",
"JP-08-KAS-L-KL-kasamashiritsuiwama_library.yaml",
"JP-08-KAS-L-KL-kasamashiritsutomobe_library.yaml",
"JP-08-KAS-L-KL-kasumigaurashiritsu_library.yaml",
"JP-08-KAS-L-KL.yaml",
"JP-08-KAS-L-KLC.yaml",
"JP-08-KAS-L-KLO.yaml",
"JP-08-KAS-L-KPL.yaml",
"JP-08-KAS-M-ICAM.yaml",
"JP-08-KAS-M-KCFHMH.yaml",
"JP-08-KAS-M-KCMH.yaml",
"JP-08-KAS-M-KCSRRP.yaml",
"JP-08-KAS-M-KIAM.yaml",
"JP-08-KAS-M-TKMM.yaml",
"JP-08-KIT-L-KCL.yaml",
"JP-08-KIT-L-TPL.yaml",
"JP-08-KIT-M-KCFHMM.yaml",
"JP-08-KIT-M-KCMA.yaml",
"JP-08-KIT-M-KVW.yaml",
"JP-08-KIT-M-TMMAI.yaml",
"JP-08-KIT-M-TR.yaml",
"JP-08-KOG-L-K-kogashichuokominkantoshoshitsu.yaml",
"JP-08-KOG-L-K-kogashinakatakominkantoshoshitsu.yaml",
"JP-08-KOG-L-K-kogashitsutsumikominkantoshoshitsu.yaml",
"JP-08-KOG-L-K-kogashiyusentasowatoshoshitsu.yaml",
"JP-08-KOG-L-K.yaml",
"JP-08-KOG-L-KCML.yaml",
"JP-08-KOG-L-KL-kogashisanwa_library.yaml",
"JP-08-KOG-L-KL.yaml",
"JP-08-KOG-M-KCMH.yaml",
"JP-08-KOG-M-KMAM.yaml",
"JP-08-KOG-M-MMPIIFTNMF.yaml",
"JP-08-KOG-M-SLMH.yaml",
"JP-08-KOO-M-KSK.yaml",
"JP-08-KUJ-L-D.yaml",
"JP-08-MIT-A-IPAM-ibaraki_prefectural_archives_and_museum.yaml",
"JP-08-MIT-A-IPAM.yaml",
"JP-08-MIT-L-I.yaml",
"JP-08-MIT-L-IL.yaml",
"JP-08-MIT-L-IUL.yaml",
"JP-08-MIT-L-ML-mitoshiritsuchihara_library.yaml",
"JP-08-MIT-L-ML-mitoshiritsumiwa_library.yaml",
"JP-08-MIT-L-ML-mitoshiritsuseibu_library.yaml",
"JP-08-MIT-L-ML-mitoshiritsutobu_library.yaml",
"JP-08-MIT-L-ML-mitoshiritsutsunezumi_library.yaml",
"JP-08-MIT-L-ML.yaml",
"JP-08-MIT-L-TUMITC.yaml",
"JP-08-MIT-M-HNMM.yaml",
"JP-08-MIT-M-IPMH.yaml",
"JP-08-MIT-M-JGC.yaml",
"JP-08-MIT-M-JHMM.yaml",
"JP-08-MIT-M-KPK.yaml",
"JP-08-MIT-M-KSM.yaml",
"JP-08-MIT-M-MBP.yaml",
"JP-08-MIT-M-MCM.yaml",
"JP-08-MIT-M-MMAI.yaml",
"JP-08-MIT-M-TM.yaml",
"JP-08-MIT-M-TUMM.yaml",
"JP-08-MOR-L-AGHLDRDMTI.yaml",
"JP-08-MOR-L-M-moriyashigoshukominkantoshoshitsu.yaml",
"JP-08-MOR-L-M-moriyashikitamoriyakominkantoshoshitsu.yaml",
"JP-08-MOR-L-M-moriyashikoyakominkantoshoshitsu.yaml",
"JP-08-MOR-L-M.yaml",
"JP-08-NAK-L-IRMRDCDJAE.yaml",
"JP-08-NAK-L-IWSJCL.yaml",
"JP-08-NAK-L-N-nakashichuokominkantoshoetsuranshitsu.yaml",
"JP-08-NAK-L-N.yaml",
"JP-08-NAK-L-NCPL.yaml",
"JP-08-NAK-L-TL.yaml",
"JP-08-NAK-M-IMNS.yaml",
"JP-08-NAK-M-IPBG.yaml",
"JP-08-NAK-M-NSHFMH.yaml",
"JP-08-NAK-M-TPRP.yaml",
"JP-08-NAK-M-TVM.yaml",
"JP-08-NAM-L-N-namegatashikitaurakominkantoshoshitsu.yaml",
"JP-08-NAM-L-N.yaml",
"JP-08-NAM-L-NL.yaml",
"JP-08-OGA-M-KSMLCIC.yaml",
"JP-08-OMI-L-O-omitamashihatorifureaisentatoshoshitsu.yaml",
"JP-08-OMI-L-O.yaml",
"JP-08-OMI-L-OL-omitamashitamari_library.yaml",
"JP-08-OMI-L-OL.yaml",
"JP-08-OMI-M-OCMH.yaml",
"JP-08-OMI-M-OML.yaml",
"JP-08-RYU-L-RL.yaml",
"JP-08-RYU-L-RPLH.yaml",
"JP-08-RYU-M-RCFHMM.yaml",
"JP-08-SAK-L-M.yaml",
"JP-08-SAK-L-S-sakuragawashiyamatochuokominkantoshoshitsu.yaml",
"JP-08-SAK-L-S.yaml",
"JP-08-SAK-M-GAM.yaml",
"JP-08-SAK-M-IRM.yaml",
"JP-08-SAK-M-MDHM.yaml",
"JP-08-SAK-M-THART.yaml",
"JP-08-SAS-L-G.yaml",
"JP-08-SAS-L-S.yaml",
"JP-08-SAS-M-SMHFM.yaml",
"JP-08-SHI-L-SPL.yaml",
"JP-08-SHI-M-APMJ.yaml",
"JP-08-SHI-M-SCM.yaml",
"JP-08-SHI-M-SMM.yaml",
"JP-08-TAK-M-TCFHM.yaml",
"JP-08-TOR-L-T.yaml",
"JP-08-TOR-L-TL-torideshiritsufujishiro_library.yaml",
"JP-08-TOR-L-TL.yaml",
"JP-08-TOR-L-TUAUTL.yaml",
"JP-08-TOR-M-TMC.yaml",
"JP-08-TSU-A-UTA-university_of_tsukuba_archives.yaml",
"JP-08-TSU-A-UTA.yaml",
"JP-08-TSU-L-AFFRITCTOA.yaml",
"JP-08-TSU-L-APIL.yaml"
],
"last_index": 9
}

View file

@ -842,3 +842,28 @@ youtube_enrichment:
comments: []
thumbnail_url: https://i.ytimg.com/vi/AB5LqTtUsrM/hqdefault.jpg
status: SUCCESS
logo_enrichment:
enrichment_timestamp: '2025-12-23T17:08:47.594980+00:00'
source_url: https://fukuoka-kenbi.jp
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://fukuoka-kenbi.jp/bundles/favicon/apple-touch-icon.png
source_url: https://fukuoka-kenbi.jp
css_selector: '[document] > html > head > link:nth-of-type(2)'
retrieved_on: '2025-12-23T17:08:47.594980+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: 180x180
- claim_type: og_image_url
claim_value: https://fukuoka-kenbi.jp/bundles/images/og2.jpg
source_url: https://fukuoka-kenbi.jp
css_selector: '[document] > html > head > meta:nth-of-type(9)'
retrieved_on: '2025-12-23T17:08:47.594980+00:00'
extraction_method: crawl4ai_meta_og
summary:
total_claims: 2
has_primary_logo: false
has_favicon: true
has_og_image: true
favicon_count: 4

View file

@ -1056,3 +1056,28 @@ youtube_enrichment:
comments: []
thumbnail_url: https://i.ytimg.com/vi/0SNm-NLWZGc/hqdefault.jpg
status: SUCCESS
logo_enrichment:
enrichment_timestamp: '2025-12-23T17:09:04.555899+00:00'
source_url: https://www.itozu-zoo.jp
extraction_method: crawl4ai
claims:
- claim_type: logo_url
claim_value: https://www.itozu-zoo.jp/com/img/com-hc-logo.png
source_url: https://www.itozu-zoo.jp
css_selector: '[document] > html > body > header.hc > div.inner > h1 > a > img'
retrieved_on: '2025-12-23T17:09:04.555899+00:00'
extraction_method: crawl4ai_header_logo
detection_confidence: high
alt_text: 到津の森公園
- claim_type: og_image_url
claim_value: http://www.itozu-zoo.jp/img/facebook-thumb.jpg
source_url: https://www.itozu-zoo.jp
css_selector: '[document] > html > head > meta:nth-of-type(10)'
retrieved_on: '2025-12-23T17:09:04.555899+00:00'
extraction_method: crawl4ai_meta_og
summary:
total_claims: 2
has_primary_logo: true
has_favicon: false
has_og_image: true
favicon_count: 0

View file

@ -474,3 +474,36 @@ location:
geonames_id: 9888403
feature_code: PPL
normalization_timestamp: '2025-12-09T06:53:27.855909+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-23T17:09:12.756797+00:00'
source_url: https://www.city.kasuga.fukuoka.jp/miryoku/history/historymuseum/1002240/1002243.html
extraction_method: crawl4ai
claims:
- claim_type: logo_url
claim_value: https://www.city.kasuga.fukuoka.jp/_template_/_site_/_default_/_res/design/images/header/tlogo.png
source_url: https://www.city.kasuga.fukuoka.jp/miryoku/history/historymuseum/1002240/1002243.html
css_selector: '#tlogo > p > a > img'
retrieved_on: '2025-12-23T17:09:12.756797+00:00'
extraction_method: crawl4ai_header_logo
detection_confidence: high
alt_text: 春日市 みんなで春をつくろう
- claim_type: favicon_url
claim_value: https://www.city.kasuga.fukuoka.jp/_template_/_site_/_default_/_res/images/apple-touch-icon-precomposed.png
source_url: https://www.city.kasuga.fukuoka.jp/miryoku/history/historymuseum/1002240/1002243.html
css_selector: '[document] > html > head > link:nth-of-type(4)'
retrieved_on: '2025-12-23T17:09:12.756797+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
- claim_type: og_image_url
claim_value: https://www.city.kasuga.fukuoka.jp/_template_/_site_/_default_/_res/images/sns/ogimage.png
source_url: https://www.city.kasuga.fukuoka.jp/miryoku/history/historymuseum/1002240/1002243.html
css_selector: '[document] > html > head > meta:nth-of-type(8)'
retrieved_on: '2025-12-23T17:09:12.756797+00:00'
extraction_method: crawl4ai_meta_og
summary:
total_claims: 3
has_primary_logo: true
has_favicon: true
has_og_image: true
favicon_count: 2

View file

@ -425,3 +425,28 @@ location:
geonames_id: 9892661
feature_code: PPL
normalization_timestamp: '2025-12-09T06:53:27.945767+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-23T17:09:22.749578+00:00'
source_url: https://www.town.hirokawa.fukuoka.jp/soshiki/kyoikuiinkai_jimukyoku/5/3/8/1/1189.html
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://www.town.hirokawa.fukuoka.jp/theme/base/img_common/smartphone.png
source_url: https://www.town.hirokawa.fukuoka.jp/soshiki/kyoikuiinkai_jimukyoku/5/3/8/1/1189.html
css_selector: '[document] > html > head > link:nth-of-type(3)'
retrieved_on: '2025-12-23T17:09:22.749578+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
- claim_type: og_image_url
claim_value: https://www.town.hirokawa.fukuoka.jp/theme/base/img_common/ogp_noimage.png
source_url: https://www.town.hirokawa.fukuoka.jp/soshiki/kyoikuiinkai_jimukyoku/5/3/8/1/1189.html
css_selector: '[document] > html > head > meta:nth-of-type(7)'
retrieved_on: '2025-12-23T17:09:22.749578+00:00'
extraction_method: crawl4ai_meta_og
summary:
total_claims: 2
has_primary_logo: false
has_favicon: true
has_og_image: true
favicon_count: 2

View file

@ -299,3 +299,28 @@ location:
geonames_id: 9888329
feature_code: PPL
normalization_timestamp: '2025-12-09T06:53:28.110962+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-23T17:09:42.727751+00:00'
source_url: http://toshokan.city.fukuoka.lg.jp/index.php
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: http://toshokan.city.fukuoka.lg.jp/favicon.ico
source_url: http://toshokan.city.fukuoka.lg.jp/index.php
css_selector: '[document] > html > head > link'
retrieved_on: '2025-12-23T17:09:42.727751+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: image/x-icon
favicon_sizes: ''
- claim_type: og_image_url
claim_value: https://toshokan.city.fukuoka.lg.jp/img/og.jpg
source_url: http://toshokan.city.fukuoka.lg.jp/index.php
css_selector: '[document] > html > head > meta:nth-of-type(11)'
retrieved_on: '2025-12-23T17:09:42.727751+00:00'
extraction_method: crawl4ai_meta_og
summary:
total_claims: 2
has_primary_logo: false
has_favicon: true
has_og_image: true
favicon_count: 1

View file

@ -301,3 +301,22 @@ location:
geonames_id: 9888259
feature_code: PPL
normalization_timestamp: '2025-12-09T06:53:28.199814+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-23T17:10:06.012820+00:00'
source_url: http://www.museum.kyushu-u.ac.jp
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: http://www.museum.kyushu-u.ac.jp/img_file/favicon.ico
source_url: http://www.museum.kyushu-u.ac.jp
css_selector: '[document] > html > head > link'
retrieved_on: '2025-12-23T17:10:06.012820+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -300,3 +300,28 @@ location:
geonames_name: Tagawa
feature_code: PPLA2
normalization_timestamp: '2025-12-09T06:53:28.269805+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-23T17:10:18.438702+00:00'
source_url: https://www.joho.tagawa.fukuoka.jp/list00784.html
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://www.joho.tagawa.fukuoka.jp/dynamic/favicon.ico
source_url: https://www.joho.tagawa.fukuoka.jp/list00784.html
css_selector: '#ctl00_Head1 > link:nth-of-type(14)'
retrieved_on: '2025-12-23T17:10:18.438702+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: image/vnd.microsoft.icon
favicon_sizes: ''
- claim_type: og_image_url
claim_value: https://www.joho.tagawa.fukuoka.jp/dynamic/common/images/ogp/og_image.png
source_url: https://www.joho.tagawa.fukuoka.jp/list00784.html
css_selector: '#ctl00_Head1 > meta:nth-of-type(7)'
retrieved_on: '2025-12-23T17:10:18.438702+00:00'
extraction_method: crawl4ai_meta_og
summary:
total_claims: 2
has_primary_logo: false
has_favicon: true
has_og_image: true
favicon_count: 1

View file

@ -463,3 +463,28 @@ youtube_enrichment:
comments: []
thumbnail_url: https://i.ytimg.com/vi/DBH5qr-KKgE/hqdefault.jpg
status: SUCCESS
logo_enrichment:
enrichment_timestamp: '2025-12-23T17:10:28.416036+00:00'
source_url: https://bukeyashiki.com
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://bukeyashiki.com/wp-content/uploads/2024/04/cropped-favicon-black-bukeyashiki-180x180.png
source_url: https://bukeyashiki.com
css_selector: '[document] > html > head > link:nth-of-type(17)'
retrieved_on: '2025-12-23T17:10:28.416036+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
- claim_type: og_image_url
claim_value: https://bukeyashiki.com/wp-content/uploads/2024/04/saigotanomo-01-1.jpg
source_url: https://bukeyashiki.com
css_selector: '[document] > html > head > meta:nth-of-type(16)'
retrieved_on: '2025-12-23T17:10:28.416036+00:00'
extraction_method: crawl4ai_meta_og
summary:
total_claims: 2
has_primary_logo: false
has_favicon: true
has_og_image: true
favicon_count: 3

View file

@ -204,3 +204,22 @@ wikidata_enrichment:
wikidata_web:
official_website: http://www.city.bando.lg.jp/page/dir000587.html
wikidata_official_website: http://www.city.bando.lg.jp/page/dir000587.html
logo_enrichment:
enrichment_timestamp: '2025-12-23T17:11:11.590395+00:00'
source_url: http://www.city.bando.lg.jp/page/dir000587.html
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: http://www.city.bando.lg.jp/web_clip_icon.png
source_url: http://www.city.bando.lg.jp/page/dir000587.html
css_selector: '[document] > html > head > link:nth-of-type(2)'
retrieved_on: '2025-12-23T17:11:11.590395+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 2

View file

@ -204,3 +204,22 @@ wikidata_enrichment:
wikidata_web:
official_website: http://www.city.bando.lg.jp/sp/page/dir000589.html
wikidata_official_website: http://www.city.bando.lg.jp/sp/page/dir000589.html
logo_enrichment:
enrichment_timestamp: '2025-12-23T17:11:19.370656+00:00'
source_url: http://www.city.bando.lg.jp/sp/page/dir000589.html
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: http://www.city.bando.lg.jp/sp/web_clip_icon.png
source_url: http://www.city.bando.lg.jp/sp/page/dir000589.html
css_selector: '[document] > html > head > link:nth-of-type(2)'
retrieved_on: '2025-12-23T17:11:19.370656+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 2

View file

@ -960,3 +960,30 @@ youtube_enrichment:
comments: []
thumbnail_url: https://i.ytimg.com/vi/NMh7IrCMioc/hqdefault.jpg
status: SUCCESS
logo_enrichment:
enrichment_timestamp: '2025-12-23T17:11:28.034750+00:00'
source_url: https://www.nat.museum.ibk.ed.jp
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://www.nat.museum.ibk.ed.jp/favicon.ico
source_url: https://www.nat.museum.ibk.ed.jp
css_selector: '[document] > html.wf-vdl-v7marugothic-n5-active.wf-noto-sans-cjk-jp-n4-active
> head > link'
retrieved_on: '2025-12-23T17:11:28.034750+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
- claim_type: og_image_url
claim_value: https://www.nat.museum.ibk.ed.jp/ogp.png
source_url: https://www.nat.museum.ibk.ed.jp
css_selector: '[document] > html.wf-vdl-v7marugothic-n5-active.wf-noto-sans-cjk-jp-n4-active
> head > meta:nth-of-type(8)'
retrieved_on: '2025-12-23T17:11:28.034750+00:00'
extraction_method: crawl4ai_meta_og
summary:
total_claims: 2
has_primary_logo: false
has_favicon: true
has_og_image: true
favicon_count: 1

View file

@ -248,3 +248,22 @@ location:
geonames_id: 6822097
geonames_name: Chikusei
feature_code: PPLA2
logo_enrichment:
enrichment_timestamp: '2025-12-23T17:12:06.262220+00:00'
source_url: https://www.itayahazan.jp
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://www.itayahazan.jp/web_clip_icon.png
source_url: https://www.itayahazan.jp
css_selector: '[document] > html > head > link:nth-of-type(2)'
retrieved_on: '2025-12-23T17:12:06.262220+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 2

View file

@ -283,3 +283,22 @@ location:
geonames_id: 2112939
feature_code: PPL
normalization_timestamp: '2025-12-09T06:53:28.513443+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-23T17:12:19.128319+00:00'
source_url: https://www.town.kunimi.fukushima.jp/site/kangetsudai
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://www.town.kunimi.fukushima.jp/img/favicon.ico
source_url: https://www.town.kunimi.fukushima.jp/site/kangetsudai
css_selector: '[document] > html > head > link:nth-of-type(7)'
retrieved_on: '2025-12-23T17:12:19.128319+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: image/vnd.microsoft.icon
favicon_sizes: ''
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -203,3 +203,22 @@ wikidata_enrichment:
wikidata_web:
official_website: http://www.lib.t-ibaraki.jp
wikidata_official_website: http://www.lib.t-ibaraki.jp
logo_enrichment:
enrichment_timestamp: '2025-12-23T17:12:29.396093+00:00'
source_url: http://www.lib.t-ibaraki.jp
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://www.lib.t-ibaraki.jp/themes/lib_theme/favicon.ico
source_url: http://www.lib.t-ibaraki.jp
css_selector: '[document] > html > head.notranslate > link'
retrieved_on: '2025-12-23T17:12:29.396093+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -203,3 +203,28 @@ wikidata_enrichment:
wikidata_web:
official_website: http://www.town.shirosato.lg.jp/page/page001450.html
wikidata_official_website: http://www.town.shirosato.lg.jp/page/page001450.html
logo_enrichment:
enrichment_timestamp: '2025-12-23T17:12:40.171097+00:00'
source_url: http://www.town.shirosato.lg.jp/page/page001450.html
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: http://www.town.shirosato.lg.jp/web_clip_icon.png
source_url: http://www.town.shirosato.lg.jp/page/page001450.html
css_selector: '[document] > html > head > link:nth-of-type(3)'
retrieved_on: '2025-12-23T17:12:40.171097+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
- claim_type: og_image_url
claim_value: https://www.town.shirosato.lg.jp/data/img/26-1266229965_565.JPG
source_url: http://www.town.shirosato.lg.jp/page/page001450.html
css_selector: '[document] > html > head > meta:nth-of-type(8)'
retrieved_on: '2025-12-23T17:12:40.171097+00:00'
extraction_method: crawl4ai_meta_og
summary:
total_claims: 2
has_primary_logo: false
has_favicon: true
has_og_image: true
favicon_count: 2

View file

@ -204,3 +204,22 @@ wikidata_enrichment:
wikidata_web:
official_website: http://www.town.oarai.lg.jp/~syougai/syogai/info-752-278_3.html
wikidata_official_website: http://www.town.oarai.lg.jp/~syougai/syogai/info-752-278_3.html
logo_enrichment:
enrichment_timestamp: '2025-12-23T17:12:48.782056+00:00'
source_url: http://www.town.oarai.lg.jp/~syougai/syogai/info-752-278_3.html
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://www.town.oarai.lg.jp/wp/wp-content/uploads/2021/03/cropped-favicon-180x180.jpg
source_url: http://www.town.oarai.lg.jp/~syougai/syogai/info-752-278_3.html
css_selector: '[document] > html.fontS.white > head > link:nth-of-type(11)'
retrieved_on: '2025-12-23T17:12:48.782056+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 4

View file

@ -260,3 +260,37 @@ wikidata_enrichment:
image: Aqua World.jpg
commons_category: Aqua World Ibaraki Prefectural Oarai Aquarium
wikidata_image: Aqua World.jpg
logo_enrichment:
enrichment_timestamp: '2025-12-23T17:13:32.566006+00:00'
source_url: https://www.aquaworld-oarai.com
extraction_method: crawl4ai
claims:
- claim_type: logo_url
claim_value: https://www.aquaworld-oarai.com/cms/wp-content/themes/aqua_hmr/images/logo.png
source_url: https://www.aquaworld-oarai.com
css_selector: '#inner_header_parts > div.header_top > div.site-branding > h1.site-title
> a > img'
retrieved_on: '2025-12-23T17:13:32.566006+00:00'
extraction_method: crawl4ai_header_logo
detection_confidence: high
alt_text: アクアワールド茨城県大洗水族館
- claim_type: favicon_url
claim_value: https://www.aquaworld-oarai.com/cms/wp-content/uploads/fbrfg/apple-touch-icon.png
source_url: https://www.aquaworld-oarai.com
css_selector: '[document] > html > head > link:nth-of-type(34)'
retrieved_on: '2025-12-23T17:13:32.566006+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: 180x180
- claim_type: og_image_url
claim_value: https://www.aquaworld-oarai.com/cms/wp-content/uploads/2022/08/ogp.jpg
source_url: https://www.aquaworld-oarai.com
css_selector: '[document] > html > head > meta:nth-of-type(8)'
retrieved_on: '2025-12-23T17:13:32.566006+00:00'
extraction_method: crawl4ai_meta_og
summary:
total_claims: 3
has_primary_logo: true
has_favicon: true
has_og_image: true
favicon_count: 4

View file

@ -37,13 +37,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE
ghcid_history:
- ghcid: JP-08-HIT-L-HBIUL
valid_from: "2025-12-10T09:43:39Z"
valid_from: '2025-12-10T09:43:39Z'
valid_to: null
reason: "Corrected region code from JP-IB (abbreviation) to JP-08 (Ibaraki) per ISO 3166-2:JP"
reason: Corrected region code from JP-IB (abbreviation) to JP-08 (Ibaraki) per
ISO 3166-2:JP
- ghcid: JP-IB-HIT-L-HBIUL
valid_from: null
valid_to: "2025-12-10T09:43:39Z"
reason: "Previous GHCID with incorrect region code"
valid_to: '2025-12-10T09:43:39Z'
reason: Previous GHCID with incorrect region code
- ghcid: JP-IB-HIT-L-HBIUL
ghcid_numeric: 5832817409698474045
valid_from: '2025-12-06T23:38:53.207834+00:00'
@ -101,8 +102,8 @@ ch_annotator:
annotation_metadata:
confidence_score: 0.98
verified: false
verification_date:
verified_by:
verification_date: null
verified_by: null
entity_claims:
- claim_type: full_name
claim_value: Hitachi Branch of Ibaraki University Library
@ -204,3 +205,41 @@ location:
geonames_id: 2112708
geonames_name: Hitachi
feature_code: PPLA2
logo_enrichment:
enrichment_timestamp: '2025-12-23T17:14:42.305207+00:00'
source_url: http://www.lib.ibaraki.ac.jp/guide/kougaku.html
extraction_method: crawl4ai
claims:
- claim_type: logo_url
claim_value: http://www.lib.ibaraki.ac.jp/assets/images/logo-library.svg
source_url: http://www.lib.ibaraki.ac.jp/guide/kougaku.html
css_selector: '[document] > html.js-focus-visible.wf-source-han-sans-japanese-n7-active
> body > main.container-lower > div.container-lower__inner > header.container-lower__header
> div.container-lower__major > div.breadcrumb > ul.breadcrumb__inner.container-lower__bread
> li > a.breadcrumb__home > img.breadcrumb__logo'
retrieved_on: '2025-12-23T17:14:42.305207+00:00'
extraction_method: crawl4ai_header_logo
detection_confidence: high
alt_text: 茨城大学図書館
- claim_type: favicon_url
claim_value: http://www.lib.ibaraki.ac.jp/apple-touch-icon-180x180.png
source_url: http://www.lib.ibaraki.ac.jp/guide/kougaku.html
css_selector: '[document] > html.js-focus-visible.wf-source-han-sans-japanese-n7-active
> head > link:nth-of-type(2)'
retrieved_on: '2025-12-23T17:14:42.305207+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: image/x-icon
favicon_sizes: ''
- claim_type: og_image_url
claim_value: http://www.lib.ibaraki.ac.jp/ogp.jpg
source_url: http://www.lib.ibaraki.ac.jp/guide/kougaku.html
css_selector: '[document] > html.js-focus-visible.wf-source-han-sans-japanese-n7-active
> head > meta:nth-of-type(10)'
retrieved_on: '2025-12-23T17:14:42.305207+00:00'
extraction_method: crawl4ai_meta_og
summary:
total_claims: 3
has_primary_logo: true
has_favicon: true
has_og_image: true
favicon_count: 3

View file

@ -205,3 +205,22 @@ wikidata_enrichment:
wikidata_web:
official_website: http://www.lib.hitachinaka.ibaraki.jp
wikidata_official_website: http://www.lib.hitachinaka.ibaraki.jp
logo_enrichment:
enrichment_timestamp: '2025-12-23T17:14:54.103098+00:00'
source_url: http://www.lib.hitachinaka.ibaraki.jp
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: http://www.lib.hitachinaka.ibaraki.jp/apple-touch-icon.png
source_url: http://www.lib.hitachinaka.ibaraki.jp
css_selector: '[document] > html > head > link:nth-of-type(11)'
retrieved_on: '2025-12-23T17:14:54.103098+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: 180x180
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 3

View file

@ -205,3 +205,22 @@ wikidata_enrichment:
wikidata_web:
official_website: http://www.lib.hitachinaka.ibaraki.jp/
wikidata_official_website: http://www.lib.hitachinaka.ibaraki.jp/
logo_enrichment:
enrichment_timestamp: '2025-12-23T17:15:04.761951+00:00'
source_url: http://www.lib.hitachinaka.ibaraki.jp
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: http://www.lib.hitachinaka.ibaraki.jp/apple-touch-icon.png
source_url: http://www.lib.hitachinaka.ibaraki.jp
css_selector: '[document] > html > head > link:nth-of-type(11)'
retrieved_on: '2025-12-23T17:15:04.761951+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: 180x180
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 3

View file

@ -205,3 +205,22 @@ wikidata_enrichment:
wikidata_web:
official_website: http://www.lib.hitachinaka.ibaraki.jp
wikidata_official_website: http://www.lib.hitachinaka.ibaraki.jp
logo_enrichment:
enrichment_timestamp: '2025-12-23T17:15:16.286006+00:00'
source_url: http://www.lib.hitachinaka.ibaraki.jp
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: http://www.lib.hitachinaka.ibaraki.jp/apple-touch-icon.png
source_url: http://www.lib.hitachinaka.ibaraki.jp
css_selector: '[document] > html > head > link:nth-of-type(11)'
retrieved_on: '2025-12-23T17:15:16.286006+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: 180x180
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 3

View file

@ -39,13 +39,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE
ghcid_history:
- ghcid: JP-08-HIT-L-HL-hitachishiritsujuo_library
valid_from: "2025-12-10T09:43:39Z"
valid_from: '2025-12-10T09:43:39Z'
valid_to: null
reason: "Corrected region code from JP-IB (abbreviation) to JP-08 (Ibaraki) per ISO 3166-2:JP"
reason: Corrected region code from JP-IB (abbreviation) to JP-08 (Ibaraki) per
ISO 3166-2:JP
- ghcid: JP-IB-HIT-L-HL-hitachishiritsujuo_library
valid_from: null
valid_to: "2025-12-10T09:43:39Z"
reason: "Previous GHCID with incorrect region code"
valid_to: '2025-12-10T09:43:39Z'
reason: Previous GHCID with incorrect region code
- ghcid: JP-IB-HIT-L-HL-hitachishiritsujuo_library
ghcid_numeric: 12907750541195458816
valid_from: '2025-12-06T23:38:42.039454+00:00'
@ -237,3 +238,30 @@ location:
postal_code: 319-1304
street_address: 202-1 JUOCHO TOMOBE, Hitachi Shi, Ibaraki Ken, 319-1304
normalization_timestamp: '2025-12-09T10:56:29.805366+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-23T17:15:27.901951+00:00'
source_url: http://www.city.hitachi.lg.jp/lib
extraction_method: crawl4ai
claims:
- claim_type: logo_url
claim_value: https://www.city.hitachi.lg.jp/_template_/_site_/_default_/_res/design/images/header/tlogo.png
source_url: http://www.city.hitachi.lg.jp/lib
css_selector: '#tlogo > p > a > img'
retrieved_on: '2025-12-23T17:15:27.901951+00:00'
extraction_method: crawl4ai_header_logo
detection_confidence: high
alt_text: 日立市トップページ
- claim_type: favicon_url
claim_value: https://www.city.hitachi.lg.jp/_template_/_site_/_default_/_res/favicon.ico
source_url: http://www.city.hitachi.lg.jp/lib
css_selector: '[document] > html > head > link:nth-of-type(3)'
retrieved_on: '2025-12-23T17:15:27.901951+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: image/vnd.microsoft.icon
favicon_sizes: ''
summary:
total_claims: 2
has_primary_logo: true
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -39,13 +39,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE
ghcid_history:
- ghcid: JP-08-HIT-L-HL-hitachishiritsunambu_library
valid_from: "2025-12-10T09:43:39Z"
valid_from: '2025-12-10T09:43:39Z'
valid_to: null
reason: "Corrected region code from JP-IB (abbreviation) to JP-08 (Ibaraki) per ISO 3166-2:JP"
reason: Corrected region code from JP-IB (abbreviation) to JP-08 (Ibaraki) per
ISO 3166-2:JP
- ghcid: JP-IB-HIT-L-HL-hitachishiritsunambu_library
valid_from: null
valid_to: "2025-12-10T09:43:39Z"
reason: "Previous GHCID with incorrect region code"
valid_to: '2025-12-10T09:43:39Z'
reason: Previous GHCID with incorrect region code
- ghcid: JP-IB-HIT-L-HL-hitachishiritsunambu_library
ghcid_numeric: 4201558236335047041
valid_from: '2025-12-06T23:38:51.085999+00:00'
@ -236,3 +237,30 @@ location:
postal_code: 319-1222
street_address: 3-24-1 KUJICHO, Hitachi Shi, Ibaraki Ken, 319-1222
normalization_timestamp: '2025-12-09T10:56:29.834779+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-23T17:15:35.023624+00:00'
source_url: http://www.city.hitachi.lg.jp/lib/008/004/p025529.html
extraction_method: crawl4ai
claims:
- claim_type: logo_url
claim_value: https://www.city.hitachi.lg.jp/_template_/_site_/_default_/_res/design/images/header/tlogo.png
source_url: http://www.city.hitachi.lg.jp/lib/008/004/p025529.html
css_selector: '#tlogo > p > a > img'
retrieved_on: '2025-12-23T17:15:35.023624+00:00'
extraction_method: crawl4ai_header_logo
detection_confidence: high
alt_text: 日立市トップページ
- claim_type: favicon_url
claim_value: https://www.city.hitachi.lg.jp/_template_/_site_/_default_/_res/favicon.ico
source_url: http://www.city.hitachi.lg.jp/lib/008/004/p025529.html
css_selector: '[document] > html > head > link:nth-of-type(3)'
retrieved_on: '2025-12-23T17:15:35.023624+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: image/vnd.microsoft.icon
favicon_sizes: ''
summary:
total_claims: 2
has_primary_logo: true
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -39,13 +39,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE
ghcid_history:
- ghcid: JP-08-HIT-L-HL
valid_from: "2025-12-10T09:43:39Z"
valid_from: '2025-12-10T09:43:39Z'
valid_to: null
reason: "Corrected region code from JP-IB (abbreviation) to JP-08 (Ibaraki) per ISO 3166-2:JP"
reason: Corrected region code from JP-IB (abbreviation) to JP-08 (Ibaraki) per
ISO 3166-2:JP
- ghcid: JP-IB-HIT-L-HL
valid_from: null
valid_to: "2025-12-10T09:43:39Z"
reason: "Previous GHCID with incorrect region code"
valid_to: '2025-12-10T09:43:39Z'
reason: Previous GHCID with incorrect region code
- ghcid: JP-IB-HIT-L-HL
ghcid_numeric: 15152615725784543380
valid_from: '2025-12-06T23:38:42.033742+00:00'
@ -237,3 +238,30 @@ location:
postal_code: 317-0073
street_address: 1-21-1 SAIWAICHO, Hitachi Shi, Ibaraki Ken, 317-0073
normalization_timestamp: '2025-12-09T10:56:30.077042+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-23T17:15:42.961322+00:00'
source_url: http://www.city.hitachi.lg.jp/lib
extraction_method: crawl4ai
claims:
- claim_type: logo_url
claim_value: https://www.city.hitachi.lg.jp/_template_/_site_/_default_/_res/design/images/header/tlogo.png
source_url: http://www.city.hitachi.lg.jp/lib
css_selector: '#tlogo > p > a > img'
retrieved_on: '2025-12-23T17:15:42.961322+00:00'
extraction_method: crawl4ai_header_logo
detection_confidence: high
alt_text: 日立市トップページ
- claim_type: favicon_url
claim_value: https://www.city.hitachi.lg.jp/_template_/_site_/_default_/_res/favicon.ico
source_url: http://www.city.hitachi.lg.jp/lib
css_selector: '[document] > html > head > link:nth-of-type(3)'
retrieved_on: '2025-12-23T17:15:42.961322+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: image/vnd.microsoft.icon
favicon_sizes: ''
summary:
total_claims: 2
has_primary_logo: true
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -206,3 +206,22 @@ wikidata_enrichment:
wikidata_web:
official_website: http://www.lib.hitachinaka.ibaraki.jp/
wikidata_official_website: http://www.lib.hitachinaka.ibaraki.jp/
logo_enrichment:
enrichment_timestamp: '2025-12-23T17:16:13.342272+00:00'
source_url: http://www.lib.hitachinaka.ibaraki.jp
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: http://www.lib.hitachinaka.ibaraki.jp/apple-touch-icon.png
source_url: http://www.lib.hitachinaka.ibaraki.jp
css_selector: '[document] > html > head > link:nth-of-type(11)'
retrieved_on: '2025-12-23T17:16:13.342272+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: 180x180
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 3

View file

@ -37,13 +37,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE
ghcid_history:
- ghcid: JP-08-HIT-L-ICUL
valid_from: "2025-12-10T09:43:39Z"
valid_from: '2025-12-10T09:43:39Z'
valid_to: null
reason: "Corrected region code from JP-IB (abbreviation) to JP-08 (Ibaraki) per ISO 3166-2:JP"
reason: Corrected region code from JP-IB (abbreviation) to JP-08 (Ibaraki) per
ISO 3166-2:JP
- ghcid: JP-IB-HIT-L-ICUL
valid_from: null
valid_to: "2025-12-10T09:43:39Z"
reason: "Previous GHCID with incorrect region code"
valid_to: '2025-12-10T09:43:39Z'
reason: Previous GHCID with incorrect region code
- ghcid: JP-IB-HIT-L-ICUL
ghcid_numeric: 13278198200379618335
valid_from: '2025-12-06T23:38:54.512609+00:00'
@ -101,8 +102,8 @@ ch_annotator:
annotation_metadata:
confidence_score: 0.98
verified: false
verification_date:
verified_by:
verification_date: null
verified_by: null
entity_claims:
- claim_type: full_name
claim_value: Ibaraki Christian University Library
@ -190,7 +191,8 @@ wikidata_enrichment:
description: organisatie uit Japan
- id: Q56056912
label: Japan Consortium for Open Access Repository
description: promotes open access and open science in Japan with knowledge dissemination via digital repositories
description: promotes open access and open science in Japan with knowledge dissemination
via digital repositories
wikidata_web:
official_website: http://www.icc.ac.jp/lib/
wikidata_official_website: http://www.icc.ac.jp/lib/
@ -212,3 +214,28 @@ location:
geonames_id: 2112708
geonames_name: Hitachi
feature_code: PPLA2
logo_enrichment:
enrichment_timestamp: '2025-12-23T17:16:34.252323+00:00'
source_url: http://www.icc.ac.jp/lib
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://www.icc.ac.jp/tncui5000000006q-img/apple-touch-icon-180x180.png
source_url: http://www.icc.ac.jp/lib
css_selector: '[document] > html > head > link:nth-of-type(4)'
retrieved_on: '2025-12-23T17:16:34.252323+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
- claim_type: og_image_url
claim_value: https://www.icc.ac.jp/tncui5000000006q-img/ogp_2021_spring.jpg
source_url: http://www.icc.ac.jp/lib
css_selector: '[document] > html > head > meta:nth-of-type(11)'
retrieved_on: '2025-12-23T17:16:34.252323+00:00'
extraction_method: crawl4ai_meta_og
summary:
total_claims: 2
has_primary_logo: false
has_favicon: true
has_og_image: true
favicon_count: 2

View file

@ -39,13 +39,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE
ghcid_history:
- ghcid: JP-08-HIT-M-HCCSS
valid_from: "2025-12-10T09:43:39Z"
valid_from: '2025-12-10T09:43:39Z'
valid_to: null
reason: "Corrected region code from JP-IB (abbreviation) to JP-08 (Ibaraki) per ISO 3166-2:JP"
reason: Corrected region code from JP-IB (abbreviation) to JP-08 (Ibaraki) per
ISO 3166-2:JP
- ghcid: JP-IB-HIT-M-HCCSS
valid_from: null
valid_to: "2025-12-10T09:43:39Z"
reason: "Previous GHCID with incorrect region code"
valid_to: '2025-12-10T09:43:39Z'
reason: Previous GHCID with incorrect region code
- ghcid: JP-IB-HIT-M-HCCSS
ghcid_numeric: 10527612468706142728
valid_from: '2025-12-06T23:38:31.595494+00:00'
@ -226,3 +227,28 @@ location:
postal_code: 317-0073
street_address: SAIWAICHO, Hitachi Shi, Ibaraki Ken, 317-0073
normalization_timestamp: '2025-12-09T10:56:30.291111+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-23T17:16:45.608050+00:00'
source_url: http://www.civic.jp/science
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: http://www.civic.jp/web_clip_icon.png
source_url: http://www.civic.jp/science
css_selector: '[document] > html > head > link:nth-of-type(3)'
retrieved_on: '2025-12-23T17:16:45.608050+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
- claim_type: og_image_url
claim_value: https://www.civic.jp/web_clip_icon.png
source_url: http://www.civic.jp/science
css_selector: '[document] > html > head > meta:nth-of-type(8)'
retrieved_on: '2025-12-23T17:16:45.608050+00:00'
extraction_method: crawl4ai_meta_og
summary:
total_claims: 2
has_primary_logo: false
has_favicon: true
has_og_image: true
favicon_count: 2

View file

@ -43,13 +43,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE
ghcid_history:
- ghcid: JP-08-HIT-M-HCM
valid_from: "2025-12-10T09:43:39Z"
valid_from: '2025-12-10T09:43:39Z'
valid_to: null
reason: "Corrected region code from JP-IB (abbreviation) to JP-08 (Ibaraki) per ISO 3166-2:JP"
reason: Corrected region code from JP-IB (abbreviation) to JP-08 (Ibaraki) per
ISO 3166-2:JP
- ghcid: JP-IB-HIT-M-HCM
valid_from: null
valid_to: "2025-12-10T09:43:39Z"
reason: "Previous GHCID with incorrect region code"
valid_to: '2025-12-10T09:43:39Z'
reason: Previous GHCID with incorrect region code
- ghcid: JP-IB-HIT-M-HCM
ghcid_numeric: 10992953195208404806
valid_from: '2025-12-06T23:38:31.589937+00:00'
@ -247,3 +248,36 @@ location:
postal_code: 317-0055
street_address: MIYATACHO, Hitachi Shi, Ibaraki Ken, 317-0055
normalization_timestamp: '2025-12-09T10:56:30.343997+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-23T17:19:16.287434+00:00'
source_url: https://www.city.hitachi.lg.jp/museum
extraction_method: crawl4ai
claims:
- claim_type: logo_url
claim_value: https://www.city.hitachi.lg.jp/_template_/_site_/_default_/_res/design/images/header/tlogo.png
source_url: https://www.city.hitachi.lg.jp/museum
css_selector: '#tlogo > p > a > img'
retrieved_on: '2025-12-23T17:19:16.287434+00:00'
extraction_method: crawl4ai_header_logo
detection_confidence: high
alt_text: 日立市トップページ
- claim_type: favicon_url
claim_value: https://www.city.hitachi.lg.jp/_template_/_site_/_default_/_res/images/apple-touch-icon-precomposed.png
source_url: https://www.city.hitachi.lg.jp/museum
css_selector: '[document] > html > head > link:nth-of-type(9)'
retrieved_on: '2025-12-23T17:19:16.287434+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
- claim_type: og_image_url
claim_value: https://www.city.hitachi.lg.jp/_template_/_site_/_default_/_res/images/sns/ogimage.png
source_url: https://www.city.hitachi.lg.jp/museum
css_selector: '[document] > html > head > meta:nth-of-type(13)'
retrieved_on: '2025-12-23T17:19:16.287434+00:00'
extraction_method: crawl4ai_meta_og
summary:
total_claims: 3
has_primary_logo: true
has_favicon: true
has_og_image: true
favicon_count: 2

View file

@ -39,13 +39,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE
ghcid_history:
- ghcid: JP-08-HIT-M-NG
valid_from: "2025-12-10T09:43:39Z"
valid_from: '2025-12-10T09:43:39Z'
valid_to: null
reason: "Corrected region code from JP-IB (abbreviation) to JP-08 (Ibaraki) per ISO 3166-2:JP"
reason: Corrected region code from JP-IB (abbreviation) to JP-08 (Ibaraki) per
ISO 3166-2:JP
- ghcid: JP-IB-HIT-M-NG
valid_from: null
valid_to: "2025-12-10T09:43:39Z"
reason: "Previous GHCID with incorrect region code"
valid_to: '2025-12-10T09:43:39Z'
reason: Previous GHCID with incorrect region code
- ghcid: JP-IB-HIT-M-NG
ghcid_numeric: 7483789558077479572
valid_from: '2025-12-06T23:38:31.632773+00:00'
@ -251,3 +252,22 @@ location:
postal_code: 313-0007
street_address: ARAJUKUCHO, Hitachiota Shi, Ibaraki Ken, 313-0007
normalization_timestamp: '2025-12-09T10:56:30.419275+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-23T17:19:36.679251+00:00'
source_url: http://www.tokugawa.gr.jp/seizanso
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: http://www.tokugawa.gr.jp/wp-content/uploads/2025/10/cropped-tokugawaaoi-180x180.png
source_url: http://www.tokugawa.gr.jp/seizanso
css_selector: '[document] > html.js.canvas > head > link:nth-of-type(33)'
retrieved_on: '2025-12-23T17:19:36.679251+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 4

View file

@ -205,3 +205,22 @@ wikidata_enrichment:
wikidata_web:
official_website: http://www.lib-hokota.jp/index.jsp
wikidata_official_website: http://www.lib-hokota.jp/index.jsp
logo_enrichment:
enrichment_timestamp: '2025-12-23T17:19:47.993629+00:00'
source_url: http://www.lib-hokota.jp/index.jsp
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: http://www.lib-hokota.jp/apple-touch-icon.png
source_url: http://www.lib-hokota.jp/index.jsp
css_selector: '[document] > html > head > link:nth-of-type(2)'
retrieved_on: '2025-12-23T17:19:47.993629+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: 180x180
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 3

View file

@ -205,3 +205,22 @@ wikidata_enrichment:
wikidata_web:
official_website: http://www.lib-hokota.jp/index.jsp
wikidata_official_website: http://www.lib-hokota.jp/index.jsp
logo_enrichment:
enrichment_timestamp: '2025-12-23T17:19:54.593999+00:00'
source_url: http://www.lib-hokota.jp/index.jsp
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: http://www.lib-hokota.jp/apple-touch-icon.png
source_url: http://www.lib-hokota.jp/index.jsp
css_selector: '[document] > html > head > link:nth-of-type(2)'
retrieved_on: '2025-12-23T17:19:54.593999+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: 180x180
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 3

View file

@ -203,3 +203,22 @@ wikidata_enrichment:
wikidata_web:
official_website: http://www.lib-hokota.jp
wikidata_official_website: http://www.lib-hokota.jp
logo_enrichment:
enrichment_timestamp: '2025-12-23T17:20:06.652680+00:00'
source_url: http://www.lib-hokota.jp
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: http://www.lib-hokota.jp/apple-touch-icon.png
source_url: http://www.lib-hokota.jp
css_selector: '[document] > html > head > link:nth-of-type(11)'
retrieved_on: '2025-12-23T17:20:06.652680+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: 180x180
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 3

View file

@ -207,3 +207,41 @@ location:
geonames_id: 2113115
geonames_name: Ami
feature_code: PPL
logo_enrichment:
enrichment_timestamp: '2025-12-23T17:20:14.891867+00:00'
source_url: http://www.lib.ibaraki.ac.jp/guide/nougaku.html
extraction_method: crawl4ai
claims:
- claim_type: logo_url
claim_value: http://www.lib.ibaraki.ac.jp/assets/images/logo-library.svg
source_url: http://www.lib.ibaraki.ac.jp/guide/nougaku.html
css_selector: '[document] > html.js-focus-visible.wf-source-han-sans-japanese-n7-active
> body > main.container-lower > div.container-lower__inner > header.container-lower__header
> div.container-lower__major > div.breadcrumb > ul.breadcrumb__inner.container-lower__bread
> li > a.breadcrumb__home > img.breadcrumb__logo'
retrieved_on: '2025-12-23T17:20:14.891867+00:00'
extraction_method: crawl4ai_header_logo
detection_confidence: high
alt_text: 茨城大学図書館
- claim_type: favicon_url
claim_value: http://www.lib.ibaraki.ac.jp/apple-touch-icon-180x180.png
source_url: http://www.lib.ibaraki.ac.jp/guide/nougaku.html
css_selector: '[document] > html.js-focus-visible.wf-source-han-sans-japanese-n7-active
> head > link:nth-of-type(2)'
retrieved_on: '2025-12-23T17:20:14.891867+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: image/x-icon
favicon_sizes: ''
- claim_type: og_image_url
claim_value: http://www.lib.ibaraki.ac.jp/ogp.jpg
source_url: http://www.lib.ibaraki.ac.jp/guide/nougaku.html
css_selector: '[document] > html.js-focus-visible.wf-source-han-sans-japanese-n7-active
> head > meta:nth-of-type(10)'
retrieved_on: '2025-12-23T17:20:14.891867+00:00'
extraction_method: crawl4ai_meta_og
summary:
total_claims: 3
has_primary_logo: true
has_favicon: true
has_og_image: true
favicon_count: 3

View file

@ -200,3 +200,22 @@ wikidata_enrichment:
wikidata_web:
official_website: http://www.city.inashiki.lg.jp/index.php?code=678
wikidata_official_website: http://www.city.inashiki.lg.jp/index.php?code=678
logo_enrichment:
enrichment_timestamp: '2025-12-23T17:20:30.102260+00:00'
source_url: http://www.city.inashiki.lg.jp/index.php?code=678
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: http://www.city.inashiki.lg.jp/web_clip_icon.png
source_url: http://www.city.inashiki.lg.jp/index.php?code=678
css_selector: '[document] > html > head > link:nth-of-type(2)'
retrieved_on: '2025-12-23T17:20:30.102260+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 2

View file

@ -200,3 +200,22 @@ wikidata_enrichment:
wikidata_web:
official_website: http://www.city.inashiki.lg.jp/page/dir000911.html
wikidata_official_website: http://www.city.inashiki.lg.jp/page/dir000911.html
logo_enrichment:
enrichment_timestamp: '2025-12-23T17:20:37.545301+00:00'
source_url: http://www.city.inashiki.lg.jp/page/dir000911.html
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: http://www.city.inashiki.lg.jp/web_clip_icon.png
source_url: http://www.city.inashiki.lg.jp/page/dir000911.html
css_selector: '[document] > html > head > link:nth-of-type(2)'
retrieved_on: '2025-12-23T17:20:37.545301+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 2

View file

@ -200,3 +200,22 @@ wikidata_enrichment:
wikidata_web:
official_website: http://www.city.inashiki.lg.jp/index.php?code=677
wikidata_official_website: http://www.city.inashiki.lg.jp/index.php?code=677
logo_enrichment:
enrichment_timestamp: '2025-12-23T17:20:45.580612+00:00'
source_url: http://www.city.inashiki.lg.jp/index.php?code=677
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: http://www.city.inashiki.lg.jp/web_clip_icon.png
source_url: http://www.city.inashiki.lg.jp/index.php?code=677
css_selector: '[document] > html > head > link:nth-of-type(2)'
retrieved_on: '2025-12-23T17:20:45.580612+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 2

View file

@ -37,13 +37,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE
ghcid_history:
- ghcid: JP-08-INA-L-IPUHSL
valid_from: "2025-12-10T09:43:39Z"
valid_from: '2025-12-10T09:43:39Z'
valid_to: null
reason: "Corrected region code from JP-IB (abbreviation) to JP-08 (Ibaraki) per ISO 3166-2:JP"
reason: Corrected region code from JP-IB (abbreviation) to JP-08 (Ibaraki) per
ISO 3166-2:JP
- ghcid: JP-IB-INA-L-IPUHSL
valid_from: null
valid_to: "2025-12-10T09:43:39Z"
reason: "Previous GHCID with incorrect region code"
valid_to: '2025-12-10T09:43:39Z'
reason: Previous GHCID with incorrect region code
- ghcid: JP-IB-INA-L-IPUHSL
ghcid_numeric: 10607131817429094390
valid_from: '2025-12-06T23:38:53.929985+00:00'
@ -101,8 +102,8 @@ ch_annotator:
annotation_metadata:
confidence_score: 0.98
verified: false
verification_date:
verified_by:
verification_date: null
verified_by: null
entity_claims:
- claim_type: full_name
claim_value: Ibaraki Prefectural University of Health Sciences, Library
@ -206,3 +207,28 @@ location:
geonames_id: 2113115
geonames_name: Ami
feature_code: PPL
logo_enrichment:
enrichment_timestamp: '2025-12-23T17:20:55.944763+00:00'
source_url: http://www.lib.ipu.ac.jp
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: http://www.lib.ipu.ac.jp/web_clip_icon.png
source_url: http://www.lib.ipu.ac.jp
css_selector: '[document] > html.sr > head > link:nth-of-type(3)'
retrieved_on: '2025-12-23T17:20:55.944763+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
- claim_type: og_image_url
claim_value: https://www.ipu.ac.jp/web_clip_icon.png
source_url: http://www.lib.ipu.ac.jp
css_selector: '[document] > html.sr > head > meta:nth-of-type(8)'
retrieved_on: '2025-12-23T17:20:55.944763+00:00'
extraction_method: crawl4ai_meta_og
summary:
total_claims: 2
has_primary_logo: false
has_favicon: true
has_og_image: true
favicon_count: 2

View file

@ -202,3 +202,36 @@ wikidata_enrichment:
wikidata_web:
official_website: http://www.vill.miho.lg.jp/page/page000551.html
wikidata_official_website: http://www.vill.miho.lg.jp/page/page000551.html
logo_enrichment:
enrichment_timestamp: '2025-12-23T17:21:06.290343+00:00'
source_url: http://www.vill.miho.lg.jp/page/page000551.html
extraction_method: crawl4ai
claims:
- claim_type: logo_url
claim_value: http://www.vill.miho.lg.jp/skin/common/img/header/logo_title@2x.png
source_url: http://www.vill.miho.lg.jp/page/page000551.html
css_selector: '#logoTitle > a > img'
retrieved_on: '2025-12-23T17:21:06.290343+00:00'
extraction_method: crawl4ai_header_logo
detection_confidence: high
alt_text: 美浦村公式ホームページ
- claim_type: favicon_url
claim_value: http://www.vill.miho.lg.jp/web_clip_icon.png
source_url: http://www.vill.miho.lg.jp/page/page000551.html
css_selector: '[document] > html > head > link:nth-of-type(3)'
retrieved_on: '2025-12-23T17:21:06.290343+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
- claim_type: og_image_url
claim_value: https://www.vill.miho.lg.jp/web_clip_icon.png
source_url: http://www.vill.miho.lg.jp/page/page000551.html
css_selector: '[document] > html > head > meta:nth-of-type(8)'
retrieved_on: '2025-12-23T17:21:06.290343+00:00'
extraction_method: crawl4ai_meta_og
summary:
total_claims: 3
has_primary_logo: true
has_favicon: true
has_og_image: true
favicon_count: 2

View file

@ -200,3 +200,28 @@ wikidata_enrichment:
wikidata_web:
official_website: http://lib.city.ishioka.lg.jp/page/page000013.html
wikidata_official_website: http://lib.city.ishioka.lg.jp/page/page000013.html
logo_enrichment:
enrichment_timestamp: '2025-12-23T17:21:30.821269+00:00'
source_url: http://lib.city.ishioka.lg.jp/page/page000013.html
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: http://lib.city.ishioka.lg.jp/web_clip_icon.png
source_url: http://lib.city.ishioka.lg.jp/page/page000013.html
css_selector: '[document] > html > head > link:nth-of-type(2)'
retrieved_on: '2025-12-23T17:21:30.821269+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
- claim_type: og_image_url
claim_value: https://lib.city.ishioka.lg.jp/data/img/1707208817_9.jpg
source_url: http://lib.city.ishioka.lg.jp/page/page000013.html
css_selector: '[document] > html > head > meta:nth-of-type(7)'
retrieved_on: '2025-12-23T17:21:30.821269+00:00'
extraction_method: crawl4ai_meta_og
summary:
total_claims: 2
has_primary_logo: false
has_favicon: true
has_og_image: true
favicon_count: 2

View file

@ -200,3 +200,28 @@ wikidata_enrichment:
wikidata_web:
official_website: http://lib.city.ishioka.lg.jp/page/page000013.html
wikidata_official_website: http://lib.city.ishioka.lg.jp/page/page000013.html
logo_enrichment:
enrichment_timestamp: '2025-12-23T17:21:37.804173+00:00'
source_url: http://lib.city.ishioka.lg.jp/page/page000013.html
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: http://lib.city.ishioka.lg.jp/web_clip_icon.png
source_url: http://lib.city.ishioka.lg.jp/page/page000013.html
css_selector: '[document] > html > head > link:nth-of-type(2)'
retrieved_on: '2025-12-23T17:21:37.804173+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
- claim_type: og_image_url
claim_value: https://lib.city.ishioka.lg.jp/data/img/1707208817_9.jpg
source_url: http://lib.city.ishioka.lg.jp/page/page000013.html
css_selector: '[document] > html > head > meta:nth-of-type(7)'
retrieved_on: '2025-12-23T17:21:37.804173+00:00'
extraction_method: crawl4ai_meta_og
summary:
total_claims: 2
has_primary_logo: false
has_favicon: true
has_og_image: true
favicon_count: 2

View file

@ -39,13 +39,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE
ghcid_history:
- ghcid: JP-08-ISH-L-ICCL
valid_from: "2025-12-10T09:43:39Z"
valid_from: '2025-12-10T09:43:39Z'
valid_to: null
reason: "Corrected region code from JP-IB (abbreviation) to JP-08 (Ibaraki) per ISO 3166-2:JP"
reason: Corrected region code from JP-IB (abbreviation) to JP-08 (Ibaraki) per
ISO 3166-2:JP
- ghcid: JP-IB-ISH-L-ICCL
valid_from: null
valid_to: "2025-12-10T09:43:39Z"
reason: "Previous GHCID with incorrect region code"
valid_to: '2025-12-10T09:43:39Z'
reason: Previous GHCID with incorrect region code
- ghcid: JP-IB-ISH-L-ICCL
ghcid_numeric: 3965822687242136515
valid_from: '2025-12-06T23:38:42.050790+00:00'
@ -231,3 +232,28 @@ location:
postal_code: 315-0017
street_address: 1-6-31 WAKAMIYA, Ishioka Shi, Ibaraki Ken, 315-0017
normalization_timestamp: '2025-12-09T10:56:31.095417+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-23T17:21:44.900494+00:00'
source_url: http://lib.city.ishioka.lg.jp
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: http://lib.city.ishioka.lg.jp/web_clip_icon.png
source_url: http://lib.city.ishioka.lg.jp
css_selector: '[document] > html > head > link:nth-of-type(3)'
retrieved_on: '2025-12-23T17:21:44.900494+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
- claim_type: og_image_url
claim_value: https://lib.city.ishioka.lg.jp/web_clip_icon.png
source_url: http://lib.city.ishioka.lg.jp
css_selector: '[document] > html > head > meta:nth-of-type(7)'
retrieved_on: '2025-12-23T17:21:44.900494+00:00'
extraction_method: crawl4ai_meta_og
summary:
total_claims: 2
has_primary_logo: false
has_favicon: true
has_og_image: true
favicon_count: 2

View file

@ -233,3 +233,30 @@ location:
postal_code: 315-0153
street_address: SHIMOAOYAGI, Ishioka Shi, Ibaraki Ken, 315-0153
normalization_timestamp: '2025-12-09T10:56:31.160547+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-23T17:21:58.117434+00:00'
source_url: http://flowerpark.or.jp
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://www.flowerpark.or.jp/assets/img/top/fp_appletouchicon.png
source_url: http://flowerpark.or.jp
css_selector: '[document] > html.wf-roboto-n5-active.wf-cormorantgaramond-n6-active
> head > link:nth-of-type(3)'
retrieved_on: '2025-12-23T17:21:58.117434+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
- claim_type: og_image_url
claim_value: https://www.flowerpark.or.jp/assets/img/top/fp_ogp.jpg
source_url: http://flowerpark.or.jp
css_selector: '[document] > html.wf-roboto-n5-active.wf-cormorantgaramond-n6-active
> head > meta:nth-of-type(13)'
retrieved_on: '2025-12-23T17:21:58.117434+00:00'
extraction_method: crawl4ai_meta_og
summary:
total_claims: 2
has_primary_logo: false
has_favicon: true
has_og_image: true
favicon_count: 2

View file

@ -205,3 +205,22 @@ wikidata_enrichment:
wikidata_web:
official_website: https://lib.itako.ed.jp/default.asp
wikidata_official_website: https://lib.itako.ed.jp/default.asp
logo_enrichment:
enrichment_timestamp: '2025-12-23T17:22:08.100899+00:00'
source_url: https://lib.itako.ed.jp/default.asp
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://lib.itako.ed.jp/apple-touch-icon.png
source_url: https://lib.itako.ed.jp/default.asp
css_selector: '[document] > html > head > link:nth-of-type(2)'
retrieved_on: '2025-12-23T17:22:08.100899+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: 180x180
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 3

View file

@ -205,3 +205,22 @@ wikidata_enrichment:
wikidata_web:
official_website: https://lib.itako.ed.jp/default.asp
wikidata_official_website: https://lib.itako.ed.jp/default.asp
logo_enrichment:
enrichment_timestamp: '2025-12-23T17:22:13.591645+00:00'
source_url: https://lib.itako.ed.jp/default.asp
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://lib.itako.ed.jp/apple-touch-icon.png
source_url: https://lib.itako.ed.jp/default.asp
css_selector: '[document] > html > head > link:nth-of-type(2)'
retrieved_on: '2025-12-23T17:22:13.591645+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: 180x180
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 3

View file

@ -205,3 +205,22 @@ wikidata_enrichment:
wikidata_web:
official_website: https://lib.itako.ed.jp/default.asp
wikidata_official_website: https://lib.itako.ed.jp/default.asp
logo_enrichment:
enrichment_timestamp: '2025-12-23T17:22:19.037932+00:00'
source_url: https://lib.itako.ed.jp/default.asp
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://lib.itako.ed.jp/apple-touch-icon.png
source_url: https://lib.itako.ed.jp/default.asp
css_selector: '[document] > html > head > link:nth-of-type(2)'
retrieved_on: '2025-12-23T17:22:19.037932+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: 180x180
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 3

View file

@ -205,3 +205,22 @@ wikidata_enrichment:
wikidata_web:
official_website: https://lib.itako.ed.jp/default.asp
wikidata_official_website: https://lib.itako.ed.jp/default.asp
logo_enrichment:
enrichment_timestamp: '2025-12-23T17:22:24.581444+00:00'
source_url: https://lib.itako.ed.jp/default.asp
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://lib.itako.ed.jp/apple-touch-icon.png
source_url: https://lib.itako.ed.jp/default.asp
css_selector: '[document] > html > head > link:nth-of-type(2)'
retrieved_on: '2025-12-23T17:22:24.581444+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: 180x180
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 3

View file

@ -205,3 +205,22 @@ wikidata_enrichment:
wikidata_web:
official_website: https://lib.itako.ed.jp/default.asp
wikidata_official_website: https://lib.itako.ed.jp/default.asp
logo_enrichment:
enrichment_timestamp: '2025-12-23T17:22:30.070380+00:00'
source_url: https://lib.itako.ed.jp/default.asp
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://lib.itako.ed.jp/apple-touch-icon.png
source_url: https://lib.itako.ed.jp/default.asp
css_selector: '[document] > html > head > link:nth-of-type(2)'
retrieved_on: '2025-12-23T17:22:30.070380+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: 180x180
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 3

View file

@ -206,3 +206,22 @@ wikidata_enrichment:
wikidata_web:
official_website: https://lib.itako.ed.jp/default.asp
wikidata_official_website: https://lib.itako.ed.jp/default.asp
logo_enrichment:
enrichment_timestamp: '2025-12-23T17:22:36.041578+00:00'
source_url: https://lib.itako.ed.jp/default.asp
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://lib.itako.ed.jp/apple-touch-icon.png
source_url: https://lib.itako.ed.jp/default.asp
css_selector: '[document] > html > head > link:nth-of-type(2)'
retrieved_on: '2025-12-23T17:22:36.041578+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: 180x180
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 3

View file

@ -200,3 +200,28 @@ wikidata_enrichment:
wikidata_web:
official_website: http://www.city.joso.lg.jp/shigai/kanko/chiiki/1421553530228.html
wikidata_official_website: http://www.city.joso.lg.jp/shigai/kanko/chiiki/1421553530228.html
logo_enrichment:
enrichment_timestamp: '2025-12-23T17:22:44.006351+00:00'
source_url: http://www.city.joso.lg.jp/shigai/kanko/chiiki/1421553530228.html
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: http://www.city.joso.lg.jp/shigai/kanko/chiiki/web_clip_icon.png
source_url: http://www.city.joso.lg.jp/shigai/kanko/chiiki/1421553530228.html
css_selector: '[document] > html > head > link:nth-of-type(2)'
retrieved_on: '2025-12-23T17:22:44.006351+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
- claim_type: og_image_url
claim_value: https://www.city.joso.lg.jp/web_clip_icon.png
source_url: http://www.city.joso.lg.jp/shigai/kanko/chiiki/1421553530228.html
css_selector: '[document] > html > head > meta:nth-of-type(8)'
retrieved_on: '2025-12-23T17:22:44.006351+00:00'
extraction_method: crawl4ai_meta_og
summary:
total_claims: 2
has_primary_logo: false
has_favicon: true
has_og_image: true
favicon_count: 2

View file

@ -236,3 +236,28 @@ wikidata_enrichment:
image: 常総市地域交流センター(豊田城) (3739493330).jpg
commons_category: Joso City Regional Exchange Center
wikidata_image: 常総市地域交流センター(豊田城) (3739493330).jpg
logo_enrichment:
enrichment_timestamp: '2025-12-23T17:22:58.012822+00:00'
source_url: http://www.city.joso.lg.jp/shigai/kanko/chiiki
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: http://www.city.joso.lg.jp/shigai/kanko/web_clip_icon.png
source_url: http://www.city.joso.lg.jp/shigai/kanko/chiiki
css_selector: '[document] > html > head > link:nth-of-type(2)'
retrieved_on: '2025-12-23T17:22:58.012822+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
- claim_type: og_image_url
claim_value: https://www.city.joso.lg.jp/web_clip_icon.png
source_url: http://www.city.joso.lg.jp/shigai/kanko/chiiki
css_selector: '[document] > html > head > meta:nth-of-type(8)'
retrieved_on: '2025-12-23T17:22:58.012822+00:00'
extraction_method: crawl4ai_meta_og
summary:
total_claims: 2
has_primary_logo: false
has_favicon: true
has_og_image: true
favicon_count: 2

View file

@ -205,3 +205,22 @@ wikidata_enrichment:
wikidata_web:
official_website: http://www.kamisu-tosho.jp/
wikidata_official_website: http://www.kamisu-tosho.jp/
logo_enrichment:
enrichment_timestamp: '2025-12-23T17:23:10.152905+00:00'
source_url: http://www.kamisu-tosho.jp
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: http://www.kamisu-tosho.jp/apple-touch-icon.png
source_url: http://www.kamisu-tosho.jp
css_selector: '[document] > html > head > link:nth-of-type(11)'
retrieved_on: '2025-12-23T17:23:10.152905+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: 180x180
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 3

View file

@ -205,3 +205,22 @@ wikidata_enrichment:
wikidata_web:
official_website: http://www.kamisu-tosho.jp/
wikidata_official_website: http://www.kamisu-tosho.jp/
logo_enrichment:
enrichment_timestamp: '2025-12-23T17:23:20.195756+00:00'
source_url: http://www.kamisu-tosho.jp
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: http://www.kamisu-tosho.jp/apple-touch-icon.png
source_url: http://www.kamisu-tosho.jp
css_selector: '[document] > html > head > link:nth-of-type(11)'
retrieved_on: '2025-12-23T17:23:20.195756+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: 180x180
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 3

View file

@ -205,3 +205,22 @@ wikidata_enrichment:
wikidata_web:
official_website: http://www.kamisu-tosho.jp/
wikidata_official_website: http://www.kamisu-tosho.jp/
logo_enrichment:
enrichment_timestamp: '2025-12-23T17:23:31.066796+00:00'
source_url: http://www.kamisu-tosho.jp
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: http://www.kamisu-tosho.jp/apple-touch-icon.png
source_url: http://www.kamisu-tosho.jp
css_selector: '[document] > html > head > link:nth-of-type(11)'
retrieved_on: '2025-12-23T17:23:31.066796+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: 180x180
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 3

View file

@ -204,3 +204,22 @@ wikidata_enrichment:
wikidata_web:
official_website: http://www.kamisu-tosho.jp
wikidata_official_website: http://www.kamisu-tosho.jp
logo_enrichment:
enrichment_timestamp: '2025-12-23T17:23:43.746448+00:00'
source_url: http://www.kamisu-tosho.jp
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: http://www.kamisu-tosho.jp/apple-touch-icon.png
source_url: http://www.kamisu-tosho.jp
css_selector: '[document] > html > head > link:nth-of-type(11)'
retrieved_on: '2025-12-23T17:23:43.746448+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: 180x180
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 3

View file

@ -204,3 +204,22 @@ wikidata_enrichment:
wikidata_web:
official_website: http://www.kamisu-tosho.jp/
wikidata_official_website: http://www.kamisu-tosho.jp/
logo_enrichment:
enrichment_timestamp: '2025-12-23T17:23:55.056243+00:00'
source_url: http://www.kamisu-tosho.jp
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: http://www.kamisu-tosho.jp/apple-touch-icon.png
source_url: http://www.kamisu-tosho.jp
css_selector: '[document] > html > head > link:nth-of-type(11)'
retrieved_on: '2025-12-23T17:23:55.056243+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: 180x180
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 3

View file

@ -204,3 +204,20 @@ wikidata_enrichment:
wikidata_web:
official_website: http://lib.city.kasama.ibaraki.jp/
wikidata_official_website: http://lib.city.kasama.ibaraki.jp/
logo_enrichment:
enrichment_timestamp: '2025-12-23T17:24:27.308377+00:00'
source_url: http://lib.city.kasama.ibaraki.jp
extraction_method: crawl4ai
claims:
- claim_type: og_image_url
claim_value: http://localhost/TOSHOW/asp/shared/img/snsThumbnail.png
source_url: http://lib.city.kasama.ibaraki.jp
css_selector: '[document] > html > head > meta:nth-of-type(15)'
retrieved_on: '2025-12-23T17:24:27.308377+00:00'
extraction_method: crawl4ai_meta_og
summary:
total_claims: 1
has_primary_logo: false
has_favicon: false
has_og_image: true
favicon_count: 0

View file

@ -204,3 +204,20 @@ wikidata_enrichment:
wikidata_web:
official_website: http://lib.city.kasama.ibaraki.jp/
wikidata_official_website: http://lib.city.kasama.ibaraki.jp/
logo_enrichment:
enrichment_timestamp: '2025-12-23T17:24:49.477077+00:00'
source_url: http://lib.city.kasama.ibaraki.jp
extraction_method: crawl4ai
claims:
- claim_type: og_image_url
claim_value: http://localhost/TOSHOW/asp/shared/img/snsThumbnail.png
source_url: http://lib.city.kasama.ibaraki.jp
css_selector: '[document] > html > head > meta:nth-of-type(15)'
retrieved_on: '2025-12-23T17:24:49.477077+00:00'
extraction_method: crawl4ai_meta_og
summary:
total_claims: 1
has_primary_logo: false
has_favicon: false
has_og_image: true
favicon_count: 0

View file

@ -204,3 +204,20 @@ wikidata_enrichment:
wikidata_web:
official_website: http://lib.city.kasama.ibaraki.jp/
wikidata_official_website: http://lib.city.kasama.ibaraki.jp/
logo_enrichment:
enrichment_timestamp: '2025-12-23T17:25:10.894182+00:00'
source_url: http://lib.city.kasama.ibaraki.jp
extraction_method: crawl4ai
claims:
- claim_type: og_image_url
claim_value: http://localhost/TOSHOW/asp/shared/img/snsThumbnail.png
source_url: http://lib.city.kasama.ibaraki.jp
css_selector: '[document] > html > head > meta:nth-of-type(15)'
retrieved_on: '2025-12-23T17:25:10.894182+00:00'
extraction_method: crawl4ai_meta_og
summary:
total_claims: 1
has_primary_logo: false
has_favicon: false
has_og_image: true
favicon_count: 0

View file

@ -205,3 +205,30 @@ wikidata_enrichment:
wikidata_web:
official_website: http://opac.city.kashima.ibaraki.jp/facility/ohno.html
wikidata_official_website: http://opac.city.kashima.ibaraki.jp/facility/ohno.html
logo_enrichment:
enrichment_timestamp: '2025-12-23T17:25:25.206928+00:00'
source_url: http://opac.city.kashima.ibaraki.jp/facility/ohno.html
extraction_method: crawl4ai
claims:
- claim_type: logo_url
claim_value: https://opac.city.kashima.ibaraki.jp/themes/lib_theme/images/logo.png
source_url: http://opac.city.kashima.ibaraki.jp/facility/ohno.html
css_selector: '#header_logo > a > img'
retrieved_on: '2025-12-23T17:25:25.206928+00:00'
extraction_method: crawl4ai_header_logo
detection_confidence: high
alt_text: 鹿嶋市立中央図書館
- claim_type: favicon_url
claim_value: https://opac.city.kashima.ibaraki.jp/themes/lib_theme/favicon.ico
source_url: http://opac.city.kashima.ibaraki.jp/facility/ohno.html
css_selector: '[document] > html > head.notranslate > link'
retrieved_on: '2025-12-23T17:25:25.206928+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
summary:
total_claims: 2
has_primary_logo: true
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -39,13 +39,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE
ghcid_history:
- ghcid: JP-08-KAS-L-KPL
valid_from: "2025-12-10T09:43:39Z"
valid_from: '2025-12-10T09:43:39Z'
valid_to: null
reason: "Corrected region code from JP-IB (abbreviation) to JP-08 (Ibaraki) per ISO 3166-2:JP"
reason: Corrected region code from JP-IB (abbreviation) to JP-08 (Ibaraki) per
ISO 3166-2:JP
- ghcid: JP-IB-KAS-L-KPL
valid_from: null
valid_to: "2025-12-10T09:43:39Z"
reason: "Previous GHCID with incorrect region code"
valid_to: '2025-12-10T09:43:39Z'
reason: Previous GHCID with incorrect region code
- ghcid: JP-IB-KAS-L-KPL
ghcid_numeric: 392916093464918445
valid_from: '2025-12-06T23:38:42.095297+00:00'
@ -230,3 +231,30 @@ location:
postal_code: 314-0031
street_address: 2398-1 KYUCHU, Kashima Shi, Ibaraki Ken, 314-0031
normalization_timestamp: '2025-12-09T10:56:31.762238+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-23T17:25:33.554267+00:00'
source_url: http://opac.city.kashima.ibaraki.jp/index.html
extraction_method: crawl4ai
claims:
- claim_type: logo_url
claim_value: https://opac.city.kashima.ibaraki.jp/themes/lib_theme/images/logo.png
source_url: http://opac.city.kashima.ibaraki.jp/index.html
css_selector: '#header_logo > a.active > img'
retrieved_on: '2025-12-23T17:25:33.554267+00:00'
extraction_method: crawl4ai_header_logo
detection_confidence: high
alt_text: 鹿嶋市立中央図書館
- claim_type: favicon_url
claim_value: https://opac.city.kashima.ibaraki.jp/themes/lib_theme/favicon.ico
source_url: http://opac.city.kashima.ibaraki.jp/index.html
css_selector: '[document] > html > head.notranslate > link'
retrieved_on: '2025-12-23T17:25:33.554267+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
summary:
total_claims: 2
has_primary_logo: true
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -205,3 +205,22 @@ wikidata_enrichment:
wikidata_web:
official_website: http://lib.city.kitaibaraki.lg.jp/
wikidata_official_website: http://lib.city.kitaibaraki.lg.jp/
logo_enrichment:
enrichment_timestamp: '2025-12-23T17:25:55.212326+00:00'
source_url: http://lib.city.kitaibaraki.lg.jp
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://lib.city.kitaibaraki.lg.jp/favicon.ico
source_url: http://lib.city.kitaibaraki.lg.jp
css_selector: '[document] > html > head > link'
retrieved_on: '2025-12-23T17:25:55.212326+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -480,3 +480,22 @@ youtube_enrichment:
comments: []
thumbnail_url: https://i.ytimg.com/vi/D4uhk8cgsZ4/hqdefault.jpg
status: SUCCESS
logo_enrichment:
enrichment_timestamp: '2025-12-23T17:26:12.875562+00:00'
source_url: http://www.kcmofa.com
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: http://www.kcmofa.com/wp/wp-content/uploads/2018/11/cropped-kcmoa-180x180.jpg
source_url: http://www.kcmofa.com
css_selector: '[document] > html > head > link:nth-of-type(19)'
retrieved_on: '2025-12-23T17:26:12.875562+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 3

View file

@ -250,3 +250,22 @@ wikidata_enrichment:
- id: Q11394499
label: Hiroshi Naito
description: Japanese architect
logo_enrichment:
enrichment_timestamp: '2025-12-23T17:26:31.246939+00:00'
source_url: http://www.tenshin.museum.ibk.ed.jp
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: http://www.tenshin.museum.ibk.ed.jp/apple-touch-icon.png
source_url: http://www.tenshin.museum.ibk.ed.jp
css_selector: '[document] > html > head > link:nth-of-type(10)'
retrieved_on: '2025-12-23T17:26:31.246939+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: 180x180
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 3

View file

@ -200,3 +200,36 @@ wikidata_enrichment:
wikidata_web:
official_website: http://www.city.ibaraki-koga.lg.jp/0000000701.html
wikidata_official_website: http://www.city.ibaraki-koga.lg.jp/0000000701.html
logo_enrichment:
enrichment_timestamp: '2025-12-23T17:26:41.917068+00:00'
source_url: http://www.city.ibaraki-koga.lg.jp/0000000701.html
extraction_method: crawl4ai
claims:
- claim_type: logo_url
claim_value: http://www.city.ibaraki-koga.lg.jp/theme/base/img_common/pc_header_logo.png
source_url: http://www.city.ibaraki-koga.lg.jp/0000000701.html
css_selector: '#header-logo > a > img'
retrieved_on: '2025-12-23T17:26:41.917068+00:00'
extraction_method: crawl4ai_header_logo
detection_confidence: high
alt_text: 古河市 koga city こがでくらすと KOGA KURASU
- claim_type: favicon_url
claim_value: http://www.city.ibaraki-koga.lg.jp/smartphone.png
source_url: http://www.city.ibaraki-koga.lg.jp/0000000701.html
css_selector: '[document] > html > head > link:nth-of-type(3)'
retrieved_on: '2025-12-23T17:26:41.917068+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
- claim_type: og_image_url
claim_value: http://www.city.ibaraki-koga.lg.jp/material/images/group/1/poster_notfound_05.png
source_url: http://www.city.ibaraki-koga.lg.jp/0000000701.html
css_selector: '[document] > html > head > meta:nth-of-type(8)'
retrieved_on: '2025-12-23T17:26:41.917068+00:00'
extraction_method: crawl4ai_meta_og
summary:
total_claims: 3
has_primary_logo: true
has_favicon: true
has_og_image: true
favicon_count: 2

View file

@ -200,3 +200,36 @@ wikidata_enrichment:
wikidata_web:
official_website: http://www.city.ibaraki-koga.lg.jp/0000000701.html
wikidata_official_website: http://www.city.ibaraki-koga.lg.jp/0000000701.html
logo_enrichment:
enrichment_timestamp: '2025-12-23T17:26:50.475093+00:00'
source_url: http://www.city.ibaraki-koga.lg.jp/0000000701.html
extraction_method: crawl4ai
claims:
- claim_type: logo_url
claim_value: http://www.city.ibaraki-koga.lg.jp/theme/base/img_common/pc_header_logo.png
source_url: http://www.city.ibaraki-koga.lg.jp/0000000701.html
css_selector: '#header-logo > a > img'
retrieved_on: '2025-12-23T17:26:50.475093+00:00'
extraction_method: crawl4ai_header_logo
detection_confidence: high
alt_text: 古河市 koga city こがでくらすと KOGA KURASU
- claim_type: favicon_url
claim_value: http://www.city.ibaraki-koga.lg.jp/smartphone.png
source_url: http://www.city.ibaraki-koga.lg.jp/0000000701.html
css_selector: '[document] > html > head > link:nth-of-type(3)'
retrieved_on: '2025-12-23T17:26:50.475093+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
- claim_type: og_image_url
claim_value: http://www.city.ibaraki-koga.lg.jp/material/images/group/1/poster_notfound_05.png
source_url: http://www.city.ibaraki-koga.lg.jp/0000000701.html
css_selector: '[document] > html > head > meta:nth-of-type(8)'
retrieved_on: '2025-12-23T17:26:50.475093+00:00'
extraction_method: crawl4ai_meta_og
summary:
total_claims: 3
has_primary_logo: true
has_favicon: true
has_og_image: true
favicon_count: 2

View file

@ -200,3 +200,36 @@ wikidata_enrichment:
wikidata_web:
official_website: http://www.city.ibaraki-koga.lg.jp/0000000701.html
wikidata_official_website: http://www.city.ibaraki-koga.lg.jp/0000000701.html
logo_enrichment:
enrichment_timestamp: '2025-12-23T17:26:59.095398+00:00'
source_url: http://www.city.ibaraki-koga.lg.jp/0000000701.html
extraction_method: crawl4ai
claims:
- claim_type: logo_url
claim_value: http://www.city.ibaraki-koga.lg.jp/theme/base/img_common/pc_header_logo.png
source_url: http://www.city.ibaraki-koga.lg.jp/0000000701.html
css_selector: '#header-logo > a > img'
retrieved_on: '2025-12-23T17:26:59.095398+00:00'
extraction_method: crawl4ai_header_logo
detection_confidence: high
alt_text: 古河市 koga city こがでくらすと KOGA KURASU
- claim_type: favicon_url
claim_value: http://www.city.ibaraki-koga.lg.jp/smartphone.png
source_url: http://www.city.ibaraki-koga.lg.jp/0000000701.html
css_selector: '[document] > html > head > link:nth-of-type(3)'
retrieved_on: '2025-12-23T17:26:59.095398+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
- claim_type: og_image_url
claim_value: http://www.city.ibaraki-koga.lg.jp/material/images/group/1/poster_notfound_05.png
source_url: http://www.city.ibaraki-koga.lg.jp/0000000701.html
css_selector: '[document] > html > head > meta:nth-of-type(8)'
retrieved_on: '2025-12-23T17:26:59.095398+00:00'
extraction_method: crawl4ai_meta_og
summary:
total_claims: 3
has_primary_logo: true
has_favicon: true
has_og_image: true
favicon_count: 2

View file

@ -200,3 +200,36 @@ wikidata_enrichment:
wikidata_web:
official_website: http://www.city.ibaraki-koga.lg.jp/0000000701.html
wikidata_official_website: http://www.city.ibaraki-koga.lg.jp/0000000701.html
logo_enrichment:
enrichment_timestamp: '2025-12-23T17:27:07.603610+00:00'
source_url: http://www.city.ibaraki-koga.lg.jp/0000000701.html
extraction_method: crawl4ai
claims:
- claim_type: logo_url
claim_value: http://www.city.ibaraki-koga.lg.jp/theme/base/img_common/pc_header_logo.png
source_url: http://www.city.ibaraki-koga.lg.jp/0000000701.html
css_selector: '#header-logo > a > img'
retrieved_on: '2025-12-23T17:27:07.603610+00:00'
extraction_method: crawl4ai_header_logo
detection_confidence: high
alt_text: 古河市 koga city こがでくらすと KOGA KURASU
- claim_type: favicon_url
claim_value: http://www.city.ibaraki-koga.lg.jp/smartphone.png
source_url: http://www.city.ibaraki-koga.lg.jp/0000000701.html
css_selector: '[document] > html > head > link:nth-of-type(3)'
retrieved_on: '2025-12-23T17:27:07.603610+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
- claim_type: og_image_url
claim_value: http://www.city.ibaraki-koga.lg.jp/material/images/group/1/poster_notfound_05.png
source_url: http://www.city.ibaraki-koga.lg.jp/0000000701.html
css_selector: '[document] > html > head > meta:nth-of-type(8)'
retrieved_on: '2025-12-23T17:27:07.603610+00:00'
extraction_method: crawl4ai_meta_og
summary:
total_claims: 3
has_primary_logo: true
has_favicon: true
has_og_image: true
favicon_count: 2

View file

@ -200,3 +200,36 @@ wikidata_enrichment:
wikidata_web:
official_website: http://www.city.ibaraki-koga.lg.jp/0000003340.html
wikidata_official_website: http://www.city.ibaraki-koga.lg.jp/0000003340.html
logo_enrichment:
enrichment_timestamp: '2025-12-23T17:27:16.151119+00:00'
source_url: http://www.city.ibaraki-koga.lg.jp/0000003340.html
extraction_method: crawl4ai
claims:
- claim_type: logo_url
claim_value: http://www.city.ibaraki-koga.lg.jp/theme/base/img_common/pc_header_logo.png
source_url: http://www.city.ibaraki-koga.lg.jp/0000003340.html
css_selector: '#header-logo > a > img'
retrieved_on: '2025-12-23T17:27:16.151119+00:00'
extraction_method: crawl4ai_header_logo
detection_confidence: high
alt_text: 古河市 koga city こがでくらすと KOGA KURASU
- claim_type: favicon_url
claim_value: http://www.city.ibaraki-koga.lg.jp/smartphone.png
source_url: http://www.city.ibaraki-koga.lg.jp/0000003340.html
css_selector: '[document] > html > head > link:nth-of-type(3)'
retrieved_on: '2025-12-23T17:27:16.151119+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
- claim_type: og_image_url
claim_value: http://www.city.ibaraki-koga.lg.jp/material/images/group/1/poster_notfound_05.png
source_url: http://www.city.ibaraki-koga.lg.jp/0000003340.html
css_selector: '[document] > html > head > meta:nth-of-type(8)'
retrieved_on: '2025-12-23T17:27:16.151119+00:00'
extraction_method: crawl4ai_meta_og
summary:
total_claims: 3
has_primary_logo: true
has_favicon: true
has_og_image: true
favicon_count: 2

View file

@ -199,3 +199,36 @@ wikidata_enrichment:
wikidata_web:
official_website: http://www.city.ibaraki-koga.lg.jp/0000000701.html
wikidata_official_website: http://www.city.ibaraki-koga.lg.jp/0000000701.html
logo_enrichment:
enrichment_timestamp: '2025-12-23T17:27:26.750028+00:00'
source_url: http://www.city.ibaraki-koga.lg.jp/0000000701.html
extraction_method: crawl4ai
claims:
- claim_type: logo_url
claim_value: http://www.city.ibaraki-koga.lg.jp/theme/base/img_common/pc_header_logo.png
source_url: http://www.city.ibaraki-koga.lg.jp/0000000701.html
css_selector: '#header-logo > a > img'
retrieved_on: '2025-12-23T17:27:26.750028+00:00'
extraction_method: crawl4ai_header_logo
detection_confidence: high
alt_text: 古河市 koga city こがでくらすと KOGA KURASU
- claim_type: favicon_url
claim_value: http://www.city.ibaraki-koga.lg.jp/smartphone.png
source_url: http://www.city.ibaraki-koga.lg.jp/0000000701.html
css_selector: '[document] > html > head > link:nth-of-type(3)'
retrieved_on: '2025-12-23T17:27:26.750028+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
- claim_type: og_image_url
claim_value: http://www.city.ibaraki-koga.lg.jp/material/images/group/1/poster_notfound_05.png
source_url: http://www.city.ibaraki-koga.lg.jp/0000000701.html
css_selector: '[document] > html > head > meta:nth-of-type(8)'
retrieved_on: '2025-12-23T17:27:26.750028+00:00'
extraction_method: crawl4ai_meta_og
summary:
total_claims: 3
has_primary_logo: true
has_favicon: true
has_og_image: true
favicon_count: 2

View file

@ -199,3 +199,36 @@ wikidata_enrichment:
wikidata_web:
official_website: http://www.city.ibaraki-koga.lg.jp/0000000701.html
wikidata_official_website: http://www.city.ibaraki-koga.lg.jp/0000000701.html
logo_enrichment:
enrichment_timestamp: '2025-12-23T17:27:35.187966+00:00'
source_url: http://www.city.ibaraki-koga.lg.jp/0000000701.html
extraction_method: crawl4ai
claims:
- claim_type: logo_url
claim_value: http://www.city.ibaraki-koga.lg.jp/theme/base/img_common/pc_header_logo.png
source_url: http://www.city.ibaraki-koga.lg.jp/0000000701.html
css_selector: '#header-logo > a > img'
retrieved_on: '2025-12-23T17:27:35.187966+00:00'
extraction_method: crawl4ai_header_logo
detection_confidence: high
alt_text: 古河市 koga city こがでくらすと KOGA KURASU
- claim_type: favicon_url
claim_value: http://www.city.ibaraki-koga.lg.jp/smartphone.png
source_url: http://www.city.ibaraki-koga.lg.jp/0000000701.html
css_selector: '[document] > html > head > link:nth-of-type(3)'
retrieved_on: '2025-12-23T17:27:35.187966+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
- claim_type: og_image_url
claim_value: http://www.city.ibaraki-koga.lg.jp/material/images/group/1/poster_notfound_05.png
source_url: http://www.city.ibaraki-koga.lg.jp/0000000701.html
css_selector: '[document] > html > head > meta:nth-of-type(8)'
retrieved_on: '2025-12-23T17:27:35.187966+00:00'
extraction_method: crawl4ai_meta_og
summary:
total_claims: 3
has_primary_logo: true
has_favicon: true
has_og_image: true
favicon_count: 2

View file

@ -43,13 +43,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE
ghcid_history:
- ghcid: JP-08-KOG-M-KCMH
valid_from: "2025-12-10T09:43:39Z"
valid_from: '2025-12-10T09:43:39Z'
valid_to: null
reason: "Corrected region code from JP-IB (abbreviation) to JP-08 (Ibaraki) per ISO 3166-2:JP"
reason: Corrected region code from JP-IB (abbreviation) to JP-08 (Ibaraki) per
ISO 3166-2:JP
- ghcid: JP-IB-KOG-M-KCMH
valid_from: null
valid_to: "2025-12-10T09:43:39Z"
reason: "Previous GHCID with incorrect region code"
valid_to: '2025-12-10T09:43:39Z'
reason: Previous GHCID with incorrect region code
- ghcid: JP-IB-KOG-M-KCMH
ghcid_numeric: 3752762643115101494
valid_from: '2025-12-06T23:38:31.606988+00:00'
@ -279,3 +280,36 @@ location:
postal_code: 306-0033
street_address: CHUOCHO, Koga Shi, Ibaraki Ken, 306-0033
normalization_timestamp: '2025-12-09T10:56:32.253869+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-23T17:27:43.402427+00:00'
source_url: https://www.city.ibaraki-koga.lg.jp/lifetop/kogameguri/history_cultual_property/3_1/7639.html
extraction_method: crawl4ai
claims:
- claim_type: logo_url
claim_value: https://www.city.ibaraki-koga.lg.jp/theme/base/img_common/pc_header_logo.png
source_url: https://www.city.ibaraki-koga.lg.jp/lifetop/kogameguri/history_cultual_property/3_1/7639.html
css_selector: '#header-logo > a > img'
retrieved_on: '2025-12-23T17:27:43.402427+00:00'
extraction_method: crawl4ai_header_logo
detection_confidence: high
alt_text: 古河市 koga city こがでくらすと KOGA KURASU
- claim_type: favicon_url
claim_value: https://www.city.ibaraki-koga.lg.jp/smartphone.png
source_url: https://www.city.ibaraki-koga.lg.jp/lifetop/kogameguri/history_cultual_property/3_1/7639.html
css_selector: '[document] > html > head > link:nth-of-type(3)'
retrieved_on: '2025-12-23T17:27:43.402427+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
- claim_type: og_image_url
claim_value: http://www.city.ibaraki-koga.lg.jp/material/images/group/1/poster_notfound_05.png
source_url: https://www.city.ibaraki-koga.lg.jp/lifetop/kogameguri/history_cultual_property/3_1/7639.html
css_selector: '[document] > html > head > meta:nth-of-type(8)'
retrieved_on: '2025-12-23T17:27:43.402427+00:00'
extraction_method: crawl4ai_meta_og
summary:
total_claims: 3
has_primary_logo: true
has_favicon: true
has_og_image: true
favicon_count: 2

View file

@ -253,3 +253,28 @@ location:
geonames_id: 7602711
feature_code: PPL
normalization_timestamp: '2025-12-09T06:53:28.746587+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-23T17:28:03.371858+00:00'
source_url: https://www.bunka-manabi.or.jp/kaiseikan
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://www.bunka-manabi.or.jp/kaiseikan/favicon.ico
source_url: https://www.bunka-manabi.or.jp/kaiseikan
css_selector: '[document] > html > head > link'
retrieved_on: '2025-12-23T17:28:03.371858+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: image/vnd.microsoft.icon
favicon_sizes: ''
- claim_type: og_image_url
claim_value: https://www.bunka-manabi.or.jp/kaiseikan/sns.png
source_url: https://www.bunka-manabi.or.jp/kaiseikan
css_selector: '[document] > html > head > meta:nth-of-type(10)'
retrieved_on: '2025-12-23T17:28:03.371858+00:00'
extraction_method: crawl4ai_meta_og
summary:
total_claims: 2
has_primary_logo: false
has_favicon: true
has_og_image: true
favicon_count: 1

View file

@ -202,3 +202,22 @@ wikidata_enrichment:
wikidata_web:
official_website: http://www.town.daigo.ibaraki.jp/page/page000219.html
wikidata_official_website: http://www.town.daigo.ibaraki.jp/page/page000219.html
logo_enrichment:
enrichment_timestamp: '2025-12-23T17:28:11.120312+00:00'
source_url: http://www.town.daigo.ibaraki.jp/page/page000219.html
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: http://www.town.daigo.ibaraki.jp/page/web_clip_icon.png
source_url: http://www.town.daigo.ibaraki.jp/page/page000219.html
css_selector: '[document] > html > head > link:nth-of-type(2)'
retrieved_on: '2025-12-23T17:28:11.120312+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 2

View file

@ -37,13 +37,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE
ghcid_history:
- ghcid: JP-08-MIT-L-IUL
valid_from: "2025-12-10T09:43:39Z"
valid_from: '2025-12-10T09:43:39Z'
valid_to: null
reason: "Corrected region code from JP-IB (abbreviation) to JP-08 (Ibaraki) per ISO 3166-2:JP"
reason: Corrected region code from JP-IB (abbreviation) to JP-08 (Ibaraki) per
ISO 3166-2:JP
- ghcid: JP-IB-MIT-L-IUL
valid_from: null
valid_to: "2025-12-10T09:43:39Z"
reason: "Previous GHCID with incorrect region code"
valid_to: '2025-12-10T09:43:39Z'
reason: Previous GHCID with incorrect region code
- ghcid: JP-IB-MIT-L-IUL
ghcid_numeric: 5279681389086876576
valid_from: '2025-12-06T23:38:53.205349+00:00'
@ -101,8 +102,8 @@ ch_annotator:
annotation_metadata:
confidence_score: 0.98
verified: false
verification_date:
verified_by:
verification_date: null
verified_by: null
entity_claims:
- claim_type: full_name
claim_value: Ibaraki University Library
@ -187,7 +188,8 @@ wikidata_enrichment:
member_of:
- id: Q56056912
label: Japan Consortium for Open Access Repository
description: promotes open access and open science in Japan with knowledge dissemination via digital repositories
description: promotes open access and open science in Japan with knowledge dissemination
via digital repositories
wikidata_web:
official_website: http://www.lib.ibaraki.ac.jp
wikidata_official_website: http://www.lib.ibaraki.ac.jp
@ -209,3 +211,30 @@ location:
geonames_id: 2111901
geonames_name: Mito
feature_code: PPLA
logo_enrichment:
enrichment_timestamp: '2025-12-23T17:28:27.283649+00:00'
source_url: http://www.lib.ibaraki.ac.jp
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: http://www.lib.ibaraki.ac.jp/apple-touch-icon-180x180.png
source_url: http://www.lib.ibaraki.ac.jp
css_selector: '[document] > html.wf-source-han-sans-japanese-n7-active.wf-source-han-sans-japanese-n4-active
> head > link:nth-of-type(2)'
retrieved_on: '2025-12-23T17:28:27.283649+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: image/x-icon
favicon_sizes: ''
- claim_type: og_image_url
claim_value: https://www.lib.ibaraki.ac.jp/ogp.jpg
source_url: http://www.lib.ibaraki.ac.jp
css_selector: '[document] > html.wf-source-han-sans-japanese-n7-active.wf-source-han-sans-japanese-n4-active
> head > meta:nth-of-type(9)'
retrieved_on: '2025-12-23T17:28:27.283649+00:00'
extraction_method: crawl4ai_meta_og
summary:
total_claims: 2
has_primary_logo: false
has_favicon: true
has_og_image: true
favicon_count: 3

View file

@ -204,3 +204,30 @@ wikidata_enrichment:
wikidata_web:
official_website: http://www.library-mito.jp/contents/tosyokan/uchihara.html
wikidata_official_website: http://www.library-mito.jp/contents/tosyokan/uchihara.html
logo_enrichment:
enrichment_timestamp: '2025-12-23T17:28:35.894689+00:00'
source_url: http://www.library-mito.jp/contents/tosyokan/uchihara.html
extraction_method: crawl4ai
claims:
- claim_type: logo_url
claim_value: https://www.library-mito.jp/themes/lib_theme/images/logo.png
source_url: http://www.library-mito.jp/contents/tosyokan/uchihara.html
css_selector: '#header_logo > a > img'
retrieved_on: '2025-12-23T17:28:35.894689+00:00'
extraction_method: crawl4ai_header_logo
detection_confidence: high
alt_text: 水戸市立図書館
- claim_type: favicon_url
claim_value: https://www.library-mito.jp/themes/lib_theme/favicon.ico
source_url: http://www.library-mito.jp/contents/tosyokan/uchihara.html
css_selector: '[document] > html > head.notranslate > link'
retrieved_on: '2025-12-23T17:28:35.894689+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
summary:
total_claims: 2
has_primary_logo: true
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -204,3 +204,30 @@ wikidata_enrichment:
wikidata_web:
official_website: http://www.library-mito.jp/contents/tosyokan/miwa.html
wikidata_official_website: http://www.library-mito.jp/contents/tosyokan/miwa.html
logo_enrichment:
enrichment_timestamp: '2025-12-23T17:28:43.807391+00:00'
source_url: http://www.library-mito.jp/contents/tosyokan/miwa.html
extraction_method: crawl4ai
claims:
- claim_type: logo_url
claim_value: https://www.library-mito.jp/themes/lib_theme/images/logo.png
source_url: http://www.library-mito.jp/contents/tosyokan/miwa.html
css_selector: '#header_logo > a > img'
retrieved_on: '2025-12-23T17:28:43.807391+00:00'
extraction_method: crawl4ai_header_logo
detection_confidence: high
alt_text: 水戸市立図書館
- claim_type: favicon_url
claim_value: https://www.library-mito.jp/themes/lib_theme/favicon.ico
source_url: http://www.library-mito.jp/contents/tosyokan/miwa.html
css_selector: '[document] > html > head.notranslate > link'
retrieved_on: '2025-12-23T17:28:43.807391+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
summary:
total_claims: 2
has_primary_logo: true
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -238,3 +238,30 @@ wikidata_enrichment:
image: Seibu Library in Mito.jpg
commons_category: Mito City Seibu Library
wikidata_image: Seibu Library in Mito.jpg
logo_enrichment:
enrichment_timestamp: '2025-12-23T17:28:50.316829+00:00'
source_url: http://www.library-mito.jp/contents/tosyokan/seibu.html
extraction_method: crawl4ai
claims:
- claim_type: logo_url
claim_value: https://www.library-mito.jp/themes/lib_theme/images/logo.png
source_url: http://www.library-mito.jp/contents/tosyokan/seibu.html
css_selector: '#header_logo > a > img'
retrieved_on: '2025-12-23T17:28:50.316829+00:00'
extraction_method: crawl4ai_header_logo
detection_confidence: high
alt_text: 水戸市立図書館
- claim_type: favicon_url
claim_value: https://www.library-mito.jp/themes/lib_theme/favicon.ico
source_url: http://www.library-mito.jp/contents/tosyokan/seibu.html
css_selector: '[document] > html > head.notranslate > link'
retrieved_on: '2025-12-23T17:28:50.316829+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
summary:
total_claims: 2
has_primary_logo: true
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -204,3 +204,30 @@ wikidata_enrichment:
wikidata_web:
official_website: http://www.library-mito.jp/contents/tosyokan/toubu.html
wikidata_official_website: http://www.library-mito.jp/contents/tosyokan/toubu.html
logo_enrichment:
enrichment_timestamp: '2025-12-23T19:44:01.761086+00:00'
source_url: http://www.library-mito.jp/contents/tosyokan/toubu.html
extraction_method: crawl4ai
claims:
- claim_type: logo_url
claim_value: https://www.library-mito.jp/themes/lib_theme/images/logo.png
source_url: http://www.library-mito.jp/contents/tosyokan/toubu.html
css_selector: '#header_logo > a > img'
retrieved_on: '2025-12-23T19:44:01.761086+00:00'
extraction_method: crawl4ai_header_logo
detection_confidence: high
alt_text: 水戸市立図書館
- claim_type: favicon_url
claim_value: https://www.library-mito.jp/themes/lib_theme/favicon.ico
source_url: http://www.library-mito.jp/contents/tosyokan/toubu.html
css_selector: '[document] > html > head.notranslate > link'
retrieved_on: '2025-12-23T19:44:01.761086+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
summary:
total_claims: 2
has_primary_logo: true
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -204,3 +204,30 @@ wikidata_enrichment:
wikidata_web:
official_website: http://www.library-mito.jp/contents/tosyokan/tsunezumi.html
wikidata_official_website: http://www.library-mito.jp/contents/tosyokan/tsunezumi.html
logo_enrichment:
enrichment_timestamp: '2025-12-23T19:44:11.242150+00:00'
source_url: http://www.library-mito.jp/contents/tosyokan/tsunezumi.html
extraction_method: crawl4ai
claims:
- claim_type: logo_url
claim_value: https://www.library-mito.jp/themes/lib_theme/images/logo.png
source_url: http://www.library-mito.jp/contents/tosyokan/tsunezumi.html
css_selector: '#header_logo > a > img'
retrieved_on: '2025-12-23T19:44:11.242150+00:00'
extraction_method: crawl4ai_header_logo
detection_confidence: high
alt_text: 水戸市立図書館
- claim_type: favicon_url
claim_value: https://www.library-mito.jp/themes/lib_theme/favicon.ico
source_url: http://www.library-mito.jp/contents/tosyokan/tsunezumi.html
css_selector: '[document] > html > head.notranslate > link'
retrieved_on: '2025-12-23T19:44:11.242150+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
summary:
total_claims: 2
has_primary_logo: true
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -220,3 +220,30 @@ wikidata_enrichment:
wikidata_media:
image: Mito City Central Library & Mito City Museum02.jpg
wikidata_image: Mito City Central Library & Mito City Museum02.jpg
logo_enrichment:
enrichment_timestamp: '2025-12-23T19:44:21.343628+00:00'
source_url: http://www.library-mito.jp/contents/tosyokan/chuou.html
extraction_method: crawl4ai
claims:
- claim_type: logo_url
claim_value: https://www.library-mito.jp/themes/lib_theme/images/logo.png
source_url: http://www.library-mito.jp/contents/tosyokan/chuou.html
css_selector: '#header_logo > a > img'
retrieved_on: '2025-12-23T19:44:21.343628+00:00'
extraction_method: crawl4ai_header_logo
detection_confidence: high
alt_text: 水戸市立図書館
- claim_type: favicon_url
claim_value: https://www.library-mito.jp/themes/lib_theme/favicon.ico
source_url: http://www.library-mito.jp/contents/tosyokan/chuou.html
css_selector: '[document] > html > head.notranslate > link'
retrieved_on: '2025-12-23T19:44:21.343628+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
summary:
total_claims: 2
has_primary_logo: true
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -271,3 +271,28 @@ wikidata_enrichment:
image: Main-building-of-ibaraki-prefectural-museum-of-history.jpeg
commons_category: Ibaraki Prefectural Museum of History
wikidata_image: Main-building-of-ibaraki-prefectural-museum-of-history.jpeg
logo_enrichment:
enrichment_timestamp: '2025-12-23T19:44:46.387193+00:00'
source_url: https://rekishikan-ibk.jp
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://rekishikan-ibk.jp/apple-touch-icon.png
source_url: https://rekishikan-ibk.jp
css_selector: '[document] > html > head > link:nth-of-type(2)'
retrieved_on: '2025-12-23T19:44:46.387193+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: 180x180
- claim_type: og_image_url
claim_value: https://rekishikan-ibk.jp/ogp.png
source_url: https://rekishikan-ibk.jp
css_selector: '[document] > html > head > meta:nth-of-type(11)'
retrieved_on: '2025-12-23T19:44:46.387193+00:00'
extraction_method: crawl4ai_meta_og
summary:
total_claims: 2
has_primary_logo: false
has_favicon: true
has_og_image: true
favicon_count: 2

View file

@ -236,3 +236,22 @@ wikidata_enrichment:
commons_category: Mito Botanical Park
image: 水戸市植物公園(開園20周年).jpg
wikidata_image: 水戸市植物公園(開園20周年).jpg
logo_enrichment:
enrichment_timestamp: '2025-12-23T19:45:05.803895+00:00'
source_url: https://www.mito-botanical-park.com
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://www.mito-botanical-park.com/apple-touch-icon.png
source_url: https://www.mito-botanical-park.com
css_selector: '[document] > html > head > link:nth-of-type(3)'
retrieved_on: '2025-12-23T19:45:05.803895+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 2

View file

@ -43,13 +43,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE
ghcid_history:
- ghcid: JP-08-MIT-M-TM
valid_from: "2025-12-10T09:43:39Z"
valid_from: '2025-12-10T09:43:39Z'
valid_to: null
reason: "Corrected region code from JP-IB (abbreviation) to JP-08 (Ibaraki) per ISO 3166-2:JP"
reason: Corrected region code from JP-IB (abbreviation) to JP-08 (Ibaraki) per
ISO 3166-2:JP
- ghcid: JP-IB-MIT-M-TM
valid_from: null
valid_to: "2025-12-10T09:43:39Z"
reason: "Previous GHCID with incorrect region code"
valid_to: '2025-12-10T09:43:39Z'
reason: Previous GHCID with incorrect region code
- ghcid: JP-IB-MIT-M-TM
ghcid_numeric: 12779366248301792590
valid_from: '2025-12-06T23:38:31.577236+00:00'
@ -259,3 +260,22 @@ location:
postal_code: 310-0912
street_address: MIGAWA, Mito Shi, Ibaraki Ken, 310-0912
normalization_timestamp: '2025-12-09T10:56:32.868805+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-23T19:45:40.573220+00:00'
source_url: http://www.tokugawa.gr.jp/guide
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: http://www.tokugawa.gr.jp/wp-content/uploads/2025/10/cropped-tokugawaaoi-180x180.png
source_url: http://www.tokugawa.gr.jp/guide
css_selector: '[document] > html.js.canvas > head > link:nth-of-type(33)'
retrieved_on: '2025-12-23T19:45:40.573220+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 4

View file

@ -39,13 +39,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE
ghcid_history:
- ghcid: JP-08-MIT-M-TUMM
valid_from: "2025-12-10T09:43:39Z"
valid_from: '2025-12-10T09:43:39Z'
valid_to: null
reason: "Corrected region code from JP-IB (abbreviation) to JP-08 (Ibaraki) per ISO 3166-2:JP"
reason: Corrected region code from JP-IB (abbreviation) to JP-08 (Ibaraki) per
ISO 3166-2:JP
- ghcid: JP-IB-MIT-M-TUMM
valid_from: null
valid_to: "2025-12-10T09:43:39Z"
reason: "Previous GHCID with incorrect region code"
valid_to: '2025-12-10T09:43:39Z'
reason: Previous GHCID with incorrect region code
- ghcid: JP-IB-MIT-M-TUMM
ghcid_numeric: 3073007632065009158
valid_from: '2025-12-06T23:38:31.582425+00:00'
@ -220,3 +221,28 @@ location:
postal_code: 310-8585
street_address: MIWA, Mito Shi, Ibaraki Ken, 310-8585
normalization_timestamp: '2025-12-09T10:56:32.898773+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-23T19:45:48.444777+00:00'
source_url: https://www.tokiwa.ac.jp
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://www.tokiwa.ac.jp/common/image/app-icon.png
source_url: https://www.tokiwa.ac.jp
css_selector: '[document] > html > head > link:nth-of-type(3)'
retrieved_on: '2025-12-23T19:45:48.444777+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
- claim_type: og_image_url
claim_value: https://www.tokiwa.ac.jp/common/image/sns-icon.jpg
source_url: https://www.tokiwa.ac.jp
css_selector: '[document] > html > head > meta:nth-of-type(8)'
retrieved_on: '2025-12-23T19:45:48.444777+00:00'
extraction_method: crawl4ai_meta_og
summary:
total_claims: 2
has_primary_logo: false
has_favicon: true
has_og_image: true
favicon_count: 2

View file

@ -200,3 +200,28 @@ wikidata_enrichment:
wikidata_web:
official_website: http://www.city.naka.lg.jp/page/page000787.html
wikidata_official_website: http://www.city.naka.lg.jp/page/page000787.html
logo_enrichment:
enrichment_timestamp: '2025-12-23T19:46:27.559154+00:00'
source_url: http://www.city.naka.lg.jp/page/page000787.html
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: http://www.city.naka.lg.jp/web_clip_icon.png
source_url: http://www.city.naka.lg.jp/page/page000787.html
css_selector: '[document] > html > head > link:nth-of-type(3)'
retrieved_on: '2025-12-23T19:46:27.559154+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
- claim_type: og_image_url
claim_value: https://www.city.naka.lg.jp/data/img/1362444827_27.jpg
source_url: http://www.city.naka.lg.jp/page/page000787.html
css_selector: '[document] > html > head > meta:nth-of-type(8)'
retrieved_on: '2025-12-23T19:46:27.559154+00:00'
extraction_method: crawl4ai_meta_og
summary:
total_claims: 2
has_primary_logo: false
has_favicon: true
has_og_image: true
favicon_count: 2

View file

@ -203,3 +203,22 @@ wikidata_enrichment:
wikidata_web:
official_website: http://www.tosyo.vill.tokai.ibaraki.jp/
wikidata_official_website: http://www.tosyo.vill.tokai.ibaraki.jp/
logo_enrichment:
enrichment_timestamp: '2025-12-23T19:46:48.426643+00:00'
source_url: http://www.tosyo.vill.tokai.ibaraki.jp
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://www.tosyo.vill.tokai.ibaraki.jp/favicon.ico
source_url: http://www.tosyo.vill.tokai.ibaraki.jp
css_selector: '[document] > html > head > link'
retrieved_on: '2025-12-23T19:46:48.426643+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -205,3 +205,28 @@ wikidata_enrichment:
wikidata_web:
official_website: http://www.city.namegata.ibaraki.jp/page/page000422.html
wikidata_official_website: http://www.city.namegata.ibaraki.jp/page/page000422.html
logo_enrichment:
enrichment_timestamp: '2025-12-23T19:47:10.160807+00:00'
source_url: http://www.city.namegata.ibaraki.jp/page/page000422.html
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: http://www.city.namegata.ibaraki.jp/page/web_clip_icon.png
source_url: http://www.city.namegata.ibaraki.jp/page/page000422.html
css_selector: '[document] > html > head > link:nth-of-type(2)'
retrieved_on: '2025-12-23T19:47:10.160807+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
- claim_type: og_image_url
claim_value: https://www.city.namegata.ibaraki.jp/web_clip_icon.png
source_url: http://www.city.namegata.ibaraki.jp/page/page000422.html
css_selector: '[document] > html > head > meta:nth-of-type(10)'
retrieved_on: '2025-12-23T19:47:10.160807+00:00'
extraction_method: crawl4ai_meta_og
summary:
total_claims: 2
has_primary_logo: false
has_favicon: true
has_og_image: true
favicon_count: 2

View file

@ -205,3 +205,28 @@ wikidata_enrichment:
wikidata_web:
official_website: http://www.city.namegata.ibaraki.jp/page/page000422.html
wikidata_official_website: http://www.city.namegata.ibaraki.jp/page/page000422.html
logo_enrichment:
enrichment_timestamp: '2025-12-23T19:47:19.194270+00:00'
source_url: http://www.city.namegata.ibaraki.jp/page/page000422.html
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: http://www.city.namegata.ibaraki.jp/page/web_clip_icon.png
source_url: http://www.city.namegata.ibaraki.jp/page/page000422.html
css_selector: '[document] > html > head > link:nth-of-type(2)'
retrieved_on: '2025-12-23T19:47:19.194270+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
- claim_type: og_image_url
claim_value: https://www.city.namegata.ibaraki.jp/web_clip_icon.png
source_url: http://www.city.namegata.ibaraki.jp/page/page000422.html
css_selector: '[document] > html > head > meta:nth-of-type(10)'
retrieved_on: '2025-12-23T19:47:19.194270+00:00'
extraction_method: crawl4ai_meta_og
summary:
total_claims: 2
has_primary_logo: false
has_favicon: true
has_og_image: true
favicon_count: 2

View file

@ -204,3 +204,28 @@ wikidata_enrichment:
wikidata_web:
official_website: http://www.city.namegata.ibaraki.jp/page/page002449.html
wikidata_official_website: http://www.city.namegata.ibaraki.jp/page/page002449.html
logo_enrichment:
enrichment_timestamp: '2025-12-23T19:47:27.313339+00:00'
source_url: http://www.city.namegata.ibaraki.jp/page/page002449.html
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: http://www.city.namegata.ibaraki.jp/web_clip_icon.png
source_url: http://www.city.namegata.ibaraki.jp/page/page002449.html
css_selector: '[document] > html > head > link:nth-of-type(3)'
retrieved_on: '2025-12-23T19:47:27.313339+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
- claim_type: og_image_url
claim_value: https://www.city.namegata.ibaraki.jp/web_clip_icon.png
source_url: http://www.city.namegata.ibaraki.jp/page/page002449.html
css_selector: '[document] > html > head > meta:nth-of-type(10)'
retrieved_on: '2025-12-23T19:47:27.313339+00:00'
extraction_method: crawl4ai_meta_og
summary:
total_claims: 2
has_primary_logo: false
has_favicon: true
has_og_image: true
favicon_count: 2

View file

@ -205,3 +205,28 @@ wikidata_enrichment:
wikidata_web:
official_website: http://lib.city.omitama.lg.jp/
wikidata_official_website: http://lib.city.omitama.lg.jp/
logo_enrichment:
enrichment_timestamp: '2025-12-23T19:47:45.987931+00:00'
source_url: http://lib.city.omitama.lg.jp
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: http://lib.city.omitama.lg.jp/apple-touch-icon.png
source_url: http://lib.city.omitama.lg.jp
css_selector: '[document] > html > head > link:nth-of-type(15)'
retrieved_on: '2025-12-23T19:47:45.987931+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: 180x180
- claim_type: og_image_url
claim_value: https://lib.city.omitama.lg.jp/manage/contents/upload/58a52e076ccf5.jpg
source_url: http://lib.city.omitama.lg.jp
css_selector: '[document] > html > head > meta:nth-of-type(9)'
retrieved_on: '2025-12-23T19:47:45.987931+00:00'
extraction_method: crawl4ai_meta_og
summary:
total_claims: 2
has_primary_logo: false
has_favicon: true
has_og_image: true
favicon_count: 3

View file

@ -205,3 +205,28 @@ wikidata_enrichment:
wikidata_web:
official_website: http://lib.city.omitama.lg.jp/
wikidata_official_website: http://lib.city.omitama.lg.jp/
logo_enrichment:
enrichment_timestamp: '2025-12-23T19:47:56.640622+00:00'
source_url: http://lib.city.omitama.lg.jp
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: http://lib.city.omitama.lg.jp/apple-touch-icon.png
source_url: http://lib.city.omitama.lg.jp
css_selector: '[document] > html > head > link:nth-of-type(15)'
retrieved_on: '2025-12-23T19:47:56.640622+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: 180x180
- claim_type: og_image_url
claim_value: https://lib.city.omitama.lg.jp/manage/contents/upload/58a52e076ccf5.jpg
source_url: http://lib.city.omitama.lg.jp
css_selector: '[document] > html > head > meta:nth-of-type(9)'
retrieved_on: '2025-12-23T19:47:56.640622+00:00'
extraction_method: crawl4ai_meta_og
summary:
total_claims: 2
has_primary_logo: false
has_favicon: true
has_og_image: true
favicon_count: 3

View file

@ -204,3 +204,28 @@ wikidata_enrichment:
wikidata_web:
official_website: http://lib.city.omitama.lg.jp
wikidata_official_website: http://lib.city.omitama.lg.jp
logo_enrichment:
enrichment_timestamp: '2025-12-23T19:48:06.859515+00:00'
source_url: http://lib.city.omitama.lg.jp
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: http://lib.city.omitama.lg.jp/apple-touch-icon.png
source_url: http://lib.city.omitama.lg.jp
css_selector: '[document] > html > head > link:nth-of-type(15)'
retrieved_on: '2025-12-23T19:48:06.859515+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: 180x180
- claim_type: og_image_url
claim_value: https://lib.city.omitama.lg.jp/manage/contents/upload/58a52e076ccf5.jpg
source_url: http://lib.city.omitama.lg.jp
css_selector: '[document] > html > head > meta:nth-of-type(9)'
retrieved_on: '2025-12-23T19:48:06.859515+00:00'
extraction_method: crawl4ai_meta_og
summary:
total_claims: 2
has_primary_logo: false
has_favicon: true
has_og_image: true
favicon_count: 3

View file

@ -204,3 +204,28 @@ wikidata_enrichment:
wikidata_web:
official_website: http://lib.city.omitama.lg.jp
wikidata_official_website: http://lib.city.omitama.lg.jp
logo_enrichment:
enrichment_timestamp: '2025-12-23T19:48:16.977359+00:00'
source_url: http://lib.city.omitama.lg.jp
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: http://lib.city.omitama.lg.jp/apple-touch-icon.png
source_url: http://lib.city.omitama.lg.jp
css_selector: '[document] > html > head > link:nth-of-type(15)'
retrieved_on: '2025-12-23T19:48:16.977359+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: 180x180
- claim_type: og_image_url
claim_value: https://lib.city.omitama.lg.jp/manage/contents/upload/58a52e076ccf5.jpg
source_url: http://lib.city.omitama.lg.jp
css_selector: '[document] > html > head > meta:nth-of-type(9)'
retrieved_on: '2025-12-23T19:48:16.977359+00:00'
extraction_method: crawl4ai_meta_og
summary:
total_claims: 2
has_primary_logo: false
has_favicon: true
has_og_image: true
favicon_count: 3

View file

@ -37,13 +37,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE
ghcid_history:
- ghcid: JP-08-RYU-L-RL
valid_from: "2025-12-10T09:43:39Z"
valid_from: '2025-12-10T09:43:39Z'
valid_to: null
reason: "Corrected region code from JP-IB (abbreviation) to JP-08 (Ibaraki) per ISO 3166-2:JP"
reason: Corrected region code from JP-IB (abbreviation) to JP-08 (Ibaraki) per
ISO 3166-2:JP
- ghcid: JP-IB-RYU-L-RL
valid_from: null
valid_to: "2025-12-10T09:43:39Z"
reason: "Previous GHCID with incorrect region code"
valid_to: '2025-12-10T09:43:39Z'
reason: Previous GHCID with incorrect region code
- ghcid: JP-IB-RYU-L-RL
ghcid_numeric: 9910797045164632222
valid_from: '2025-12-06T23:38:54.515110+00:00'
@ -101,8 +102,8 @@ ch_annotator:
annotation_metadata:
confidence_score: 0.98
verified: false
verification_date:
verified_by:
verification_date: null
verified_by: null
entity_claims:
- claim_type: full_name
claim_value: RYUTSUKEIZAIDAIGAKU Library
@ -215,3 +216,28 @@ location:
geonames_id: 2111258
geonames_name: Ryūgasaki
feature_code: PPLA2
logo_enrichment:
enrichment_timestamp: '2025-12-23T19:48:33.270251+00:00'
source_url: http://www.rku.ac.jp/campuslife/library
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://www.rku.ac.jp/favicon.ico
source_url: http://www.rku.ac.jp/campuslife/library
css_selector: '[document] > html > body > div.wrapper > link:nth-of-type(21)'
retrieved_on: '2025-12-23T19:48:33.270251+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
- claim_type: og_image_url
claim_value: https://www.rku.ac.jp/assets/img/ogp_img.png
source_url: http://www.rku.ac.jp/campuslife/library
css_selector: '[document] > html > body > div.wrapper > meta:nth-of-type(10)'
retrieved_on: '2025-12-23T19:48:33.270251+00:00'
extraction_method: crawl4ai_meta_og
summary:
total_claims: 2
has_primary_logo: false
has_favicon: true
has_og_image: true
favicon_count: 1

View file

@ -206,3 +206,22 @@ wikidata_enrichment:
wikidata_web:
official_website: https://www.ryureki.org/
wikidata_official_website: https://www.ryureki.org/
logo_enrichment:
enrichment_timestamp: '2025-12-23T19:48:40.490214+00:00'
source_url: https://www.ryureki.org
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://u.jimcdn.com/cms/o/s53baff9ff90c3aa1/img/favicon.ico?t=1381146665
source_url: https://www.ryureki.org
css_selector: '[document] > html.j-feature-js.j-feature-no-touch > head > link:nth-of-type(4)'
retrieved_on: '2025-12-23T19:48:40.490214+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -205,3 +205,28 @@ wikidata_enrichment:
wikidata_web:
official_website: http://www.city.sakuragawa.lg.jp/index.php?code=1882
wikidata_official_website: http://www.city.sakuragawa.lg.jp/index.php?code=1882
logo_enrichment:
enrichment_timestamp: '2025-12-23T19:48:48.453252+00:00'
source_url: http://www.city.sakuragawa.lg.jp/index.php?code=1882
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: http://www.city.sakuragawa.lg.jp/web_clip_icon.png
source_url: http://www.city.sakuragawa.lg.jp/index.php?code=1882
css_selector: '[document] > html > head > link:nth-of-type(2)'
retrieved_on: '2025-12-23T19:48:48.453252+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
- claim_type: og_image_url
claim_value: https://www.city.sakuragawa.lg.jp/web_clip_icon.png
source_url: http://www.city.sakuragawa.lg.jp/index.php?code=1882
css_selector: '[document] > html > head > meta:nth-of-type(8)'
retrieved_on: '2025-12-23T19:48:48.453252+00:00'
extraction_method: crawl4ai_meta_og
summary:
total_claims: 2
has_primary_logo: false
has_favicon: true
has_og_image: true
favicon_count: 2

View file

@ -205,3 +205,28 @@ wikidata_enrichment:
wikidata_web:
official_website: http://www.city.sakuragawa.lg.jp/index.php?code=1884
wikidata_official_website: http://www.city.sakuragawa.lg.jp/index.php?code=1884
logo_enrichment:
enrichment_timestamp: '2025-12-23T19:48:56.074285+00:00'
source_url: http://www.city.sakuragawa.lg.jp/index.php?code=1884
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: http://www.city.sakuragawa.lg.jp/web_clip_icon.png
source_url: http://www.city.sakuragawa.lg.jp/index.php?code=1884
css_selector: '[document] > html > head > link:nth-of-type(2)'
retrieved_on: '2025-12-23T19:48:56.074285+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
- claim_type: og_image_url
claim_value: https://www.city.sakuragawa.lg.jp/web_clip_icon.png
source_url: http://www.city.sakuragawa.lg.jp/index.php?code=1884
css_selector: '[document] > html > head > meta:nth-of-type(8)'
retrieved_on: '2025-12-23T19:48:56.074285+00:00'
extraction_method: crawl4ai_meta_og
summary:
total_claims: 2
has_primary_logo: false
has_favicon: true
has_og_image: true
favicon_count: 2

View file

@ -205,3 +205,28 @@ wikidata_enrichment:
wikidata_web:
official_website: http://www.city.sakuragawa.lg.jp/index.php?code=1886
wikidata_official_website: http://www.city.sakuragawa.lg.jp/index.php?code=1886
logo_enrichment:
enrichment_timestamp: '2025-12-23T19:49:03.688923+00:00'
source_url: http://www.city.sakuragawa.lg.jp/index.php?code=1886
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: http://www.city.sakuragawa.lg.jp/web_clip_icon.png
source_url: http://www.city.sakuragawa.lg.jp/index.php?code=1886
css_selector: '[document] > html > head > link:nth-of-type(2)'
retrieved_on: '2025-12-23T19:49:03.688923+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
- claim_type: og_image_url
claim_value: https://www.city.sakuragawa.lg.jp/web_clip_icon.png
source_url: http://www.city.sakuragawa.lg.jp/index.php?code=1886
css_selector: '[document] > html > head > meta:nth-of-type(8)'
retrieved_on: '2025-12-23T19:49:03.688923+00:00'
extraction_method: crawl4ai_meta_og
summary:
total_claims: 2
has_primary_logo: false
has_favicon: true
has_og_image: true
favicon_count: 2

Some files were not shown because too many files have changed in this diff Show more