├── .gitignore ├── LICENSE ├── README.md ├── bib ├── datasets │ ├── lingvoj.data.2012-02-18.ttl │ └── vivo.academicDegree.rdf ├── documentation │ └── LODE │ │ ├── fix-anchors.py │ │ ├── ld4l-bib.html │ │ ├── ontology.html │ │ └── readme.txt ├── ontology │ ├── ld4l-bib.rdf │ ├── ontology.rdf │ └── readme.txt └── reference_ontologies │ ├── bibframe.2014-12-10.rdf │ ├── content.rdf │ ├── dcelements.2012-06-14.rdf │ ├── dcterms.2012-06-14.rdf │ ├── event-1.01.ttl │ ├── foaf-0.1.rdf │ ├── geonames_v3.1.rdf │ ├── lingvoj_ontology_v2.33.ttl │ ├── madsrdf.v1.rdf │ ├── oa.2013-02-08.owl │ ├── prov-o.2013-04-30.owl │ ├── rdau.rdf │ ├── readme.txt │ ├── schema.rdf │ ├── skos.2004-02.rdf │ ├── sw-vocab-status.2011-12-12.rdf │ ├── vann.2010-06-07.rdf │ └── vivo-core-public-1.5.owl └── not_used ├── UsageData.owl └── readme.txt /.gitignore: -------------------------------------------------------------------------------- 1 | **/catalog-v001.xml 2 | **/.DS_Store 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ld4l/ontology/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ld4l/ontology/HEAD/README.md -------------------------------------------------------------------------------- /bib/datasets/lingvoj.data.2012-02-18.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ld4l/ontology/HEAD/bib/datasets/lingvoj.data.2012-02-18.ttl -------------------------------------------------------------------------------- /bib/datasets/vivo.academicDegree.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ld4l/ontology/HEAD/bib/datasets/vivo.academicDegree.rdf -------------------------------------------------------------------------------- /bib/documentation/LODE/fix-anchors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ld4l/ontology/HEAD/bib/documentation/LODE/fix-anchors.py -------------------------------------------------------------------------------- /bib/documentation/LODE/ld4l-bib.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ld4l/ontology/HEAD/bib/documentation/LODE/ld4l-bib.html -------------------------------------------------------------------------------- /bib/documentation/LODE/ontology.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ld4l/ontology/HEAD/bib/documentation/LODE/ontology.html -------------------------------------------------------------------------------- /bib/documentation/LODE/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ld4l/ontology/HEAD/bib/documentation/LODE/readme.txt -------------------------------------------------------------------------------- /bib/ontology/ld4l-bib.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ld4l/ontology/HEAD/bib/ontology/ld4l-bib.rdf -------------------------------------------------------------------------------- /bib/ontology/ontology.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ld4l/ontology/HEAD/bib/ontology/ontology.rdf -------------------------------------------------------------------------------- /bib/ontology/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ld4l/ontology/HEAD/bib/ontology/readme.txt -------------------------------------------------------------------------------- /bib/reference_ontologies/bibframe.2014-12-10.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ld4l/ontology/HEAD/bib/reference_ontologies/bibframe.2014-12-10.rdf -------------------------------------------------------------------------------- /bib/reference_ontologies/content.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ld4l/ontology/HEAD/bib/reference_ontologies/content.rdf -------------------------------------------------------------------------------- /bib/reference_ontologies/dcelements.2012-06-14.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ld4l/ontology/HEAD/bib/reference_ontologies/dcelements.2012-06-14.rdf -------------------------------------------------------------------------------- /bib/reference_ontologies/dcterms.2012-06-14.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ld4l/ontology/HEAD/bib/reference_ontologies/dcterms.2012-06-14.rdf -------------------------------------------------------------------------------- /bib/reference_ontologies/event-1.01.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ld4l/ontology/HEAD/bib/reference_ontologies/event-1.01.ttl -------------------------------------------------------------------------------- /bib/reference_ontologies/foaf-0.1.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ld4l/ontology/HEAD/bib/reference_ontologies/foaf-0.1.rdf -------------------------------------------------------------------------------- /bib/reference_ontologies/geonames_v3.1.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ld4l/ontology/HEAD/bib/reference_ontologies/geonames_v3.1.rdf -------------------------------------------------------------------------------- /bib/reference_ontologies/lingvoj_ontology_v2.33.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ld4l/ontology/HEAD/bib/reference_ontologies/lingvoj_ontology_v2.33.ttl -------------------------------------------------------------------------------- /bib/reference_ontologies/madsrdf.v1.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ld4l/ontology/HEAD/bib/reference_ontologies/madsrdf.v1.rdf -------------------------------------------------------------------------------- /bib/reference_ontologies/oa.2013-02-08.owl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ld4l/ontology/HEAD/bib/reference_ontologies/oa.2013-02-08.owl -------------------------------------------------------------------------------- /bib/reference_ontologies/prov-o.2013-04-30.owl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ld4l/ontology/HEAD/bib/reference_ontologies/prov-o.2013-04-30.owl -------------------------------------------------------------------------------- /bib/reference_ontologies/rdau.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ld4l/ontology/HEAD/bib/reference_ontologies/rdau.rdf -------------------------------------------------------------------------------- /bib/reference_ontologies/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ld4l/ontology/HEAD/bib/reference_ontologies/readme.txt -------------------------------------------------------------------------------- /bib/reference_ontologies/schema.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ld4l/ontology/HEAD/bib/reference_ontologies/schema.rdf -------------------------------------------------------------------------------- /bib/reference_ontologies/skos.2004-02.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ld4l/ontology/HEAD/bib/reference_ontologies/skos.2004-02.rdf -------------------------------------------------------------------------------- /bib/reference_ontologies/sw-vocab-status.2011-12-12.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ld4l/ontology/HEAD/bib/reference_ontologies/sw-vocab-status.2011-12-12.rdf -------------------------------------------------------------------------------- /bib/reference_ontologies/vann.2010-06-07.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ld4l/ontology/HEAD/bib/reference_ontologies/vann.2010-06-07.rdf -------------------------------------------------------------------------------- /bib/reference_ontologies/vivo-core-public-1.5.owl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ld4l/ontology/HEAD/bib/reference_ontologies/vivo-core-public-1.5.owl -------------------------------------------------------------------------------- /not_used/UsageData.owl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ld4l/ontology/HEAD/not_used/UsageData.owl -------------------------------------------------------------------------------- /not_used/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ld4l/ontology/HEAD/not_used/readme.txt --------------------------------------------------------------------------------