Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Add jsonld context for the CSV file #119

Open
wants to merge 1 commit into
base: ndc-mvp/0.1
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
#
# This file contains the jsonld context for the person-title.csv
# data. It is in yaml format to allow comments.
#
# Vocabulary URL https://w3id.org/italia/controlled-vocabulary/classifications-for-people/person-title
#
"@context":
# namespaces.
skos: "http://www.w3.org/2004/02/skos/core#"
dct: "http://purl.org/dc/terms/"
# CSV fields definitions.
codice_1_livello:
"@id": "dct:identifier"
label_ITA_1_livello:
"@id": skos:prefLabel
"@language": it
label_ENG_1_livello:
"@id": skos:prefLabel
"@language": en
definizione_ITA:
"@id": skos:definition
"@language": it
definizione_ENG:
"@id": skos:definition
"@language": en
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
codice_1_livello,label _ITA _1 _livello,label_ENG_1_livello,definizione_ITA,definizione_ENG
codice_1_livello,label_ITA_1_livello,label_ENG_1_livello,definizione_ITA,definizione_ENG
1,Sig.ra,Mrs,Abbreviazione di 'Signora'.,"English honorific used for women, usually for those who are married and who do not instead use another title."
2,Sig.na,Miss,Abbreviazione di 'Signorina'.,English honorific used for not married women.
3,Sig,Mr,Abbreviazione di 'Signore'.,Abbreviated form of 'Mister'.
Expand Down