Skip to content

Commit 9a31410

Browse files
committed
Finish 3.1.3
2 parents d455322 + 7b4d443 commit 9a31410

24 files changed

+256
-38
lines changed

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
2121
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
2222
OTHER DEALINGS IN THE SOFTWARE.
2323

24-
For more information, please refer to <http://unlicense.org>
24+
For more information, please refer to <https://unlicense.org>

UNLICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
2121
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
2222
OTHER DEALINGS IN THE SOFTWARE.
2323

24-
For more information, please refer to <http://unlicense.org/>
24+
For more information, please refer to <https://unlicense.org/>

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.1.2
1+
3.1.3

etc/doap.jsonld

+48
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
{
2+
"@context": {
3+
"dc": "http://purl.org/dc/terms/",
4+
"doap": "http://usefulinc.com/ns/doap#",
5+
"foaf": "http://xmlns.com/foaf/0.1/",
6+
"rdfs": "http://www.w3.org/2000/01/rdf-schema#",
7+
"xsd": "http://www.w3.org/2001/XMLSchema#",
8+
"dc:creator": {"@type": "@id"},
9+
"doap:created": {"@type": "xsd:date"},
10+
"doap:homepage": {"@type": "@id"},
11+
"doap:bug-database": {"@type": "@id"},
12+
"doap:blog": {"@type": "@id"},
13+
"doap:developer": {"@type": "@id"},
14+
"doap:implements": {"@type": "@id"},
15+
"doap:maintainer": {"@type": "@id"},
16+
"doap:documenter": {"@type": "@id"},
17+
"doap:license": {"@type": "@id"},
18+
"doap:description": {"@language": "en"},
19+
"doap:shortdesc": {"@language": "en"},
20+
"foaf:maker": {"@type": "@id"},
21+
"foaf:mbox": {"@type": "@id"},
22+
"foaf:made": {"@type": "@id"},
23+
"rdfs:isDefinedBy": {"@type": "@id"}
24+
},
25+
"@id": "https://rubygems.org/gems/json-ld-preloaded",
26+
"@type": "doap:Project",
27+
"doap:name": "JSON::LD::Preloaded",
28+
"doap:homepage": "https://github.com/ruby-rdf/json-ld-preloaded/",
29+
"doap:license": "https://unlicense.org/1.0/",
30+
"doap:shortdesc": "JSON-LD with preloaded contexts.",
31+
"doap:description": "A meta-release of the json-ld gem including preloaded vocabularies.",
32+
"doap:created": "2018-06-20",
33+
"doap:programming-language": "Ruby",
34+
"doap:bug-database": "https://github.com/ruby-rdf/json-ld-preloaded/issues",
35+
"doap:blog": "https://greggkellogg.net/",
36+
"doap:developer": "https://greggkellogg.net/foaf#me",
37+
"doap:maintainer": "https://greggkellogg.net/foaf#me",
38+
"doap:documenter": "https://greggkellogg.net/foaf#me",
39+
"foaf:maker": "https://greggkellogg.net/foaf#me",
40+
"dc:creator": {
41+
"@id": "https://greggkellogg.net/foaf#me",
42+
"@type": "foaf:Person",
43+
"foaf:name": "Gregg Kellogg",
44+
"foaf:mbox": "mailto:[email protected]",
45+
"foaf:made": "https://rubygems.org/gems/json-ld-preloaded",
46+
"rdfs:isDefinedBy": "https://greggkellogg.net/foaf"
47+
}
48+
}

