├── .gitignore ├── .gitmodules ├── .htaccess ├── README.md ├── check_rdf.sh ├── dev ├── format │ ├── format-header.owl │ └── format-header.ttl ├── misc │ └── resources.ttl ├── nif-core-comp.ttl ├── nif-core-inf.ttl └── nif-core-val.ttl ├── nif-core ├── example.ttl ├── nif-core-ontology_web.png ├── nif-core.ttl └── nif-stanbol.ttl ├── pom.xml ├── publish.sh ├── rlog └── rlog.ttl ├── testcase ├── lib │ └── nif-2.0-suite.ttl └── stc.ttl └── vm ├── dep ├── stanford.html └── stanford.ttl ├── itsrdf └── its-rdf.ttl ├── lemon └── lemon.ttl ├── lexo ├── lexo.html └── lexo.ttl └── marl └── ns.ttl /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLP2RDF/ontologies/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLP2RDF/ontologies/HEAD/.gitmodules -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLP2RDF/ontologies/HEAD/.htaccess -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLP2RDF/ontologies/HEAD/README.md -------------------------------------------------------------------------------- /check_rdf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLP2RDF/ontologies/HEAD/check_rdf.sh -------------------------------------------------------------------------------- /dev/format/format-header.owl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLP2RDF/ontologies/HEAD/dev/format/format-header.owl -------------------------------------------------------------------------------- /dev/format/format-header.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLP2RDF/ontologies/HEAD/dev/format/format-header.ttl -------------------------------------------------------------------------------- /dev/misc/resources.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLP2RDF/ontologies/HEAD/dev/misc/resources.ttl -------------------------------------------------------------------------------- /dev/nif-core-comp.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLP2RDF/ontologies/HEAD/dev/nif-core-comp.ttl -------------------------------------------------------------------------------- /dev/nif-core-inf.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLP2RDF/ontologies/HEAD/dev/nif-core-inf.ttl -------------------------------------------------------------------------------- /dev/nif-core-val.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLP2RDF/ontologies/HEAD/dev/nif-core-val.ttl -------------------------------------------------------------------------------- /nif-core/example.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLP2RDF/ontologies/HEAD/nif-core/example.ttl -------------------------------------------------------------------------------- /nif-core/nif-core-ontology_web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLP2RDF/ontologies/HEAD/nif-core/nif-core-ontology_web.png -------------------------------------------------------------------------------- /nif-core/nif-core.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLP2RDF/ontologies/HEAD/nif-core/nif-core.ttl -------------------------------------------------------------------------------- /nif-core/nif-stanbol.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLP2RDF/ontologies/HEAD/nif-core/nif-stanbol.ttl -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLP2RDF/ontologies/HEAD/pom.xml -------------------------------------------------------------------------------- /publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLP2RDF/ontologies/HEAD/publish.sh -------------------------------------------------------------------------------- /rlog/rlog.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLP2RDF/ontologies/HEAD/rlog/rlog.ttl -------------------------------------------------------------------------------- /testcase/lib/nif-2.0-suite.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLP2RDF/ontologies/HEAD/testcase/lib/nif-2.0-suite.ttl -------------------------------------------------------------------------------- /testcase/stc.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLP2RDF/ontologies/HEAD/testcase/stc.ttl -------------------------------------------------------------------------------- /vm/dep/stanford.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLP2RDF/ontologies/HEAD/vm/dep/stanford.html -------------------------------------------------------------------------------- /vm/dep/stanford.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLP2RDF/ontologies/HEAD/vm/dep/stanford.ttl -------------------------------------------------------------------------------- /vm/itsrdf/its-rdf.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLP2RDF/ontologies/HEAD/vm/itsrdf/its-rdf.ttl -------------------------------------------------------------------------------- /vm/lemon/lemon.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLP2RDF/ontologies/HEAD/vm/lemon/lemon.ttl -------------------------------------------------------------------------------- /vm/lexo/lexo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLP2RDF/ontologies/HEAD/vm/lexo/lexo.html -------------------------------------------------------------------------------- /vm/lexo/lexo.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLP2RDF/ontologies/HEAD/vm/lexo/lexo.ttl -------------------------------------------------------------------------------- /vm/marl/ns.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NLP2RDF/ontologies/HEAD/vm/marl/ns.ttl --------------------------------------------------------------------------------