An open API service indexing awesome lists of open source software.

https://github.com/smartdataanalytics/iana-language-subtag-registry-rdf

Jena plugin to RDFize the iana subtag registry and validate language tags against it
https://github.com/smartdataanalytics/iana-language-subtag-registry-rdf

Last synced: about 2 months ago
JSON representation

Jena plugin to RDFize the iana subtag registry and validate language tags against it

Awesome Lists containing this project

README

        

# iana-language-subtag-registry-rdfizer

The [IANA language subtag registry](http://www.iana.org/assignments/language-subtag-registry/language-subtag-registry) is a resource that
lists valid values for use in the components of BCP47 language tags. The format is a set of records with key-value pairs.

This repo contains two independent but related Java/Maven projects.

* The RDFizer itself which is just a single class
* A resource project which just contains the generated dataset

## RDFization
The core RDFization is 'raw' - each record is represented by a blank node,
each key is turned into an IRI of the form and the value becomes a literal.
This way no information is lost and the alignment of the raw predicates to existing ontologies can
be accomplished by means of post processing with rdf tooling.

```turtle
[ "2021-02-16" ] .

[ "2009-07-29" ;
"Potawatomi" ;
"pot" ;
"language"
] .

```