etc/doap.ttl

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
@base <https://rubygems.org/gems/json-ld-preloaded> .
2+
@prefix dc: <http://purl.org/dc/terms/> .
3+
@prefix earl: <http://www.w3.org/ns/earl#> .
4+
@prefix doap: <http://usefulinc.com/ns/doap#> .
5+
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
6+
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
7+
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
8+
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
9+
10+
<> a doap:Project;
11+
dc:creator <https://greggkellogg.net/foaf#me>;
12+
doap:blog <https://greggkellogg.net/>;
13+
doap:bug-database <https://github.com/ruby-rdf/json-ld-preloaded/issues>;
14+
doap:created "2018-06-20"^^xsd:date;
15+
doap:description "A meta-release of the json-ld gem including preloaded vocabularies."@en;
16+
doap:developer <https://greggkellogg.net/foaf#me>;
17+
doap:documenter <https://greggkellogg.net/foaf#me>;
18+
doap:homepage <https://github.com/ruby-rdf/json-ld-preloaded/>;
19+
doap:license <https://unlicense.org/1.0/>;
20+
doap:maintainer <https://greggkellogg.net/foaf#me>;
21+
doap:name "JSON::LD::Preloaded"^^xsd:string;
22+
doap:programming-language "Ruby";
23+
doap:shortdesc "JSON-LD with preloaded contexts."@en;
24+
foaf:maker <https://greggkellogg.net/foaf#me> .
25+
26+
<https://greggkellogg.net/foaf#me> a foaf:Person;
27+
rdfs:isDefinedBy <https://greggkellogg.net/foaf>;
28+
foaf:made <>;
29+
foaf:mbox <mailto:[email protected]>;
30+
foaf:name "Gregg Kellogg"^^xsd:string .

json-ld-preloaded.gemspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Gem::Specification.new do |gem|
66
gem.date = File.mtime('VERSION').strftime('%Y-%m-%d')
77

88
gem.name = "json-ld-preloaded"
9-
gem.homepage = "http://github.com/ruby-rdf/json-ld-preloaded"
9+
gem.homepage = "https://github.com/ruby-rdf/json-ld-preloaded"
1010
gem.license = 'Unlicense'
1111
gem.summary = "JSON-LD with preloaded contexts."
1212
gem.description = "A meta-release of the json-ld gem including preloaded vocabularies."

lib/json/ld/preloaded.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
require 'json/ld'
22

3-
module JSON::LD::Context::Preloaded
3+
module JSON::LD::Preloaded
44
autoload :VERSION, "json/ld/preloaded/version"
55
end
66

