Main Page: Difference between revisions

3,623 bytes added ,  9 months ago
No edit summary
 
(17 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{Main_Page/Tab header}}


== Institutional Repositories Authority Files ==
= Institutional Repositories Authority Files =


This Wikibase was created with the intent of exploring the potential for using the platform as a method of storing and making use of the data for repository authorities. The initial population of data is based on Berkeley Law individuals. As this is in the exploratory phase, the data (and platform) could disappear at any moment and rebuilt in another way.
This Wikibase was created with the intent of exploring the potential for using the platform as a method of storing and making use of the data for repository authorities. The initial population of data is based on Berkeley Law individuals. As this is in the exploratory phase, the data (and platform) could disappear at any moment and rebuilt in another way.


== Data model for humans ==
== Data models ==


{| class="wikitable sortable"
{| class="wikitable sortable"
|+ Data model for humans
|-
|-
! Property !! Value !! Value may be new entity? !! Usage note
! Property !! Value !! Value may be new entity? !! Usage note
|-
|-
| {{P|15}} || {{Q|5}} || no ||
| [[Property:P20|instance of (P20)]] || [[Item:Q174|human]] || no ||
|-
| [[Property:P14|Given Name (P14)]] || string value || yes || this may include middle names and initials
|-
| [[Property:P13|Family Name (P13)]] || string value || yes ||
|-
| [[Property:P15|IR Authority Name Form (P15)]] || value || yes || in the form of [[Property:P13| Last Name]], [[Property:P14| First Name]]
|-
| [[Property:P2|wikidata identifier (P2)]] || Wikidata QID || yes || this should be just the QID from Wikidata and the link will auto-format
|-
| [[Property:P8|LCNA (P8)]] || LCNAF number || yes || this is the Library of Congress Name Authority number - the link will auto-format
|-
| [[Property:P22|ORCiD (P22)]] || ORCiD identifier || yes || this is the associated ORCiD identifer - the link will auto-format
|-
| [[Property:P7|person ID (P7)]] || value || yes || this is an internal institutional identifier
|-
| [[Property:P24|SSRN author id (P24)]] || numeric SSRN author ID || yes || author id from SSRN - the link will auto-format
|-
| [[Property:P18|Faculty Profile (P18)]] || URL || yes || this is the link to a person's faculty profile
|-
| [[Property:P19|Curriculum Vitae (P19)]] || URL || yes || this is the link to a person's CV
|-
| [[Property:P23|position held (P23)]] || Item || no || this is the position of the person within the institution
|-
|}
|}
==Query Examples==
To explore the data in this wikibase, you can start with some of these examples to see what exists as well as sample SPARQL queries to build your own queries.
'''View all entities and labels that are an instance of 'human':'''
[https://ir-authorities.wikibase.cloud/query/#PREFIX%20ira%3A%3Chttps%3A%2F%2Fir-authorities.wikibase.cloud%2Fentity%2F%3E%0APREFIX%20irp%3A%3Chttps%3A%2F%2Fir-authorities.wikibase.cloud%2Fprop%2Fdirect%2F%3E%0A%0ASELECT%20%3Fperson%20%3FpersonLabel%20%20WHERE%20%7B%0A%20%20%20%3Fperson%20irp%3AP20%20ira%3AQ174.%0A%20%20%20SERVICE%20wikibase%3Alabel%20%7B%20bd%3AserviceParam%20wikibase%3Alanguage%20%22%5BAUTO_LANGUAGE%5D%2Cen%22.%20%7D%0A%7D Query]
'''View an overlap of identifiers from this wikibase and corresponding Wikidata identifiers:'''
[https://ir-authorities.wikibase.cloud/query/#PREFIX%20ira%3A%3Chttps%3A%2F%2Fir-authorities.wikibase.cloud%2Fentity%2F%3E%0APREFIX%20irp%3A%3Chttps%3A%2F%2Fir-authorities.wikibase.cloud%2Fprop%2Fdirect%2F%3E%0APREFIX%20wdt%3A%3Chttp%3A%2F%2Fwww.wikidata.org%2Fprop%2Fdirect%2F%3E%0A%0ASELECT%20%3FpersonLabel%20%3Fperson%20%3Fdate%20%3FwdURI%20%3FirLCN%20%3FwdLCN%20%3FirORCID%20%3FwdORCID%0AWHERE%20%7B%0A%20%20%20%3Fperson%20irp%3AP20%20ira%3AQ174%3B%20%20%20%20%20%20%20%20%20%23%20is%20a%20human%0A%20%20%20%20%20%20%20%20%20%20%20irp%3AP2%20%3Fwdqn%3B%0A%20%20%20%20%20%20%20%20%20%20%20schema%3AdateModified%20%3Fdate%3B%0A%20%20%20OPTIONAL%20%7B%0A%20%20%20%20%20%3Fperson%20irp%3AP8%20%3FirLCN%3B%0A%20%20%20%7D%0A%20%20%20OPTIONAL%20%7B%0A%20%20%20%20%20%3Fperson%20irp%3AP10%20%3FirORCID%3B%0A%20%20%20%7D%0A%20%20%20BIND%28URI%28CONCAT%28%22http%3A%2F%2Fwww.wikidata.org%2Fentity%2F%22%2C%20%3Fwdqn%29%29%20AS%20%3FwdURI%29.%0A%20%20%20OPTIONAL%20%7B%0A%20%20%20%20%20SERVICE%20%3Chttps%3A%2F%2Fquery.wikidata.org%2Fsparql%3E%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%3FwdURI%20wdt%3AP244%20%3FwdLCN.%0A%20%20%20%20%20%7D%0A%20%20%20%7D%0A%20%20%20OPTIONAL%20%7B%0A%20%20%20%20%20SERVICE%20%3Chttps%3A%2F%2Fquery.wikidata.org%2Fsparql%3E%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%3FwdURI%20wdt%3AP496%20%3FwdORCID.%0A%20%20%20%20%20%7D%0A%20%20%20%7D%0A%20%20%20SERVICE%20wikibase%3Alabel%20%7B%0A%20%20%20%20%20bd%3AserviceParam%20wikibase%3Alanguage%20%22en%22%20.%0A%20%20%20%7D%0A%7D Query]