Overview

The Cultural Japan RDF store contains information about exhibitions. You can retrieve a list using a query like the following, specifying type:展覧会 (Exhibition) for rdf:type.

PPs}RRe?EElsFFeIIcrXXtdftrd:ryditdpfsyfestps::ie:nl<<ctahhtybttpettelpp:s:w?:hleawr;bjweepwls.{ew.a3r.cohr.gg2.0j0p0//t0e1r/mr/dtfy-psec/h>ema#>

https://ld.cultural.jp/snorql/?query=select+distinct+*+where+{ %3Fs+rdf%3Atype+type%3A展覧会%3B +++++++rdfs%3Alabel+%3Flabel+.+ } ++

This article introduces an example of utilizing the information from these exhibitions.

List of Exhibitions

Each exhibition has values such as jps:temporal and jps:spatial. (These may have multiple values.)

https://ld.cultural.jp/data/apmoa-exhib-2021-soga

Using the following query, you can retrieve a list including exhibition metadata.

PPPPs?(((((w}goRRRResGGGGCh?rrEEEElRRRROesooodFFFFe?OOOOUrppueIIIIclUUUUNerotoootprXXXXtaPPPPTdpipppib____({ftotttoobbtrsjdeCCCCD:riniiipnyyydcpilOOOOItdoaoootapfhssNNNNSyfnlnnnil??ese:t?CCCCTpsaaaaoss::miaAAAAIe:l{llln{a<ncTTTTNla??<<:hcc((((Cta{?{{{lslhhtteDDDDTybsatt<tsIIIIpe????{sbtthpsSSSS?elssssscepptsTTTTw:c?hls:t:?IIIIo?jhsjsse:p/iNNNNrlpecpcm?:mCCCCkasmhshsaswjaTTTTF;b:ae:ec:pjw/pgeea:mtmhwapwsse???Ialcsaeaeots.cestjFtcp:m:mriewhapep(u.eatpdakaa3eramsBrsteoe:Flr.mctp_Oesimrsie_coahiotUdIapacmalhr..areN)nllrata.gglamDfr/igubgro_lp(Araspere2g.l_o?S/dlctel.0jalrdsf/hi?dj0pbaae?csreoi?p0/eblsch:dmnm?t//tlescoelfaawet0esl;rumas:?gome1r;sinab:dderpr/m;spt:eleekomr/setOplass.Fr/dpespifrbcceatfrpeaoWo?err}aly-oaprnovsliit_pspraasripppuleceart)kda?ttra/hrtao,Fettiieb>etotrerieoodemyro=Ca/amnnla#=r"Otrlps}#>"=|Nud_o??>|""Crflrj.d"|Aesaape)"Td:bls}s)A()le__cASsalltrSAtbsaeiS?rebmp?j(l.epts?p?loiptsd?}sroae_eaancmtsc.lipeccs?aomre}jlrpis.p_aopssllrt}_a_ai.tblloeea)nmlbs}p)e)ol,r)aIlF(?laacncge(s?sde?sicmraigpetions)!="",CONCAT("@",lang(?descriptions)),"")),"");separator="|")AS?description)

https://ld.cultural.jp/snorql/?query=PREFIX+type%3A+<https%3A%2F%2Fjpsearch.go.jp%2Fterm%2Ftype%2F> PREFIX+rdfs%3A+<http%3A%2F%2Fwww.w3.org%2F2000%2F01%2Frdf-schema%23> PREFIX+schema%3A+<http%3A%2F%2Fschema.org%2F> PREFIX+jps%3A+<https%3A%2F%2Fjpsearch.go.jp%2Fterm%2Fproperty%23> select+distinct+ %3Fs+%3Flabel+%3Faccess+%3Fimage (GROUP_CONCAT(DISTINCT+%3Fspatial_labels%3B+separator%3D"|")+AS+%3Fspacial_label) (GROUP_CONCAT(DISTINCT+%3Ftemporal_labels%3B+separator%3D"|")+AS+%3Ftemporal_label) (GROUP_CONCAT(DISTINCT+%3Fjps_temporals%3B+separator%3D"|")+AS+%3Fjps_temporal) (GROUP_CONCAT(DISTINCT+IF(BOUND(%3Fdescriptions)%2C+CONCAT(str(%3Fdescriptions)%2C+IF(lang(%3Fdescriptions)+!%3D+""%2C+CONCAT("%40"%2C+lang(%3Fdescriptions))%2C+""))%2C+"")%3B+separator%3D"|")+AS+%3Fdescription) (COUNT(DISTINCT+%3FworkFeatured)+AS+%3FcountOfWorkFeatured) where+{ %3Fs+rdf%3Atype+type%3A展覧会%3B +++++++rdfs%3Alabel+%3Flabel+.+ ++ optional+{+%3Fs+jps%3AaccessInfo%2Fschema%3Aprovider%2Frdfs%3Alabel+%3Faccess+.++} ++optional+{+%3Fs+schema%3Aspatial%2Frdfs%3Alabel+%3Fspatial_labels+.+} ++++optional+{+%3Fs+schema%3Atemporal%2Frdfs%3Alabel+%3Ftemporal_labels+.+} ++++optional+{+%3Fs+jps%3Atemporal%2Fschema%3Adescription+%3Fjps_temporals+.+} ++++optional+{+%3Fs+schema%3Adescription+%3Fdescriptions+.+} ++++++optional+{+%3Fs+schema%3Aimage+%3Fimage+.+} ++optional+{%3Fs+schema%3AworkFeatured+%3FworkFeatured+} } group+by+%3Fs+%3Flabel+%3Fspatial_label+%3Ftemporal_label+%3Fdescription+%3Fjps_temporal+%3Faccess+%3Fimage order+by+%3Fs

Processing has been added to concatenate results with | for schema:description, which can have multiple values.

Summary

In this article, I only got as far as retrieving the list of exhibitions. I plan to write about converting to IIIF collections and utilizing information from each exhibition in separate articles.

I hope this serves as a helpful reference for utilizing the Cultural Japan RDF store and for searching records that may have multiple values in the same field.