lib/json/ld/preloaded/activitystreams.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
require 'json/ld'
55
class JSON::LD::Context
66
add_preloaded("http://www.w3.org/ns/activitystreams") do
7-
new(vocab: "_:", term_definitions: {
7+
new(vocab: "_:", processingMode: "json-ld-1.1", term_definitions: {
88
"Accept" => TermDefinition.new("Accept", id: "https://www.w3.org/ns/activitystreams#Accept", simple: true),
99
"Activity" => TermDefinition.new("Activity", id: "https://www.w3.org/ns/activitystreams#Activity", simple: true),
1010
"Add" => TermDefinition.new("Add", id: "https://www.w3.org/ns/activitystreams#Add", simple: true),

lib/json/ld/preloaded/csvw.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
require 'json/ld'
55
class JSON::LD::Context
66
add_preloaded("http://www.w3.org/ns/csvw") do
7-
new(term_definitions: {
7+
new(processingMode: "json-ld-1.1", term_definitions: {
88
"Cell" => TermDefinition.new("Cell", id: "http://www.w3.org/ns/csvw#Cell", simple: true),
99
"Column" => TermDefinition.new("Column", id: "http://www.w3.org/ns/csvw#Column", simple: true),
1010
"Datatype" => TermDefinition.new("Datatype", id: "http://www.w3.org/ns/csvw#Datatype", simple: true),

lib/json/ld/preloaded/datacube.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
require 'json/ld'
55
class JSON::LD::Context
66
add_preloaded("http://pebbie.org/context/qb") do
7-
new(term_definitions: {
7+
new(processingMode: "json-ld-1.1", term_definitions: {
88
"attribute" => TermDefinition.new("attribute", id: "http://purl.org/linked-data/cube#attribute", simple: true),
99
"codeList" => TermDefinition.new("codeList", id: "http://purl.org/linked-data/cube#codeList", simple: true),
1010
"component" => TermDefinition.new("component", id: "http://purl.org/linked-data/cube#component", simple: true),

lib/json/ld/preloaded/entityfacts.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
require 'json/ld'
55
class JSON::LD::Context
66
add_preloaded("http://hub.culturegraph.org/entityfacts/context/v1/entityfacts.jsonld") do
7-
new(term_definitions: {
7+
new(processingMode: "json-ld-1.1", term_definitions: {
88
"Feature" => TermDefinition.new("Feature", id: "https://purl.org/geojson/vocab#Feature", simple: true),
99
"Point" => TermDefinition.new("Point", id: "https://purl.org/geojson/vocab#Point", simple: true),
1010
"abbr" => TermDefinition.new("abbr", id: "http://dbpedia.org/ontology/abbreviation", simple: true),

lib/json/ld/preloaded/foaf.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
require 'json/ld'
55
class JSON::LD::Context
66
add_preloaded("http://xmlns.com/foaf/context") do
7-
new(vocab: "http://xmlns.com/foaf/0.1/", term_definitions: {
7+
new(vocab: "http://xmlns.com/foaf/0.1/", processingMode: "json-ld-1.1", term_definitions: {
88
"account" => TermDefinition.new("account", id: "http://xmlns.com/foaf/0.1/account", type_mapping: "@id"),
99
"accountServiceHomepage" => TermDefinition.new("accountServiceHomepage", id: "http://xmlns.com/foaf/0.1/accountServiceHomepage", type_mapping: "@id"),
1010
"homepage" => TermDefinition.new("homepage", id: "http://xmlns.com/foaf/0.1/homepage", type_mapping: "@id"),

lib/json/ld/preloaded/geojson.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
require 'json/ld'
55
class JSON::LD::Context
66
add_preloaded("http://geojson.org/geojson-ld/geojson-context.jsonld") do
7-
new(term_definitions: {
7+
new(processingMode: "json-ld-1.1", term_definitions: {
88
"Feature" => TermDefinition.new("Feature", id: "https://purl.org/geojson/vocab#Feature", simple: true),
99
"FeatureCollection" => TermDefinition.new("FeatureCollection", id: "https://purl.org/geojson/vocab#FeatureCollection", simple: true),
1010
"GeometryCollection" => TermDefinition.new("GeometryCollection", id: "https://purl.org/geojson/vocab#GeometryCollection", simple: true),

lib/json/ld/preloaded/hydra.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
require 'json/ld'
55
class JSON::LD::Context
66
add_preloaded("http://www.w3.org/ns/hydra/core") do
7-
new(term_definitions: {
7+
new(processingMode: "json-ld-1.1", term_definitions: {
88
"ApiDocumentation" => TermDefinition.new("ApiDocumentation", id: "http://www.w3.org/ns/hydra/core#ApiDocumentation", simple: true),
99
"BasicRepresentation" => TermDefinition.new("BasicRepresentation", id: "http://www.w3.org/ns/hydra/core#BasicRepresentation", simple: true),
1010
"Class" => TermDefinition.new("Class", id: "http://www.w3.org/ns/hydra/core#Class", simple: true),

lib/json/ld/preloaded/iiif.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
require 'json/ld'
55
class JSON::LD::Context
66
add_preloaded("http://iiif.io/api/image/2/context.json") do
7-
new(term_definitions: {
7+
new(processingMode: "json-ld-1.1", term_definitions: {
88
"attribution" => TermDefinition.new("attribution", id: "http://iiif.io/api/presentation/2#attributionLabel"),
99
"baseUriRedirect" => TermDefinition.new("baseUriRedirect", id: "http://iiif.io/api/image/2#baseUriRedirectFeature"),
1010
"canonicalLinkHeader" => TermDefinition.new("canonicalLinkHeader", id: "http://iiif.io/api/image/2#canonicalLinkHeaderFeature"),

lib/json/ld/preloaded/lov.rb

+14-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
require 'json/ld'
55
class JSON::LD::Context
66
add_preloaded("http://lov.okfn.org/dataset/lov/context") do
7-
new(term_definitions: {
7+
new(processingMode: "json-ld-1.1", term_definitions: {
88
"SAN" => TermDefinition.new("SAN", id: "http://www.irit.fr/recherches/MELODI/ontologies/SAN#", simple: true, prefix: true),
99
"a-loc" => TermDefinition.new("a-loc", id: "https://w3id.org/arco/ontology/location/", simple: true, prefix: true),
1010
"acco" => TermDefinition.new("acco", id: "http://purl.org/acco/ns#", simple: true, prefix: true),
@@ -23,6 +23,7 @@ class JSON::LD::Context
2323
"algo" => TermDefinition.new("algo", id: "http://securitytoolbox.appspot.com/securityAlgorithms#", simple: true, prefix: true),
2424
"am" => TermDefinition.new("am", id: "http://open-services.net/ns/asset#", simple: true, prefix: true),
2525
"aml" => TermDefinition.new("aml", id: "https://w3id.org/i40/aml#", simple: true, prefix: true),
26+
"amlo-core" => TermDefinition.new("amlo-core", id: "http://w3id.org/amlo/core#", simple: true, prefix: true),
2627
"ao" => TermDefinition.new("ao", id: "http://purl.org/ontology/ao/core#", simple: true, prefix: true),
2728
"aos" => TermDefinition.new("aos", id: "http://rdf.muninn-project.org/ontologies/appearances#", simple: true, prefix: true),
2829
"api" => TermDefinition.new("api", id: "http://purl.org/linked-data/api/vocab#", simple: true, prefix: true),
@@ -47,6 +48,7 @@ class JSON::LD::Context
4748
"bf" => TermDefinition.new("bf", id: "http://id.loc.gov/ontologies/bibframe/", simple: true, prefix: true),
4849
"bibo" => TermDefinition.new("bibo", id: "http://purl.org/ontology/bibo/", simple: true, prefix: true),
4950
"bibtex" => TermDefinition.new("bibtex", id: "http://purl.org/net/nknouf/ns/bibtex#", simple: true, prefix: true),
51+
"bimerr-op" => TermDefinition.new("bimerr-op", id: "http://bimerr.iot.linkeddata.es/def/occupancy-profile#", simple: true, prefix: true),
5052
"bio" => TermDefinition.new("bio", id: "http://purl.org/vocab/bio/0.1/", simple: true, prefix: true),
5153
"biol" => TermDefinition.new("biol", id: "http://purl.org/NET/biol/ns#", simple: true, prefix: true),
5254
"biopax" => TermDefinition.new("biopax", id: "http://www.biopax.org/release/biopax-level3.owl#", simple: true, prefix: true),
@@ -94,6 +96,7 @@ class JSON::LD::Context
9496
"cmo" => TermDefinition.new("cmo", id: "http://purl.org/twc/ontologies/cmo.owl#", simple: true, prefix: true),
9597
"cnt" => TermDefinition.new("cnt", id: "http://www.w3.org/2011/content#", simple: true, prefix: true),
9698
"co" => TermDefinition.new("co", id: "http://purl.org/ontology/co/core#", simple: true, prefix: true),
99+
"cochrane" => TermDefinition.new("cochrane", id: "http://data.cochrane.org/ontologies/core/", simple: true, prefix: true),
97100
"cocoon" => TermDefinition.new("cocoon", id: "https://w3id.org/cocoon/v1.0#", simple: true, prefix: true),
98101
"cogs" => TermDefinition.new("cogs", id: "http://vocab.deri.ie/cogs#", simple: true, prefix: true),
99102
"cold" => TermDefinition.new("cold", id: "http://purl.org/configurationontology#", simple: true, prefix: true),
@@ -144,6 +147,8 @@ class JSON::LD::Context
144147
"demlab" => TermDefinition.new("demlab", id: "http://www.demcare.eu/ontologies/demlab.owl#", simple: true, prefix: true),
145148
"deo" => TermDefinition.new("deo", id: "http://purl.org/spar/deo/", simple: true, prefix: true),
146149
"deps" => TermDefinition.new("deps", id: "http://ontologi.es/doap-deps#", simple: true, prefix: true),
150+
"dfc" => TermDefinition.new("dfc", id: "http://datafoodconsortium.org/ontologies/DFC_FullModel.owl#", simple: true, prefix: true),
151+
"dfcb" => TermDefinition.new("dfcb", id: "http://datafoodconsortium.org/ontologies/DFC_BusinessOntology.owl#", simple: true, prefix: true),
147152
"dicom" => TermDefinition.new("dicom", id: "http://purl.org/healthcarevocab/v1#", simple: true, prefix: true),
148153
"dio" => TermDefinition.new("dio", id: "https://w3id.org/dio#", simple: true, prefix: true),
149154
"disco" => TermDefinition.new("disco", id: "http://rdf-vocabulary.ddialliance.org/discovery#", simple: true, prefix: true),
@@ -183,6 +188,7 @@ class JSON::LD::Context
183188
"ecrm" => TermDefinition.new("ecrm", id: "http://erlangen-crm.org/current/", simple: true, prefix: true),
184189
"edac" => TermDefinition.new("edac", id: "http://ontology.cybershare.utep.edu/ELSEWeb/elseweb-edac.owl#", simple: true, prefix: true),
185190
"edm" => TermDefinition.new("edm", id: "http://www.europeana.eu/schemas/edm/", simple: true, prefix: true),
191+
"edu" => TermDefinition.new("edu", id: "https://schema.edu.ee/", simple: true, prefix: true),
186192
"edupro" => TermDefinition.new("edupro", id: "http://ns.inria.fr/semed/eduprogression#", simple: true, prefix: true),
187193
"eem" => TermDefinition.new("eem", id: "http://purl.org/eem#", simple: true, prefix: true),
188194
"eepsa" => TermDefinition.new("eepsa", id: "https://w3id.org/eepsa#", simple: true, prefix: true),
@@ -360,7 +366,7 @@ class JSON::LD::Context
360366
"mo" => TermDefinition.new("mo", id: "http://purl.org/ontology/mo/", simple: true, prefix: true),
361367
"moac" => TermDefinition.new("moac", id: "http://observedchange.com/moac/ns#", simple: true, prefix: true),
362368
"moat" => TermDefinition.new("moat", id: "http://moat-project.org/ns#", simple: true, prefix: true),
363-
"mod" => TermDefinition.new("mod", id: "http://www.isibang.ac.in/mod/ns#", simple: true, prefix: true),
369+
"mod" => TermDefinition.new("mod", id: "http://www.isibang.ac.in/ns/mod#", simple: true, prefix: true),
364370
"modsci" => TermDefinition.new("modsci", id: "https://w3id.org/skgo/modsci#", simple: true, prefix: true),
365371
"mrel" => TermDefinition.new("mrel", id: "http://id.loc.gov/vocabulary/relators/", simple: true, prefix: true),
366372
"msm" => TermDefinition.new("msm", id: "http://iserve.kmi.open.ac.uk/ns/msm#", simple: true, prefix: true),
@@ -459,7 +465,9 @@ class JSON::LD::Context
459465
"pep" => TermDefinition.new("pep", id: "https://w3id.org/pep/", simple: true, prefix: true),
460466
"person" => TermDefinition.new("person", id: "http://www.w3.org/ns/person#", simple: true, prefix: true),
461467
"pext" => TermDefinition.new("pext", id: "http://www.ontotext.com/proton/protonext#", simple: true, prefix: true),
468+
"pfeepsa" => TermDefinition.new("pfeepsa", id: "https://w3id.org/pfeepsa#", simple: true, prefix: true),
462469
"phdd" => TermDefinition.new("phdd", id: "http://rdf-vocabulary.ddialliance.org/phdd#", simple: true, prefix: true),
470+
"pico" => TermDefinition.new("pico", id: "http://data.cochrane.org/ontologies/pico/", simple: true, prefix: true),
463471
"place" => TermDefinition.new("place", id: "http://purl.org/ontology/places#", simple: true, prefix: true),
464472
"plink" => TermDefinition.new("plink", id: "http://cedric.cnam.fr/isid/ontologies/PersonLink.owl#", simple: true, prefix: true),
465473
"plo" => TermDefinition.new("plo", id: "http://purl.org/net/po#", simple: true, prefix: true),
@@ -538,12 +546,14 @@ class JSON::LD::Context
538546
"ru" => TermDefinition.new("ru", id: "http://purl.org/imbi/ru-meta.owl#", simple: true, prefix: true),
539547
"ruto" => TermDefinition.new("ruto", id: "http://rdfunit.aksw.org/ns/core#", simple: true, prefix: true),
540548
"s4ac" => TermDefinition.new("s4ac", id: "http://ns.inria.fr/s4ac/v2#", simple: true, prefix: true),
549+
"s4bldg" => TermDefinition.new("s4bldg", id: "https://w3id.org/def/saref4bldg#", simple: true, prefix: true),
541550
"s4ee" => TermDefinition.new("s4ee", id: "https://w3id.org/saref4ee#", simple: true, prefix: true),
542551
"sam" => TermDefinition.new("sam", id: "http://def.seegrid.csiro.au/isotc211/iso19156/2011/sampling#", simple: true, prefix: true),
543552
"samfl" => TermDefinition.new("samfl", id: "http://def.seegrid.csiro.au/ontology/om/sam-lite#", simple: true, prefix: true),
544553
"san-lod" => TermDefinition.new("san-lod", id: "http://dati.san.beniculturali.it/SAN/", simple: true, prefix: true),
545554
"sao" => TermDefinition.new("sao", id: "http://salt.semanticauthoring.org/ontologies/sao#", simple: true, prefix: true),
546555
"saref" => TermDefinition.new("saref", id: "https://w3id.org/saref#", simple: true, prefix: true),
556+
"saref4agri" => TermDefinition.new("saref4agri", id: "https://w3id.org/def/saref4agri#", simple: true, prefix: true),
547557
"saws" => TermDefinition.new("saws", id: "http://purl.org/saws/ontology#", simple: true, prefix: true),
548558
"schema" => TermDefinition.new("schema", id: "http://schema.org/", simple: true, prefix: true),
549559
"scip" => TermDefinition.new("scip", id: "http://lod.taxonconcept.org/ontology/sci_people.owl#", simple: true, prefix: true),
@@ -621,10 +631,12 @@ class JSON::LD::Context
621631
"tag" => TermDefinition.new("tag", id: "http://www.holygoat.co.uk/owl/redwood/0.1/tags/", simple: true, prefix: true),
622632
"tao" => TermDefinition.new("tao", id: "http://vocab.deri.ie/tao#", simple: true, prefix: true),
623633
"taxon" => TermDefinition.new("taxon", id: "http://purl.org/biodiversity/taxon/", simple: true, prefix: true),
634+
"tb" => TermDefinition.new("tb", id: "https://w3id.org/timebank#", simple: true, prefix: true),
624635
"td" => TermDefinition.new("td", id: "https://www.w3.org/2019/wot/td#", simple: true, prefix: true),
625636
"te" => TermDefinition.new("te", id: "http://www.w3.org/2006/time-entry#", simple: true, prefix: true),
626637
"teach" => TermDefinition.new("teach", id: "http://linkedscience.org/teach/ns#", simple: true, prefix: true),
627638
"test" => TermDefinition.new("test", id: "http://www.w3.org/2006/03/test-description#", simple: true, prefix: true),
639+
"tfo" => TermDefinition.new("tfo", id: "https://privatealpha.com/ontology/transformation/1#", simple: true, prefix: true),
628640
"theatre" => TermDefinition.new("theatre", id: "http://purl.org/theatre#", simple: true, prefix: true),
629641
"thors" => TermDefinition.new("thors", id: "http://resource.geosciml.org/ontology/timescale/thors#", simple: true, prefix: true),
630642
"ti" => TermDefinition.new("ti", id: "http://www.ontologydesignpatterns.org/cp/owl/timeinterval.owl#", simple: true, prefix: true),

0 commit comments

Comments
 (0)