Logo enrichment batch: CZ+260, JP+260 - 11,663 files (36.7%)
- CZ: 2,810 processed (33.3% of 8,432) - JP: 3,336 processed (27.6% of 12,096) - Total: 11,663 of 31,772 (36.7%) - Using crawl4ai favicon extraction
This commit is contained in:
parent
717ee3408a
commit
6ab0b19ae2
365 changed files with 10791 additions and 1455 deletions
|
|
@ -2485,20 +2485,28 @@ async def dspy_query(request: DSPyQueryRequest) -> DSPyQueryResponse:
|
|||
|
||||
elapsed_ms = (time.time() - start_time) * 1000
|
||||
|
||||
# Extract retrieved results for frontend visualization (tables, graphs)
|
||||
retrieved_results = getattr(result, "retrieved_results", None)
|
||||
query_type = getattr(result, "query_type", None)
|
||||
|
||||
# Extract visualization if present
|
||||
visualization = None
|
||||
if request.include_visualization and hasattr(result, "visualization"):
|
||||
viz = result.visualization
|
||||
if viz:
|
||||
# Only include SPARQL for institution queries - person queries use wrong schema
|
||||
# The HeritageSPARQLGenerator generates queries using crm:E39_Actor and hc:institutionType
|
||||
# but person data uses schema:Person, schema:name, schema:jobTitle predicates.
|
||||
# TODO: Create HeritagePersonSPARQLGenerator with correct schema:Person predicates
|
||||
sparql_to_show = None
|
||||
if query_type != "person":
|
||||
sparql_to_show = getattr(result, "sparql", None)
|
||||
|
||||
visualization = {
|
||||
"type": getattr(viz, "viz_type", "table"),
|
||||
"sparql_query": getattr(result, "sparql", None),
|
||||
"sparql_query": sparql_to_show,
|
||||
}
|
||||
|
||||
# Extract retrieved results for frontend visualization (tables, graphs)
|
||||
retrieved_results = getattr(result, "retrieved_results", None)
|
||||
query_type = getattr(result, "query_type", None)
|
||||
|
||||
# Extract LLM response metadata from DSPy history (GLM 4.7 reasoning_content support)
|
||||
llm_response_metadata = extract_llm_response_metadata(
|
||||
lm=lm,
|
||||
|
|
@ -2971,17 +2979,26 @@ async def stream_dspy_query_response(
|
|||
|
||||
elapsed_ms = (time.time() - start_time) * 1000
|
||||
|
||||
# Extract query_type first - needed for SPARQL visibility decision
|
||||
query_type = getattr(result, "query_type", None)
|
||||
|
||||
visualization = None
|
||||
if request.include_visualization and hasattr(result, "visualization"):
|
||||
viz = result.visualization
|
||||
if viz:
|
||||
# Only include SPARQL for institution queries - person SPARQL uses wrong schema
|
||||
# (HeritageSPARQLGenerator uses crm:E39_Actor but person data uses schema:Person)
|
||||
# TODO: Create HeritagePersonSPARQLGenerator with correct schema:Person predicates
|
||||
sparql_to_show = None
|
||||
if query_type != "person":
|
||||
sparql_to_show = getattr(result, "sparql", None)
|
||||
|
||||
visualization = {
|
||||
"type": getattr(viz, "viz_type", "table"),
|
||||
"sparql_query": getattr(result, "sparql", None),
|
||||
"sparql_query": sparql_to_show,
|
||||
}
|
||||
|
||||
retrieved_results = getattr(result, "retrieved_results", None)
|
||||
query_type = getattr(result, "query_type", None)
|
||||
|
||||
# Extract LLM response metadata from DSPy history (GLM 4.7 reasoning_content support)
|
||||
llm_response_metadata = extract_llm_response_metadata(
|
||||
|
|
|
|||
|
|
@ -10912,7 +10912,757 @@
|
|||
"JP-13-CHU-L-NL.yaml",
|
||||
"JP-13-CHU-L-RLT.yaml",
|
||||
"JP-13-CHU-L-S-shimizukensetsukabushikigaishajohoshiryosenta.yaml",
|
||||
"JP-13-CHU-L-S.yaml"
|
||||
"JP-13-CHU-L-S.yaml",
|
||||
"JP-13-CHU-L-SL.yaml",
|
||||
"JP-13-CHU-L-SOL.yaml",
|
||||
"JP-13-CHU-L-T.yaml",
|
||||
"JP-13-CHU-L-TIITL.yaml",
|
||||
"JP-13-CHU-M-AMIF.yaml",
|
||||
"JP-13-CHU-M-CCCHM.yaml",
|
||||
"JP-13-CHU-M-CMIMESBJ.yaml",
|
||||
"JP-13-CHU-M-KM.yaml",
|
||||
"JP-13-CHU-M-MHYYC.yaml",
|
||||
"JP-13-CHU-M-MMM.yaml",
|
||||
"JP-13-CHU-M-NFAJ.yaml",
|
||||
"JP-13-CHU-M-SMG.yaml",
|
||||
"JP-13-EDO-L-AGJCL.yaml",
|
||||
"JP-13-EDO-L-ECCL.yaml",
|
||||
"JP-13-EDO-L-ECHKL.yaml",
|
||||
"JP-13-EDO-L-ECKL-edogawa_city_kasai_library.yaml",
|
||||
"JP-13-EDO-L-ECKL-edogawa_city_komatsugawa_library.yaml",
|
||||
"JP-13-EDO-L-ECKL.yaml",
|
||||
"JP-13-EDO-L-ECML.yaml",
|
||||
"JP-13-EDO-L-ECNKL.yaml",
|
||||
"JP-13-EDO-L-ECSCL.yaml",
|
||||
"JP-13-EDO-L-ECSL.yaml",
|
||||
"JP-13-EDO-L-ECSLY.yaml",
|
||||
"JP-13-EDO-L-ECTL.yaml",
|
||||
"JP-13-EDO-L-EL.yaml",
|
||||
"JP-13-EDO-L-SLN.yaml",
|
||||
"JP-13-EDO-L-TCWL.yaml",
|
||||
"JP-13-EDO-M-EKLM.yaml",
|
||||
"JP-13-EDO-M-MM.yaml",
|
||||
"JP-13-EDO-M-TSLP.yaml",
|
||||
"JP-13-ETO-L-TPUHSL.yaml",
|
||||
"JP-13-FUC-A-FF-fuchushiritsu_furusatofuchurekishikan.yaml",
|
||||
"JP-13-FUC-A-FF.yaml",
|
||||
"JP-13-FUC-A-TUFSA-tokyo_university_of_foreign_studies_archives.yaml",
|
||||
"JP-13-FUC-A-TUFSA.yaml",
|
||||
"JP-13-FUC-L-FL-fuchushiritsukatamachi_library.yaml",
|
||||
"JP-13-FUC-L-FL-fuchushiritsukoremasa_library.yaml",
|
||||
"JP-13-FUC-L-FL-fuchushiritsumiyamachi_library.yaml",
|
||||
"JP-13-FUC-L-FL-fuchushiritsumomijigaoka_library.yaml",
|
||||
"JP-13-FUC-L-FL-fuchushiritsumusashidai_library.yaml",
|
||||
"JP-13-FUC-L-FL-fuchushiritsunishifu_library.yaml",
|
||||
"JP-13-FUC-L-FL-fuchushiritsuoshitate_library.yaml",
|
||||
"JP-13-FUC-L-FL-fuchushiritsushimmachi_library.yaml",
|
||||
"JP-13-FUC-L-FL-fuchushiritsushiraitodai_library.yaml",
|
||||
"JP-13-FUC-L-FL-fuchushiritsushogaigakushusenta_library.yaml",
|
||||
"JP-13-FUC-L-FL-fuchushiritsusumiyoshi_library.yaml",
|
||||
"JP-13-FUC-L-FL-fuchushiritsuyotsuya_library.yaml",
|
||||
"JP-13-FUC-L-FL.yaml",
|
||||
"JP-13-FUC-L-ITMRTPSSL.yaml",
|
||||
"JP-13-FUC-L-TLFL.yaml",
|
||||
"JP-13-FUC-L-TUFSL.yaml",
|
||||
"JP-13-FUC-M-FAM.yaml",
|
||||
"JP-13-FUC-M-JRM.yaml",
|
||||
"JP-13-FUC-M-KMFCM.yaml",
|
||||
"JP-13-FUC-M-OST.yaml",
|
||||
"JP-13-FUS-L-FL-fussashiritsumusashinodai_library.yaml",
|
||||
"JP-13-FUS-L-FL-fussashiritsuwakagiri_library.yaml",
|
||||
"JP-13-FUS-L-FL-fussashiritsuwakatake_library.yaml",
|
||||
"JP-13-FUS-L-FL.yaml",
|
||||
"JP-13-FUS-M-FMLH.yaml",
|
||||
"JP-13-HAC-L-C-chuodaigakuhogakubugakuseitoshoshitsu.yaml",
|
||||
"JP-13-HAC-L-C-chuodaigakujimbunkagakukenkyusho.yaml",
|
||||
"JP-13-HAC-L-C-chuodaigakukeizaigakubugakuseitoshoshitsu.yaml",
|
||||
"JP-13-HAC-L-C-chuodaigakukeizaikenkyujo.yaml",
|
||||
"JP-13-HAC-L-C-chuodaigakukigyokenkyujo.yaml",
|
||||
"JP-13-HAC-L-C-chuodaigakuseisakubunkasogokenkyujo.yaml",
|
||||
"JP-13-HAC-L-C-chuodaigakushakaikagakukenkyujo.yaml",
|
||||
"JP-13-HAC-L-C-chuodaigakushogakubugakuseitoshoshitsu.yaml",
|
||||
"JP-13-HAC-L-C.yaml",
|
||||
"JP-13-HAC-L-CL.yaml",
|
||||
"JP-13-HAC-L-CLTMU.yaml",
|
||||
"JP-13-HAC-L-HL-hachijochoritsu_library.yaml",
|
||||
"JP-13-HAC-L-HL-hachiojishiikoi_library.yaml",
|
||||
"JP-13-HAC-L-HL-hachiojishiishikawashiminsenta_library.yaml",
|
||||
"JP-13-HAC-L-HL-hachiojishikawaguchi_library.yaml",
|
||||
"JP-13-HAC-L-HL-hachiojishikitanoshiminsenta_library.yaml",
|
||||
"JP-13-HAC-L-HL-hachiojishiminamiosawa_library.yaml",
|
||||
"JP-13-HAC-L-HL-hachiojishiongatashiminsenta_library.yaml",
|
||||
"JP-13-HAC-L-HL-hachiojishishogaigakushusenta_library.yaml",
|
||||
"JP-13-HAC-L-HL-hachiojishiyugichuoshiminsenta_library.yaml",
|
||||
"JP-13-HAC-L-HL-hachiojishiyuishiminsentaminamino_library.yaml",
|
||||
"JP-13-HAC-L-HL.yaml",
|
||||
"JP-13-HAC-L-ICLJCU.yaml",
|
||||
"JP-13-HAC-L-ICLTUPLS.yaml",
|
||||
"JP-13-HAC-L-IHSSCU.yaml",
|
||||
"JP-13-HAC-L-KLH.yaml",
|
||||
"JP-13-HAC-L-NL.yaml",
|
||||
"JP-13-HAC-L-OC.yaml",
|
||||
"JP-13-HAC-L-SUFLFSEA.yaml",
|
||||
"JP-13-HAC-L-SUL.yaml",
|
||||
"JP-13-HAC-L-SULSL.yaml",
|
||||
"JP-13-HAC-L-SUSL.yaml",
|
||||
"JP-13-HAC-L-SWSCL.yaml",
|
||||
"JP-13-HAC-L-TL-tokyojunshindaigaku_library.yaml",
|
||||
"JP-13-HAC-L-TL-tokyokogyokotosemmongakko_library.yaml",
|
||||
"JP-13-HAC-L-TL-tokyozokeidaigakufuzoku_library.yaml",
|
||||
"JP-13-HAC-L-TL.yaml",
|
||||
"JP-13-HAC-L-TLI.yaml",
|
||||
"JP-13-HAC-L-TUHL.yaml",
|
||||
"JP-13-HAC-L-TUMLC.yaml",
|
||||
"JP-13-HAC-L-TUTMCL.yaml",
|
||||
"JP-13-HAC-L-UASPROCU.yaml",
|
||||
"JP-13-HAC-L-YL.yaml",
|
||||
"JP-13-HAC-L-YUANL.yaml",
|
||||
"JP-13-HAC-M-HCHM.yaml",
|
||||
"JP-13-HAC-M-HSC.yaml",
|
||||
"JP-13-HAC-M-MPGTUPLS.yaml",
|
||||
"JP-13-HAC-M-TFAM.yaml",
|
||||
"JP-13-HAC-M-TFSG.yaml",
|
||||
"JP-13-HAC-M-TM.yaml",
|
||||
"JP-13-HAC-M-TUM.yaml",
|
||||
"JP-13-HAC-M-TVC.yaml",
|
||||
"JP-13-HAC-M-TZUAM.yaml",
|
||||
"JP-13-HAG-A-HTA-haga_town_archives.yaml",
|
||||
"JP-13-HAG-A-HTA.yaml",
|
||||
"JP-13-HAG-L-HTL.yaml",
|
||||
"JP-13-HAG-L-IPL.yaml",
|
||||
"JP-13-HAG-L-M.yaml",
|
||||
"JP-13-HAG-L-ML.yaml",
|
||||
"JP-13-HAG-M-HTM.yaml",
|
||||
"JP-13-HAG-M-IHFM.yaml",
|
||||
"JP-13-HAG-M-MMCA.yaml",
|
||||
"JP-13-HAG-M-MMF.yaml",
|
||||
"JP-13-HAG-M-WNAG.yaml",
|
||||
"JP-13-HAM-L-H-hamurashifujimidairabunshitsu.yaml",
|
||||
"JP-13-HAM-L-H-hamurashikamibunshitsu.yaml",
|
||||
"JP-13-HAM-L-H-hamurashikawasakibunshitsu.yaml",
|
||||
"JP-13-HAM-L-H.yaml",
|
||||
"JP-13-HAM-L-HCL.yaml",
|
||||
"JP-13-HAM-M-HM.yaml",
|
||||
"JP-13-HAM-M-HZP.yaml",
|
||||
"JP-13-HIE-M-NESMTD.yaml",
|
||||
"JP-13-HIE-M-NOMA.yaml",
|
||||
"JP-13-HIG-L-CL.yaml",
|
||||
"JP-13-HIG-L-HAL.yaml",
|
||||
"JP-13-HIG-L-HCL.yaml",
|
||||
"JP-13-HIG-L-HFL.yaml",
|
||||
"JP-13-HIG-L-HHL.yaml",
|
||||
"JP-13-HIG-L-HL-higashikurumeshiritsuchuo_library.yaml",
|
||||
"JP-13-HIG-L-HL-higashiyamatoshiritsukiyohara_library.yaml",
|
||||
"JP-13-HIG-L-HL-higashiyamatoshiritsusakuragaoka_library.yaml",
|
||||
"JP-13-HIG-L-HL.yaml",
|
||||
"JP-13-HIG-L-HLHC.yaml",
|
||||
"JP-13-HIG-L-HML.yaml",
|
||||
"JP-13-HIG-L-HTL.yaml",
|
||||
"JP-13-HIG-L-KCLTNDRLL.yaml",
|
||||
"JP-13-HIG-L-TBSL.yaml",
|
||||
"JP-13-HIG-L-TLHC.yaml",
|
||||
"JP-13-HIG-M-FMH.yaml",
|
||||
"JP-13-HIG-M-HCM.yaml",
|
||||
"JP-13-HIG-M-NHSDM.yaml",
|
||||
"JP-13-HIG-M-TAMF.yaml",
|
||||
"JP-13-HIG-M-TCBM.yaml",
|
||||
"JP-13-HIM-L-H-himishijusankominkantoshoshitsu.yaml",
|
||||
"JP-13-HIM-L-H-himishiunamikominkantoshoshitsu.yaml",
|
||||
"JP-13-HIM-L-H.yaml",
|
||||
"JP-13-HIM-L-HCL.yaml",
|
||||
"JP-13-HIM-M-HCM.yaml",
|
||||
"JP-13-HIM-M-HSBG.yaml",
|
||||
"JP-13-HIN-L-AMHIL.yaml",
|
||||
"JP-13-HIN-L-H.yaml",
|
||||
"JP-13-HIN-L-HL-hinocho_library.yaml",
|
||||
"JP-13-HIN-L-HL-hinoshiritsuhino_library.yaml",
|
||||
"JP-13-HIN-L-HL-hinoshiritsuhirayama_library.yaml",
|
||||
"JP-13-HIN-L-HL-hinoshiritsumogusa_library.yaml",
|
||||
"JP-13-HIN-L-HL-hinoshiritsutakahata_library.yaml",
|
||||
"JP-13-HIN-L-HL-hinoshiritsutamadaira_library.yaml",
|
||||
"JP-13-HIN-L-HL.yaml",
|
||||
"JP-13-HIN-L-JWSUL.yaml",
|
||||
"JP-13-HIN-L-KL.yaml",
|
||||
"JP-13-HIN-L-MUL.yaml",
|
||||
"JP-13-HIN-L-NL.yaml",
|
||||
"JP-13-HIN-L-SDLTMU.yaml",
|
||||
"JP-13-HIN-M-HCHM.yaml",
|
||||
"JP-13-HIN-M-LMHC.yaml",
|
||||
"JP-13-HIN-M-NTMA.yaml",
|
||||
"JP-13-HIN-M-TZP.yaml",
|
||||
"JP-13-HIU-L-KCL.yaml",
|
||||
"JP-13-IMI-L-IL-imizushishimminato_library.yaml",
|
||||
"JP-13-IMI-L-IL-imizushishimomura_library.yaml",
|
||||
"JP-13-IMI-L-IL-imizushishoriki_library.yaml",
|
||||
"JP-13-IMI-L-IL.yaml",
|
||||
"JP-13-IMI-L-TL.yaml",
|
||||
"JP-13-IMI-L-TLJL.yaml",
|
||||
"JP-13-IMI-L-TPUL.yaml",
|
||||
"JP-13-IMI-M-DMOC.yaml",
|
||||
"JP-13-IMI-M-ICSM.yaml",
|
||||
"JP-13-IMI-M-ITT.yaml",
|
||||
"JP-13-INA-L-ICCL.yaml",
|
||||
"JP-13-INA-L-ICDIL.yaml",
|
||||
"JP-13-INA-L-ICDNL.yaml",
|
||||
"JP-13-INA-L-ICDSL.yaml",
|
||||
"JP-13-INA-L-ICDYL.yaml",
|
||||
"JP-13-INA-L-IL.yaml",
|
||||
"JP-13-INA-L-KTL.yaml",
|
||||
"JP-13-ITA-A-IK-itabashiku_koubunshokan.yaml",
|
||||
"JP-13-ITA-A-IK.yaml",
|
||||
"JP-13-ITA-L-AL.yaml",
|
||||
"JP-13-ITA-L-DBUL.yaml",
|
||||
"JP-13-ITA-L-IBCSBH.yaml",
|
||||
"JP-13-ITA-L-ICAL.yaml",
|
||||
"JP-13-ITA-L-ICCL.yaml",
|
||||
"JP-13-ITA-L-ICHIL.yaml",
|
||||
"JP-13-ITA-L-ICHL-itabashi_city_hikawa_library.yaml",
|
||||
"JP-13-ITA-L-ICHL.yaml",
|
||||
"JP-13-ITA-L-ICKL.yaml",
|
||||
"JP-13-ITA-L-ICNL-itabashi_city_narimasu_library.yaml",
|
||||
"JP-13-ITA-L-ICNL.yaml",
|
||||
"JP-13-ITA-L-ICSL-itabashi_city_shimura_library.yaml",
|
||||
"JP-13-ITA-L-ICSL.yaml",
|
||||
"JP-13-ITA-L-ICTL.yaml",
|
||||
"JP-13-ITA-L-IL.yaml",
|
||||
"JP-13-ITA-L-K.yaml",
|
||||
"JP-13-ITA-L-KLS.yaml",
|
||||
"JP-13-ITA-L-ML.yaml",
|
||||
"JP-13-ITA-L-NUSM.yaml",
|
||||
"JP-13-ITA-L-SL.yaml",
|
||||
"JP-13-ITA-L-TL-tokushimakogyotankidaigaku_library.yaml",
|
||||
"JP-13-ITA-L-TL.yaml",
|
||||
"JP-13-ITA-L-TULMS.yaml",
|
||||
"JP-13-ITA-M-AHM.yaml",
|
||||
"JP-13-ITA-M-ASMR.yaml",
|
||||
"JP-13-ITA-M-IAM.yaml",
|
||||
"JP-13-ITA-M-IBG.yaml",
|
||||
"JP-13-ITA-M-IHM.yaml",
|
||||
"JP-13-ITA-M-ISEH.yaml",
|
||||
"JP-13-ITA-M-JCM.yaml",
|
||||
"JP-13-ITA-M-KCHFMH.yaml",
|
||||
"JP-13-ITA-M-MB.yaml",
|
||||
"JP-13-ITA-M-MHFMJPM.yaml",
|
||||
"JP-13-ITA-M-TKUM.yaml",
|
||||
"JP-13-ITA-M-TPCBCP.yaml",
|
||||
"JP-13-IWA-L-IL.yaml",
|
||||
"JP-13-IWA-M-BPMA.yaml",
|
||||
"JP-13-IWA-M-KOZ.yaml",
|
||||
"JP-13-IZU-M-TCFA.yaml",
|
||||
"JP-13-IZU-M-TCMAIKMH.yaml",
|
||||
"JP-13-KAI-L-KL-kaiyochoritsushishikui_library.yaml",
|
||||
"JP-13-KAI-L-KL.yaml",
|
||||
"JP-13-KAI-L-M.yaml",
|
||||
"JP-13-KAI-L-ML.yaml",
|
||||
"JP-13-KAI-L-Y.yaml",
|
||||
"JP-13-KAI-M-KCM.yaml",
|
||||
"JP-13-KAN-L-KCL.yaml",
|
||||
"JP-13-KAN-L-KLA.yaml",
|
||||
"JP-13-KAN-L-KLH.yaml",
|
||||
"JP-13-KAN-M-KMAMKS.yaml",
|
||||
"JP-13-KAN-M-KMFAW.yaml",
|
||||
"JP-13-KAN-M-KSFHMH.yaml",
|
||||
"JP-13-KAT-L-K-kamikatsuchokyoikuiinkai.yaml",
|
||||
"JP-13-KAT-L-K.yaml",
|
||||
"JP-13-KAT-L-KL-katsushikakuritsuaotochiku_library.yaml",
|
||||
"JP-13-KAT-L-KL-katsushikakuritsuchuo_library.yaml",
|
||||
"JP-13-KAT-L-KL-katsushikakuritsukamakura_library.yaml",
|
||||
"JP-13-KAT-L-KL-katsushikakuritsukameari_library.yaml",
|
||||
"JP-13-KAT-L-KL-katsushikakuritsukamikomatsu_library.yaml",
|
||||
"JP-13-KAT-L-KL-katsushikakuritsukosugechiku_library.yaml",
|
||||
"JP-13-KAT-L-KL-katsushikakuritsumizumoto_library.yaml",
|
||||
"JP-13-KAT-L-KL-katsushikakuritsunishimizumotochiku_library.yaml",
|
||||
"JP-13-KAT-L-KL-katsushikakuritsutateishi_library.yaml",
|
||||
"JP-13-KAT-L-KL-katsushikakuritsuyotsugichiku_library.yaml",
|
||||
"JP-13-KAT-L-KL.yaml",
|
||||
"JP-13-KAT-L-KOL.yaml",
|
||||
"JP-13-KAT-L-KTL.yaml",
|
||||
"JP-13-KAT-L-TL.yaml",
|
||||
"JP-13-KAT-L-TUSKL.yaml",
|
||||
"JP-13-KAT-M-PG.yaml",
|
||||
"JP-13-KAW-L-KL.yaml",
|
||||
"JP-13-KIN-M-KAM.yaml",
|
||||
"JP-13-KIN-M-KBK.yaml",
|
||||
"JP-13-KIO-L-KL.yaml",
|
||||
"JP-13-KIO-L-OL.yaml",
|
||||
"JP-13-KIT-L-IRCSEMF.yaml",
|
||||
"JP-13-KIT-L-JCARDLL.yaml",
|
||||
"JP-13-KIT-L-KCCLB.yaml",
|
||||
"JP-13-KIT-L-KJL.yaml",
|
||||
"JP-13-KIT-L-KL-kitakuritsuakabane_library.yaml",
|
||||
"JP-13-KIT-L-KL-kitakuritsuakabanekita_library.yaml",
|
||||
"JP-13-KIT-L-KL-kitakuritsuakabanenishi_library.yaml",
|
||||
"JP-13-KIT-L-KL-kitakuritsuhigashijujo_library.yaml",
|
||||
"JP-13-KIT-L-KL-kitakuritsuhigashitabata_library.yaml",
|
||||
"JP-13-KIT-L-KL-kitakuritsukamijujo_library.yaml",
|
||||
"JP-13-KIT-L-KL-kitakuritsukamiya_library.yaml",
|
||||
"JP-13-KIT-L-KL-kitakuritsukima_library.yaml",
|
||||
"JP-13-KIT-L-KL-kitakuritsushowamachi_library.yaml",
|
||||
"JP-13-KIT-L-KL-kitakuritsutabata_library.yaml",
|
||||
"JP-13-KIT-L-KL-kitakuritsutakinogawa_library.yaml",
|
||||
"JP-13-KIT-L-KL-kitakuritsutakinogawanishi_library.yaml",
|
||||
"JP-13-KIT-L-KL-kitakuritsutoshima_library.yaml",
|
||||
"JP-13-KIT-L-KL.yaml",
|
||||
"JP-13-KIT-L-NKCLRDGL.yaml",
|
||||
"JP-13-KIT-L-PML.yaml",
|
||||
"JP-13-KIT-L-SL.yaml",
|
||||
"JP-13-KIT-L-TLO.yaml",
|
||||
"JP-13-KIT-L-TSTLTB.yaml",
|
||||
"JP-13-KIT-L-TSU.yaml",
|
||||
"JP-13-KIT-L-TULAL.yaml",
|
||||
"JP-13-KIT-M-KCAM.yaml",
|
||||
"JP-13-KIT-M-OAM.yaml",
|
||||
"JP-13-KIT-M-PM.yaml",
|
||||
"JP-13-KIT-M-TMMWA.yaml",
|
||||
"JP-13-KIY-L-GLJNA.yaml",
|
||||
"JP-13-KIY-L-JCSWL.yaml",
|
||||
"JP-13-KIY-L-KCL.yaml",
|
||||
"JP-13-KIY-L-KEL.yaml",
|
||||
"JP-13-KIY-L-KMKL.yaml",
|
||||
"JP-13-KIY-L-KNL.yaml",
|
||||
"JP-13-KIY-L-KSL.yaml",
|
||||
"JP-13-KIY-L-KTL.yaml",
|
||||
"JP-13-KIY-L-LMPU.yaml",
|
||||
"JP-13-KIY-L-NIOSH.yaml",
|
||||
"JP-13-KIY-L-ORCTRI.yaml",
|
||||
"JP-13-KIY-M-KMM.yaml",
|
||||
"JP-13-KIY-M-MPGMPU.yaml",
|
||||
"JP-13-KOD-L-BCTCL.yaml",
|
||||
"JP-13-KOD-L-BGUKL.yaml",
|
||||
"JP-13-KOD-L-CL.yaml",
|
||||
"JP-13-KOD-L-KIMC.yaml",
|
||||
"JP-13-KOD-L-KL-kodairashiritsuhanakoganei_library.yaml",
|
||||
"JP-13-KOD-L-KL-kodairashiritsukamijuku_library.yaml",
|
||||
"JP-13-KOD-L-KL-kodairashiritsukihei_library.yaml",
|
||||
"JP-13-KOD-L-KL-kodairashiritsunakamachi_library.yaml",
|
||||
"JP-13-KOD-L-KL-kodairashiritsuogawanishimachi_library.yaml",
|
||||
"JP-13-KOD-L-KL-kodairashiritsuonuma_library.yaml",
|
||||
"JP-13-KOD-L-KL-kodairashiritsutsuda_library.yaml",
|
||||
"JP-13-KOD-L-KL.yaml",
|
||||
"JP-13-KOD-L-KLH.yaml",
|
||||
"JP-13-KOD-L-KLJ.yaml",
|
||||
"JP-13-KOD-L-KLO.yaml",
|
||||
"JP-13-KOD-L-PUL.yaml",
|
||||
"JP-13-KOD-L-SGUCL.yaml",
|
||||
"JP-13-KOD-L-TL.yaml",
|
||||
"JP-13-KOD-M-FMS.yaml",
|
||||
"JP-13-KOD-M-GM.yaml",
|
||||
"JP-13-KOD-M-KHDAM.yaml",
|
||||
"JP-13-KOD-M-MAUML.yaml",
|
||||
"JP-13-KOD-M-TMMPG.yaml",
|
||||
"JP-13-KOG-L-HL.yaml",
|
||||
"JP-13-KOG-L-K-kokuritsukenkyukaihatsuhojinjohotsushinkenkyukikok.yaml",
|
||||
"JP-13-KOG-L-K.yaml",
|
||||
"JP-13-KOG-L-KCL.yaml",
|
||||
"JP-13-KOG-L-KLH.yaml",
|
||||
"JP-13-KOG-L-KLM.yaml",
|
||||
"JP-13-KOG-L-KLN.yaml",
|
||||
"JP-13-KOG-L-TGUCRIE.yaml",
|
||||
"JP-13-KOG-L-TGUL.yaml",
|
||||
"JP-13-KOG-L-TLKL.yaml",
|
||||
"JP-13-KOG-M-NIICT.yaml",
|
||||
"JP-13-KOG-M-NSMTUAT.yaml",
|
||||
"JP-13-KOK-L-K.yaml",
|
||||
"JP-13-KOK-L-KCHL-kokubunji_city_honda_library.yaml",
|
||||
"JP-13-KOK-L-KCHL.yaml",
|
||||
"JP-13-KOK-L-KCHLSB.yaml",
|
||||
"JP-13-KOK-L-KCKL.yaml",
|
||||
"JP-13-KOK-L-KCML.yaml",
|
||||
"JP-13-KOK-L-KCNL.yaml",
|
||||
"JP-13-KOK-L-LCRLHL.yaml",
|
||||
"JP-13-KOK-L-TKUL.yaml",
|
||||
"JP-13-KOK-L-TMTL.yaml",
|
||||
"JP-13-KOK-M-KCMCA.yaml",
|
||||
"JP-13-KOK-M-MKTRM.yaml",
|
||||
"JP-13-KOM-L-K-komaeshiiwadochiikisentatoshoshitsu.yaml",
|
||||
"JP-13-KOM-L-K-komaeshikamiizumichiikisentatoshoshitsu.yaml",
|
||||
"JP-13-KOM-L-K-komaeshinambuchiikisentatoshoshitsu.yaml",
|
||||
"JP-13-KOM-L-K-komaeshinogawachiikisentatoshoshitsu.yaml",
|
||||
"JP-13-KOM-L-K.yaml",
|
||||
"JP-13-KOM-L-KL.yaml",
|
||||
"JP-13-KOM-L-SL.yaml",
|
||||
"JP-13-KOT-L-AL.yaml",
|
||||
"JP-13-KOT-L-ALMCAT.yaml",
|
||||
"JP-13-KOT-L-CIL.yaml",
|
||||
"JP-13-KOT-L-ITSC.yaml",
|
||||
"JP-13-KOT-L-JTRCL.yaml",
|
||||
"JP-13-KOT-L-KL-kotokuritsufukagawa_library.yaml",
|
||||
"JP-13-KOT-L-KL-kotokuritsufuruishiba_library.yaml",
|
||||
"JP-13-KOT-L-KL-kotokuritsuhigashiojima_library.yaml",
|
||||
"JP-13-KOT-L-KL-kotokuritsujoto_library.yaml",
|
||||
"JP-13-KOT-L-KL-kotokuritsukameido_library.yaml",
|
||||
"JP-13-KOT-L-KL-kotokuritsukodomopuraza_library.yaml",
|
||||
"JP-13-KOT-L-KL-kotokuritsushinonome_library.yaml",
|
||||
"JP-13-KOT-L-KL-kotokuritsusunamachi_library.yaml",
|
||||
"JP-13-KOT-L-KL-kotokuritsutoyo_library.yaml",
|
||||
"JP-13-KOT-L-KL-kotokuritsutoyosu_library.yaml",
|
||||
"JP-13-KOT-L-KL.yaml",
|
||||
"JP-13-KOT-L-LLB.yaml",
|
||||
"JP-13-KOT-L-ML.yaml",
|
||||
"JP-13-KOT-L-SITTL.yaml",
|
||||
"JP-13-KOT-L-TCTMOLLI.yaml",
|
||||
"JP-13-KOT-L-TEPSCTMRIE.yaml",
|
||||
"JP-13-KOT-L-TL.yaml",
|
||||
"JP-13-KOT-L-TUMSTLEB.yaml",
|
||||
"JP-13-KOT-M-CTARWD.yaml",
|
||||
"JP-13-KOT-M-DFEH.yaml",
|
||||
"JP-13-KOT-M-GSM.yaml",
|
||||
"JP-13-KOT-M-KCBM.yaml",
|
||||
"JP-13-KOT-M-KCFEM.yaml",
|
||||
"JP-13-KOT-M-MCAT.yaml",
|
||||
"JP-13-KOT-M-MNMESI.yaml",
|
||||
"JP-13-KOT-M-NFM.yaml",
|
||||
"JP-13-KOT-M-YSTGD.yaml",
|
||||
"JP-13-KOZ-L-KPL.yaml",
|
||||
"JP-13-KOZ-M-KILMH.yaml",
|
||||
"JP-13-KUB-L-FL.yaml",
|
||||
"JP-13-KUN-L-HUCHSSL.yaml",
|
||||
"JP-13-KUN-L-HUL.yaml",
|
||||
"JP-13-KUN-L-IERLHU.yaml",
|
||||
"JP-13-KUN-L-K.yaml",
|
||||
"JP-13-KUN-L-KL-kunitachikitashimimpuraza_library.yaml",
|
||||
"JP-13-KUN-L-KL.yaml",
|
||||
"JP-13-KUN-L-KLA.yaml",
|
||||
"JP-13-KUN-L-KLH.yaml",
|
||||
"JP-13-KUN-L-KLM.yaml",
|
||||
"JP-13-KUN-L-KLS.yaml",
|
||||
"JP-13-KUN-L-KLY.yaml",
|
||||
"JP-13-KUN-L-RCISSSIERH.yaml",
|
||||
"JP-13-KUN-L-TCF.yaml",
|
||||
"JP-13-KUN-L-TWSCPEL.yaml",
|
||||
"JP-13-KUN-L-YCIL.yaml",
|
||||
"JP-13-KUN-M-KKBK.yaml",
|
||||
"JP-13-KUN-M-THAM.yaml",
|
||||
"JP-13-KUR-L-K-kurayoshishiageikominkantoshoshitsu.yaml",
|
||||
"JP-13-KUR-L-K-kurayoshishikamiogamokominkantoshosupesu.yaml",
|
||||
"JP-13-KUR-L-K-kurayoshishikitadanikominkantoshoshitsu.yaml",
|
||||
"JP-13-KUR-L-K-kurayoshishimeirinkominkantoshokona.yaml",
|
||||
"JP-13-KUR-L-K-kurayoshishinadatekominkantoshoshitsu.yaml",
|
||||
"JP-13-KUR-L-K-kurayoshishiogamokominkantoshoshitsu.yaml",
|
||||
"JP-13-KUR-L-K-kurayoshishisaigokominkantoshoshitsu.yaml",
|
||||
"JP-13-KUR-L-K-kurayoshishiuwanadakominkankenshutoshoshitsu.yaml",
|
||||
"JP-13-KUR-L-K-kurobeshiritsuaimotokominkantoshoshitsu.yaml",
|
||||
"JP-13-KUR-L-K-kurobeshiritsuhigashifusekominkantoshoshitsu.yaml",
|
||||
"JP-13-KUR-L-K-kurobeshiritsumikkaichikominkantoshoshitsu.yaml",
|
||||
"JP-13-KUR-L-K-kurobeshiritsuogyukominkantoshoshitsu.yaml",
|
||||
"JP-13-KUR-L-K-kurobeshiritsurayamakominkantoshoshitsu.yaml",
|
||||
"JP-13-KUR-L-K-kurobeshiritsuwakagurikominkantoshoshitsu.yaml",
|
||||
"JP-13-KUR-L-K.yaml",
|
||||
"JP-13-KUR-L-KCAL.yaml",
|
||||
"JP-13-KUR-L-KCL.yaml",
|
||||
"JP-13-KUR-L-KL.yaml",
|
||||
"JP-13-KUR-L-KST.yaml",
|
||||
"JP-13-KUR-L-KUL.yaml",
|
||||
"JP-13-KUR-L-TTL.yaml",
|
||||
"JP-13-KUR-M-KCAM.yaml",
|
||||
"JP-13-KUR-M-KFHM.yaml",
|
||||
"JP-13-KUR-M-KMEP.yaml",
|
||||
"JP-13-KUR-M-KVC.yaml",
|
||||
"JP-13-KUR-M-KYSM.yaml",
|
||||
"JP-13-KUR-M-SMA.yaml",
|
||||
"JP-13-KUR-M-TNPM.yaml",
|
||||
"JP-13-MAC-L-D.yaml",
|
||||
"JP-13-MAC-L-FCCEL.yaml",
|
||||
"JP-13-MAC-L-H-hoseidaigakushakaigakubushiryoshitsu.yaml",
|
||||
"JP-13-MAC-L-H.yaml",
|
||||
"JP-13-MAC-L-HL.yaml",
|
||||
"JP-13-MAC-L-HUFSHS.yaml",
|
||||
"JP-13-MAC-L-HUJSRI.yaml",
|
||||
"JP-13-MAC-L-HURRFSPA.yaml",
|
||||
"JP-13-MAC-L-ICESHU.yaml",
|
||||
"JP-13-MAC-L-JFOUL.yaml",
|
||||
"JP-13-MAC-L-KLJ.yaml",
|
||||
"JP-13-MAC-L-ML-machidashiritsukanamori_library.yaml",
|
||||
"JP-13-MAC-L-ML-machidashiritsukisoyamasaki_library.yaml",
|
||||
"JP-13-MAC-L-ML-machidashiritsusakai_library.yaml",
|
||||
"JP-13-MAC-L-ML-machidashiritsusarubia_library.yaml",
|
||||
"JP-13-MAC-L-ML-machidashiritsutadao_library.yaml",
|
||||
"JP-13-MAC-L-ML-machidashiritsutsurukawa_library.yaml",
|
||||
"JP-13-MAC-L-ML-machidashiritsutsurukawaekimae_library.yaml",
|
||||
"JP-13-MAC-L-ML-mukyukai_library.yaml",
|
||||
"JP-13-MAC-L-ML.yaml",
|
||||
"JP-13-MAC-L-OISRHU.yaml",
|
||||
"JP-13-MAC-L-SL.yaml",
|
||||
"JP-13-MAC-L-SPUL.yaml",
|
||||
"JP-13-MAC-L-TKGULOML.yaml",
|
||||
"JP-13-MAC-L-TUL.yaml",
|
||||
"JP-13-MAC-L-WUUMLIC.yaml",
|
||||
"JP-13-MAC-M-JMIMC.yaml",
|
||||
"JP-13-MAC-M-SPUY.yaml",
|
||||
"JP-13-MAC-M-TKGMDL.yaml",
|
||||
"JP-13-MAC-M-TUME.yaml",
|
||||
"JP-13-MEG-L-CPASLGSASU.yaml",
|
||||
"JP-13-MEG-L-IISLUT.yaml",
|
||||
"JP-13-MEG-L-ISTOL.yaml",
|
||||
"JP-13-MEG-L-KLUT.yaml",
|
||||
"JP-13-MEG-L-LTMMP.yaml",
|
||||
"JP-13-MEG-L-MCOL.yaml",
|
||||
"JP-13-MEG-L-MCYCL.yaml",
|
||||
"JP-13-MEG-L-ML-megurokuritsumegurohoncho_library.yaml",
|
||||
"JP-13-MEG-L-ML-megurokuritsumegurokuminsenta_library.yaml",
|
||||
"JP-13-MEG-L-ML-megurokuritsumidorigaoka_library.yaml",
|
||||
"JP-13-MEG-L-ML-megurokuritsunakameguroekimae_library.yaml",
|
||||
"JP-13-MEG-L-ML-megurokuritsusenzoku_library.yaml",
|
||||
"CZ-42-POL-L-MKP.yaml",
|
||||
"CZ-42-POL-L-MLKVP.yaml",
|
||||
"CZ-42-POV-L-MPS.yaml",
|
||||
"CZ-42-POV-L-OKVP.yaml",
|
||||
"CZ-42-PRA-L-MKPNL.yaml",
|
||||
"CZ-42-PRA-L-MKVLNL.yaml",
|
||||
"CZ-42-PRE-L-OKVP.yaml",
|
||||
"CZ-42-PRO-L-MKP.yaml",
|
||||
"CZ-42-RAD-L-MKR.yaml",
|
||||
"CZ-42-RAD-L-OKR.yaml",
|
||||
"CZ-42-REH-L-VKD.yaml",
|
||||
"CZ-42-REJ-G-GBR.yaml",
|
||||
"CZ-42-ROH-L-MKR.yaml",
|
||||
"CZ-42-ROU-G-GMUVRNLPOU.yaml",
|
||||
"CZ-42-ROU-L-A.yaml",
|
||||
"CZ-42-ROU-L-KES.yaml",
|
||||
"CZ-42-ROU-L-MKC.yaml",
|
||||
"CZ-42-ROU-L-MKD-mistni_knihovna_dobrin.yaml",
|
||||
"CZ-42-ROU-L-MKD.yaml",
|
||||
"CZ-42-ROU-L-MKK-mistni_knihovna_kyskovice.yaml",
|
||||
"CZ-42-ROU-L-MKV-mistni_knihovna_vetla.yaml",
|
||||
"CZ-42-ROU-L-MKV.yaml",
|
||||
"CZ-42-ROU-L-MKVDNO.yaml",
|
||||
"CZ-42-ROU-M-PMK.yaml",
|
||||
"CZ-42-RTY-L-OKRNB.yaml",
|
||||
"CZ-42-RUM-L-KZSMNVUNLZ.yaml",
|
||||
"CZ-42-RUM-L-MKR.yaml",
|
||||
"CZ-42-RUM-M-KOMVDPOPR.yaml",
|
||||
"CZ-42-RYJ-L-LPDN.yaml",
|
||||
"CZ-42-SLU-L-MKS.yaml",
|
||||
"CZ-42-SLU-L-T.yaml",
|
||||
"CZ-42-SNE-L-MKS.yaml",
|
||||
"CZ-42-SPO-L-OKVOS.yaml",
|
||||
"CZ-42-STA-L-OKS.yaml",
|
||||
"CZ-42-STA-L-OKSK.yaml",
|
||||
"CZ-42-STE-E-VOSOTSSSKP.yaml",
|
||||
"CZ-42-STE-L-IVP.yaml",
|
||||
"CZ-42-STE-L-MPS.yaml",
|
||||
"CZ-42-STR-L-MKSV.yaml",
|
||||
"CZ-42-SUL-L-MKS.yaml",
|
||||
"CZ-42-SVE-L-OKS.yaml",
|
||||
"CZ-42-TEP-A-SOAT-statni_okresni_archiv_teplice.yaml",
|
||||
"CZ-42-TEP-E-KTCK.yaml",
|
||||
"CZ-42-TEP-E-VOSZSSZPK.yaml",
|
||||
"CZ-42-TEP-L-BPTS.yaml",
|
||||
"CZ-42-TEP-L-KZ.yaml",
|
||||
"CZ-42-TEP-L-KZSNTZLKUN.yaml",
|
||||
"CZ-42-TEP-L-LTVC.yaml",
|
||||
"CZ-42-TEP-L-R.yaml",
|
||||
"CZ-42-TEP-L-RKTPO.yaml",
|
||||
"CZ-42-TEP-L-SSP.yaml",
|
||||
"CZ-42-TEP-L-SUO.yaml",
|
||||
"CZ-42-TEP-L-SUVP.yaml",
|
||||
"CZ-42-TEP-L-VOD.yaml",
|
||||
"CZ-42-TEP-L-VSTK.yaml",
|
||||
"CZ-42-TEP-M-RMVTPK.yaml",
|
||||
"CZ-42-TEP-M-RMVTPO.yaml",
|
||||
"CZ-42-TEP-O-SOAVLSOAT.yaml",
|
||||
"CZ-42-TER-L-DSR.yaml",
|
||||
"CZ-42-TER-L-MKT.yaml",
|
||||
"CZ-42-TER-L-VSAPSRK.yaml",
|
||||
"CZ-42-TER-M-PTNKP.yaml",
|
||||
"CZ-42-TRE-L-MKP.yaml",
|
||||
"CZ-42-TRE-L-MKVS.yaml",
|
||||
"CZ-42-TRM-L-MKT.yaml",
|
||||
"CZ-42-TRU-A-AUMAVEST-archivalie_ulozene_mimo_archivy_v_evidenci_soka_tr.yaml",
|
||||
"CZ-42-TUC-L-MKT.yaml",
|
||||
"CZ-42-UDL-L-OKVU.yaml",
|
||||
"CZ-42-UJE-L-MLKU.yaml",
|
||||
"CZ-42-UNL-M-MMUNL.yaml",
|
||||
"CZ-42-UST-L-AVCSUPSEU.yaml",
|
||||
"CZ-42-UST-L-CLZUNL.yaml",
|
||||
"CZ-42-UST-L-ES.yaml",
|
||||
"CZ-42-UST-L-KHSUKSSVUN.yaml",
|
||||
"CZ-42-UST-L-MKR.yaml",
|
||||
"CZ-42-UST-L-NPUUOPVUNL.yaml",
|
||||
"CZ-42-UST-L-OKC.yaml",
|
||||
"CZ-42-UST-L-OUSTK.yaml",
|
||||
"CZ-42-UST-L-PKUSPTK.yaml",
|
||||
"CZ-42-UST-L-S.yaml",
|
||||
"CZ-42-UST-L-SSTK.yaml",
|
||||
"CZ-42-UST-L-THZ.yaml",
|
||||
"CZ-42-UST-L-TS.yaml",
|
||||
"CZ-42-UST-L-UJPFSE.yaml",
|
||||
"CZ-42-UST-L-UJPFUDK.yaml",
|
||||
"CZ-42-UST-L-UJPVK.yaml",
|
||||
"CZ-42-UST-L-VS.yaml",
|
||||
"CZ-42-UST-L-ZCUNLTK.yaml",
|
||||
"CZ-42-UST-L-ZESR.yaml",
|
||||
"CZ-42-UST-M-OMVUNLPOK.yaml",
|
||||
"CZ-42-VAL-L-OKV.yaml",
|
||||
"CZ-42-VAR-L-E.yaml",
|
||||
"CZ-42-VAR-L-TST.yaml",
|
||||
"CZ-42-VAR-L-VS.yaml",
|
||||
"CZ-42-VEJ-L-MKSS.yaml",
|
||||
"CZ-42-VEJ-L-MKVV.yaml",
|
||||
"CZ-42-VEJ-L-OKVKH.yaml",
|
||||
"CZ-42-VEL-L-MKV-mistni_knihovna_velteze.yaml",
|
||||
"CZ-42-VEL-L-MKVM.yaml",
|
||||
"CZ-42-VEL-L-MKVS.yaml",
|
||||
"CZ-42-VEL-L-OKVVB-obecni_knihovna_ve_velke_bukovine.yaml",
|
||||
"CZ-42-VEL-L-OKVVB.yaml",
|
||||
"CZ-42-VEL-L-OKVVC.yaml",
|
||||
"CZ-42-VER-L-OKVV.yaml",
|
||||
"CZ-42-VIL-L-OVKV.yaml",
|
||||
"CZ-42-VIL-L-SS.yaml",
|
||||
"CZ-42-VRS-L-MVKV.yaml",
|
||||
"CZ-42-VSE-L-OKVV.yaml",
|
||||
"CZ-42-VYS-L-OKVV.yaml",
|
||||
"CZ-42-VYS-L-OKVVP.yaml",
|
||||
"CZ-42-ZAB-L-MKZ.yaml",
|
||||
"CZ-42-ZAC-M-MMZ-mestske_muzeum_zacler.yaml",
|
||||
"CZ-42-ZAL-L-MKZ-mistni_knihovna_zalhostice.yaml",
|
||||
"CZ-42-ZAL-L-MKZ.yaml",
|
||||
"CZ-42-ZAL-L-SDVU.yaml",
|
||||
"CZ-42-ZAT-L-CISR.yaml",
|
||||
"CZ-42-ZAT-L-SZS.yaml",
|
||||
"CZ-42-ZAT-M-RMKPVZ.yaml",
|
||||
"CZ-42-ZEL-M-MVMZ.yaml",
|
||||
"CZ-42-ZIT-L-MKZ.yaml",
|
||||
"CZ-42-ZIZ-L-OKZ.yaml",
|
||||
"CZ-51-BEN-L-MKVBUS.yaml",
|
||||
"CZ-51-BEN-L-OKBLS.yaml",
|
||||
"CZ-51-BEN-L-OKDS.yaml",
|
||||
"CZ-51-BOL-A-AUMAVESMB.yaml",
|
||||
"CZ-51-BRA-L-OKB.yaml",
|
||||
"CZ-51-BRA-L-OKH.yaml",
|
||||
"CZ-51-BRA-L-OKJ.yaml",
|
||||
"CZ-51-BUL-L-MKA.yaml",
|
||||
"CZ-51-BYS-L-MKVBNJ.yaml",
|
||||
"CZ-51-CED-M-PM-podjestedske_muzeum.yaml",
|
||||
"CZ-51-CES-A-SOACL.yaml",
|
||||
"CZ-51-CES-L-MKCL.yaml",
|
||||
"CZ-51-CES-L-MKSPJR.yaml",
|
||||
"CZ-51-CES-L-MKVPPJ.yaml",
|
||||
"CZ-51-CES-L-N.yaml",
|
||||
"CZ-51-CES-L-NCLS.yaml",
|
||||
"CZ-51-CES-L-NSPCLSLK.yaml",
|
||||
"CZ-51-CES-L-OKB.yaml",
|
||||
"CZ-51-CES-L-OKVS.yaml",
|
||||
"CZ-51-CES-L-PMKCD.yaml",
|
||||
"CZ-51-CES-L-V.yaml",
|
||||
"CZ-51-CES-M-VMGVCL.yaml",
|
||||
"CZ-51-CET-L-MKVCHL.yaml",
|
||||
"CZ-51-CHR-L-ECS.yaml",
|
||||
"CZ-51-CHR-L-MKC.yaml",
|
||||
"CZ-51-CHR-L-MLKV.yaml",
|
||||
"CZ-51-CHR-M-MMIC.yaml",
|
||||
"CZ-51-CIS-L-OKCUH.yaml",
|
||||
"CZ-51-CRA-M-MCR.yaml",
|
||||
"CZ-51-CVI-L-MKVC.yaml",
|
||||
"CZ-51-CVI-L-S.yaml",
|
||||
"CZ-51-DES-L-MKD.yaml",
|
||||
"CZ-51-DES-M-MRV.yaml",
|
||||
"CZ-51-DOK-L-MKB.yaml",
|
||||
"CZ-51-DOK-L-MKT-mistni_knihovna_tuhan.yaml",
|
||||
"CZ-51-DOK-L-MKT.yaml",
|
||||
"CZ-51-DRZ-L-MKD.yaml",
|
||||
"CZ-51-DUB-L-MKVD.yaml",
|
||||
"CZ-51-DUB-L-OKVD.yaml",
|
||||
"CZ-51-FRY-L-MKF.yaml",
|
||||
"CZ-51-FRY-L-MKVV.yaml",
|
||||
"CZ-51-FRY-M-MMF.yaml",
|
||||
"CZ-51-FRY-M-MUFOKMMFK.yaml",
|
||||
"CZ-51-HAB-L-MKVC.yaml",
|
||||
"CZ-51-HAB-L-MKVH.yaml",
|
||||
"CZ-51-HAB-L-MKVP.yaml",
|
||||
"CZ-51-HAR-L-MKH.yaml",
|
||||
"CZ-51-HEJ-L-OKBP.yaml",
|
||||
"CZ-51-HEJ-L-OKLL.yaml",
|
||||
"CZ-51-HOD-L-MKHNM.yaml",
|
||||
"CZ-51-HOR-L-MKHP.yaml",
|
||||
"CZ-51-HOR-L-MKVHB.yaml",
|
||||
"CZ-51-HOR-L-MKVHR.yaml",
|
||||
"CZ-51-HOR-L-MKVHUSP.yaml",
|
||||
"CZ-51-HOR-L-MKVV.yaml",
|
||||
"CZ-51-HRA-L-BZV.yaml",
|
||||
"CZ-51-HRA-L-MKC.yaml",
|
||||
"CZ-51-HUN-L-OKS.yaml",
|
||||
"CZ-51-JAB-A-SOAJNN.yaml",
|
||||
"CZ-51-JAB-L-AS.yaml",
|
||||
"CZ-51-JAB-L-ASREPJNN.yaml",
|
||||
"CZ-51-JAB-L-B.yaml",
|
||||
"CZ-51-JAB-L-JOPMPS.yaml",
|
||||
"CZ-51-JAB-L-JS.yaml",
|
||||
"CZ-51-JAB-L-MKJNJ.yaml",
|
||||
"CZ-51-JAB-L-MKJNN.yaml",
|
||||
"CZ-51-JAB-L-MKM.yaml",
|
||||
"CZ-51-JAB-L-MKVV.yaml",
|
||||
"CZ-51-JAB-L-NJNNPLK.yaml",
|
||||
"CZ-51-JAB-L-PSOSRT.yaml",
|
||||
"CZ-51-JAB-L-UPHULPJNN.yaml",
|
||||
"CZ-51-JAB-L-ZBZN.yaml",
|
||||
"CZ-51-JAN-L-OKJNN.yaml",
|
||||
"CZ-51-JEN-L-OKVJ.yaml",
|
||||
"CZ-51-JER-L-MKVJ.yaml",
|
||||
"CZ-51-JES-L-MKVJ.yaml",
|
||||
"CZ-51-JIL-L-MKJH.yaml",
|
||||
"CZ-51-JIL-L-MKJVK.yaml",
|
||||
"CZ-51-JIL-L-MKLO.yaml",
|
||||
"CZ-51-JIL-L-MLKVBUC.yaml",
|
||||
"CZ-51-JIL-L-MMNJLK.yaml",
|
||||
"CZ-51-JIL-L-OKK-obecni_knihovna_kundratice.yaml",
|
||||
"CZ-51-JIL-L-OKK.yaml",
|
||||
"CZ-51-JIL-M-KMJ.yaml",
|
||||
"CZ-51-JIN-L-OKVJPS.yaml",
|
||||
"CZ-51-JNN-A-AUMAVESJNN.yaml",
|
||||
"CZ-51-JNN-M-MSBJNN.yaml",
|
||||
"CZ-51-JOS-L-OKJD.yaml",
|
||||
"CZ-51-KAM-L-PLSTK.yaml",
|
||||
"CZ-51-KOS-L-OKVK.yaml",
|
||||
"CZ-51-KRA-L-MKK.yaml",
|
||||
"CZ-51-KRI-L-MKK.yaml",
|
||||
"CZ-51-KRI-L-MKR.yaml",
|
||||
"CZ-51-KRI-L-MKZ-mistni_knihovna_zibridice.yaml",
|
||||
"CZ-51-KRI-L-MKZ.yaml",
|
||||
"CZ-51-LIB-A-AUMAVESL-archivalie_ulozene_mimo_archivy_v_evidenci_soka_li.yaml",
|
||||
"CZ-51-LIB-A-SOAL-statni_okresni_archiv_liberec.yaml",
|
||||
"CZ-51-LIB-E-SZSVOSZLK.yaml",
|
||||
"CZ-51-LIB-G-OGL.yaml",
|
||||
"CZ-51-LIB-G-OGLPK.yaml",
|
||||
"CZ-51-LIB-L-CMIOIL.yaml",
|
||||
"CZ-51-LIB-L-DZVK.yaml",
|
||||
"CZ-51-LIB-L-IS.yaml",
|
||||
"CZ-51-LIB-L-KNLSLK.yaml",
|
||||
"CZ-51-LIB-L-KSRSSV.yaml",
|
||||
"CZ-51-LIB-L-KVKVL.yaml",
|
||||
"CZ-51-LIB-L-LS.yaml",
|
||||
"CZ-51-LIB-L-LVZ.yaml",
|
||||
"CZ-51-LIB-L-MKVKU.yaml",
|
||||
"CZ-51-LIB-L-MLKL.yaml",
|
||||
"CZ-51-LIB-L-OZCEPP.yaml",
|
||||
"CZ-51-LIB-L-S.yaml",
|
||||
"CZ-51-LIB-L-SVUT.yaml",
|
||||
"CZ-51-LIB-L-TL.yaml",
|
||||
"CZ-51-LIB-L-TS.yaml",
|
||||
"CZ-51-LIB-L-TUVLUK.yaml",
|
||||
"CZ-51-LIB-L-UP.yaml",
|
||||
"CZ-51-LIB-L-UPVMVSROP.yaml",
|
||||
"CZ-51-LIB-L-VL.yaml",
|
||||
"CZ-51-LIB-L-VSOITK.yaml",
|
||||
"CZ-51-LIB-L-VSSTFS.yaml",
|
||||
"CZ-51-LIB-M-SMLPO.yaml",
|
||||
"CZ-51-LIB-O-KOPRTMHSKS.yaml",
|
||||
"CZ-51-LIB-O-SOAVLSOAL.yaml",
|
||||
"CZ-51-LNP-M-MMGLNP.yaml",
|
||||
"CZ-51-LOM-L-KISPOMK.yaml",
|
||||
"CZ-51-LOM-L-MKVS-mistni_knihovna_ve_struzinci.yaml",
|
||||
"CZ-51-LOM-L-MKVS.yaml",
|
||||
"CZ-51-LOM-L-TTTS.yaml",
|
||||
"CZ-51-LUC-L-MKLNN.yaml",
|
||||
"CZ-51-MAL-L-VKVMS.yaml",
|
||||
"CZ-51-MAR-L-MKM.yaml",
|
||||
"CZ-51-MAR-L-OKMVK.yaml",
|
||||
"CZ-51-MAS-A-BSS.yaml",
|
||||
"CZ-51-MIM-L-MKM.yaml",
|
||||
"CZ-51-MIM-L-MKVK.yaml",
|
||||
"CZ-51-MIM-L-MKVNPR.yaml",
|
||||
"CZ-51-MIM-L-MKVPPR.yaml",
|
||||
"CZ-51-MIM-L-MSK.yaml"
|
||||
],
|
||||
"last_index": 499
|
||||
"last_index": 259
|
||||
}
|
||||
|
|
@ -192,3 +192,22 @@ wikidata_enrichment:
|
|||
- Q7075
|
||||
- Q41176
|
||||
located_in: Q63855
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T13:55:31.266468+00:00'
|
||||
source_url: https://katalog.mk-roudnice.cz
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: favicon_url
|
||||
claim_value: https://katalog.mk-roudnice.cz/themes/root/images/vufind-favicon.ico
|
||||
source_url: https://katalog.mk-roudnice.cz
|
||||
css_selector: '[document] > html > head > link:nth-of-type(7)'
|
||||
retrieved_on: '2025-12-25T13:55:31.266468+00:00'
|
||||
extraction_method: crawl4ai_link_rel
|
||||
favicon_type: image/x-icon
|
||||
favicon_sizes: ''
|
||||
summary:
|
||||
total_claims: 1
|
||||
has_primary_logo: false
|
||||
has_favicon: true
|
||||
has_og_image: false
|
||||
favicon_count: 1
|
||||
|
|
|
|||
|
|
@ -229,3 +229,22 @@ location:
|
|||
postal_code: 407 77
|
||||
street_address: T.G. Masaryka 638
|
||||
normalization_timestamp: '2025-12-09T10:54:19.705290+00:00'
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T13:56:35.796505+00:00'
|
||||
source_url: https://decin.tritius.cz/library/skat
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: favicon_url
|
||||
claim_value: https://decin.tritius.cz/apple-touch-icon-180x180.png
|
||||
source_url: https://decin.tritius.cz/library/skat
|
||||
css_selector: '[document] > html > head > link:nth-of-type(14)'
|
||||
retrieved_on: '2025-12-25T13:56:35.796505+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: 14
|
||||
|
|
|
|||
|
|
@ -182,3 +182,22 @@ wikidata_enrichment:
|
|||
instance_of:
|
||||
- Q7075
|
||||
located_in: Q143664
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T15:46:20.429989+00:00'
|
||||
source_url: https://katalog.slavoj.cz
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: favicon_url
|
||||
claim_value: https://katalog.slavoj.cz/themes/root/images/vufind-favicon.ico
|
||||
source_url: https://katalog.slavoj.cz
|
||||
css_selector: '[document] > html > head > link:nth-of-type(7)'
|
||||
retrieved_on: '2025-12-25T15:46:20.429989+00:00'
|
||||
extraction_method: crawl4ai_link_rel
|
||||
favicon_type: image/x-icon
|
||||
favicon_sizes: ''
|
||||
summary:
|
||||
total_claims: 1
|
||||
has_primary_logo: false
|
||||
has_favicon: true
|
||||
has_og_image: false
|
||||
favicon_count: 1
|
||||
|
|
|
|||
|
|
@ -32,13 +32,14 @@ ghcid:
|
|||
method: CH_ANNOTATOR_SOURCE
|
||||
ghcid_history:
|
||||
- ghcid: JP-13-CHU-L-SOL
|
||||
valid_from: "2025-12-10T09:44:02Z"
|
||||
valid_from: '2025-12-10T09:44:02Z'
|
||||
valid_to: null
|
||||
reason: "Corrected region code from JP-TO (abbreviation) to JP-13 (Tokyo) per ISO 3166-2:JP"
|
||||
reason: Corrected region code from JP-TO (abbreviation) to JP-13 (Tokyo) per ISO
|
||||
3166-2:JP
|
||||
- ghcid: JP-TO-CHU-L-SOL
|
||||
valid_from: null
|
||||
valid_to: "2025-12-10T09:44:02Z"
|
||||
reason: "Previous GHCID with incorrect region code"
|
||||
valid_to: '2025-12-10T09:44:02Z'
|
||||
reason: Previous GHCID with incorrect region code
|
||||
- ghcid: JP-TO-CHU-L-SOL
|
||||
ghcid_numeric: 5734815799153242372
|
||||
valid_from: '2025-12-06T23:38:57.776064+00:00'
|
||||
|
|
@ -96,8 +97,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: Shochiku Otani Library
|
||||
|
|
@ -151,3 +152,28 @@ location:
|
|||
geonames_id: 13353695
|
||||
geonames_name: Chūō
|
||||
feature_code: PPLA2
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T12:45:01.704325+00:00'
|
||||
source_url: http://www.shochiku.co.jp/shochiku-otani-toshokan
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: favicon_url
|
||||
claim_value: https://www.shochiku.co.jp/shochiku-otani-toshokan/wp-content/themes/otani2024/assets/images/favicon/apple-touch-icon-180x180.png
|
||||
source_url: http://www.shochiku.co.jp/shochiku-otani-toshokan
|
||||
css_selector: '[document] > html > head > link:nth-of-type(12)'
|
||||
retrieved_on: '2025-12-25T12:45:01.704325+00:00'
|
||||
extraction_method: crawl4ai_link_rel
|
||||
favicon_type: ''
|
||||
favicon_sizes: 180x180
|
||||
- claim_type: og_image_url
|
||||
claim_value: https://www.shochiku.co.jp/shochiku-otani-toshokan/wp-content/themes/otani2024/images/ogp.png
|
||||
source_url: http://www.shochiku.co.jp/shochiku-otani-toshokan
|
||||
css_selector: '[document] > html > head > meta:nth-of-type(11)'
|
||||
retrieved_on: '2025-12-25T12:45:01.704325+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
|
||||
|
|
|
|||
|
|
@ -152,3 +152,28 @@ location:
|
|||
geonames_id: 13353695
|
||||
geonames_name: Chūō
|
||||
feature_code: PPLA2
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T12:45:11.533645+00:00'
|
||||
source_url: http://www.toyokeizai.net
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: favicon_url
|
||||
claim_value: http://www.toyokeizai.net/apple-touch-icon.png?rd=202512040900
|
||||
source_url: http://www.toyokeizai.net
|
||||
css_selector: '[document] > html > head > link:nth-of-type(21)'
|
||||
retrieved_on: '2025-12-25T12:45:11.533645+00:00'
|
||||
extraction_method: crawl4ai_link_rel
|
||||
favicon_type: ''
|
||||
favicon_sizes: ''
|
||||
- claim_type: og_image_url
|
||||
claim_value: https://toyokeizai.net/common/images/v5/common/tkollogo_130th.jpg
|
||||
source_url: http://www.toyokeizai.net
|
||||
css_selector: '[document] > html > head > meta:nth-of-type(12)'
|
||||
retrieved_on: '2025-12-25T12:45:11.533645+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
|
||||
|
|
|
|||
|
|
@ -326,3 +326,22 @@ wikidata_enrichment:
|
|||
commons_category: Artizon Museum
|
||||
commons_gallery: Artizon Museum
|
||||
wikidata_image: Bridgestone Museum.jpg
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T12:45:21.521987+00:00'
|
||||
source_url: https://www.artizon.museum
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: favicon_url
|
||||
claim_value: https://www.artizon.museum/wp-content/themes/artizon_jp/images/favicon.ico
|
||||
source_url: https://www.artizon.museum
|
||||
css_selector: '[document] > html.cc--darkmode.show--consent > head > link'
|
||||
retrieved_on: '2025-12-25T12:45:21.521987+00:00'
|
||||
extraction_method: crawl4ai_link_rel
|
||||
favicon_type: ''
|
||||
favicon_sizes: 32x32
|
||||
summary:
|
||||
total_claims: 1
|
||||
has_primary_logo: false
|
||||
has_favicon: true
|
||||
has_og_image: false
|
||||
favicon_count: 1
|
||||
|
|
|
|||
|
|
@ -296,3 +296,30 @@ wikidata_enrichment:
|
|||
image: MOMAT FilmCenter.jpg
|
||||
commons_category: National Film Archive of Japan
|
||||
wikidata_image: MOMAT FilmCenter.jpg
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T13:55:35.159832+00:00'
|
||||
source_url: https://www.nfaj.go.jp
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: logo_url
|
||||
claim_value: https://www.nfaj.go.jp/wp-content/uploads/nfajlogo.png
|
||||
source_url: https://www.nfaj.go.jp
|
||||
css_selector: '#header > div.logo > a > img'
|
||||
retrieved_on: '2025-12-25T13:55:35.159832+00:00'
|
||||
extraction_method: crawl4ai_header_logo
|
||||
detection_confidence: high
|
||||
alt_text: 国立映画アーカイブ National Film Archive of JAPAN
|
||||
- claim_type: favicon_url
|
||||
claim_value: https://www.nfaj.go.jp/wp-content/uploads/cropped-logo1-1.png
|
||||
source_url: https://www.nfaj.go.jp
|
||||
css_selector: '[document] > html > head > link:nth-of-type(16)'
|
||||
retrieved_on: '2025-12-25T13:55:35.159832+00:00'
|
||||
extraction_method: crawl4ai_link_rel
|
||||
favicon_type: ''
|
||||
favicon_sizes: 32x32
|
||||
summary:
|
||||
total_claims: 2
|
||||
has_primary_logo: true
|
||||
has_favicon: true
|
||||
has_og_image: false
|
||||
favicon_count: 1
|
||||
|
|
|
|||
|
|
@ -32,13 +32,14 @@ ghcid:
|
|||
method: CH_ANNOTATOR_SOURCE
|
||||
ghcid_history:
|
||||
- ghcid: JP-13-CHU-M-SMG
|
||||
valid_from: "2025-12-10T09:44:02Z"
|
||||
valid_from: '2025-12-10T09:44:02Z'
|
||||
valid_to: null
|
||||
reason: "Corrected region code from JP-TO (abbreviation) to JP-13 (Tokyo) per ISO 3166-2:JP"
|
||||
reason: Corrected region code from JP-TO (abbreviation) to JP-13 (Tokyo) per ISO
|
||||
3166-2:JP
|
||||
- ghcid: JP-TO-CHU-M-SMG
|
||||
valid_from: null
|
||||
valid_to: "2025-12-10T09:44:02Z"
|
||||
reason: "Previous GHCID with incorrect region code"
|
||||
valid_to: '2025-12-10T09:44:02Z'
|
||||
reason: Previous GHCID with incorrect region code
|
||||
- ghcid: JP-TO-CHU-M-SMG
|
||||
ghcid_numeric: 10445667631050794321
|
||||
valid_from: '2025-12-06T23:38:32.997005+00:00'
|
||||
|
|
@ -96,8 +97,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: THE SEIKO MUSEUM GINZA
|
||||
|
|
@ -151,3 +152,20 @@ location:
|
|||
geonames_id: 13353695
|
||||
geonames_name: Chūō
|
||||
feature_code: PPLA2
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T13:55:42.427721+00:00'
|
||||
source_url: https://museum.seiko.co.jp
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: og_image_url
|
||||
claim_value: https://museum.seiko.co.jp/common/img/ogp.jpg
|
||||
source_url: https://museum.seiko.co.jp
|
||||
css_selector: '[document] > html.webkit.chrome > head > meta:nth-of-type(11)'
|
||||
retrieved_on: '2025-12-25T13:55:42.427721+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
|
||||
|
|
|
|||
|
|
@ -37,13 +37,14 @@ ghcid:
|
|||
method: CH_ANNOTATOR_SOURCE
|
||||
ghcid_history:
|
||||
- ghcid: JP-13-EDO-L-AGJCL
|
||||
valid_from: "2025-12-10T09:44:02Z"
|
||||
valid_from: '2025-12-10T09:44:02Z'
|
||||
valid_to: null
|
||||
reason: "Corrected region code from JP-TO (abbreviation) to JP-13 (Tokyo) per ISO 3166-2:JP"
|
||||
reason: Corrected region code from JP-TO (abbreviation) to JP-13 (Tokyo) per ISO
|
||||
3166-2:JP
|
||||
- ghcid: JP-TO-EDO-L-AGJCL
|
||||
valid_from: null
|
||||
valid_to: "2025-12-10T09:44:02Z"
|
||||
reason: "Previous GHCID with incorrect region code"
|
||||
valid_to: '2025-12-10T09:44:02Z'
|
||||
reason: Previous GHCID with incorrect region code
|
||||
- ghcid: JP-TO-EDO-L-AGJCL
|
||||
ghcid_numeric: 8511444997913181785
|
||||
valid_from: '2025-12-06T23:38:56.934641+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: Aikoku Gakuen Junior College Library
|
||||
|
|
@ -204,3 +205,28 @@ location:
|
|||
geonames_id: 1907124
|
||||
geonames_name: Edogawadai-higashi
|
||||
feature_code: PPL
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T13:55:55.069181+00:00'
|
||||
source_url: https://www.aikoku-jc.ac.jp/student/library
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: favicon_url
|
||||
claim_value: https://www.aikoku-jc.ac.jp/contents/wp-content/themes/aitan_re/image/apple-touch-icon.png
|
||||
source_url: https://www.aikoku-jc.ac.jp/student/library
|
||||
css_selector: '[document] > html > head > link:nth-of-type(4)'
|
||||
retrieved_on: '2025-12-25T13:55:55.069181+00:00'
|
||||
extraction_method: crawl4ai_link_rel
|
||||
favicon_type: ''
|
||||
favicon_sizes: ''
|
||||
- claim_type: og_image_url
|
||||
claim_value: https://www.aikoku-jc.ac.jp/contents/wp-content/themes/aitan_re/screenshot.jpg
|
||||
source_url: https://www.aikoku-jc.ac.jp/student/library
|
||||
css_selector: '[document] > html > head > meta:nth-of-type(13)'
|
||||
retrieved_on: '2025-12-25T13:55:55.069181+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
|
||||
|
|
|
|||
|
|
@ -37,13 +37,14 @@ ghcid:
|
|||
method: CH_ANNOTATOR_SOURCE
|
||||
ghcid_history:
|
||||
- ghcid: JP-13-EDO-L-ECCL
|
||||
valid_from: "2025-12-10T09:44:02Z"
|
||||
valid_from: '2025-12-10T09:44:02Z'
|
||||
valid_to: null
|
||||
reason: "Corrected region code from JP-TO (abbreviation) to JP-13 (Tokyo) per ISO 3166-2:JP"
|
||||
reason: Corrected region code from JP-TO (abbreviation) to JP-13 (Tokyo) per ISO
|
||||
3166-2:JP
|
||||
- ghcid: JP-TO-EDO-L-ECCL
|
||||
valid_from: null
|
||||
valid_to: "2025-12-10T09:44:02Z"
|
||||
reason: "Previous GHCID with incorrect region code"
|
||||
valid_to: '2025-12-10T09:44:02Z'
|
||||
reason: Previous GHCID with incorrect region code
|
||||
- ghcid: JP-TO-EDO-L-ECCL
|
||||
ghcid_numeric: 15426129734398471141
|
||||
valid_from: '2025-12-06T23:38:43.599591+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: Edogawa City Central Library
|
||||
|
|
@ -192,8 +193,9 @@ wikidata_enrichment:
|
|||
instance_of: &id004
|
||||
- id: Q7075
|
||||
label: library
|
||||
description: institution charged with the care of a collection of literary, musical, artistic, or reference materials,
|
||||
such as books, manuscripts, recordings, or films
|
||||
description: institution charged with the care of a collection of literary,
|
||||
musical, artistic, or reference materials, such as books, manuscripts, recordings,
|
||||
or films
|
||||
wikidata_instance_of: *id004
|
||||
wikidata_location:
|
||||
country: &id005
|
||||
|
|
@ -225,3 +227,23 @@ location:
|
|||
geonames_id: 1907124
|
||||
geonames_name: Edogawadai-higashi
|
||||
feature_code: PPL
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T13:56:06.495061+00:00'
|
||||
source_url: https://www.library.city.edogawa.tokyo.jp/toshow/introduction/html/edg_chuo.php
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: logo_url
|
||||
claim_value: https://www.library.city.edogawa.tokyo.jp/images/common/logo.gif
|
||||
source_url: https://www.library.city.edogawa.tokyo.jp/toshow/introduction/html/edg_chuo.php
|
||||
css_selector: '[document] > html > body > header > div.block-header > h1 > a >
|
||||
img'
|
||||
retrieved_on: '2025-12-25T13:56:06.495061+00:00'
|
||||
extraction_method: crawl4ai_header_logo
|
||||
detection_confidence: high
|
||||
alt_text: 江戸川区立図書館
|
||||
summary:
|
||||
total_claims: 1
|
||||
has_primary_logo: true
|
||||
has_favicon: false
|
||||
has_og_image: false
|
||||
favicon_count: 0
|
||||
|
|
|
|||
|
|
@ -205,3 +205,23 @@ wikidata_enrichment:
|
|||
wikidata_web:
|
||||
official_website: https://www.library.city.edogawa.tokyo.jp/TOSHOW/introduction/html/h_kasai.php
|
||||
wikidata_official_website: https://www.library.city.edogawa.tokyo.jp/TOSHOW/introduction/html/h_kasai.php
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T13:56:16.135120+00:00'
|
||||
source_url: https://www.library.city.edogawa.tokyo.jp/toshow/introduction/html/edg_h_kasai.php
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: logo_url
|
||||
claim_value: https://www.library.city.edogawa.tokyo.jp/images/common/logo.gif
|
||||
source_url: https://www.library.city.edogawa.tokyo.jp/toshow/introduction/html/edg_h_kasai.php
|
||||
css_selector: '[document] > html > body > header > div.block-header > h1 > a >
|
||||
img'
|
||||
retrieved_on: '2025-12-25T13:56:16.135120+00:00'
|
||||
extraction_method: crawl4ai_header_logo
|
||||
detection_confidence: high
|
||||
alt_text: 江戸川区立図書館
|
||||
summary:
|
||||
total_claims: 1
|
||||
has_primary_logo: true
|
||||
has_favicon: false
|
||||
has_og_image: false
|
||||
favicon_count: 0
|
||||
|
|
|
|||
|
|
@ -205,3 +205,23 @@ wikidata_enrichment:
|
|||
wikidata_web:
|
||||
official_website: https://www.library.city.edogawa.tokyo.jp/TOSHOW/introduction/html/kasai.php
|
||||
wikidata_official_website: https://www.library.city.edogawa.tokyo.jp/TOSHOW/introduction/html/kasai.php
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T13:56:26.276203+00:00'
|
||||
source_url: https://www.library.city.edogawa.tokyo.jp/toshow/introduction/html/edg_kasai.php
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: logo_url
|
||||
claim_value: https://www.library.city.edogawa.tokyo.jp/images/common/logo.gif
|
||||
source_url: https://www.library.city.edogawa.tokyo.jp/toshow/introduction/html/edg_kasai.php
|
||||
css_selector: '[document] > html > body > header > div.block-header > h1 > a >
|
||||
img'
|
||||
retrieved_on: '2025-12-25T13:56:26.276203+00:00'
|
||||
extraction_method: crawl4ai_header_logo
|
||||
detection_confidence: high
|
||||
alt_text: 江戸川区立図書館
|
||||
summary:
|
||||
total_claims: 1
|
||||
has_primary_logo: true
|
||||
has_favicon: false
|
||||
has_og_image: false
|
||||
favicon_count: 0
|
||||
|
|
|
|||
|
|
@ -205,3 +205,23 @@ wikidata_enrichment:
|
|||
wikidata_web:
|
||||
official_website: https://www.library.city.edogawa.tokyo.jp/TOSHOW/introduction/html/komatsu.php
|
||||
wikidata_official_website: https://www.library.city.edogawa.tokyo.jp/TOSHOW/introduction/html/komatsu.php
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T13:56:36.248575+00:00'
|
||||
source_url: https://www.library.city.edogawa.tokyo.jp/toshow/introduction/html/edg_komatsu.php
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: logo_url
|
||||
claim_value: https://www.library.city.edogawa.tokyo.jp/images/common/logo.gif
|
||||
source_url: https://www.library.city.edogawa.tokyo.jp/toshow/introduction/html/edg_komatsu.php
|
||||
css_selector: '[document] > html > body > header > div.block-header > h1 > a >
|
||||
img'
|
||||
retrieved_on: '2025-12-25T13:56:36.248575+00:00'
|
||||
extraction_method: crawl4ai_header_logo
|
||||
detection_confidence: high
|
||||
alt_text: 江戸川区立図書館
|
||||
summary:
|
||||
total_claims: 1
|
||||
has_primary_logo: true
|
||||
has_favicon: false
|
||||
has_og_image: false
|
||||
favicon_count: 0
|
||||
|
|
|
|||
|
|
@ -212,3 +212,23 @@ wikidata_enrichment:
|
|||
wikidata_web:
|
||||
official_website: https://www.library.city.edogawa.tokyo.jp/toshow/introduction/html/koiwa.php
|
||||
wikidata_official_website: https://www.library.city.edogawa.tokyo.jp/toshow/introduction/html/koiwa.php
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T13:56:46.131530+00:00'
|
||||
source_url: https://www.library.city.edogawa.tokyo.jp/toshow/introduction/html/edg_koiwa.php
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: logo_url
|
||||
claim_value: https://www.library.city.edogawa.tokyo.jp/images/common/logo.gif
|
||||
source_url: https://www.library.city.edogawa.tokyo.jp/toshow/introduction/html/edg_koiwa.php
|
||||
css_selector: '[document] > html > body > header > div.block-header > h1 > a >
|
||||
img'
|
||||
retrieved_on: '2025-12-25T13:56:46.131530+00:00'
|
||||
extraction_method: crawl4ai_header_logo
|
||||
detection_confidence: high
|
||||
alt_text: 江戸川区立図書館
|
||||
summary:
|
||||
total_claims: 1
|
||||
has_primary_logo: true
|
||||
has_favicon: false
|
||||
has_og_image: false
|
||||
favicon_count: 0
|
||||
|
|
|
|||
|
|
@ -205,3 +205,23 @@ wikidata_enrichment:
|
|||
wikidata_web:
|
||||
official_website: https://www.library.city.edogawa.tokyo.jp/TOSHOW/introduction/html/matsue.php
|
||||
wikidata_official_website: https://www.library.city.edogawa.tokyo.jp/TOSHOW/introduction/html/matsue.php
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T13:56:56.467101+00:00'
|
||||
source_url: https://www.library.city.edogawa.tokyo.jp/toshow/introduction/html/edg_matsue.php
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: logo_url
|
||||
claim_value: https://www.library.city.edogawa.tokyo.jp/images/common/logo.gif
|
||||
source_url: https://www.library.city.edogawa.tokyo.jp/toshow/introduction/html/edg_matsue.php
|
||||
css_selector: '[document] > html > body > header > div.block-header > h1 > a >
|
||||
img'
|
||||
retrieved_on: '2025-12-25T13:56:56.467101+00:00'
|
||||
extraction_method: crawl4ai_header_logo
|
||||
detection_confidence: high
|
||||
alt_text: 江戸川区立図書館
|
||||
summary:
|
||||
total_claims: 1
|
||||
has_primary_logo: true
|
||||
has_favicon: false
|
||||
has_og_image: false
|
||||
favicon_count: 0
|
||||
|
|
|
|||
|
|
@ -205,3 +205,23 @@ wikidata_enrichment:
|
|||
wikidata_web:
|
||||
official_website: https://www.library.city.edogawa.tokyo.jp/TOSHOW/introduction/html/n_kasai.php
|
||||
wikidata_official_website: https://www.library.city.edogawa.tokyo.jp/TOSHOW/introduction/html/n_kasai.php
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T13:57:07.187504+00:00'
|
||||
source_url: https://www.library.city.edogawa.tokyo.jp/toshow/introduction/html/edg_n_kasai.php
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: logo_url
|
||||
claim_value: https://www.library.city.edogawa.tokyo.jp/images/common/logo.gif
|
||||
source_url: https://www.library.city.edogawa.tokyo.jp/toshow/introduction/html/edg_n_kasai.php
|
||||
css_selector: '[document] > html > body > header > div.block-header > h1 > a >
|
||||
img'
|
||||
retrieved_on: '2025-12-25T13:57:07.187504+00:00'
|
||||
extraction_method: crawl4ai_header_logo
|
||||
detection_confidence: high
|
||||
alt_text: 江戸川区立図書館
|
||||
summary:
|
||||
total_claims: 1
|
||||
has_primary_logo: true
|
||||
has_favicon: false
|
||||
has_og_image: false
|
||||
favicon_count: 0
|
||||
|
|
|
|||
|
|
@ -205,3 +205,23 @@ wikidata_enrichment:
|
|||
wikidata_web:
|
||||
official_website: https://www.library.city.edogawa.tokyo.jp/TOSHOW/introduction/html/seishin.php
|
||||
wikidata_official_website: https://www.library.city.edogawa.tokyo.jp/TOSHOW/introduction/html/seishin.php
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T13:57:17.467467+00:00'
|
||||
source_url: https://www.library.city.edogawa.tokyo.jp/toshow/introduction/html/edg_seishin.php
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: logo_url
|
||||
claim_value: https://www.library.city.edogawa.tokyo.jp/images/common/logo.gif
|
||||
source_url: https://www.library.city.edogawa.tokyo.jp/toshow/introduction/html/edg_seishin.php
|
||||
css_selector: '[document] > html > body > header > div.block-header > h1 > a >
|
||||
img'
|
||||
retrieved_on: '2025-12-25T13:57:17.467467+00:00'
|
||||
extraction_method: crawl4ai_header_logo
|
||||
detection_confidence: high
|
||||
alt_text: 江戸川区立図書館
|
||||
summary:
|
||||
total_claims: 1
|
||||
has_primary_logo: true
|
||||
has_favicon: false
|
||||
has_og_image: false
|
||||
favicon_count: 0
|
||||
|
|
|
|||
|
|
@ -205,3 +205,23 @@ wikidata_enrichment:
|
|||
wikidata_web:
|
||||
official_website: http://www.shinozaki-bunkaplaza.com/library/
|
||||
wikidata_official_website: http://www.shinozaki-bunkaplaza.com/library/
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T13:57:28.209619+00:00'
|
||||
source_url: https://www.library.city.edogawa.tokyo.jp/toshow/introduction/html/edg_shino.php
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: logo_url
|
||||
claim_value: https://www.library.city.edogawa.tokyo.jp/images/common/logo.gif
|
||||
source_url: https://www.library.city.edogawa.tokyo.jp/toshow/introduction/html/edg_shino.php
|
||||
css_selector: '[document] > html > body > header > div.block-header > h1 > a >
|
||||
img'
|
||||
retrieved_on: '2025-12-25T13:57:28.209619+00:00'
|
||||
extraction_method: crawl4ai_header_logo
|
||||
detection_confidence: high
|
||||
alt_text: 江戸川区立図書館
|
||||
summary:
|
||||
total_claims: 1
|
||||
has_primary_logo: true
|
||||
has_favicon: false
|
||||
has_og_image: false
|
||||
favicon_count: 0
|
||||
|
|
|
|||
|
|
@ -205,3 +205,23 @@ wikidata_enrichment:
|
|||
wikidata_web:
|
||||
official_website: https://www.library.city.edogawa.tokyo.jp/TOSHOW/introduction/html/tobu.php
|
||||
wikidata_official_website: https://www.library.city.edogawa.tokyo.jp/TOSHOW/introduction/html/tobu.php
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T13:57:48.438298+00:00'
|
||||
source_url: https://www.library.city.edogawa.tokyo.jp/toshow/introduction/html/edg_tobu.php
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: logo_url
|
||||
claim_value: https://www.library.city.edogawa.tokyo.jp/images/common/logo.gif
|
||||
source_url: https://www.library.city.edogawa.tokyo.jp/toshow/introduction/html/edg_tobu.php
|
||||
css_selector: '[document] > html > body > header > div.block-header > h1 > a >
|
||||
img'
|
||||
retrieved_on: '2025-12-25T13:57:48.438298+00:00'
|
||||
extraction_method: crawl4ai_header_logo
|
||||
detection_confidence: high
|
||||
alt_text: 江戸川区立図書館
|
||||
summary:
|
||||
total_claims: 1
|
||||
has_primary_logo: true
|
||||
has_favicon: false
|
||||
has_og_image: false
|
||||
favicon_count: 0
|
||||
|
|
|
|||
|
|
@ -205,3 +205,23 @@ wikidata_enrichment:
|
|||
wikidata_web:
|
||||
official_website: https://www.library.city.edogawa.tokyo.jp/TOSHOW/introduction/html/shishi.php
|
||||
wikidata_official_website: https://www.library.city.edogawa.tokyo.jp/TOSHOW/introduction/html/shishi.php
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T13:57:57.865530+00:00'
|
||||
source_url: https://www.library.city.edogawa.tokyo.jp/toshow/introduction/html/edg_shishi.php
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: logo_url
|
||||
claim_value: https://www.library.city.edogawa.tokyo.jp/images/common/logo.gif
|
||||
source_url: https://www.library.city.edogawa.tokyo.jp/toshow/introduction/html/edg_shishi.php
|
||||
css_selector: '[document] > html > body > header > div.block-header > h1 > a >
|
||||
img'
|
||||
retrieved_on: '2025-12-25T13:57:57.865530+00:00'
|
||||
extraction_method: crawl4ai_header_logo
|
||||
detection_confidence: high
|
||||
alt_text: 江戸川区立図書館
|
||||
summary:
|
||||
total_claims: 1
|
||||
has_primary_logo: true
|
||||
has_favicon: false
|
||||
has_og_image: false
|
||||
favicon_count: 0
|
||||
|
|
|
|||
|
|
@ -157,3 +157,20 @@ location:
|
|||
geonames_id: 1907124
|
||||
geonames_name: Edogawadai-higashi
|
||||
feature_code: PPL
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T13:58:19.011490+00:00'
|
||||
source_url: https://www.tcw.ac.jp
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: og_image_url
|
||||
claim_value: https://www.tcw.ac.jp/wp-content/uploads/2024/12/TOP2026.jpg
|
||||
source_url: https://www.tcw.ac.jp
|
||||
css_selector: '[document] > html > head > meta:nth-of-type(8)'
|
||||
retrieved_on: '2025-12-25T13:58:19.011490+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
|
||||
|
|
|
|||
|
|
@ -359,3 +359,32 @@ youtube_enrichment:
|
|||
comments: []
|
||||
thumbnail_url: https://i.ytimg.com/vi/Am3a8LqzHbw/hqdefault.jpg
|
||||
status: SUCCESS
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T14:01:22.469144+00:00'
|
||||
source_url: https://www.chikahaku.jp
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: logo_url
|
||||
claim_value: https://www.chikahaku.jp/images/logo-01a_v2.svg
|
||||
source_url: https://www.chikahaku.jp
|
||||
css_selector: '#top > div.wrapper > header > section.header-sp.fixed-top > div.container-fluid.global-link
|
||||
> div.row.justify-content-between > div.col-6 > a > img.img-fluid.w-75'
|
||||
retrieved_on: '2025-12-25T14:01:22.469144+00:00'
|
||||
extraction_method: crawl4ai_header_logo
|
||||
detection_confidence: high
|
||||
alt_text: ''
|
||||
- claim_type: favicon_url
|
||||
claim_value: https://www.chikahaku.jp/images/apple-icon-180x180.png
|
||||
source_url: https://www.chikahaku.jp
|
||||
css_selector: '[document] > html.fontawesome-i2svg-active.fontawesome-i2svg-complete
|
||||
> head > link:nth-of-type(2)'
|
||||
retrieved_on: '2025-12-25T14:01:22.469144+00:00'
|
||||
extraction_method: crawl4ai_link_rel
|
||||
favicon_type: ''
|
||||
favicon_sizes: 180x180
|
||||
summary:
|
||||
total_claims: 2
|
||||
has_primary_logo: true
|
||||
has_favicon: true
|
||||
has_og_image: false
|
||||
favicon_count: 2
|
||||
|
|
|
|||
|
|
@ -37,13 +37,14 @@ ghcid:
|
|||
method: CH_ANNOTATOR_SOURCE
|
||||
ghcid_history:
|
||||
- ghcid: JP-13-ETO-L-TPUHSL
|
||||
valid_from: "2025-12-10T09:44:02Z"
|
||||
valid_from: '2025-12-10T09:44:02Z'
|
||||
valid_to: null
|
||||
reason: "Corrected region code from JP-TO (abbreviation) to JP-13 (Tokyo) per ISO 3166-2:JP"
|
||||
reason: Corrected region code from JP-TO (abbreviation) to JP-13 (Tokyo) per ISO
|
||||
3166-2:JP
|
||||
- ghcid: JP-TO-ETO-L-TPUHSL
|
||||
valid_from: null
|
||||
valid_to: "2025-12-10T09:44:02Z"
|
||||
reason: "Previous GHCID with incorrect region code"
|
||||
valid_to: '2025-12-10T09:44:02Z'
|
||||
reason: Previous GHCID with incorrect region code
|
||||
- ghcid: JP-TO-ETO-L-TPUHSL
|
||||
ghcid_numeric: 7835861160977250323
|
||||
valid_from: '2025-12-06T23:38:59.908091+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: Tokyo Professional University of Health Sciences Library
|
||||
|
|
@ -182,7 +183,8 @@ wikidata_enrichment:
|
|||
part_of:
|
||||
id: Q97162036
|
||||
label: Tokyo Professional University of Health Sciences
|
||||
description: professional and vocational university in Kōtō Ward, Tōkyō Metropolis, Japan
|
||||
description: professional and vocational university in Kōtō Ward, Tōkyō Metropolis,
|
||||
Japan
|
||||
wikidata_web:
|
||||
official_website: https://lib-tpu.opac.jp/opac/Top
|
||||
wikidata_official_website: https://lib-tpu.opac.jp/opac/Top
|
||||
|
|
@ -204,3 +206,28 @@ location:
|
|||
geonames_id: 1852663
|
||||
geonames_name: Seto
|
||||
feature_code: PPLA2
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T14:01:40.304002+00:00'
|
||||
source_url: https://lib-tpu.opac.jp/opac/Top
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: favicon_url
|
||||
claim_value: https://lib-tpu.opac.jp/common/images/op4-favicon.ico
|
||||
source_url: https://lib-tpu.opac.jp/opac/Top
|
||||
css_selector: '[document] > html > head > link'
|
||||
retrieved_on: '2025-12-25T14:01:40.304002+00:00'
|
||||
extraction_method: crawl4ai_link_rel
|
||||
favicon_type: image/vnd.microsoft.icon
|
||||
favicon_sizes: ''
|
||||
- claim_type: og_image_url
|
||||
claim_value: https://lib-tpu.opac.jp/common/images/ogp-image.jpg
|
||||
source_url: https://lib-tpu.opac.jp/opac/Top
|
||||
css_selector: '[document] > html > head > meta:nth-of-type(12)'
|
||||
retrieved_on: '2025-12-25T14:01:40.304002+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
|
||||
|
|
|
|||
|
|
@ -205,3 +205,30 @@ wikidata_enrichment:
|
|||
wikidata_web:
|
||||
official_website: http://library.city.fuchu.tokyo.jp/about/map11.html
|
||||
wikidata_official_website: http://library.city.fuchu.tokyo.jp/about/map11.html
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T14:02:17.698885+00:00'
|
||||
source_url: https://library.city.fuchu.tokyo.jp/lib_info/katamachi.html
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: logo_url
|
||||
claim_value: https://library.city.fuchu.tokyo.jp/themes/lib_theme/images/logo.png
|
||||
source_url: https://library.city.fuchu.tokyo.jp/lib_info/katamachi.html
|
||||
css_selector: '#header_logo > a.active > img'
|
||||
retrieved_on: '2025-12-25T14:02:17.698885+00:00'
|
||||
extraction_method: crawl4ai_header_logo
|
||||
detection_confidence: high
|
||||
alt_text: 府中市立図書館
|
||||
- claim_type: favicon_url
|
||||
claim_value: https://library.city.fuchu.tokyo.jp/themes/lib_theme/favicon.ico
|
||||
source_url: https://library.city.fuchu.tokyo.jp/lib_info/katamachi.html
|
||||
css_selector: '[document] > html > head.notranslate > link'
|
||||
retrieved_on: '2025-12-25T14:02:17.698885+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
|
||||
|
|
|
|||
|
|
@ -205,3 +205,30 @@ wikidata_enrichment:
|
|||
wikidata_web:
|
||||
official_website: http://library.city.fuchu.tokyo.jp/about/map07.html
|
||||
wikidata_official_website: http://library.city.fuchu.tokyo.jp/about/map07.html
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T14:02:28.813880+00:00'
|
||||
source_url: https://library.city.fuchu.tokyo.jp/lib_info/koremasa.html
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: logo_url
|
||||
claim_value: https://library.city.fuchu.tokyo.jp/themes/lib_theme/images/logo.png
|
||||
source_url: https://library.city.fuchu.tokyo.jp/lib_info/koremasa.html
|
||||
css_selector: '#header_logo > a.active > img'
|
||||
retrieved_on: '2025-12-25T14:02:28.813880+00:00'
|
||||
extraction_method: crawl4ai_header_logo
|
||||
detection_confidence: high
|
||||
alt_text: 府中市立図書館
|
||||
- claim_type: favicon_url
|
||||
claim_value: https://library.city.fuchu.tokyo.jp/themes/lib_theme/favicon.ico
|
||||
source_url: https://library.city.fuchu.tokyo.jp/lib_info/koremasa.html
|
||||
css_selector: '[document] > html > head.notranslate > link'
|
||||
retrieved_on: '2025-12-25T14:02:28.813880+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
|
||||
|
|
|
|||
|
|
@ -205,3 +205,30 @@ wikidata_enrichment:
|
|||
wikidata_web:
|
||||
official_website: http://library.city.fuchu.tokyo.jp/about/map12.html
|
||||
wikidata_official_website: http://library.city.fuchu.tokyo.jp/about/map12.html
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T14:02:39.848691+00:00'
|
||||
source_url: https://library.city.fuchu.tokyo.jp/lib_info/miyamachi.html
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: logo_url
|
||||
claim_value: https://library.city.fuchu.tokyo.jp/themes/lib_theme/images/logo.png
|
||||
source_url: https://library.city.fuchu.tokyo.jp/lib_info/miyamachi.html
|
||||
css_selector: '#header_logo > a.active > img'
|
||||
retrieved_on: '2025-12-25T14:02:39.848691+00:00'
|
||||
extraction_method: crawl4ai_header_logo
|
||||
detection_confidence: high
|
||||
alt_text: 府中市立図書館
|
||||
- claim_type: favicon_url
|
||||
claim_value: https://library.city.fuchu.tokyo.jp/themes/lib_theme/favicon.ico
|
||||
source_url: https://library.city.fuchu.tokyo.jp/lib_info/miyamachi.html
|
||||
css_selector: '[document] > html > head.notranslate > link'
|
||||
retrieved_on: '2025-12-25T14:02:39.848691+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
|
||||
|
|
|
|||
|
|
@ -205,3 +205,30 @@ wikidata_enrichment:
|
|||
wikidata_web:
|
||||
official_website: http://library.city.fuchu.tokyo.jp/about/map08.html
|
||||
wikidata_official_website: http://library.city.fuchu.tokyo.jp/about/map08.html
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T14:02:49.647654+00:00'
|
||||
source_url: https://library.city.fuchu.tokyo.jp/lib_info/momijigaoka.html
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: logo_url
|
||||
claim_value: https://library.city.fuchu.tokyo.jp/themes/lib_theme/images/logo.png
|
||||
source_url: https://library.city.fuchu.tokyo.jp/lib_info/momijigaoka.html
|
||||
css_selector: '#header_logo > a.active > img'
|
||||
retrieved_on: '2025-12-25T14:02:49.647654+00:00'
|
||||
extraction_method: crawl4ai_header_logo
|
||||
detection_confidence: high
|
||||
alt_text: 府中市立図書館
|
||||
- claim_type: favicon_url
|
||||
claim_value: https://library.city.fuchu.tokyo.jp/themes/lib_theme/favicon.ico
|
||||
source_url: https://library.city.fuchu.tokyo.jp/lib_info/momijigaoka.html
|
||||
css_selector: '[document] > html > head.notranslate > link'
|
||||
retrieved_on: '2025-12-25T14:02:49.647654+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
|
||||
|
|
|
|||
|
|
@ -205,3 +205,30 @@ wikidata_enrichment:
|
|||
wikidata_web:
|
||||
official_website: http://library.city.fuchu.tokyo.jp/about/map04.html
|
||||
wikidata_official_website: http://library.city.fuchu.tokyo.jp/about/map04.html
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T14:03:00.895034+00:00'
|
||||
source_url: https://library.city.fuchu.tokyo.jp/lib_info/musashidai.html
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: logo_url
|
||||
claim_value: https://library.city.fuchu.tokyo.jp/themes/lib_theme/images/logo.png
|
||||
source_url: https://library.city.fuchu.tokyo.jp/lib_info/musashidai.html
|
||||
css_selector: '#header_logo > a.active > img'
|
||||
retrieved_on: '2025-12-25T14:03:00.895034+00:00'
|
||||
extraction_method: crawl4ai_header_logo
|
||||
detection_confidence: high
|
||||
alt_text: 府中市立図書館
|
||||
- claim_type: favicon_url
|
||||
claim_value: https://library.city.fuchu.tokyo.jp/themes/lib_theme/favicon.ico
|
||||
source_url: https://library.city.fuchu.tokyo.jp/lib_info/musashidai.html
|
||||
css_selector: '[document] > html > head.notranslate > link'
|
||||
retrieved_on: '2025-12-25T14:03:00.895034+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
|
||||
|
|
|
|||
|
|
@ -205,3 +205,30 @@ wikidata_enrichment:
|
|||
wikidata_web:
|
||||
official_website: http://library.city.fuchu.tokyo.jp/about/map03.html
|
||||
wikidata_official_website: http://library.city.fuchu.tokyo.jp/about/map03.html
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T14:03:11.066954+00:00'
|
||||
source_url: https://library.city.fuchu.tokyo.jp/lib_info/nishifu.html
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: logo_url
|
||||
claim_value: https://library.city.fuchu.tokyo.jp/themes/lib_theme/images/logo.png
|
||||
source_url: https://library.city.fuchu.tokyo.jp/lib_info/nishifu.html
|
||||
css_selector: '#header_logo > a.active > img'
|
||||
retrieved_on: '2025-12-25T14:03:11.066954+00:00'
|
||||
extraction_method: crawl4ai_header_logo
|
||||
detection_confidence: high
|
||||
alt_text: 府中市立図書館
|
||||
- claim_type: favicon_url
|
||||
claim_value: https://library.city.fuchu.tokyo.jp/themes/lib_theme/favicon.ico
|
||||
source_url: https://library.city.fuchu.tokyo.jp/lib_info/nishifu.html
|
||||
css_selector: '[document] > html > head.notranslate > link'
|
||||
retrieved_on: '2025-12-25T14:03:11.066954+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
|
||||
|
|
|
|||
|
|
@ -205,3 +205,30 @@ wikidata_enrichment:
|
|||
wikidata_web:
|
||||
official_website: http://library.city.fuchu.tokyo.jp/about/map10.html
|
||||
wikidata_official_website: http://library.city.fuchu.tokyo.jp/about/map10.html
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T14:03:22.606545+00:00'
|
||||
source_url: https://library.city.fuchu.tokyo.jp/lib_info/oshitate.html
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: logo_url
|
||||
claim_value: https://library.city.fuchu.tokyo.jp/themes/lib_theme/images/logo.png
|
||||
source_url: https://library.city.fuchu.tokyo.jp/lib_info/oshitate.html
|
||||
css_selector: '#header_logo > a.active > img'
|
||||
retrieved_on: '2025-12-25T14:03:22.606545+00:00'
|
||||
extraction_method: crawl4ai_header_logo
|
||||
detection_confidence: high
|
||||
alt_text: 府中市立図書館
|
||||
- claim_type: favicon_url
|
||||
claim_value: https://library.city.fuchu.tokyo.jp/themes/lib_theme/favicon.ico
|
||||
source_url: https://library.city.fuchu.tokyo.jp/lib_info/oshitate.html
|
||||
css_selector: '[document] > html > head.notranslate > link'
|
||||
retrieved_on: '2025-12-25T14:03:22.606545+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
|
||||
|
|
|
|||
|
|
@ -205,3 +205,30 @@ wikidata_enrichment:
|
|||
wikidata_web:
|
||||
official_website: http://library.city.fuchu.tokyo.jp/about/map05.html
|
||||
wikidata_official_website: http://library.city.fuchu.tokyo.jp/about/map05.html
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T14:03:34.721855+00:00'
|
||||
source_url: https://library.city.fuchu.tokyo.jp/lib_info/sinmachi.html
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: logo_url
|
||||
claim_value: https://library.city.fuchu.tokyo.jp/themes/lib_theme/images/logo.png
|
||||
source_url: https://library.city.fuchu.tokyo.jp/lib_info/sinmachi.html
|
||||
css_selector: '#header_logo > a.active > img'
|
||||
retrieved_on: '2025-12-25T14:03:34.721855+00:00'
|
||||
extraction_method: crawl4ai_header_logo
|
||||
detection_confidence: high
|
||||
alt_text: 府中市立図書館
|
||||
- claim_type: favicon_url
|
||||
claim_value: https://library.city.fuchu.tokyo.jp/themes/lib_theme/favicon.ico
|
||||
source_url: https://library.city.fuchu.tokyo.jp/lib_info/sinmachi.html
|
||||
css_selector: '[document] > html > head.notranslate > link'
|
||||
retrieved_on: '2025-12-25T14:03:34.721855+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
|
||||
|
|
|
|||
|
|
@ -205,3 +205,30 @@ wikidata_enrichment:
|
|||
wikidata_web:
|
||||
official_website: http://library.city.fuchu.tokyo.jp/about/map02.html
|
||||
wikidata_official_website: http://library.city.fuchu.tokyo.jp/about/map02.html
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T14:03:45.061892+00:00'
|
||||
source_url: https://library.city.fuchu.tokyo.jp/lib_info/shiraitodai.html
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: logo_url
|
||||
claim_value: https://library.city.fuchu.tokyo.jp/themes/lib_theme/images/logo.png
|
||||
source_url: https://library.city.fuchu.tokyo.jp/lib_info/shiraitodai.html
|
||||
css_selector: '#header_logo > a.active > img'
|
||||
retrieved_on: '2025-12-25T14:03:45.061892+00:00'
|
||||
extraction_method: crawl4ai_header_logo
|
||||
detection_confidence: high
|
||||
alt_text: 府中市立図書館
|
||||
- claim_type: favicon_url
|
||||
claim_value: https://library.city.fuchu.tokyo.jp/themes/lib_theme/favicon.ico
|
||||
source_url: https://library.city.fuchu.tokyo.jp/lib_info/shiraitodai.html
|
||||
css_selector: '[document] > html > head.notranslate > link'
|
||||
retrieved_on: '2025-12-25T14:03:45.061892+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
|
||||
|
|
|
|||
|
|
@ -205,3 +205,30 @@ wikidata_enrichment:
|
|||
wikidata_web:
|
||||
official_website: http://library.city.fuchu.tokyo.jp/about/map13.html
|
||||
wikidata_official_website: http://library.city.fuchu.tokyo.jp/about/map13.html
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T14:03:54.207190+00:00'
|
||||
source_url: https://library.city.fuchu.tokyo.jp/lib_info/gakushu.html
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: logo_url
|
||||
claim_value: https://library.city.fuchu.tokyo.jp/themes/lib_theme/images/logo.png
|
||||
source_url: https://library.city.fuchu.tokyo.jp/lib_info/gakushu.html
|
||||
css_selector: '#header_logo > a.active > img'
|
||||
retrieved_on: '2025-12-25T14:03:54.207190+00:00'
|
||||
extraction_method: crawl4ai_header_logo
|
||||
detection_confidence: high
|
||||
alt_text: 府中市立図書館
|
||||
- claim_type: favicon_url
|
||||
claim_value: https://library.city.fuchu.tokyo.jp/themes/lib_theme/favicon.ico
|
||||
source_url: https://library.city.fuchu.tokyo.jp/lib_info/gakushu.html
|
||||
css_selector: '[document] > html > head.notranslate > link'
|
||||
retrieved_on: '2025-12-25T14:03:54.207190+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
|
||||
|
|
|
|||
|
|
@ -205,3 +205,30 @@ wikidata_enrichment:
|
|||
wikidata_web:
|
||||
official_website: http://library.city.fuchu.tokyo.jp/about/map06.html
|
||||
wikidata_official_website: http://library.city.fuchu.tokyo.jp/about/map06.html
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T14:04:01.969737+00:00'
|
||||
source_url: https://library.city.fuchu.tokyo.jp/lib_info/sumiyoshi.html
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: logo_url
|
||||
claim_value: https://library.city.fuchu.tokyo.jp/themes/lib_theme/images/logo.png
|
||||
source_url: https://library.city.fuchu.tokyo.jp/lib_info/sumiyoshi.html
|
||||
css_selector: '#header_logo > a.active > img'
|
||||
retrieved_on: '2025-12-25T14:04:01.969737+00:00'
|
||||
extraction_method: crawl4ai_header_logo
|
||||
detection_confidence: high
|
||||
alt_text: 府中市立図書館
|
||||
- claim_type: favicon_url
|
||||
claim_value: https://library.city.fuchu.tokyo.jp/themes/lib_theme/favicon.ico
|
||||
source_url: https://library.city.fuchu.tokyo.jp/lib_info/sumiyoshi.html
|
||||
css_selector: '[document] > html > head.notranslate > link'
|
||||
retrieved_on: '2025-12-25T14:04:01.969737+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
|
||||
|
|
|
|||
|
|
@ -205,3 +205,30 @@ wikidata_enrichment:
|
|||
wikidata_web:
|
||||
official_website: http://library.city.fuchu.tokyo.jp/about/map09.html
|
||||
wikidata_official_website: http://library.city.fuchu.tokyo.jp/about/map09.html
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T14:04:12.447683+00:00'
|
||||
source_url: https://library.city.fuchu.tokyo.jp/lib_info/yotsuya.html
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: logo_url
|
||||
claim_value: https://library.city.fuchu.tokyo.jp/themes/lib_theme/images/logo.png
|
||||
source_url: https://library.city.fuchu.tokyo.jp/lib_info/yotsuya.html
|
||||
css_selector: '#header_logo > a.active > img'
|
||||
retrieved_on: '2025-12-25T14:04:12.447683+00:00'
|
||||
extraction_method: crawl4ai_header_logo
|
||||
detection_confidence: high
|
||||
alt_text: 府中市立図書館
|
||||
- claim_type: favicon_url
|
||||
claim_value: https://library.city.fuchu.tokyo.jp/themes/lib_theme/favicon.ico
|
||||
source_url: https://library.city.fuchu.tokyo.jp/lib_info/yotsuya.html
|
||||
css_selector: '[document] > html > head.notranslate > link'
|
||||
retrieved_on: '2025-12-25T14:04:12.447683+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
|
||||
|
|
|
|||
|
|
@ -205,3 +205,30 @@ wikidata_enrichment:
|
|||
wikidata_web:
|
||||
official_website: http://library.city.fuchu.tokyo.jp/
|
||||
wikidata_official_website: http://library.city.fuchu.tokyo.jp/
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T14:04:22.535021+00:00'
|
||||
source_url: https://library.city.fuchu.tokyo.jp
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: logo_url
|
||||
claim_value: https://library.city.fuchu.tokyo.jp/themes/lib_theme/images/logo.png
|
||||
source_url: https://library.city.fuchu.tokyo.jp
|
||||
css_selector: '#header_logo > a.active > img'
|
||||
retrieved_on: '2025-12-25T14:04:22.535021+00:00'
|
||||
extraction_method: crawl4ai_header_logo
|
||||
detection_confidence: high
|
||||
alt_text: 府中市立図書館
|
||||
- claim_type: favicon_url
|
||||
claim_value: https://library.city.fuchu.tokyo.jp/themes/lib_theme/favicon.ico
|
||||
source_url: https://library.city.fuchu.tokyo.jp
|
||||
css_selector: '[document] > html > head.notranslate > link'
|
||||
retrieved_on: '2025-12-25T14:04:22.535021+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
|
||||
|
|
|
|||
|
|
@ -152,3 +152,28 @@ location:
|
|||
geonames_id: 11611632
|
||||
geonames_name: Fuchū
|
||||
feature_code: PPLA2
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T14:04:31.795986+00:00'
|
||||
source_url: https://www.tama-100.or.jp/category_list.php?frmCd=5-0-0-0-0
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: favicon_url
|
||||
claim_value: https://www.tama-100.or.jp/css/img/apple-touch-icon.png
|
||||
source_url: https://www.tama-100.or.jp/category_list.php?frmCd=5-0-0-0-0
|
||||
css_selector: '[document] > html > head > link:nth-of-type(6)'
|
||||
retrieved_on: '2025-12-25T14:04:31.795986+00:00'
|
||||
extraction_method: crawl4ai_link_rel
|
||||
favicon_type: ''
|
||||
favicon_sizes: 180x180
|
||||
- claim_type: og_image_url
|
||||
claim_value: https://www.tama-100.or.jp/design_img/og_image.png
|
||||
source_url: https://www.tama-100.or.jp/category_list.php?frmCd=5-0-0-0-0
|
||||
css_selector: '[document] > html > head > meta:nth-of-type(6)'
|
||||
retrieved_on: '2025-12-25T14:04:31.795986+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
|
||||
|
|
|
|||
|
|
@ -41,13 +41,14 @@ ghcid:
|
|||
method: CH_ANNOTATOR_SOURCE
|
||||
ghcid_history:
|
||||
- ghcid: JP-13-FUC-L-TUFSL
|
||||
valid_from: "2025-12-10T09:44:02Z"
|
||||
valid_from: '2025-12-10T09:44:02Z'
|
||||
valid_to: null
|
||||
reason: "Corrected region code from JP-TO (abbreviation) to JP-13 (Tokyo) per ISO 3166-2:JP"
|
||||
reason: Corrected region code from JP-TO (abbreviation) to JP-13 (Tokyo) per ISO
|
||||
3166-2:JP
|
||||
- ghcid: JP-TO-FUC-L-TUFSL
|
||||
valid_from: null
|
||||
valid_to: "2025-12-10T09:44:02Z"
|
||||
reason: "Previous GHCID with incorrect region code"
|
||||
valid_to: '2025-12-10T09:44:02Z'
|
||||
reason: Previous GHCID with incorrect region code
|
||||
- ghcid: JP-TO-FUC-L-TUFSL
|
||||
ghcid_numeric: 535539741010551052
|
||||
valid_from: '2025-12-06T23:38:53.346778+00:00'
|
||||
|
|
@ -106,8 +107,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: Tokyo University of Foreign Studies Library
|
||||
|
|
@ -195,7 +196,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.tufs.ac.jp/common/library/index-j.html
|
||||
wikidata_official_website: http://www.tufs.ac.jp/common/library/index-j.html
|
||||
|
|
@ -217,3 +219,37 @@ location:
|
|||
geonames_id: 11611632
|
||||
geonames_name: Fuchū
|
||||
feature_code: PPLA2
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T14:05:12.415903+00:00'
|
||||
source_url: http://www.tufs.ac.jp/common/library/index-j.html
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: logo_url
|
||||
claim_value: https://www.tufs.ac.jp/library/wp-content/uploads/sites/5/2023/09/title-1.png
|
||||
source_url: http://www.tufs.ac.jp/common/library/index-j.html
|
||||
css_selector: '#header-in > div.logo.logo-header > a.site-name.site-name-text-link
|
||||
> span.site-name-text > img.site-logo-image.header-site-logo-image'
|
||||
retrieved_on: '2025-12-25T14:05:12.415903+00:00'
|
||||
extraction_method: crawl4ai_header_logo
|
||||
detection_confidence: high
|
||||
alt_text: 東京外国語大学附属図書館
|
||||
- claim_type: favicon_url
|
||||
claim_value: https://www.tufs.ac.jp/library/wp-content/uploads/sites/5/2023/09/cropped-TUFS_SM-p-180x180.png
|
||||
source_url: http://www.tufs.ac.jp/common/library/index-j.html
|
||||
css_selector: '[document] > html > head > link:nth-of-type(47)'
|
||||
retrieved_on: '2025-12-25T14:05:12.415903+00:00'
|
||||
extraction_method: crawl4ai_link_rel
|
||||
favicon_type: ''
|
||||
favicon_sizes: ''
|
||||
- claim_type: og_image_url
|
||||
claim_value: https://www.tufs.ac.jp/library/wp-content/uploads/sites/5/2021/04/homeimage.jpg
|
||||
source_url: http://www.tufs.ac.jp/common/library/index-j.html
|
||||
css_selector: '[document] > html > head > meta:nth-of-type(10)'
|
||||
retrieved_on: '2025-12-25T14:05:12.415903+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
|
||||
|
|
|
|||
|
|
@ -1283,3 +1283,28 @@ youtube_enrichment:
|
|||
comments: []
|
||||
thumbnail_url: https://i.ytimg.com/vi/GeJgP9ic8Ws/hqdefault_live.jpg
|
||||
status: SUCCESS
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T14:05:20.447090+00:00'
|
||||
source_url: http://www.city.fuchu.tokyo.jp/art
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: favicon_url
|
||||
claim_value: http://www.city.fuchu.tokyo.jp/images/apple-touch-icon.png
|
||||
source_url: http://www.city.fuchu.tokyo.jp/art
|
||||
css_selector: '[document] > html > head > link:nth-of-type(2)'
|
||||
retrieved_on: '2025-12-25T14:05:20.447090+00:00'
|
||||
extraction_method: crawl4ai_link_rel
|
||||
favicon_type: ''
|
||||
favicon_sizes: ''
|
||||
- claim_type: og_image_url
|
||||
claim_value: https://www.city.fuchu.tokyo.jp/images/ogp.png
|
||||
source_url: http://www.city.fuchu.tokyo.jp/art
|
||||
css_selector: '[document] > html > head > meta:nth-of-type(9)'
|
||||
retrieved_on: '2025-12-25T14:05:20.447090+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
|
||||
|
|
|
|||
|
|
@ -39,13 +39,14 @@ ghcid:
|
|||
method: CH_ANNOTATOR_SOURCE
|
||||
ghcid_history:
|
||||
- ghcid: JP-13-FUS-M-FMLH
|
||||
valid_from: "2025-12-10T09:44:02Z"
|
||||
valid_from: '2025-12-10T09:44:02Z'
|
||||
valid_to: null
|
||||
reason: "Corrected region code from JP-TO (abbreviation) to JP-13 (Tokyo) per ISO 3166-2:JP"
|
||||
reason: Corrected region code from JP-TO (abbreviation) to JP-13 (Tokyo) per ISO
|
||||
3166-2:JP
|
||||
- ghcid: JP-TO-FUS-M-FMLH
|
||||
valid_from: null
|
||||
valid_to: "2025-12-10T09:44:02Z"
|
||||
reason: "Previous GHCID with incorrect region code"
|
||||
valid_to: '2025-12-10T09:44:02Z'
|
||||
reason: Previous GHCID with incorrect region code
|
||||
- ghcid: JP-TO-FUS-M-FMLH
|
||||
ghcid_numeric: 2304751066352204324
|
||||
valid_from: '2025-12-06T23:38:33.706761+00:00'
|
||||
|
|
@ -103,8 +104,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: FUSSA MUSEUM OF LOCAL HISTORY
|
||||
|
|
@ -175,8 +176,8 @@ wikidata_enrichment:
|
|||
instance_of: &id004
|
||||
- id: Q33506
|
||||
label: museum
|
||||
description: institution that holds artifacts and other objects of scientific, artistic, cultural, historical, or other
|
||||
importance
|
||||
description: institution that holds artifacts and other objects of scientific,
|
||||
artistic, cultural, historical, or other importance
|
||||
wikidata_instance_of: *id004
|
||||
wikidata_location:
|
||||
coordinates: &id007
|
||||
|
|
@ -218,3 +219,22 @@ location:
|
|||
postal_code: 197-0003
|
||||
street_address: KUMAGAWA, Fussa Shi, Tokyo To, 197-0003
|
||||
normalization_timestamp: '2025-12-09T12:21:32.142080+00:00'
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T14:29:25.890440+00:00'
|
||||
source_url: https://www.museum.fussa.tokyo.jp
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: favicon_url
|
||||
claim_value: https://www.museum.fussa.tokyo.jp/cms/wp-content/themes/fussa/images/favicon.ico
|
||||
source_url: https://www.museum.fussa.tokyo.jp
|
||||
css_selector: '[document] > html > head > link'
|
||||
retrieved_on: '2025-12-25T14:29:25.890440+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
|
||||
|
|
|
|||
|
|
@ -205,3 +205,28 @@ location:
|
|||
geonames_id: 1863440
|
||||
geonames_name: Hachiōji
|
||||
feature_code: PPLA2
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T14:29:33.240002+00:00'
|
||||
source_url: http://www.chuo-u.ac.jp/library/library_service/tamacampus/law_library
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: favicon_url
|
||||
claim_value: http://www.chuo-u.ac.jp/favicon-16x16.ico
|
||||
source_url: http://www.chuo-u.ac.jp/library/library_service/tamacampus/law_library
|
||||
css_selector: '[document] > html > head > link'
|
||||
retrieved_on: '2025-12-25T14:29:33.240002+00:00'
|
||||
extraction_method: crawl4ai_link_rel
|
||||
favicon_type: ''
|
||||
favicon_sizes: 16x16
|
||||
- claim_type: og_image_url
|
||||
claim_value: https://www.chuo-u.ac.jp/media/images/common/ogp.jpg
|
||||
source_url: http://www.chuo-u.ac.jp/library/library_service/tamacampus/law_library
|
||||
css_selector: '[document] > html > head > meta:nth-of-type(9)'
|
||||
retrieved_on: '2025-12-25T14:29:33.240002+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
|
||||
|
|
|
|||
|
|
@ -41,13 +41,14 @@ ghcid:
|
|||
method: CH_ANNOTATOR_SOURCE
|
||||
ghcid_history:
|
||||
- ghcid: JP-13-HAC-L-C-chuodaigakujimbunkagakukenkyusho
|
||||
valid_from: "2025-12-10T09:44:03Z"
|
||||
valid_from: '2025-12-10T09:44:03Z'
|
||||
valid_to: null
|
||||
reason: "Corrected region code from JP-TO (abbreviation) to JP-13 (Tokyo) per ISO 3166-2:JP"
|
||||
reason: Corrected region code from JP-TO (abbreviation) to JP-13 (Tokyo) per ISO
|
||||
3166-2:JP
|
||||
- ghcid: JP-TO-HAC-L-C-chuodaigakujimbunkagakukenkyusho
|
||||
valid_from: null
|
||||
valid_to: "2025-12-10T09:44:03Z"
|
||||
reason: "Previous GHCID with incorrect region code"
|
||||
valid_to: '2025-12-10T09:44:03Z'
|
||||
reason: Previous GHCID with incorrect region code
|
||||
- ghcid: JP-TO-HAC-L-C-chuodaigakujimbunkagakukenkyusho
|
||||
ghcid_numeric: 7548581585069259310
|
||||
valid_from: '2025-12-06T23:38:55.046050+00:00'
|
||||
|
|
@ -106,8 +107,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: CHUODAIGAKUJIMBUNKAGAKUKENKYUSHO
|
||||
|
|
@ -215,3 +216,28 @@ location:
|
|||
geonames_id: 1863440
|
||||
geonames_name: Hachiōji
|
||||
feature_code: PPLA2
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T14:29:40.973116+00:00'
|
||||
source_url: http://www.chuo-u.ac.jp/research/institutes/culturalscience
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: favicon_url
|
||||
claim_value: http://www.chuo-u.ac.jp/favicon-16x16.ico
|
||||
source_url: http://www.chuo-u.ac.jp/research/institutes/culturalscience
|
||||
css_selector: '[document] > html > head > link'
|
||||
retrieved_on: '2025-12-25T14:29:40.973116+00:00'
|
||||
extraction_method: crawl4ai_link_rel
|
||||
favicon_type: ''
|
||||
favicon_sizes: 16x16
|
||||
- claim_type: og_image_url
|
||||
claim_value: https://www.chuo-u.ac.jp/media/images/common/ogp.jpg
|
||||
source_url: http://www.chuo-u.ac.jp/research/institutes/culturalscience
|
||||
css_selector: '[document] > html > head > meta:nth-of-type(9)'
|
||||
retrieved_on: '2025-12-25T14:29:40.973116+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
|
||||
|
|
|
|||
|
|
@ -37,13 +37,14 @@ ghcid:
|
|||
method: CH_ANNOTATOR_SOURCE
|
||||
ghcid_history:
|
||||
- ghcid: JP-13-HAC-L-C-chuodaigakukeizaikenkyujo
|
||||
valid_from: "2025-12-10T09:44:03Z"
|
||||
valid_from: '2025-12-10T09:44:03Z'
|
||||
valid_to: null
|
||||
reason: "Corrected region code from JP-TO (abbreviation) to JP-13 (Tokyo) per ISO 3166-2:JP"
|
||||
reason: Corrected region code from JP-TO (abbreviation) to JP-13 (Tokyo) per ISO
|
||||
3166-2:JP
|
||||
- ghcid: JP-TO-HAC-L-C-chuodaigakukeizaikenkyujo
|
||||
valid_from: null
|
||||
valid_to: "2025-12-10T09:44:03Z"
|
||||
reason: "Previous GHCID with incorrect region code"
|
||||
valid_to: '2025-12-10T09:44:03Z'
|
||||
reason: Previous GHCID with incorrect region code
|
||||
- ghcid: JP-TO-HAC-L-C-chuodaigakukeizaikenkyujo
|
||||
ghcid_numeric: 4810812187606637727
|
||||
valid_from: '2025-12-06T23:38:55.041002+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: CHUODAIGAKUKEIZAIKENKYUJO
|
||||
|
|
@ -205,3 +206,28 @@ location:
|
|||
geonames_id: 1863440
|
||||
geonames_name: Hachiōji
|
||||
feature_code: PPLA2
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T14:30:20.735321+00:00'
|
||||
source_url: http://www.chuo-u.ac.jp/research/institutes/economic
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: favicon_url
|
||||
claim_value: http://www.chuo-u.ac.jp/favicon-16x16.ico
|
||||
source_url: http://www.chuo-u.ac.jp/research/institutes/economic
|
||||
css_selector: '[document] > html > head > link'
|
||||
retrieved_on: '2025-12-25T14:30:20.735321+00:00'
|
||||
extraction_method: crawl4ai_link_rel
|
||||
favicon_type: ''
|
||||
favicon_sizes: 16x16
|
||||
- claim_type: og_image_url
|
||||
claim_value: https://www.chuo-u.ac.jp/media/images/common/ogp.jpg
|
||||
source_url: http://www.chuo-u.ac.jp/research/institutes/economic
|
||||
css_selector: '[document] > html > head > meta:nth-of-type(9)'
|
||||
retrieved_on: '2025-12-25T14:30:20.735321+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
|
||||
|
|
|
|||
|
|
@ -37,13 +37,14 @@ ghcid:
|
|||
method: CH_ANNOTATOR_SOURCE
|
||||
ghcid_history:
|
||||
- ghcid: JP-13-HAC-L-C-chuodaigakukigyokenkyujo
|
||||
valid_from: "2025-12-10T09:44:03Z"
|
||||
valid_from: '2025-12-10T09:44:03Z'
|
||||
valid_to: null
|
||||
reason: "Corrected region code from JP-TO (abbreviation) to JP-13 (Tokyo) per ISO 3166-2:JP"
|
||||
reason: Corrected region code from JP-TO (abbreviation) to JP-13 (Tokyo) per ISO
|
||||
3166-2:JP
|
||||
- ghcid: JP-TO-HAC-L-C-chuodaigakukigyokenkyujo
|
||||
valid_from: null
|
||||
valid_to: "2025-12-10T09:44:03Z"
|
||||
reason: "Previous GHCID with incorrect region code"
|
||||
valid_to: '2025-12-10T09:44:03Z'
|
||||
reason: Previous GHCID with incorrect region code
|
||||
- ghcid: JP-TO-HAC-L-C-chuodaigakukigyokenkyujo
|
||||
ghcid_numeric: 3961943790049198653
|
||||
valid_from: '2025-12-06T23:38:55.043537+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: CHUODAIGAKUKIGYOKENKYUJO
|
||||
|
|
@ -204,3 +205,28 @@ location:
|
|||
geonames_id: 1863440
|
||||
geonames_name: Hachiōji
|
||||
feature_code: PPLA2
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T14:30:32.095556+00:00'
|
||||
source_url: http://www.chuo-u.ac.jp/research/institutes/business
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: favicon_url
|
||||
claim_value: http://www.chuo-u.ac.jp/favicon-16x16.ico
|
||||
source_url: http://www.chuo-u.ac.jp/research/institutes/business
|
||||
css_selector: '[document] > html > head > link'
|
||||
retrieved_on: '2025-12-25T14:30:32.095556+00:00'
|
||||
extraction_method: crawl4ai_link_rel
|
||||
favicon_type: ''
|
||||
favicon_sizes: 16x16
|
||||
- claim_type: og_image_url
|
||||
claim_value: https://www.chuo-u.ac.jp/media/images/common/ogp.jpg
|
||||
source_url: http://www.chuo-u.ac.jp/research/institutes/business
|
||||
css_selector: '[document] > html > head > meta:nth-of-type(9)'
|
||||
retrieved_on: '2025-12-25T14:30:32.095556+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
|
||||
|
|
|
|||
|
|
@ -37,13 +37,14 @@ ghcid:
|
|||
method: CH_ANNOTATOR_SOURCE
|
||||
ghcid_history:
|
||||
- ghcid: JP-13-HAC-L-C-chuodaigakuseisakubunkasogokenkyujo
|
||||
valid_from: "2025-12-10T09:44:03Z"
|
||||
valid_from: '2025-12-10T09:44:03Z'
|
||||
valid_to: null
|
||||
reason: "Corrected region code from JP-TO (abbreviation) to JP-13 (Tokyo) per ISO 3166-2:JP"
|
||||
reason: Corrected region code from JP-TO (abbreviation) to JP-13 (Tokyo) per ISO
|
||||
3166-2:JP
|
||||
- ghcid: JP-TO-HAC-L-C-chuodaigakuseisakubunkasogokenkyujo
|
||||
valid_from: null
|
||||
valid_to: "2025-12-10T09:44:03Z"
|
||||
reason: "Previous GHCID with incorrect region code"
|
||||
valid_to: '2025-12-10T09:44:03Z'
|
||||
reason: Previous GHCID with incorrect region code
|
||||
- ghcid: JP-TO-HAC-L-C-chuodaigakuseisakubunkasogokenkyujo
|
||||
ghcid_numeric: 16479389462139040776
|
||||
valid_from: '2025-12-06T23:38:55.054384+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: CHUODAIGAKUSEISAKUBUNKASOGOKENKYUJO
|
||||
|
|
@ -204,3 +205,28 @@ location:
|
|||
geonames_id: 1863440
|
||||
geonames_name: Hachiōji
|
||||
feature_code: PPLA2
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T14:30:39.722696+00:00'
|
||||
source_url: http://www.chuo-u.ac.jp/research/institutes/policystudies
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: favicon_url
|
||||
claim_value: http://www.chuo-u.ac.jp/favicon-16x16.ico
|
||||
source_url: http://www.chuo-u.ac.jp/research/institutes/policystudies
|
||||
css_selector: '[document] > html > head > link'
|
||||
retrieved_on: '2025-12-25T14:30:39.722696+00:00'
|
||||
extraction_method: crawl4ai_link_rel
|
||||
favicon_type: ''
|
||||
favicon_sizes: 16x16
|
||||
- claim_type: og_image_url
|
||||
claim_value: https://www.chuo-u.ac.jp/media/images/common/ogp.jpg
|
||||
source_url: http://www.chuo-u.ac.jp/research/institutes/policystudies
|
||||
css_selector: '[document] > html > head > meta:nth-of-type(9)'
|
||||
retrieved_on: '2025-12-25T14:30:39.722696+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
|
||||
|
|
|
|||
|
|
@ -37,13 +37,14 @@ ghcid:
|
|||
method: CH_ANNOTATOR_SOURCE
|
||||
ghcid_history:
|
||||
- ghcid: JP-13-HAC-L-C-chuodaigakushakaikagakukenkyujo
|
||||
valid_from: "2025-12-10T09:44:03Z"
|
||||
valid_from: '2025-12-10T09:44:03Z'
|
||||
valid_to: null
|
||||
reason: "Corrected region code from JP-TO (abbreviation) to JP-13 (Tokyo) per ISO 3166-2:JP"
|
||||
reason: Corrected region code from JP-TO (abbreviation) to JP-13 (Tokyo) per ISO
|
||||
3166-2:JP
|
||||
- ghcid: JP-TO-HAC-L-C-chuodaigakushakaikagakukenkyujo
|
||||
valid_from: null
|
||||
valid_to: "2025-12-10T09:44:03Z"
|
||||
reason: "Previous GHCID with incorrect region code"
|
||||
valid_to: '2025-12-10T09:44:03Z'
|
||||
reason: Previous GHCID with incorrect region code
|
||||
- ghcid: JP-TO-HAC-L-C-chuodaigakushakaikagakukenkyujo
|
||||
ghcid_numeric: 13572919211061991325
|
||||
valid_from: '2025-12-06T23:38:55.048987+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: CHUODAIGAKUSHAKAIKAGAKUKENKYUJO
|
||||
|
|
@ -204,3 +205,28 @@ location:
|
|||
geonames_id: 1863440
|
||||
geonames_name: Hachiōji
|
||||
feature_code: PPLA2
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T14:30:50.025271+00:00'
|
||||
source_url: http://www.chuo-u.ac.jp/research/institutes/socialsciences
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: favicon_url
|
||||
claim_value: http://www.chuo-u.ac.jp/favicon-16x16.ico
|
||||
source_url: http://www.chuo-u.ac.jp/research/institutes/socialsciences
|
||||
css_selector: '[document] > html > head > link'
|
||||
retrieved_on: '2025-12-25T14:30:50.025271+00:00'
|
||||
extraction_method: crawl4ai_link_rel
|
||||
favicon_type: ''
|
||||
favicon_sizes: 16x16
|
||||
- claim_type: og_image_url
|
||||
claim_value: https://www.chuo-u.ac.jp/media/images/common/ogp.jpg
|
||||
source_url: http://www.chuo-u.ac.jp/research/institutes/socialsciences
|
||||
css_selector: '[document] > html > head > meta:nth-of-type(9)'
|
||||
retrieved_on: '2025-12-25T14:30:50.025271+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
|
||||
|
|
|
|||
|
|
@ -205,3 +205,28 @@ location:
|
|||
geonames_id: 1863440
|
||||
geonames_name: Hachiōji
|
||||
feature_code: PPLA2
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T14:31:02.271847+00:00'
|
||||
source_url: http://www.chuo-u.ac.jp/library/library_service/tamacampus
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: favicon_url
|
||||
claim_value: http://www.chuo-u.ac.jp/favicon-16x16.ico
|
||||
source_url: http://www.chuo-u.ac.jp/library/library_service/tamacampus
|
||||
css_selector: '[document] > html > head > link:nth-of-type(10)'
|
||||
retrieved_on: '2025-12-25T14:31:02.271847+00:00'
|
||||
extraction_method: crawl4ai_link_rel
|
||||
favicon_type: ''
|
||||
favicon_sizes: 16x16
|
||||
- claim_type: og_image_url
|
||||
claim_value: https://www.chuo-u.ac.jp/media/images/common/ogp.png
|
||||
source_url: http://www.chuo-u.ac.jp/library/library_service/tamacampus
|
||||
css_selector: '[document] > html > head > meta:nth-of-type(9)'
|
||||
retrieved_on: '2025-12-25T14:31:02.271847+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
|
||||
|
|
|
|||
|
|
@ -228,3 +228,28 @@ location:
|
|||
postal_code: 192-0393
|
||||
street_address: 742-1 HIGASHINAKANO 742-1, Hachioji Shi, Tokyo To, 192-0393
|
||||
normalization_timestamp: '2025-12-09T12:21:32.589862+00:00'
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T14:31:12.652378+00:00'
|
||||
source_url: http://www.chuo-u.ac.jp/chuo-u/library
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: favicon_url
|
||||
claim_value: http://www.chuo-u.ac.jp/favicon-16x16.ico
|
||||
source_url: http://www.chuo-u.ac.jp/chuo-u/library
|
||||
css_selector: '[document] > html > head > link'
|
||||
retrieved_on: '2025-12-25T14:31:12.652378+00:00'
|
||||
extraction_method: crawl4ai_link_rel
|
||||
favicon_type: ''
|
||||
favicon_sizes: 16x16
|
||||
- claim_type: og_image_url
|
||||
claim_value: https://www.chuo-u.ac.jp/media/images/common/ogp.jpg
|
||||
source_url: http://www.chuo-u.ac.jp/chuo-u/library
|
||||
css_selector: '[document] > html > head > meta:nth-of-type(9)'
|
||||
retrieved_on: '2025-12-25T14:31:12.652378+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
|
||||
|
|
|
|||
|
|
@ -201,3 +201,22 @@ wikidata_enrichment:
|
|||
wikidata_web:
|
||||
official_website: http://www.town.hachijo.tokyo.jp/kakuka/kyouiku/library/tosyo-top.html
|
||||
wikidata_official_website: http://www.town.hachijo.tokyo.jp/kakuka/kyouiku/library/tosyo-top.html
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T14:31:22.610786+00:00'
|
||||
source_url: https://www.town.hachijo.tokyo.jp/kakuka/kyouiku/library/tosyo-top.html
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: logo_url
|
||||
claim_value: https://www.town.hachijo.tokyo.jp/img/logo.png
|
||||
source_url: https://www.town.hachijo.tokyo.jp/kakuka/kyouiku/library/tosyo-top.html
|
||||
css_selector: '#header > header > hgroup > a > img'
|
||||
retrieved_on: '2025-12-25T14:31:22.610786+00:00'
|
||||
extraction_method: crawl4ai_header_logo
|
||||
detection_confidence: high
|
||||
alt_text: 八丈町
|
||||
summary:
|
||||
total_claims: 1
|
||||
has_primary_logo: true
|
||||
has_favicon: false
|
||||
has_og_image: false
|
||||
favicon_count: 0
|
||||
|
|
|
|||
|
|
@ -32,13 +32,14 @@ ghcid:
|
|||
method: CH_ANNOTATOR_SOURCE
|
||||
ghcid_history:
|
||||
- ghcid: JP-13-HAC-L-HL-hachiojishiikoi_library
|
||||
valid_from: "2025-12-10T09:44:03Z"
|
||||
valid_from: '2025-12-10T09:44:03Z'
|
||||
valid_to: null
|
||||
reason: "Corrected region code from JP-TO (abbreviation) to JP-13 (Tokyo) per ISO 3166-2:JP"
|
||||
reason: Corrected region code from JP-TO (abbreviation) to JP-13 (Tokyo) per ISO
|
||||
3166-2:JP
|
||||
- ghcid: JP-TO-HAC-L-HL-hachiojishiikoi_library
|
||||
valid_from: null
|
||||
valid_to: "2025-12-10T09:44:03Z"
|
||||
reason: "Previous GHCID with incorrect region code"
|
||||
valid_to: '2025-12-10T09:44:03Z'
|
||||
reason: Previous GHCID with incorrect region code
|
||||
- ghcid: JP-TO-HAC-L-HL-hachiojishiikoi_library
|
||||
ghcid_numeric: 10998013155664456394
|
||||
valid_from: '2025-12-06T23:38:52.989861+00:00'
|
||||
|
|
@ -96,8 +97,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: HACHIOJISHIIKOI Library
|
||||
|
|
@ -151,3 +152,22 @@ location:
|
|||
geonames_id: 1863440
|
||||
geonames_name: Hachiōji
|
||||
feature_code: PPLA2
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T14:31:30.536633+00:00'
|
||||
source_url: https://www.library.city.hachioji.tokyo.jp/library.html
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: favicon_url
|
||||
claim_value: https://www.library.city.hachioji.tokyo.jp/img/ruri180.png
|
||||
source_url: https://www.library.city.hachioji.tokyo.jp/library.html
|
||||
css_selector: '[document] > html > head > link'
|
||||
retrieved_on: '2025-12-25T14:31:30.536633+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: 1
|
||||
|
|
|
|||
|
|
@ -32,13 +32,14 @@ ghcid:
|
|||
method: CH_ANNOTATOR_SOURCE
|
||||
ghcid_history:
|
||||
- ghcid: JP-13-HAC-L-HL-hachiojishiishikawashiminsenta_library
|
||||
valid_from: "2025-12-10T09:44:03Z"
|
||||
valid_from: '2025-12-10T09:44:03Z'
|
||||
valid_to: null
|
||||
reason: "Corrected region code from JP-TO (abbreviation) to JP-13 (Tokyo) per ISO 3166-2:JP"
|
||||
reason: Corrected region code from JP-TO (abbreviation) to JP-13 (Tokyo) per ISO
|
||||
3166-2:JP
|
||||
- ghcid: JP-TO-HAC-L-HL-hachiojishiishikawashiminsenta_library
|
||||
valid_from: null
|
||||
valid_to: "2025-12-10T09:44:03Z"
|
||||
reason: "Previous GHCID with incorrect region code"
|
||||
valid_to: '2025-12-10T09:44:03Z'
|
||||
reason: Previous GHCID with incorrect region code
|
||||
- ghcid: JP-TO-HAC-L-HL-hachiojishiishikawashiminsenta_library
|
||||
ghcid_numeric: 14077976813549689953
|
||||
valid_from: '2025-12-06T23:38:52.985114+00:00'
|
||||
|
|
@ -96,8 +97,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: HACHIOJISHIISHIKAWASHIMINSENTA Library
|
||||
|
|
@ -151,3 +152,22 @@ location:
|
|||
geonames_id: 1863440
|
||||
geonames_name: Hachiōji
|
||||
feature_code: PPLA2
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T14:31:36.829029+00:00'
|
||||
source_url: https://www.library.city.hachioji.tokyo.jp/library/lib08.html
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: favicon_url
|
||||
claim_value: https://www.library.city.hachioji.tokyo.jp/img/ruri180.png
|
||||
source_url: https://www.library.city.hachioji.tokyo.jp/library/lib08.html
|
||||
css_selector: '[document] > html > head > link'
|
||||
retrieved_on: '2025-12-25T14:31:36.829029+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: 1
|
||||
|
|
|
|||
|
|
@ -211,3 +211,22 @@ wikidata_enrichment:
|
|||
wikidata_web:
|
||||
official_website: http://www.library.city.hachioji.tokyo.jp/lib04.html
|
||||
wikidata_official_website: http://www.library.city.hachioji.tokyo.jp/lib04.html
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T14:31:43.820062+00:00'
|
||||
source_url: https://www.library.city.hachioji.tokyo.jp/index.html
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: favicon_url
|
||||
claim_value: https://www.library.city.hachioji.tokyo.jp/img/ruri180.png
|
||||
source_url: https://www.library.city.hachioji.tokyo.jp/index.html
|
||||
css_selector: '[document] > html > head > link'
|
||||
retrieved_on: '2025-12-25T14:31:43.820062+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: 1
|
||||
|
|
|
|||
|
|
@ -210,3 +210,22 @@ wikidata_enrichment:
|
|||
wikidata_web:
|
||||
official_website: http://www.library.city.hachioji.tokyo.jp/lib05.html
|
||||
wikidata_official_website: http://www.library.city.hachioji.tokyo.jp/lib05.html
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T14:31:50.854794+00:00'
|
||||
source_url: https://www.library.city.hachioji.tokyo.jp/library/lib05.html
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: favicon_url
|
||||
claim_value: https://www.library.city.hachioji.tokyo.jp/img/ruri180.png
|
||||
source_url: https://www.library.city.hachioji.tokyo.jp/library/lib05.html
|
||||
css_selector: '[document] > html > head > link'
|
||||
retrieved_on: '2025-12-25T14:31:50.854794+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: 1
|
||||
|
|
|
|||
|
|
@ -211,3 +211,22 @@ wikidata_enrichment:
|
|||
wikidata_web:
|
||||
official_website: http://www.library.city.hachioji.tokyo.jp/lib03.html
|
||||
wikidata_official_website: http://www.library.city.hachioji.tokyo.jp/lib03.html
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T14:31:58.091981+00:00'
|
||||
source_url: https://www.library.city.hachioji.tokyo.jp/index.html
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: favicon_url
|
||||
claim_value: https://www.library.city.hachioji.tokyo.jp/img/ruri180.png
|
||||
source_url: https://www.library.city.hachioji.tokyo.jp/index.html
|
||||
css_selector: '[document] > html > head > link'
|
||||
retrieved_on: '2025-12-25T14:31:58.091981+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: 1
|
||||
|
|
|
|||
|
|
@ -152,3 +152,22 @@ location:
|
|||
geonames_id: 1863440
|
||||
geonames_name: Hachiōji
|
||||
feature_code: PPLA2
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T14:32:05.451707+00:00'
|
||||
source_url: https://www.library.city.hachioji.tokyo.jp/library/lib07.html
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: favicon_url
|
||||
claim_value: https://www.library.city.hachioji.tokyo.jp/img/ruri180.png
|
||||
source_url: https://www.library.city.hachioji.tokyo.jp/library/lib07.html
|
||||
css_selector: '[document] > html > head > link'
|
||||
retrieved_on: '2025-12-25T14:32:05.451707+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: 1
|
||||
|
|
|
|||
|
|
@ -211,3 +211,22 @@ wikidata_enrichment:
|
|||
wikidata_web:
|
||||
official_website: http://www.library.city.hachioji.tokyo.jp/lib02.html
|
||||
wikidata_official_website: http://www.library.city.hachioji.tokyo.jp/lib02.html
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T14:32:12.143300+00:00'
|
||||
source_url: https://www.library.city.hachioji.tokyo.jp/index.html
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: favicon_url
|
||||
claim_value: https://www.library.city.hachioji.tokyo.jp/img/ruri180.png
|
||||
source_url: https://www.library.city.hachioji.tokyo.jp/index.html
|
||||
css_selector: '[document] > html > head > link'
|
||||
retrieved_on: '2025-12-25T14:32:12.143300+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: 1
|
||||
|
|
|
|||
|
|
@ -32,13 +32,14 @@ ghcid:
|
|||
method: CH_ANNOTATOR_SOURCE
|
||||
ghcid_history:
|
||||
- ghcid: JP-13-HAC-L-HL-hachiojishiyugichuoshiminsenta_library
|
||||
valid_from: "2025-12-10T09:44:03Z"
|
||||
valid_from: '2025-12-10T09:44:03Z'
|
||||
valid_to: null
|
||||
reason: "Corrected region code from JP-TO (abbreviation) to JP-13 (Tokyo) per ISO 3166-2:JP"
|
||||
reason: Corrected region code from JP-TO (abbreviation) to JP-13 (Tokyo) per ISO
|
||||
3166-2:JP
|
||||
- ghcid: JP-TO-HAC-L-HL-hachiojishiyugichuoshiminsenta_library
|
||||
valid_from: null
|
||||
valid_to: "2025-12-10T09:44:03Z"
|
||||
reason: "Previous GHCID with incorrect region code"
|
||||
valid_to: '2025-12-10T09:44:03Z'
|
||||
reason: Previous GHCID with incorrect region code
|
||||
- ghcid: JP-TO-HAC-L-HL-hachiojishiyugichuoshiminsenta_library
|
||||
ghcid_numeric: 890668732079418372
|
||||
valid_from: '2025-12-06T23:38:52.987444+00:00'
|
||||
|
|
@ -96,8 +97,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: HACHIOJISHIYUGICHUOSHIMINSENTA Library
|
||||
|
|
@ -151,3 +152,22 @@ location:
|
|||
geonames_id: 1863440
|
||||
geonames_name: Hachiōji
|
||||
feature_code: PPLA2
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T14:32:18.879656+00:00'
|
||||
source_url: https://www.library.city.hachioji.tokyo.jp/library/lib09.html
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: favicon_url
|
||||
claim_value: https://www.library.city.hachioji.tokyo.jp/img/ruri180.png
|
||||
source_url: https://www.library.city.hachioji.tokyo.jp/library/lib09.html
|
||||
css_selector: '[document] > html > head > link'
|
||||
retrieved_on: '2025-12-25T14:32:18.879656+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: 1
|
||||
|
|
|
|||
|
|
@ -32,13 +32,14 @@ ghcid:
|
|||
method: CH_ANNOTATOR_SOURCE
|
||||
ghcid_history:
|
||||
- ghcid: JP-13-HAC-L-HL-hachiojishiyuishiminsentaminamino_library
|
||||
valid_from: "2025-12-10T09:44:03Z"
|
||||
valid_from: '2025-12-10T09:44:03Z'
|
||||
valid_to: null
|
||||
reason: "Corrected region code from JP-TO (abbreviation) to JP-13 (Tokyo) per ISO 3166-2:JP"
|
||||
reason: Corrected region code from JP-TO (abbreviation) to JP-13 (Tokyo) per ISO
|
||||
3166-2:JP
|
||||
- ghcid: JP-TO-HAC-L-HL-hachiojishiyuishiminsentaminamino_library
|
||||
valid_from: null
|
||||
valid_to: "2025-12-10T09:44:03Z"
|
||||
reason: "Previous GHCID with incorrect region code"
|
||||
valid_to: '2025-12-10T09:44:03Z'
|
||||
reason: Previous GHCID with incorrect region code
|
||||
- ghcid: JP-TO-HAC-L-HL-hachiojishiyuishiminsentaminamino_library
|
||||
ghcid_numeric: 11038619215475146268
|
||||
valid_from: '2025-12-06T23:38:52.980072+00:00'
|
||||
|
|
@ -96,8 +97,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: HACHIOJISHIYUISHIMINSENTAMINAMINO Library
|
||||
|
|
@ -151,3 +152,22 @@ location:
|
|||
geonames_id: 1863440
|
||||
geonames_name: Hachiōji
|
||||
feature_code: PPLA2
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T14:32:25.119659+00:00'
|
||||
source_url: https://www.library.city.hachioji.tokyo.jp/library/lib06.html
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: favicon_url
|
||||
claim_value: https://www.library.city.hachioji.tokyo.jp/img/ruri180.png
|
||||
source_url: https://www.library.city.hachioji.tokyo.jp/library/lib06.html
|
||||
css_selector: '[document] > html > head > link'
|
||||
retrieved_on: '2025-12-25T14:32:25.119659+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: 1
|
||||
|
|
|
|||
|
|
@ -213,3 +213,22 @@ wikidata_enrichment:
|
|||
wikidata_web:
|
||||
official_website: http://www.library.city.hachioji.tokyo.jp/lib01.html
|
||||
wikidata_official_website: http://www.library.city.hachioji.tokyo.jp/lib01.html
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T14:32:32.162036+00:00'
|
||||
source_url: https://www.library.city.hachioji.tokyo.jp/index.html
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: favicon_url
|
||||
claim_value: https://www.library.city.hachioji.tokyo.jp/img/ruri180.png
|
||||
source_url: https://www.library.city.hachioji.tokyo.jp/index.html
|
||||
css_selector: '[document] > html > head > link'
|
||||
retrieved_on: '2025-12-25T14:32:32.162036+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: 1
|
||||
|
|
|
|||
|
|
@ -211,3 +211,28 @@ location:
|
|||
geonames_id: 1863440
|
||||
geonames_name: Hachiōji
|
||||
feature_code: PPLA2
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T14:32:41.441274+00:00'
|
||||
source_url: http://www.chuo-u.ac.jp/chuo-u/ins_law/index_j.html
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: favicon_url
|
||||
claim_value: http://www.chuo-u.ac.jp/favicon-16x16.ico
|
||||
source_url: http://www.chuo-u.ac.jp/chuo-u/ins_law/index_j.html
|
||||
css_selector: '[document] > html > head > link'
|
||||
retrieved_on: '2025-12-25T14:32:41.441274+00:00'
|
||||
extraction_method: crawl4ai_link_rel
|
||||
favicon_type: ''
|
||||
favicon_sizes: 16x16
|
||||
- claim_type: og_image_url
|
||||
claim_value: https://www.chuo-u.ac.jp/media/images/common/ogp.jpg
|
||||
source_url: http://www.chuo-u.ac.jp/chuo-u/ins_law/index_j.html
|
||||
css_selector: '[document] > html > head > meta:nth-of-type(9)'
|
||||
retrieved_on: '2025-12-25T14:32:41.441274+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
|
||||
|
|
|
|||
|
|
@ -37,13 +37,14 @@ ghcid:
|
|||
method: CH_ANNOTATOR_SOURCE
|
||||
ghcid_history:
|
||||
- ghcid: JP-13-HAC-L-IHSSCU
|
||||
valid_from: "2025-12-10T09:44:03Z"
|
||||
valid_from: '2025-12-10T09:44:03Z'
|
||||
valid_to: null
|
||||
reason: "Corrected region code from JP-TO (abbreviation) to JP-13 (Tokyo) per ISO 3166-2:JP"
|
||||
reason: Corrected region code from JP-TO (abbreviation) to JP-13 (Tokyo) per ISO
|
||||
3166-2:JP
|
||||
- ghcid: JP-TO-HAC-L-IHSSCU
|
||||
valid_from: null
|
||||
valid_to: "2025-12-10T09:44:03Z"
|
||||
reason: "Previous GHCID with incorrect region code"
|
||||
valid_to: '2025-12-10T09:44:03Z'
|
||||
reason: Previous GHCID with incorrect region code
|
||||
- ghcid: JP-TO-HAC-L-IHSSCU
|
||||
ghcid_numeric: 16869296380046832118
|
||||
valid_from: '2025-12-06T23:38:55.051703+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: Institute of Health and Sports Science, Chuo University
|
||||
|
|
@ -204,3 +205,28 @@ location:
|
|||
geonames_id: 1863440
|
||||
geonames_name: Hachiōji
|
||||
feature_code: PPLA2
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T14:32:53.671522+00:00'
|
||||
source_url: http://www.chuo-u.ac.jp/research/institutes/hsscience
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: favicon_url
|
||||
claim_value: http://www.chuo-u.ac.jp/favicon-16x16.ico
|
||||
source_url: http://www.chuo-u.ac.jp/research/institutes/hsscience
|
||||
css_selector: '[document] > html > head > link'
|
||||
retrieved_on: '2025-12-25T14:32:53.671522+00:00'
|
||||
extraction_method: crawl4ai_link_rel
|
||||
favicon_type: ''
|
||||
favicon_sizes: 16x16
|
||||
- claim_type: og_image_url
|
||||
claim_value: https://www.chuo-u.ac.jp/media/images/common/ogp.jpg
|
||||
source_url: http://www.chuo-u.ac.jp/research/institutes/hsscience
|
||||
css_selector: '[document] > html > head > meta:nth-of-type(9)'
|
||||
retrieved_on: '2025-12-25T14:32:53.671522+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
|
||||
|
|
|
|||
|
|
@ -37,13 +37,14 @@ ghcid:
|
|||
method: CH_ANNOTATOR_SOURCE
|
||||
ghcid_history:
|
||||
- ghcid: JP-13-HAC-L-NL
|
||||
valid_from: "2025-12-10T09:44:03Z"
|
||||
valid_from: '2025-12-10T09:44:03Z'
|
||||
valid_to: null
|
||||
reason: "Corrected region code from JP-TO (abbreviation) to JP-13 (Tokyo) per ISO 3166-2:JP"
|
||||
reason: Corrected region code from JP-TO (abbreviation) to JP-13 (Tokyo) per ISO
|
||||
3166-2:JP
|
||||
- ghcid: JP-TO-HAC-L-NL
|
||||
valid_from: null
|
||||
valid_to: "2025-12-10T09:44:03Z"
|
||||
reason: "Previous GHCID with incorrect region code"
|
||||
valid_to: '2025-12-10T09:44:03Z'
|
||||
reason: Previous GHCID with incorrect region code
|
||||
- ghcid: JP-TO-HAC-L-NL
|
||||
ghcid_numeric: 16809677814190662144
|
||||
valid_from: '2025-12-06T23:38:55.391353+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: NIHOMBUNKADAIGAKU Library
|
||||
|
|
@ -204,3 +205,22 @@ location:
|
|||
geonames_id: 1863440
|
||||
geonames_name: Hachiōji
|
||||
feature_code: PPLA2
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T14:33:09.497942+00:00'
|
||||
source_url: http://www.nihonbunka-u.ac.jp
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: favicon_url
|
||||
claim_value: https://nihonbunka-u.ac.jp/university_2022/wp-content/themes/nbu/assets/img/favicon.ico
|
||||
source_url: http://www.nihonbunka-u.ac.jp
|
||||
css_selector: '[document] > html.chrome > head > link'
|
||||
retrieved_on: '2025-12-25T14:33:09.497942+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
|
||||
|
|
|
|||
|
|
@ -281,3 +281,31 @@ location:
|
|||
postal_code: 192-8512
|
||||
street_address: 2-3 KUBOYAMACHO, Hachioji Shi, Tokyo To, 192-8512
|
||||
normalization_timestamp: '2025-12-09T12:21:33.326401+00:00'
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T14:33:18.220942+00:00'
|
||||
source_url: http://www.olympus.co.jp
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: logo_url
|
||||
claim_value: http://www.olympus.co.jp/shared/images/ci-logo-01.png
|
||||
source_url: http://www.olympus.co.jp
|
||||
css_selector: '#header > div.header-inner:nth-of-type(2) > h1.header-logo > a
|
||||
> img'
|
||||
retrieved_on: '2025-12-25T14:33:18.220942+00:00'
|
||||
extraction_method: crawl4ai_header_logo
|
||||
detection_confidence: high
|
||||
alt_text: オリンパスコーポレートロゴ
|
||||
- claim_type: favicon_url
|
||||
claim_value: http://www.olympus.co.jp/shared/images/icon-webclip-01.png
|
||||
source_url: http://www.olympus.co.jp
|
||||
css_selector: '[document] > html.js.flexbox > head > link'
|
||||
retrieved_on: '2025-12-25T14:33:18.220942+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
|
||||
|
|
|
|||
|
|
@ -37,13 +37,14 @@ ghcid:
|
|||
method: CH_ANNOTATOR_SOURCE
|
||||
ghcid_history:
|
||||
- ghcid: JP-13-HAC-L-SUFLFSEA
|
||||
valid_from: "2025-12-10T09:44:03Z"
|
||||
valid_from: '2025-12-10T09:44:03Z'
|
||||
valid_to: null
|
||||
reason: "Corrected region code from JP-TO (abbreviation) to JP-13 (Tokyo) per ISO 3166-2:JP"
|
||||
reason: Corrected region code from JP-TO (abbreviation) to JP-13 (Tokyo) per ISO
|
||||
3166-2:JP
|
||||
- ghcid: JP-TO-HAC-L-SUFLFSEA
|
||||
valid_from: null
|
||||
valid_to: "2025-12-10T09:44:03Z"
|
||||
reason: "Previous GHCID with incorrect region code"
|
||||
valid_to: '2025-12-10T09:44:03Z'
|
||||
reason: Previous GHCID with incorrect region code
|
||||
- ghcid: JP-TO-HAC-L-SUFLFSEA
|
||||
ghcid_numeric: 12358771442224844367
|
||||
valid_from: '2025-12-06T23:38:54.922652+00:00'
|
||||
|
|
@ -101,11 +102,12 @@ 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: Soka University Fraser Library(Faculty of Science and Engineering Annex)
|
||||
claim_value: Soka University Fraser Library(Faculty of Science and Engineering
|
||||
Annex)
|
||||
property_uri: skos:prefLabel
|
||||
provenance:
|
||||
namespace: glam
|
||||
|
|
@ -164,7 +166,8 @@ wikidata_enrichment:
|
|||
wikidata_labels:
|
||||
en: Soka University Fraser Library(Faculty of Science and Engineering Annex)
|
||||
ja: 創価大学フレイザー図書館(理工学部分館)
|
||||
wikidata_label_en: Soka University Fraser Library(Faculty of Science and Engineering Annex)
|
||||
wikidata_label_en: Soka University Fraser Library(Faculty of Science and Engineering
|
||||
Annex)
|
||||
wikidata_label_ja: 創価大学フレイザー図書館(理工学部分館)
|
||||
wikidata_classification:
|
||||
instance_of: &id004
|
||||
|
|
@ -204,3 +207,22 @@ location:
|
|||
geonames_id: 1863440
|
||||
geonames_name: Hachiōji
|
||||
feature_code: PPLA2
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T14:33:26.796518+00:00'
|
||||
source_url: http://lib.soka.ac.jp
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: favicon_url
|
||||
claim_value: http://lib.soka.ac.jp/images/common/favicon.png
|
||||
source_url: http://lib.soka.ac.jp
|
||||
css_selector: '[document] > html > head > link'
|
||||
retrieved_on: '2025-12-25T14:33:26.796518+00:00'
|
||||
extraction_method: crawl4ai_link_rel
|
||||
favicon_type: image/x-icon
|
||||
favicon_sizes: ''
|
||||
summary:
|
||||
total_claims: 1
|
||||
has_primary_logo: false
|
||||
has_favicon: true
|
||||
has_og_image: false
|
||||
favicon_count: 1
|
||||
|
|
|
|||
|
|
@ -37,13 +37,14 @@ ghcid:
|
|||
method: CH_ANNOTATOR_SOURCE
|
||||
ghcid_history:
|
||||
- ghcid: JP-13-HAC-L-SUL
|
||||
valid_from: "2025-12-10T09:44:03Z"
|
||||
valid_from: '2025-12-10T09:44:03Z'
|
||||
valid_to: null
|
||||
reason: "Corrected region code from JP-TO (abbreviation) to JP-13 (Tokyo) per ISO 3166-2:JP"
|
||||
reason: Corrected region code from JP-TO (abbreviation) to JP-13 (Tokyo) per ISO
|
||||
3166-2:JP
|
||||
- ghcid: JP-TO-HAC-L-SUL
|
||||
valid_from: null
|
||||
valid_to: "2025-12-10T09:44:03Z"
|
||||
reason: "Previous GHCID with incorrect region code"
|
||||
valid_to: '2025-12-10T09:44:03Z'
|
||||
reason: Previous GHCID with incorrect region code
|
||||
- ghcid: JP-TO-HAC-L-SUL
|
||||
ghcid_numeric: 4066965078261491998
|
||||
valid_from: '2025-12-06T23:38:54.919834+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: Soka University Library
|
||||
|
|
@ -196,7 +197,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://lib.soka.ac.jp/
|
||||
wikidata_official_website: http://lib.soka.ac.jp/
|
||||
|
|
@ -218,3 +220,22 @@ location:
|
|||
geonames_id: 1863440
|
||||
geonames_name: Hachiōji
|
||||
feature_code: PPLA2
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T14:33:35.263462+00:00'
|
||||
source_url: http://lib.soka.ac.jp
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: favicon_url
|
||||
claim_value: http://lib.soka.ac.jp/images/common/favicon.png
|
||||
source_url: http://lib.soka.ac.jp
|
||||
css_selector: '[document] > html > head > link'
|
||||
retrieved_on: '2025-12-25T14:33:35.263462+00:00'
|
||||
extraction_method: crawl4ai_link_rel
|
||||
favicon_type: image/x-icon
|
||||
favicon_sizes: ''
|
||||
summary:
|
||||
total_claims: 1
|
||||
has_primary_logo: false
|
||||
has_favicon: true
|
||||
has_og_image: false
|
||||
favicon_count: 1
|
||||
|
|
|
|||
|
|
@ -37,13 +37,14 @@ ghcid:
|
|||
method: CH_ANNOTATOR_SOURCE
|
||||
ghcid_history:
|
||||
- ghcid: JP-13-HAC-L-SULSL
|
||||
valid_from: "2025-12-10T09:44:03Z"
|
||||
valid_from: '2025-12-10T09:44:03Z'
|
||||
valid_to: null
|
||||
reason: "Corrected region code from JP-TO (abbreviation) to JP-13 (Tokyo) per ISO 3166-2:JP"
|
||||
reason: Corrected region code from JP-TO (abbreviation) to JP-13 (Tokyo) per ISO
|
||||
3166-2:JP
|
||||
- ghcid: JP-TO-HAC-L-SULSL
|
||||
valid_from: null
|
||||
valid_to: "2025-12-10T09:44:03Z"
|
||||
reason: "Previous GHCID with incorrect region code"
|
||||
valid_to: '2025-12-10T09:44:03Z'
|
||||
reason: Previous GHCID with incorrect region code
|
||||
- ghcid: JP-TO-HAC-L-SULSL
|
||||
ghcid_numeric: 8607275504862694189
|
||||
valid_from: '2025-12-06T23:38:54.926025+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: Soka University Law School Library
|
||||
|
|
@ -204,3 +205,22 @@ location:
|
|||
geonames_id: 1863440
|
||||
geonames_name: Hachiōji
|
||||
feature_code: PPLA2
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T14:33:43.973027+00:00'
|
||||
source_url: http://lib.soka.ac.jp
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: favicon_url
|
||||
claim_value: http://lib.soka.ac.jp/images/common/favicon.png
|
||||
source_url: http://lib.soka.ac.jp
|
||||
css_selector: '[document] > html > head > link'
|
||||
retrieved_on: '2025-12-25T14:33:43.973027+00:00'
|
||||
extraction_method: crawl4ai_link_rel
|
||||
favicon_type: image/x-icon
|
||||
favicon_sizes: ''
|
||||
summary:
|
||||
total_claims: 1
|
||||
has_primary_logo: false
|
||||
has_favicon: true
|
||||
has_og_image: false
|
||||
favicon_count: 1
|
||||
|
|
|
|||
|
|
@ -37,13 +37,14 @@ ghcid:
|
|||
method: CH_ANNOTATOR_SOURCE
|
||||
ghcid_history:
|
||||
- ghcid: JP-13-HAC-L-SUSL
|
||||
valid_from: "2025-12-10T09:44:03Z"
|
||||
valid_from: '2025-12-10T09:44:03Z'
|
||||
valid_to: null
|
||||
reason: "Corrected region code from JP-TO (abbreviation) to JP-13 (Tokyo) per ISO 3166-2:JP"
|
||||
reason: Corrected region code from JP-TO (abbreviation) to JP-13 (Tokyo) per ISO
|
||||
3166-2:JP
|
||||
- ghcid: JP-TO-HAC-L-SUSL
|
||||
valid_from: null
|
||||
valid_to: "2025-12-10T09:44:03Z"
|
||||
reason: "Previous GHCID with incorrect region code"
|
||||
valid_to: '2025-12-10T09:44:03Z'
|
||||
reason: Previous GHCID with incorrect region code
|
||||
- ghcid: JP-TO-HAC-L-SUSL
|
||||
ghcid_numeric: 14973580792834017221
|
||||
valid_from: '2025-12-06T23:38:59.735891+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: Soka University Shirakaba Library
|
||||
|
|
@ -204,3 +205,22 @@ location:
|
|||
geonames_id: 1863440
|
||||
geonames_name: Hachiōji
|
||||
feature_code: PPLA2
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T14:33:53.316870+00:00'
|
||||
source_url: http://lib.soka.ac.jp/kango
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: favicon_url
|
||||
claim_value: http://lib.soka.ac.jp/images/common/favicon.png
|
||||
source_url: http://lib.soka.ac.jp/kango
|
||||
css_selector: '[document] > html > head > link'
|
||||
retrieved_on: '2025-12-25T14:33:53.316870+00:00'
|
||||
extraction_method: crawl4ai_link_rel
|
||||
favicon_type: image/x-icon
|
||||
favicon_sizes: ''
|
||||
summary:
|
||||
total_claims: 1
|
||||
has_primary_logo: false
|
||||
has_favicon: true
|
||||
has_og_image: false
|
||||
favicon_count: 1
|
||||
|
|
|
|||
|
|
@ -37,13 +37,14 @@ ghcid:
|
|||
method: CH_ANNOTATOR_SOURCE
|
||||
ghcid_history:
|
||||
- ghcid: JP-13-HAC-L-SWSCL
|
||||
valid_from: "2025-12-10T09:44:03Z"
|
||||
valid_from: '2025-12-10T09:44:03Z'
|
||||
valid_to: null
|
||||
reason: "Corrected region code from JP-TO (abbreviation) to JP-13 (Tokyo) per ISO 3166-2:JP"
|
||||
reason: Corrected region code from JP-TO (abbreviation) to JP-13 (Tokyo) per ISO
|
||||
3166-2:JP
|
||||
- ghcid: JP-TO-HAC-L-SWSCL
|
||||
valid_from: null
|
||||
valid_to: "2025-12-10T09:44:03Z"
|
||||
reason: "Previous GHCID with incorrect region code"
|
||||
valid_to: '2025-12-10T09:44:03Z'
|
||||
reason: Previous GHCID with incorrect region code
|
||||
- ghcid: JP-TO-HAC-L-SWSCL
|
||||
ghcid_numeric: 17472482588682182680
|
||||
valid_from: '2025-12-06T23:38:56.929585+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: Soka Woman's College Library
|
||||
|
|
@ -204,3 +205,22 @@ location:
|
|||
geonames_id: 1863440
|
||||
geonames_name: Hachiōji
|
||||
feature_code: PPLA2
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T14:34:02.652657+00:00'
|
||||
source_url: http://lib.soka.ac.jp/kahou
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: favicon_url
|
||||
claim_value: http://lib.soka.ac.jp/img/common/favicon.png
|
||||
source_url: http://lib.soka.ac.jp/kahou
|
||||
css_selector: '[document] > html > head > link'
|
||||
retrieved_on: '2025-12-25T14:34:02.652657+00:00'
|
||||
extraction_method: crawl4ai_link_rel
|
||||
favicon_type: image/x-icon
|
||||
favicon_sizes: ''
|
||||
summary:
|
||||
total_claims: 1
|
||||
has_primary_logo: false
|
||||
has_favicon: true
|
||||
has_og_image: false
|
||||
favicon_count: 1
|
||||
|
|
|
|||
|
|
@ -37,13 +37,14 @@ ghcid:
|
|||
method: CH_ANNOTATOR_SOURCE
|
||||
ghcid_history:
|
||||
- ghcid: JP-13-HAC-L-TL-tokyojunshindaigaku_library
|
||||
valid_from: "2025-12-10T09:44:03Z"
|
||||
valid_from: '2025-12-10T09:44:03Z'
|
||||
valid_to: null
|
||||
reason: "Corrected region code from JP-TO (abbreviation) to JP-13 (Tokyo) per ISO 3166-2:JP"
|
||||
reason: Corrected region code from JP-TO (abbreviation) to JP-13 (Tokyo) per ISO
|
||||
3166-2:JP
|
||||
- ghcid: JP-TO-HAC-L-TL-tokyojunshindaigaku_library
|
||||
valid_from: null
|
||||
valid_to: "2025-12-10T09:44:03Z"
|
||||
reason: "Previous GHCID with incorrect region code"
|
||||
valid_to: '2025-12-10T09:44:03Z'
|
||||
reason: Previous GHCID with incorrect region code
|
||||
- ghcid: JP-TO-HAC-L-TL-tokyojunshindaigaku_library
|
||||
ghcid_numeric: 9988006338368822697
|
||||
valid_from: '2025-12-06T23:38:55.417938+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: TOKYOJUNSHINDAIGAKU Library
|
||||
|
|
@ -196,7 +197,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.t-junshin.ac.jp/univ/gar
|
||||
wikidata_official_website: http://www.t-junshin.ac.jp/univ/gar
|
||||
|
|
@ -218,3 +220,28 @@ location:
|
|||
geonames_id: 1863440
|
||||
geonames_name: Hachiōji
|
||||
feature_code: PPLA2
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T14:34:10.531393+00:00'
|
||||
source_url: http://www.t-junshin.ac.jp/univ/gar
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: favicon_url
|
||||
claim_value: http://www.t-junshin.ac.jp/univ/wp-content/uploads/cropped-favicon-180x180.png
|
||||
source_url: http://www.t-junshin.ac.jp/univ/gar
|
||||
css_selector: '[document] > html > head > link:nth-of-type(40)'
|
||||
retrieved_on: '2025-12-25T14:34:10.531393+00:00'
|
||||
extraction_method: crawl4ai_link_rel
|
||||
favicon_type: ''
|
||||
favicon_sizes: ''
|
||||
- claim_type: og_image_url
|
||||
claim_value: http://www.t-junshin.ac.jp/univ/wp-content/uploads/null_img.jpg
|
||||
source_url: http://www.t-junshin.ac.jp/univ/gar
|
||||
css_selector: '[document] > html > head > meta:nth-of-type(10)'
|
||||
retrieved_on: '2025-12-25T14:34:10.531393+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
|
||||
|
|
|
|||
|
|
@ -37,13 +37,14 @@ ghcid:
|
|||
method: CH_ANNOTATOR_SOURCE
|
||||
ghcid_history:
|
||||
- ghcid: JP-13-HAC-L-TL-tokyozokeidaigakufuzoku_library
|
||||
valid_from: "2025-12-10T09:44:03Z"
|
||||
valid_from: '2025-12-10T09:44:03Z'
|
||||
valid_to: null
|
||||
reason: "Corrected region code from JP-TO (abbreviation) to JP-13 (Tokyo) per ISO 3166-2:JP"
|
||||
reason: Corrected region code from JP-TO (abbreviation) to JP-13 (Tokyo) per ISO
|
||||
3166-2:JP
|
||||
- ghcid: JP-TO-HAC-L-TL-tokyozokeidaigakufuzoku_library
|
||||
valid_from: null
|
||||
valid_to: "2025-12-10T09:44:03Z"
|
||||
reason: "Previous GHCID with incorrect region code"
|
||||
valid_to: '2025-12-10T09:44:03Z'
|
||||
reason: Previous GHCID with incorrect region code
|
||||
- ghcid: JP-TO-HAC-L-TL-tokyozokeidaigakufuzoku_library
|
||||
ghcid_numeric: 1565219728940050495
|
||||
valid_from: '2025-12-06T23:38:55.117520+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: TOKYOZOKEIDAIGAKUFUZOKU Library
|
||||
|
|
@ -215,3 +216,22 @@ location:
|
|||
geonames_id: 1863440
|
||||
geonames_name: Hachiōji
|
||||
feature_code: PPLA2
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T14:34:35.462645+00:00'
|
||||
source_url: http://www.zokei.ac.jp/library
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: favicon_url
|
||||
claim_value: https://www.zokei.ac.jp/wp-content/themes/zokeiweb/favicon.ico
|
||||
source_url: http://www.zokei.ac.jp/library
|
||||
css_selector: '[document] > html > head > link:nth-of-type(13)'
|
||||
retrieved_on: '2025-12-25T14:34:35.462645+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
|
||||
|
|
|
|||
|
|
@ -39,13 +39,14 @@ ghcid:
|
|||
method: CH_ANNOTATOR_SOURCE
|
||||
ghcid_history:
|
||||
- ghcid: JP-13-HAC-L-TL
|
||||
valid_from: "2025-12-10T09:44:03Z"
|
||||
valid_from: '2025-12-10T09:44:03Z'
|
||||
valid_to: null
|
||||
reason: "Corrected region code from JP-TO (abbreviation) to JP-13 (Tokyo) per ISO 3166-2:JP"
|
||||
reason: Corrected region code from JP-TO (abbreviation) to JP-13 (Tokyo) per ISO
|
||||
3166-2:JP
|
||||
- ghcid: JP-TO-HAC-L-TL
|
||||
valid_from: null
|
||||
valid_to: "2025-12-10T09:44:03Z"
|
||||
reason: "Previous GHCID with incorrect region code"
|
||||
valid_to: '2025-12-10T09:44:03Z'
|
||||
reason: Previous GHCID with incorrect region code
|
||||
- ghcid: JP-TO-HAC-L-TL
|
||||
ghcid_numeric: 16823901011793290075
|
||||
valid_from: '2025-12-06T23:38:55.017545+00:00'
|
||||
|
|
@ -103,8 +104,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: TAMABIJUTSUDAIGAKU Library
|
||||
|
|
@ -250,3 +251,22 @@ location:
|
|||
postal_code: 192-0394
|
||||
street_address: 2-1723 YARIMIZU, Hachioji Shi, Tokyo To, 192-0394
|
||||
normalization_timestamp: '2025-12-09T12:21:33.759165+00:00'
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T14:34:41.215907+00:00'
|
||||
source_url: http://library.tamabi.ac.jp
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: favicon_url
|
||||
claim_value: http://library.tamabi.ac.jp/opac/images/cyan/favicon.ico
|
||||
source_url: http://library.tamabi.ac.jp
|
||||
css_selector: '[document] > html > head > link:nth-of-type(9)'
|
||||
retrieved_on: '2025-12-25T14:34:41.215907+00:00'
|
||||
extraction_method: crawl4ai_link_rel
|
||||
favicon_type: image/x-icon
|
||||
favicon_sizes: ''
|
||||
summary:
|
||||
total_claims: 1
|
||||
has_primary_logo: false
|
||||
has_favicon: true
|
||||
has_og_image: false
|
||||
favicon_count: 1
|
||||
|
|
|
|||
|
|
@ -37,13 +37,14 @@ ghcid:
|
|||
method: CH_ANNOTATOR_SOURCE
|
||||
ghcid_history:
|
||||
- ghcid: JP-13-HAC-L-TUHL
|
||||
valid_from: "2025-12-10T09:44:03Z"
|
||||
valid_from: '2025-12-10T09:44:03Z'
|
||||
valid_to: null
|
||||
reason: "Corrected region code from JP-TO (abbreviation) to JP-13 (Tokyo) per ISO 3166-2:JP"
|
||||
reason: Corrected region code from JP-TO (abbreviation) to JP-13 (Tokyo) per ISO
|
||||
3166-2:JP
|
||||
- ghcid: JP-TO-HAC-L-TUHL
|
||||
valid_from: null
|
||||
valid_to: "2025-12-10T09:44:03Z"
|
||||
reason: "Previous GHCID with incorrect region code"
|
||||
valid_to: '2025-12-10T09:44:03Z'
|
||||
reason: Previous GHCID with incorrect region code
|
||||
- ghcid: JP-TO-HAC-L-TUHL
|
||||
ghcid_numeric: 7628512807518341674
|
||||
valid_from: '2025-12-06T23:38:55.009876+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: Takushoku University Hachioji Library
|
||||
|
|
@ -204,3 +205,20 @@ location:
|
|||
geonames_id: 1863440
|
||||
geonames_name: Hachiōji
|
||||
feature_code: PPLA2
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T14:34:57.604015+00:00'
|
||||
source_url: http://www.takushoku-u.ac.jp/library
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: og_image_url
|
||||
claim_value: https://www.takushoku-u.ac.jp/images/standard_photo_takudai_logo.gif
|
||||
source_url: http://www.takushoku-u.ac.jp/library
|
||||
css_selector: '[document] > html > head > meta:nth-of-type(15)'
|
||||
retrieved_on: '2025-12-25T14:34:57.604015+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
|
||||
|
|
|
|||
|
|
@ -37,13 +37,14 @@ ghcid:
|
|||
method: CH_ANNOTATOR_SOURCE
|
||||
ghcid_history:
|
||||
- ghcid: JP-13-HAC-L-YL
|
||||
valid_from: "2025-12-10T09:44:03Z"
|
||||
valid_from: '2025-12-10T09:44:03Z'
|
||||
valid_to: null
|
||||
reason: "Corrected region code from JP-TO (abbreviation) to JP-13 (Tokyo) per ISO 3166-2:JP"
|
||||
reason: Corrected region code from JP-TO (abbreviation) to JP-13 (Tokyo) per ISO
|
||||
3166-2:JP
|
||||
- ghcid: JP-TO-HAC-L-YL
|
||||
valid_from: null
|
||||
valid_to: "2025-12-10T09:44:03Z"
|
||||
reason: "Previous GHCID with incorrect region code"
|
||||
valid_to: '2025-12-10T09:44:03Z'
|
||||
reason: Previous GHCID with incorrect region code
|
||||
- ghcid: JP-TO-HAC-L-YL
|
||||
ghcid_numeric: 17924990199130339682
|
||||
valid_from: '2025-12-06T23:38:56.932170+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: YAMANOBIYOGEIJUTSUTANKIDAIGAKU Library
|
||||
|
|
@ -204,3 +205,37 @@ location:
|
|||
geonames_id: 1863440
|
||||
geonames_name: Hachiōji
|
||||
feature_code: PPLA2
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T14:35:31.607860+00:00'
|
||||
source_url: http://www.yamano.ac.jp/about/facilities/library.html
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: logo_url
|
||||
claim_value: http://www.yamano.ac.jp/about/facilities/image/logo_pc.png
|
||||
source_url: http://www.yamano.ac.jp/about/facilities/library.html
|
||||
css_selector: '[document] > html > body.home.home-404 > header.l-header > div.l-header__logo
|
||||
> div.l-header__logo__wrap > a.u-hidden-sp > img'
|
||||
retrieved_on: '2025-12-25T14:35:31.607860+00:00'
|
||||
extraction_method: crawl4ai_header_logo
|
||||
detection_confidence: high
|
||||
alt_text: ''
|
||||
- claim_type: favicon_url
|
||||
claim_value: http://www.yamano.ac.jp/about/facilities/lib/safari-pinned-tab.svg
|
||||
source_url: http://www.yamano.ac.jp/about/facilities/library.html
|
||||
css_selector: '[document] > html > head > link:nth-of-type(6)'
|
||||
retrieved_on: '2025-12-25T14:35:31.607860+00:00'
|
||||
extraction_method: crawl4ai_link_rel
|
||||
favicon_type: ''
|
||||
favicon_sizes: ''
|
||||
- claim_type: og_image_url
|
||||
claim_value: https://www.yamano.ac.jp/image/ogp.png
|
||||
source_url: http://www.yamano.ac.jp/about/facilities/library.html
|
||||
css_selector: '[document] > html > head > meta:nth-of-type(10)'
|
||||
retrieved_on: '2025-12-25T14:35:31.607860+00:00'
|
||||
extraction_method: crawl4ai_meta_og
|
||||
summary:
|
||||
total_claims: 3
|
||||
has_primary_logo: true
|
||||
has_favicon: true
|
||||
has_og_image: true
|
||||
favicon_count: 5
|
||||
|
|
|
|||
|
|
@ -37,13 +37,14 @@ ghcid:
|
|||
method: CH_ANNOTATOR_SOURCE
|
||||
ghcid_history:
|
||||
- ghcid: JP-13-HAC-L-YUANL
|
||||
valid_from: "2025-12-10T09:44:03Z"
|
||||
valid_from: '2025-12-10T09:44:03Z'
|
||||
valid_to: null
|
||||
reason: "Corrected region code from JP-TO (abbreviation) to JP-13 (Tokyo) per ISO 3166-2:JP"
|
||||
reason: Corrected region code from JP-TO (abbreviation) to JP-13 (Tokyo) per ISO
|
||||
3166-2:JP
|
||||
- ghcid: JP-TO-HAC-L-YUANL
|
||||
valid_from: null
|
||||
valid_to: "2025-12-10T09:44:03Z"
|
||||
reason: "Previous GHCID with incorrect region code"
|
||||
valid_to: '2025-12-10T09:44:03Z'
|
||||
reason: Previous GHCID with incorrect region code
|
||||
- ghcid: JP-TO-HAC-L-YUANL
|
||||
ghcid_numeric: 11857807885685771110
|
||||
valid_from: '2025-12-06T23:38:55.470295+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: Yamazaki University of Animal Nursing 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://univ.yamazaki.ac.jp/univ/about/library/
|
||||
wikidata_official_website: http://univ.yamazaki.ac.jp/univ/about/library/
|
||||
|
|
@ -212,3 +214,22 @@ location:
|
|||
geonames_id: 1863440
|
||||
geonames_name: Hachiōji
|
||||
feature_code: PPLA2
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T14:35:44.410851+00:00'
|
||||
source_url: http://univ.yamazaki.ac.jp/univ/about/library
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: logo_url
|
||||
claim_value: http://univ.yamazaki.ac.jp/Portals/0/images/univ/common/logo_univ.png?11826121542876
|
||||
source_url: http://univ.yamazaki.ac.jp/univ/about/library
|
||||
css_selector: '#dnn_ctr753_HtmlModule_HtmlModule_lblContent > div.logo > a > img'
|
||||
retrieved_on: '2025-12-25T14:35:44.410851+00:00'
|
||||
extraction_method: crawl4ai_header_logo
|
||||
detection_confidence: high
|
||||
alt_text: ''
|
||||
summary:
|
||||
total_claims: 1
|
||||
has_primary_logo: true
|
||||
has_favicon: false
|
||||
has_og_image: false
|
||||
favicon_count: 0
|
||||
|
|
|
|||
|
|
@ -214,3 +214,22 @@ location:
|
|||
geonames_id: 1863440
|
||||
geonames_name: Hachiōji
|
||||
feature_code: PPLA2
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T14:35:50.863327+00:00'
|
||||
source_url: https://www.city.hachioji.tokyo.jp/kankobunka/003/005/p005312.html
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: favicon_url
|
||||
claim_value: https://www.city.hachioji.tokyo.jp/share/imgs/main-favicon.ico
|
||||
source_url: https://www.city.hachioji.tokyo.jp/kankobunka/003/005/p005312.html
|
||||
css_selector: '[document] > html > head > link'
|
||||
retrieved_on: '2025-12-25T14:35:50.863327+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
|
||||
|
|
|
|||
|
|
@ -39,13 +39,14 @@ ghcid:
|
|||
method: CH_ANNOTATOR_SOURCE
|
||||
ghcid_history:
|
||||
- ghcid: JP-13-HAC-M-HSC
|
||||
valid_from: "2025-12-10T09:44:03Z"
|
||||
valid_from: '2025-12-10T09:44:03Z'
|
||||
valid_to: null
|
||||
reason: "Corrected region code from JP-TO (abbreviation) to JP-13 (Tokyo) per ISO 3166-2:JP"
|
||||
reason: Corrected region code from JP-TO (abbreviation) to JP-13 (Tokyo) per ISO
|
||||
3166-2:JP
|
||||
- ghcid: JP-TO-HAC-M-HSC
|
||||
valid_from: null
|
||||
valid_to: "2025-12-10T09:44:03Z"
|
||||
reason: "Previous GHCID with incorrect region code"
|
||||
valid_to: '2025-12-10T09:44:03Z'
|
||||
reason: Previous GHCID with incorrect region code
|
||||
- ghcid: JP-TO-HAC-M-HSC
|
||||
ghcid_numeric: 9848006179648696697
|
||||
valid_from: '2025-12-06T23:38:33.547319+00:00'
|
||||
|
|
@ -103,8 +104,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: HACHIOJI SCIENCE CENTER
|
||||
|
|
@ -195,8 +196,8 @@ wikidata_enrichment:
|
|||
description: museum devoted primarily to science
|
||||
- id: Q148319
|
||||
label: planetarium
|
||||
description: theatre built primarily for presenting educational and entertaining shows about astronomy and the night
|
||||
sky
|
||||
description: theatre built primarily for presenting educational and entertaining
|
||||
shows about astronomy and the night sky
|
||||
- id: Q842478
|
||||
label: children's museum
|
||||
description: type of museum geared to children
|
||||
|
|
@ -240,3 +241,22 @@ location:
|
|||
postal_code: 192-0062
|
||||
street_address: OYOKOCHO, Hachioji Shi, Tokyo To, 192-0062
|
||||
normalization_timestamp: '2025-12-09T12:21:34.524554+00:00'
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T14:35:55.684371+00:00'
|
||||
source_url: https://www.city.hachioji.tokyo.jp/shisetsu/003/p011705.html
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: favicon_url
|
||||
claim_value: https://www.city.hachioji.tokyo.jp/share/imgs/main-favicon.ico
|
||||
source_url: https://www.city.hachioji.tokyo.jp/shisetsu/003/p011705.html
|
||||
css_selector: '[document] > html > head > link'
|
||||
retrieved_on: '2025-12-25T14:35:55.684371+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
|
||||
|
|
|
|||
|
|
@ -211,3 +211,28 @@ wikidata_enrichment:
|
|||
wikidata_official_website: https://www.toyaku.ac.jp/campus/hachioji/plant/
|
||||
wikidata_social_media:
|
||||
instagram_username: medicinalplantgardentupls
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T14:36:13.148358+00:00'
|
||||
source_url: https://www.toyaku.ac.jp/campus/hachioji/plant
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: favicon_url
|
||||
claim_value: https://www.toyaku.ac.jp/apple-touch-icon.jpg
|
||||
source_url: https://www.toyaku.ac.jp/campus/hachioji/plant
|
||||
css_selector: '[document] > html > head > link:nth-of-type(3)'
|
||||
retrieved_on: '2025-12-25T14:36:13.148358+00:00'
|
||||
extraction_method: crawl4ai_link_rel
|
||||
favicon_type: ''
|
||||
favicon_sizes: ''
|
||||
- claim_type: og_image_url
|
||||
claim_value: https://www.toyaku.ac.jp/common/images/img-ogp-01.jpg
|
||||
source_url: https://www.toyaku.ac.jp/campus/hachioji/plant
|
||||
css_selector: '[document] > html > head > meta:nth-of-type(10)'
|
||||
retrieved_on: '2025-12-25T14:36:13.148358+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
|
||||
|
|
|
|||
|
|
@ -1245,3 +1245,28 @@ youtube_enrichment:
|
|||
comments: []
|
||||
thumbnail_url: https://i.ytimg.com/vi/cWJtBc9gc4g/hqdefault.jpg
|
||||
status: SUCCESS
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T14:36:22.927970+00:00'
|
||||
source_url: https://www.fujibi.or.jp
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: favicon_url
|
||||
claim_value: https://www.fujibi.or.jp/wp-content/themes/fam/icon.svg
|
||||
source_url: https://www.fujibi.or.jp
|
||||
css_selector: '[document] > html > head > link:nth-of-type(3)'
|
||||
retrieved_on: '2025-12-25T14:36:22.927970+00:00'
|
||||
extraction_method: crawl4ai_link_rel
|
||||
favicon_type: image/svg+xml
|
||||
favicon_sizes: ''
|
||||
- claim_type: og_image_url
|
||||
claim_value: https://www.fujibi.or.jp/wp-content/themes/fam/ogimage.png
|
||||
source_url: https://www.fujibi.or.jp
|
||||
css_selector: '[document] > html > head > meta:nth-of-type(14)'
|
||||
retrieved_on: '2025-12-25T14:36:22.927970+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
|
||||
|
|
|
|||
|
|
@ -232,3 +232,22 @@ wikidata_enrichment:
|
|||
commons_category: Tama Forest Science Garden
|
||||
image: Tama Forest Science Garden 2012.4.jpg
|
||||
wikidata_image: Tama Forest Science Garden 2012.4.jpg
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T14:36:34.172503+00:00'
|
||||
source_url: https://www.ffpri.affrc.go.jp/tmk
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: favicon_url
|
||||
claim_value: https://www.ffpri.affrc.go.jp/shared/images/favicon/apple-touch-icon-precomposed.png
|
||||
source_url: https://www.ffpri.affrc.go.jp/tmk
|
||||
css_selector: '[document] > html > head > link:nth-of-type(14)'
|
||||
retrieved_on: '2025-12-25T14:36:34.172503+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
|
||||
|
|
|
|||
|
|
@ -248,3 +248,22 @@ wikidata_enrichment:
|
|||
- id: Q11528100
|
||||
label: Tohata Architects & Engineers
|
||||
description: ''
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T14:36:44.512279+00:00'
|
||||
source_url: https://www.takao599museum.jp
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: favicon_url
|
||||
claim_value: https://www.takao599museum.jp/apple-touch-icon-precomposed.png
|
||||
source_url: https://www.takao599museum.jp
|
||||
css_selector: '[document] > html.fac-js-enabled.fac-dom-loaded > head > link:nth-of-type(3)'
|
||||
retrieved_on: '2025-12-25T14:36:44.512279+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
|
||||
|
|
|
|||
|
|
@ -152,3 +152,28 @@ location:
|
|||
geonames_id: 1863440
|
||||
geonames_name: Hachiōji
|
||||
feature_code: PPLA2
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T14:36:54.077648+00:00'
|
||||
source_url: http://teikyo.jp/museum
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: favicon_url
|
||||
claim_value: https://teikyo.jp/museum/wp-content/uploads/2022/04/favicon-1.png
|
||||
source_url: http://teikyo.jp/museum
|
||||
css_selector: '[document] > html > head > link:nth-of-type(17)'
|
||||
retrieved_on: '2025-12-25T14:36:54.077648+00:00'
|
||||
extraction_method: crawl4ai_link_rel
|
||||
favicon_type: ''
|
||||
favicon_sizes: 32x32
|
||||
- claim_type: og_image_url
|
||||
claim_value: https://teikyo.jp/museum/wp-content/uploads/2025/04/eyecatch_2025_seminar_sai-scaled.jpg
|
||||
source_url: http://teikyo.jp/museum
|
||||
css_selector: '[document] > html > head > meta:nth-of-type(17)'
|
||||
retrieved_on: '2025-12-25T14:36:54.077648+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
|
||||
|
|
|
|||
|
|
@ -32,13 +32,14 @@ ghcid:
|
|||
method: CH_ANNOTATOR_SOURCE
|
||||
ghcid_history:
|
||||
- ghcid: JP-13-HAG-A-HTA-haga_town_archives
|
||||
valid_from: "2025-12-10T09:44:03Z"
|
||||
valid_from: '2025-12-10T09:44:03Z'
|
||||
valid_to: null
|
||||
reason: "Corrected region code from JP-TO (abbreviation) to JP-13 (Tokyo) per ISO 3166-2:JP"
|
||||
reason: Corrected region code from JP-TO (abbreviation) to JP-13 (Tokyo) per ISO
|
||||
3166-2:JP
|
||||
- ghcid: JP-TO-HAG-A-HTA-haga_town_archives
|
||||
valid_from: null
|
||||
valid_to: "2025-12-10T09:44:03Z"
|
||||
reason: "Previous GHCID with incorrect region code"
|
||||
valid_to: '2025-12-10T09:44:03Z'
|
||||
reason: Previous GHCID with incorrect region code
|
||||
- ghcid: JP-TO-HAG-A-HTA-haga_town_archives
|
||||
ghcid_numeric: 15893078129013026606
|
||||
valid_from: '2025-12-06T23:38:29.533372+00:00'
|
||||
|
|
@ -96,8 +97,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: Haga Town Archives
|
||||
|
|
@ -153,3 +154,22 @@ location:
|
|||
geonames_id: 11112495
|
||||
geonames_name: Haga
|
||||
feature_code: PPL
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T14:37:54.928146+00:00'
|
||||
source_url: https://www.town.tochigi-haga.lg.jp/menu/kurashi/sports/shogai/johokan/index.html
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: favicon_url
|
||||
claim_value: https://www.town.tochigi-haga.lg.jp/shared/images/favicon/apple-touch-icon-precomposed.png
|
||||
source_url: https://www.town.tochigi-haga.lg.jp/menu/kurashi/sports/shogai/johokan/index.html
|
||||
css_selector: '[document] > html > head > link:nth-of-type(14)'
|
||||
retrieved_on: '2025-12-25T14:37:54.928146+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
|
||||
|
|
|
|||
|
|
@ -32,13 +32,14 @@ ghcid:
|
|||
method: CH_ANNOTATOR_SOURCE
|
||||
ghcid_history:
|
||||
- ghcid: JP-13-HAG-A-HTA
|
||||
valid_from: "2025-12-10T09:44:03Z"
|
||||
valid_from: '2025-12-10T09:44:03Z'
|
||||
valid_to: null
|
||||
reason: "Corrected region code from JP-TO (abbreviation) to JP-13 (Tokyo) per ISO 3166-2:JP"
|
||||
reason: Corrected region code from JP-TO (abbreviation) to JP-13 (Tokyo) per ISO
|
||||
3166-2:JP
|
||||
- ghcid: JP-TO-HAG-A-HTA
|
||||
valid_from: null
|
||||
valid_to: "2025-12-10T09:44:03Z"
|
||||
reason: "Previous GHCID with incorrect region code"
|
||||
valid_to: '2025-12-10T09:44:03Z'
|
||||
reason: Previous GHCID with incorrect region code
|
||||
- ghcid: JP-TO-HAG-A-HTA
|
||||
ghcid_numeric: 13007848696833093898
|
||||
valid_from: '2025-12-06T23:35:50.087366+00:00'
|
||||
|
|
@ -96,8 +97,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: Haga Town Archives
|
||||
|
|
@ -153,3 +154,22 @@ location:
|
|||
geonames_id: 11112495
|
||||
geonames_name: Haga
|
||||
feature_code: PPL
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T14:52:28.786668+00:00'
|
||||
source_url: https://www.town.tochigi-haga.lg.jp/menu/kurashi/sports/shogai/johokan/index.html
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: favicon_url
|
||||
claim_value: https://www.town.tochigi-haga.lg.jp/shared/images/favicon/apple-touch-icon-precomposed.png
|
||||
source_url: https://www.town.tochigi-haga.lg.jp/menu/kurashi/sports/shogai/johokan/index.html
|
||||
css_selector: '[document] > html > head > link:nth-of-type(14)'
|
||||
retrieved_on: '2025-12-25T14:52:28.786668+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
|
||||
|
|
|
|||
|
|
@ -218,3 +218,22 @@ wikidata_enrichment:
|
|||
wikidata_media:
|
||||
image: Ichikai Town Library & Museum of History and Folklore.jpg
|
||||
wikidata_image: Ichikai Town Library & Museum of History and Folklore.jpg
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T14:56:22.629763+00:00'
|
||||
source_url: https://www.library.ichikai.tochigi.jp
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: logo_url
|
||||
claim_value: https://www.library.ichikai.tochigi.jp/images/header_logo.png
|
||||
source_url: https://www.library.ichikai.tochigi.jp
|
||||
css_selector: '#index > header > div.block.clearfix > h1 > a > img'
|
||||
retrieved_on: '2025-12-25T14:56:22.629763+00:00'
|
||||
extraction_method: crawl4ai_header_logo
|
||||
detection_confidence: high
|
||||
alt_text: 市貝町立図書館・歴史民俗資料館
|
||||
summary:
|
||||
total_claims: 1
|
||||
has_primary_logo: true
|
||||
has_favicon: false
|
||||
has_og_image: false
|
||||
favicon_count: 0
|
||||
|
|
|
|||
|
|
@ -201,3 +201,22 @@ wikidata_enrichment:
|
|||
wikidata_web:
|
||||
official_website: http://www.town.mashiko.tochigi.jp/page/page000173.html
|
||||
wikidata_official_website: http://www.town.mashiko.tochigi.jp/page/page000173.html
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T14:56:31.565829+00:00'
|
||||
source_url: http://www.town.mashiko.tochigi.jp/page/page000173.html
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: favicon_url
|
||||
claim_value: http://www.town.mashiko.tochigi.jp/page/web_clip_icon.png
|
||||
source_url: http://www.town.mashiko.tochigi.jp/page/page000173.html
|
||||
css_selector: '[document] > html > body > link:nth-of-type(2)'
|
||||
retrieved_on: '2025-12-25T14:56:31.565829+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
|
||||
|
|
|
|||
|
|
@ -201,3 +201,23 @@ wikidata_enrichment:
|
|||
wikidata_web:
|
||||
official_website: http://www.town.motegi.tochigi.jp/motegi/nextpage.php?cd=000000381&syurui=2&lev=2&hidchangemoji=2
|
||||
wikidata_official_website: http://www.town.motegi.tochigi.jp/motegi/nextpage.php?cd=000000381&syurui=2&lev=2&hidchangemoji=2
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T14:56:42.473308+00:00'
|
||||
source_url: http://www.town.motegi.tochigi.jp/motegi/nextpage.php?cd=000000381&syurui=2&lev=2&hidchangemoji=2
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: logo_url
|
||||
claim_value: http://www.town.motegi.tochigi.jp/motegi/image/symbol.png
|
||||
source_url: http://www.town.motegi.tochigi.jp/motegi/nextpage.php?cd=000000381&syurui=2&lev=2&hidchangemoji=2
|
||||
css_selector: '#header > a.navbar-brand > div.d-flex.align-items-center > div.mr-3
|
||||
> img.mt-logo-image'
|
||||
retrieved_on: '2025-12-25T14:56:42.473308+00:00'
|
||||
extraction_method: crawl4ai_header_logo
|
||||
detection_confidence: high
|
||||
alt_text: 茂木町町章
|
||||
summary:
|
||||
total_claims: 1
|
||||
has_primary_logo: true
|
||||
has_favicon: false
|
||||
has_og_image: false
|
||||
favicon_count: 0
|
||||
|
|
|
|||
|
|
@ -256,3 +256,22 @@ wikidata_enrichment:
|
|||
wikidata_official_website: *id007
|
||||
wikidata_social_media:
|
||||
twitter_username: hagamachisogoj1
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T14:56:48.192011+00:00'
|
||||
source_url: https://www.town.tochigi-haga.lg.jp/menu/kurashi/sports/shogai/johokan/index.html
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: favicon_url
|
||||
claim_value: https://www.town.tochigi-haga.lg.jp/shared/images/favicon/apple-touch-icon-precomposed.png
|
||||
source_url: https://www.town.tochigi-haga.lg.jp/menu/kurashi/sports/shogai/johokan/index.html
|
||||
css_selector: '[document] > html > head > link:nth-of-type(14)'
|
||||
retrieved_on: '2025-12-25T14:56:48.192011+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
|
||||
|
|
|
|||
|
|
@ -32,13 +32,14 @@ ghcid:
|
|||
method: CH_ANNOTATOR_SOURCE
|
||||
ghcid_history:
|
||||
- ghcid: JP-13-HAG-M-IHFM
|
||||
valid_from: "2025-12-10T09:44:04Z"
|
||||
valid_from: '2025-12-10T09:44:04Z'
|
||||
valid_to: null
|
||||
reason: "Corrected region code from JP-TO (abbreviation) to JP-13 (Tokyo) per ISO 3166-2:JP"
|
||||
reason: Corrected region code from JP-TO (abbreviation) to JP-13 (Tokyo) per ISO
|
||||
3166-2:JP
|
||||
- ghcid: JP-TO-HAG-M-IHFM
|
||||
valid_from: null
|
||||
valid_to: "2025-12-10T09:44:04Z"
|
||||
reason: "Previous GHCID with incorrect region code"
|
||||
valid_to: '2025-12-10T09:44:04Z'
|
||||
reason: Previous GHCID with incorrect region code
|
||||
- ghcid: JP-TO-HAG-M-IHFM
|
||||
ghcid_numeric: 13648974713677583673
|
||||
valid_from: '2025-12-06T23:38:31.926481+00:00'
|
||||
|
|
@ -96,8 +97,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: ICHIKAI HISTORICAL AND FOLK MUSEUM
|
||||
|
|
@ -153,3 +154,22 @@ location:
|
|||
geonames_id: 13156713
|
||||
geonames_name: Ichikai
|
||||
feature_code: PPL
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T14:56:55.786042+00:00'
|
||||
source_url: http://www.library.ichikai.tochigi.jp
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: logo_url
|
||||
claim_value: http://www.library.ichikai.tochigi.jp/images/header_logo.png
|
||||
source_url: http://www.library.ichikai.tochigi.jp
|
||||
css_selector: '#index > header > div.block.clearfix > h1 > a > img'
|
||||
retrieved_on: '2025-12-25T14:56:55.786042+00:00'
|
||||
extraction_method: crawl4ai_header_logo
|
||||
detection_confidence: high
|
||||
alt_text: 市貝町立図書館・歴史民俗資料館
|
||||
summary:
|
||||
total_claims: 1
|
||||
has_primary_logo: true
|
||||
has_favicon: false
|
||||
has_og_image: false
|
||||
favicon_count: 0
|
||||
|
|
|
|||
|
|
@ -871,3 +871,22 @@ youtube_enrichment:
|
|||
comments: []
|
||||
thumbnail_url: https://i.ytimg.com/vi/x_q8bbUYgeU/hqdefault.jpg
|
||||
status: SUCCESS
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T14:57:04.020537+00:00'
|
||||
source_url: http://www.mashiko-museum.jp
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: favicon_url
|
||||
claim_value: http://www.mashiko-museum.jp/icon_images/iphoneicon.png
|
||||
source_url: http://www.mashiko-museum.jp
|
||||
css_selector: '[document] > html > head > link:nth-of-type(2)'
|
||||
retrieved_on: '2025-12-25T14:57:04.020537+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
|
||||
|
|
|
|||
|
|
@ -154,3 +154,22 @@ location:
|
|||
geonames_id: 2111827
|
||||
geonames_name: Motegi
|
||||
feature_code: PPL
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T14:57:13.583438+00:00'
|
||||
source_url: https://fuminomori.jp
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: favicon_url
|
||||
claim_value: https://fuminomori.jp/templates/motegilibrary/favicon.ico
|
||||
source_url: https://fuminomori.jp
|
||||
css_selector: '[document] > html > head > link'
|
||||
retrieved_on: '2025-12-25T14:57:13.583438+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
|
||||
|
|
|
|||
|
|
@ -204,3 +204,28 @@ wikidata_enrichment:
|
|||
wikidata_web:
|
||||
official_website: http://www.city.hamura.tokyo.jp/0000002123.html
|
||||
wikidata_official_website: http://www.city.hamura.tokyo.jp/0000002123.html
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T14:57:43.203033+00:00'
|
||||
source_url: http://www.city.hamura.tokyo.jp/0000002123.html
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: favicon_url
|
||||
claim_value: http://www.city.hamura.tokyo.jp/design_img/favicon.ico
|
||||
source_url: http://www.city.hamura.tokyo.jp/0000002123.html
|
||||
css_selector: '[document] > html > head > link:nth-of-type(6)'
|
||||
retrieved_on: '2025-12-25T14:57:43.203033+00:00'
|
||||
extraction_method: crawl4ai_link_rel
|
||||
favicon_type: ''
|
||||
favicon_sizes: ''
|
||||
- claim_type: og_image_url
|
||||
claim_value: https://www.city.hamura.tokyo.jp/design_img/og_image.png
|
||||
source_url: http://www.city.hamura.tokyo.jp/0000002123.html
|
||||
css_selector: '[document] > html > head > meta:nth-of-type(6)'
|
||||
retrieved_on: '2025-12-25T14:57:43.203033+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
|
||||
|
|
|
|||
|
|
@ -204,3 +204,22 @@ wikidata_enrichment:
|
|||
wikidata_web:
|
||||
official_website: http://www.hamura-library.tokyo.jp/
|
||||
wikidata_official_website: http://www.hamura-library.tokyo.jp/
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T14:57:54.794087+00:00'
|
||||
source_url: https://www.hamura-library.tokyo.jp
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: favicon_url
|
||||
claim_value: https://www.hamura-library.tokyo.jp/themes/lib_theme/favicon.ico
|
||||
source_url: https://www.hamura-library.tokyo.jp
|
||||
css_selector: '[document] > html > head.notranslate > link'
|
||||
retrieved_on: '2025-12-25T14:57:54.794087+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
|
||||
|
|
|
|||
|
|
@ -32,13 +32,14 @@ ghcid:
|
|||
method: CH_ANNOTATOR_SOURCE
|
||||
ghcid_history:
|
||||
- ghcid: JP-13-HAM-M-HM
|
||||
valid_from: "2025-12-10T09:44:04Z"
|
||||
valid_from: '2025-12-10T09:44:04Z'
|
||||
valid_to: null
|
||||
reason: "Corrected region code from JP-TO (abbreviation) to JP-13 (Tokyo) per ISO 3166-2:JP"
|
||||
reason: Corrected region code from JP-TO (abbreviation) to JP-13 (Tokyo) per ISO
|
||||
3166-2:JP
|
||||
- ghcid: JP-TO-HAM-M-HM
|
||||
valid_from: null
|
||||
valid_to: "2025-12-10T09:44:04Z"
|
||||
reason: "Previous GHCID with incorrect region code"
|
||||
valid_to: '2025-12-10T09:44:04Z'
|
||||
reason: Previous GHCID with incorrect region code
|
||||
- ghcid: JP-TO-HAM-M-HM
|
||||
ghcid_numeric: 14228598473420585810
|
||||
valid_from: '2025-12-06T23:38:33.728753+00:00'
|
||||
|
|
@ -96,8 +97,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: HAMURA MUSEUM
|
||||
|
|
@ -151,3 +152,28 @@ location:
|
|||
geonames_id: 11611629
|
||||
geonames_name: Hamura
|
||||
feature_code: PPLA2
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T14:58:01.164034+00:00'
|
||||
source_url: https://www.city.hamura.tokyo.jp/0000005474.html
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: favicon_url
|
||||
claim_value: https://www.city.hamura.tokyo.jp/design_img/favicon.ico
|
||||
source_url: https://www.city.hamura.tokyo.jp/0000005474.html
|
||||
css_selector: '[document] > html > head > link:nth-of-type(6)'
|
||||
retrieved_on: '2025-12-25T14:58:01.164034+00:00'
|
||||
extraction_method: crawl4ai_link_rel
|
||||
favicon_type: ''
|
||||
favicon_sizes: ''
|
||||
- claim_type: og_image_url
|
||||
claim_value: https://www.city.hamura.tokyo.jp/design_img/og_image.png
|
||||
source_url: https://www.city.hamura.tokyo.jp/0000005474.html
|
||||
css_selector: '[document] > html > head > meta:nth-of-type(6)'
|
||||
retrieved_on: '2025-12-25T14:58:01.164034+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
|
||||
|
|
|
|||
|
|
@ -39,13 +39,14 @@ ghcid:
|
|||
method: CH_ANNOTATOR_SOURCE
|
||||
ghcid_history:
|
||||
- ghcid: JP-13-HAM-M-HZP
|
||||
valid_from: "2025-12-10T09:44:04Z"
|
||||
valid_from: '2025-12-10T09:44:04Z'
|
||||
valid_to: null
|
||||
reason: "Corrected region code from JP-TO (abbreviation) to JP-13 (Tokyo) per ISO 3166-2:JP"
|
||||
reason: Corrected region code from JP-TO (abbreviation) to JP-13 (Tokyo) per ISO
|
||||
3166-2:JP
|
||||
- ghcid: JP-TO-HAM-M-HZP
|
||||
valid_from: null
|
||||
valid_to: "2025-12-10T09:44:04Z"
|
||||
reason: "Previous GHCID with incorrect region code"
|
||||
valid_to: '2025-12-10T09:44:04Z'
|
||||
reason: Previous GHCID with incorrect region code
|
||||
- ghcid: JP-TO-HAM-M-HZP
|
||||
ghcid_numeric: 8960255251096834969
|
||||
valid_from: '2025-12-06T23:38:33.730945+00:00'
|
||||
|
|
@ -103,8 +104,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: HAMURA ZOOLOGICAL PARK
|
||||
|
|
@ -202,8 +203,8 @@ wikidata_enrichment:
|
|||
instance_of: &id004
|
||||
- id: Q43501
|
||||
label: zoo
|
||||
description: 'collection of assorted wild animal species kept for purposes like: study, conservation and, or, commercial
|
||||
exhibition'
|
||||
description: 'collection of assorted wild animal species kept for purposes like:
|
||||
study, conservation and, or, commercial exhibition'
|
||||
wikidata_instance_of: *id004
|
||||
wikidata_location:
|
||||
country: &id005
|
||||
|
|
@ -250,3 +251,28 @@ location:
|
|||
postal_code: 205-0012
|
||||
street_address: HANE, Hamura Shi, Tokyo To, 205-0012
|
||||
normalization_timestamp: '2025-12-09T12:21:35.565489+00:00'
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T14:58:10.100083+00:00'
|
||||
source_url: http://www.t-net.ne.jp/~hamura-z
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: favicon_url
|
||||
claim_value: http://hamurazoo.jp/icon.png
|
||||
source_url: http://www.t-net.ne.jp/~hamura-z
|
||||
css_selector: '[document] > html > head > link:nth-of-type(3)'
|
||||
retrieved_on: '2025-12-25T14:58:10.100083+00:00'
|
||||
extraction_method: crawl4ai_link_rel
|
||||
favicon_type: ''
|
||||
favicon_sizes: ''
|
||||
- claim_type: og_image_url
|
||||
claim_value: http://hamurazoo.jp/ogimg.jpg
|
||||
source_url: http://www.t-net.ne.jp/~hamura-z
|
||||
css_selector: '[document] > html > head > meta:nth-of-type(13)'
|
||||
retrieved_on: '2025-12-25T14:58:10.100083+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
|
||||
|
|
|
|||
|
|
@ -253,3 +253,22 @@ location:
|
|||
geonames_id: 9290610
|
||||
feature_code: PPL
|
||||
normalization_timestamp: '2025-12-09T06:53:34.141451+00:00'
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T14:58:17.872556+00:00'
|
||||
source_url: http://www.nishiwaki-cs.or.jp/terra
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: favicon_url
|
||||
claim_value: http://www.nishiwaki-cs.or.jp/image/animated_favicon2.gif
|
||||
source_url: http://www.nishiwaki-cs.or.jp/terra
|
||||
css_selector: '[document] > html > head > link'
|
||||
retrieved_on: '2025-12-25T14:58:17.872556+00:00'
|
||||
extraction_method: crawl4ai_link_rel
|
||||
favicon_type: image/gif
|
||||
favicon_sizes: ''
|
||||
summary:
|
||||
total_claims: 1
|
||||
has_primary_logo: false
|
||||
has_favicon: true
|
||||
has_og_image: false
|
||||
favicon_count: 1
|
||||
|
|
|
|||
|
|
@ -204,3 +204,20 @@ wikidata_enrichment:
|
|||
wikidata_web:
|
||||
official_website: http://www.lib.higashiyamato.tokyo.jp/index.html
|
||||
wikidata_official_website: http://www.lib.higashiyamato.tokyo.jp/index.html
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T14:59:47.640682+00:00'
|
||||
source_url: https://www.lib.higashiyamato.tokyo.jp
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: og_image_url
|
||||
claim_value: http://localhost/TOSHOW/asp/shared/img/snsThumbnail.png
|
||||
source_url: https://www.lib.higashiyamato.tokyo.jp
|
||||
css_selector: '[document] > html > head > meta:nth-of-type(15)'
|
||||
retrieved_on: '2025-12-25T14:59:47.640682+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
|
||||
|
|
|
|||
|
|
@ -204,3 +204,20 @@ wikidata_enrichment:
|
|||
wikidata_web:
|
||||
official_website: http://www.lib.higashiyamato.tokyo.jp/index.html
|
||||
wikidata_official_website: http://www.lib.higashiyamato.tokyo.jp/index.html
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T14:59:59.088263+00:00'
|
||||
source_url: https://www.lib.higashiyamato.tokyo.jp
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: og_image_url
|
||||
claim_value: http://localhost/TOSHOW/asp/shared/img/snsThumbnail.png
|
||||
source_url: https://www.lib.higashiyamato.tokyo.jp
|
||||
css_selector: '[document] > html > head > meta:nth-of-type(15)'
|
||||
retrieved_on: '2025-12-25T14:59:59.088263+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
|
||||
|
|
|
|||
|
|
@ -205,3 +205,20 @@ wikidata_enrichment:
|
|||
wikidata_web:
|
||||
official_website: http://www.lib.higashiyamato.tokyo.jp/
|
||||
wikidata_official_website: http://www.lib.higashiyamato.tokyo.jp/
|
||||
logo_enrichment:
|
||||
enrichment_timestamp: '2025-12-25T15:00:08.551604+00:00'
|
||||
source_url: https://www.lib.higashiyamato.tokyo.jp
|
||||
extraction_method: crawl4ai
|
||||
claims:
|
||||
- claim_type: og_image_url
|
||||
claim_value: http://localhost/TOSHOW/asp/shared/img/snsThumbnail.png
|
||||
source_url: https://www.lib.higashiyamato.tokyo.jp
|
||||
css_selector: '[document] > html > head > meta:nth-of-type(15)'
|
||||
retrieved_on: '2025-12-25T15:00:08.551604+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
|
||||
|
|
|
|||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue