-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Jakub Klímek <jakub@jakubklimek.com>
- Loading branch information
1 parent
6789c74
commit a1d722e
Showing
9 changed files
with
5,914 additions
and
64 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,119 @@ | ||
|
||
{ | ||
"@id": "https://data.mff.cuni.cz/soubory/číselníky/hvds.csv-metadata.json", | ||
"@context": [ | ||
"http://www.w3.org/ns/csvw", | ||
{ | ||
"@language": "cs" | ||
} | ||
], | ||
"@type": "Table", | ||
"url": "hvds.csv", | ||
"tableSchema": { | ||
"@type": "Schema", | ||
"columns": [{ | ||
"@type": "Column", | ||
"name": "ciselnik", | ||
"titles": "číselník", | ||
"dc:description": "IRI číselníku", | ||
"aboutUrl": "{+ciselnik}", | ||
"propertyUrl": "rdf:type", | ||
"valueUrl": "skos:ConceptScheme", | ||
"required": true, | ||
"datatype": "anyURI" | ||
}, { | ||
"@type": "Column", | ||
"name": "ciselnik_nazev_cs", | ||
"titles": "číselník_název_cs", | ||
"dc:description": "Název číselníku v češtině", | ||
"aboutUrl": "{+ciselnik}", | ||
"propertyUrl": "skos:prefLabel", | ||
"required": true, | ||
"datatype": "string", | ||
"lang": "cs" | ||
}, { | ||
"@type": "Column", | ||
"name": "ciselnik_nazev_en", | ||
"titles": "číselník_název_en", | ||
"dc:description": "Název číselníku v angličtině", | ||
"aboutUrl": "{+ciselnik}", | ||
"propertyUrl": "skos:prefLabel", | ||
"required": true, | ||
"datatype": "string", | ||
"lang": "en" | ||
},{ | ||
"@type": "Column", | ||
"name": "polozka", | ||
"titles": "číselník_položka", | ||
"dc:description": "IRI položky", | ||
"aboutUrl": "{+polozka}", | ||
"propertyUrl": "rdf:type", | ||
"valueUrl": "skos:Concept", | ||
"required": true, | ||
"datatype": "anyURI" | ||
}, { | ||
"@type": "Column", | ||
"name": "polozka_kod", | ||
"titles": "číselník_položka_kód", | ||
"dc:description": "Kód položky", | ||
"aboutUrl": "{+polozka}", | ||
"propertyUrl": "skos:notation", | ||
"required": true, | ||
"datatype": "string" | ||
},{ | ||
"@type": "Column", | ||
"name": "polozka_nazev_cs", | ||
"titles": "číselník_položka_název_cs", | ||
"dc:description": "Název položky v češtině", | ||
"aboutUrl": "{+polozka}", | ||
"propertyUrl": "skos:prefLabel", | ||
"required": true, | ||
"datatype": "string", | ||
"lang": "cs" | ||
}, { | ||
"@type": "Column", | ||
"name": "polozka_nazev_en", | ||
"titles": "číselník_položka_název_en", | ||
"dc:description": "Název položky v angličtině", | ||
"aboutUrl": "{+polozka}", | ||
"propertyUrl": "skos:prefLabel", | ||
"required": true, | ||
"datatype": "string", | ||
"lang": "en" | ||
}, { | ||
"@type": "Column", | ||
"name": "polozka_sirsi_polozka", | ||
"titles": "číselník_položka_širší_položka", | ||
"dc:description": "Širší položka", | ||
"aboutUrl": "{+polozka}", | ||
"propertyUrl": "skos:broader", | ||
"required": false, | ||
"valueUrl": "{polozka_sirsi_polozka}" | ||
}, { | ||
"@type": "Column", | ||
"name": "polozka_sirsi_shoda", | ||
"titles": "číselník_položka_širší_shoda", | ||
"dc:description": "Tranzitivně širší položka", | ||
"aboutUrl": "{+polozka}", | ||
"propertyUrl": "skos:broadMatch", | ||
"required": false, | ||
"valueUrl": "{polozka_sirsi_shoda}" | ||
}, { | ||
"@type": "Column", | ||
"name": "polozka_presna_shoda", | ||
"titles": "číselník_položka_přesná_shoda", | ||
"dc:description": "Tranzitivně širší položka", | ||
"aboutUrl": "{+polozka}", | ||
"propertyUrl": "skos:exactMatch", | ||
"required": false, | ||
"valueUrl": "{polozka_presna_shoda}" | ||
},{ | ||
"@type": "Column", | ||
"aboutUrl": "{+polozka}", | ||
"propertyUrl": "skos:inScheme", | ||
"valueUrl": "{+ciselnik}", | ||
"virtual": true | ||
}], | ||
"primaryKey": "polozka" | ||
} | ||
} |
Oops, something went wrong.