Skip to content

Commit

Permalink
Finish 3.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
gkellogg committed May 30, 2020
2 parents d455322 + 7b4d443 commit 9a31410
Show file tree
Hide file tree
Showing 24 changed files with 256 additions and 38 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Expand Up @@ -21,4 +21,4 @@ OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.

For more information, please refer to <http://unlicense.org>
For more information, please refer to <https://unlicense.org>
2 changes: 1 addition & 1 deletion UNLICENSE
Expand Up @@ -21,4 +21,4 @@ OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.

For more information, please refer to <http://unlicense.org/>
For more information, please refer to <https://unlicense.org/>
2 changes: 1 addition & 1 deletion VERSION
@@ -1 +1 @@
3.1.2
3.1.3
48 changes: 48 additions & 0 deletions etc/doap.jsonld
@@ -0,0 +1,48 @@
{
"@context": {
"dc": "http://purl.org/dc/terms/",
"doap": "http://usefulinc.com/ns/doap#",
"foaf": "http://xmlns.com/foaf/0.1/",
"rdfs": "http://www.w3.org/2000/01/rdf-schema#",
"xsd": "http://www.w3.org/2001/XMLSchema#",
"dc:creator": {"@type": "@id"},
"doap:created": {"@type": "xsd:date"},
"doap:homepage": {"@type": "@id"},
"doap:bug-database": {"@type": "@id"},
"doap:blog": {"@type": "@id"},
"doap:developer": {"@type": "@id"},
"doap:implements": {"@type": "@id"},
"doap:maintainer": {"@type": "@id"},
"doap:documenter": {"@type": "@id"},
"doap:license": {"@type": "@id"},
"doap:description": {"@language": "en"},
"doap:shortdesc": {"@language": "en"},
"foaf:maker": {"@type": "@id"},
"foaf:mbox": {"@type": "@id"},
"foaf:made": {"@type": "@id"},
"rdfs:isDefinedBy": {"@type": "@id"}
},
"@id": "https://rubygems.org/gems/json-ld-preloaded",
"@type": "doap:Project",
"doap:name": "JSON::LD::Preloaded",
"doap:homepage": "https://github.com/ruby-rdf/json-ld-preloaded/",
"doap:license": "https://unlicense.org/1.0/",
"doap:shortdesc": "JSON-LD with preloaded contexts.",
"doap:description": "A meta-release of the json-ld gem including preloaded vocabularies.",
"doap:created": "2018-06-20",
"doap:programming-language": "Ruby",
"doap:bug-database": "https://github.com/ruby-rdf/json-ld-preloaded/issues",
"doap:blog": "https://greggkellogg.net/",
"doap:developer": "https://greggkellogg.net/foaf#me",
"doap:maintainer": "https://greggkellogg.net/foaf#me",
"doap:documenter": "https://greggkellogg.net/foaf#me",
"foaf:maker": "https://greggkellogg.net/foaf#me",
"dc:creator": {
"@id": "https://greggkellogg.net/foaf#me",
"@type": "foaf:Person",
"foaf:name": "Gregg Kellogg",
"foaf:mbox": "mailto:gregg@greggkellogg.net",
"foaf:made": "https://rubygems.org/gems/json-ld-preloaded",
"rdfs:isDefinedBy": "https://greggkellogg.net/foaf"
}
}
30 changes: 30 additions & 0 deletions etc/doap.ttl
@@ -0,0 +1,30 @@
@base <https://rubygems.org/gems/json-ld-preloaded> .
@prefix dc: <http://purl.org/dc/terms/> .
@prefix earl: <http://www.w3.org/ns/earl#> .
@prefix doap: <http://usefulinc.com/ns/doap#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

<> a doap:Project;
dc:creator <https://greggkellogg.net/foaf#me>;
doap:blog <https://greggkellogg.net/>;
doap:bug-database <https://github.com/ruby-rdf/json-ld-preloaded/issues>;
doap:created "2018-06-20"^^xsd:date;
doap:description "A meta-release of the json-ld gem including preloaded vocabularies."@en;
doap:developer <https://greggkellogg.net/foaf#me>;
doap:documenter <https://greggkellogg.net/foaf#me>;
doap:homepage <https://github.com/ruby-rdf/json-ld-preloaded/>;
doap:license <https://unlicense.org/1.0/>;
doap:maintainer <https://greggkellogg.net/foaf#me>;
doap:name "JSON::LD::Preloaded"^^xsd:string;
doap:programming-language "Ruby";
doap:shortdesc "JSON-LD with preloaded contexts."@en;
foaf:maker <https://greggkellogg.net/foaf#me> .

<https://greggkellogg.net/foaf#me> a foaf:Person;
rdfs:isDefinedBy <https://greggkellogg.net/foaf>;
foaf:made <>;
foaf:mbox <mailto:gregg@greggkellogg.net>;
foaf:name "Gregg Kellogg"^^xsd:string .
2 changes: 1 addition & 1 deletion json-ld-preloaded.gemspec
Expand Up @@ -6,7 +6,7 @@ Gem::Specification.new do |gem|
gem.date = File.mtime('VERSION').strftime('%Y-%m-%d')

gem.name = "json-ld-preloaded"
gem.homepage = "http://github.com/ruby-rdf/json-ld-preloaded"
gem.homepage = "https://github.com/ruby-rdf/json-ld-preloaded"
gem.license = 'Unlicense'
gem.summary = "JSON-LD with preloaded contexts."
gem.description = "A meta-release of the json-ld gem including preloaded vocabularies."
Expand Down
2 changes: 1 addition & 1 deletion lib/json/ld/preloaded.rb
@@ -1,6 +1,6 @@
require 'json/ld'

module JSON::LD::Context::Preloaded
module JSON::LD::Preloaded
autoload :VERSION, "json/ld/preloaded/version"
end

Expand Down
2 changes: 1 addition & 1 deletion lib/json/ld/preloaded/activitystreams.rb
Expand Up @@ -4,7 +4,7 @@
require 'json/ld'
class JSON::LD::Context
add_preloaded("http://www.w3.org/ns/activitystreams") do
new(vocab: "_:", term_definitions: {
new(vocab: "_:", processingMode: "json-ld-1.1", term_definitions: {
"Accept" => TermDefinition.new("Accept", id: "https://www.w3.org/ns/activitystreams#Accept", simple: true),
"Activity" => TermDefinition.new("Activity", id: "https://www.w3.org/ns/activitystreams#Activity", simple: true),
"Add" => TermDefinition.new("Add", id: "https://www.w3.org/ns/activitystreams#Add", simple: true),
Expand Down
2 changes: 1 addition & 1 deletion lib/json/ld/preloaded/csvw.rb
Expand Up @@ -4,7 +4,7 @@
require 'json/ld'
class JSON::LD::Context
add_preloaded("http://www.w3.org/ns/csvw") do
new(term_definitions: {
new(processingMode: "json-ld-1.1", term_definitions: {
"Cell" => TermDefinition.new("Cell", id: "http://www.w3.org/ns/csvw#Cell", simple: true),
"Column" => TermDefinition.new("Column", id: "http://www.w3.org/ns/csvw#Column", simple: true),
"Datatype" => TermDefinition.new("Datatype", id: "http://www.w3.org/ns/csvw#Datatype", simple: true),
Expand Down
2 changes: 1 addition & 1 deletion lib/json/ld/preloaded/datacube.rb
Expand Up @@ -4,7 +4,7 @@
require 'json/ld'
class JSON::LD::Context
add_preloaded("http://pebbie.org/context/qb") do
new(term_definitions: {
new(processingMode: "json-ld-1.1", term_definitions: {
"attribute" => TermDefinition.new("attribute", id: "http://purl.org/linked-data/cube#attribute", simple: true),
"codeList" => TermDefinition.new("codeList", id: "http://purl.org/linked-data/cube#codeList", simple: true),
"component" => TermDefinition.new("component", id: "http://purl.org/linked-data/cube#component", simple: true),
Expand Down
2 changes: 1 addition & 1 deletion lib/json/ld/preloaded/entityfacts.rb
Expand Up @@ -4,7 +4,7 @@
require 'json/ld'
class JSON::LD::Context
add_preloaded("http://hub.culturegraph.org/entityfacts/context/v1/entityfacts.jsonld") do
new(term_definitions: {
new(processingMode: "json-ld-1.1", term_definitions: {
"Feature" => TermDefinition.new("Feature", id: "https://purl.org/geojson/vocab#Feature", simple: true),
"Point" => TermDefinition.new("Point", id: "https://purl.org/geojson/vocab#Point", simple: true),
"abbr" => TermDefinition.new("abbr", id: "http://dbpedia.org/ontology/abbreviation", simple: true),
Expand Down
2 changes: 1 addition & 1 deletion lib/json/ld/preloaded/foaf.rb
Expand Up @@ -4,7 +4,7 @@
require 'json/ld'
class JSON::LD::Context
add_preloaded("http://xmlns.com/foaf/context") do
new(vocab: "http://xmlns.com/foaf/0.1/", term_definitions: {
new(vocab: "http://xmlns.com/foaf/0.1/", processingMode: "json-ld-1.1", term_definitions: {
"account" => TermDefinition.new("account", id: "http://xmlns.com/foaf/0.1/account", type_mapping: "@id"),
"accountServiceHomepage" => TermDefinition.new("accountServiceHomepage", id: "http://xmlns.com/foaf/0.1/accountServiceHomepage", type_mapping: "@id"),
"homepage" => TermDefinition.new("homepage", id: "http://xmlns.com/foaf/0.1/homepage", type_mapping: "@id"),
Expand Down
2 changes: 1 addition & 1 deletion lib/json/ld/preloaded/geojson.rb
Expand Up @@ -4,7 +4,7 @@
require 'json/ld'
class JSON::LD::Context
add_preloaded("http://geojson.org/geojson-ld/geojson-context.jsonld") do
new(term_definitions: {
new(processingMode: "json-ld-1.1", term_definitions: {
"Feature" => TermDefinition.new("Feature", id: "https://purl.org/geojson/vocab#Feature", simple: true),
"FeatureCollection" => TermDefinition.new("FeatureCollection", id: "https://purl.org/geojson/vocab#FeatureCollection", simple: true),
"GeometryCollection" => TermDefinition.new("GeometryCollection", id: "https://purl.org/geojson/vocab#GeometryCollection", simple: true),
Expand Down
2 changes: 1 addition & 1 deletion lib/json/ld/preloaded/hydra.rb
Expand Up @@ -4,7 +4,7 @@
require 'json/ld'
class JSON::LD::Context
add_preloaded("http://www.w3.org/ns/hydra/core") do
new(term_definitions: {
new(processingMode: "json-ld-1.1", term_definitions: {
"ApiDocumentation" => TermDefinition.new("ApiDocumentation", id: "http://www.w3.org/ns/hydra/core#ApiDocumentation", simple: true),
"BasicRepresentation" => TermDefinition.new("BasicRepresentation", id: "http://www.w3.org/ns/hydra/core#BasicRepresentation", simple: true),
"Class" => TermDefinition.new("Class", id: "http://www.w3.org/ns/hydra/core#Class", simple: true),
Expand Down
2 changes: 1 addition & 1 deletion lib/json/ld/preloaded/iiif.rb
Expand Up @@ -4,7 +4,7 @@
require 'json/ld'
class JSON::LD::Context
add_preloaded("http://iiif.io/api/image/2/context.json") do
new(term_definitions: {
new(processingMode: "json-ld-1.1", term_definitions: {
"attribution" => TermDefinition.new("attribution", id: "http://iiif.io/api/presentation/2#attributionLabel"),
"baseUriRedirect" => TermDefinition.new("baseUriRedirect", id: "http://iiif.io/api/image/2#baseUriRedirectFeature"),
"canonicalLinkHeader" => TermDefinition.new("canonicalLinkHeader", id: "http://iiif.io/api/image/2#canonicalLinkHeaderFeature"),
Expand Down
16 changes: 14 additions & 2 deletions lib/json/ld/preloaded/lov.rb
Expand Up @@ -4,7 +4,7 @@
require 'json/ld'
class JSON::LD::Context
add_preloaded("http://lov.okfn.org/dataset/lov/context") do
new(term_definitions: {
new(processingMode: "json-ld-1.1", term_definitions: {
"SAN" => TermDefinition.new("SAN", id: "http://www.irit.fr/recherches/MELODI/ontologies/SAN#", simple: true, prefix: true),
"a-loc" => TermDefinition.new("a-loc", id: "https://w3id.org/arco/ontology/location/", simple: true, prefix: true),
"acco" => TermDefinition.new("acco", id: "http://purl.org/acco/ns#", simple: true, prefix: true),
Expand All @@ -23,6 +23,7 @@ class JSON::LD::Context
"algo" => TermDefinition.new("algo", id: "http://securitytoolbox.appspot.com/securityAlgorithms#", simple: true, prefix: true),
"am" => TermDefinition.new("am", id: "http://open-services.net/ns/asset#", simple: true, prefix: true),
"aml" => TermDefinition.new("aml", id: "https://w3id.org/i40/aml#", simple: true, prefix: true),
"amlo-core" => TermDefinition.new("amlo-core", id: "http://w3id.org/amlo/core#", simple: true, prefix: true),
"ao" => TermDefinition.new("ao", id: "http://purl.org/ontology/ao/core#", simple: true, prefix: true),
"aos" => TermDefinition.new("aos", id: "http://rdf.muninn-project.org/ontologies/appearances#", simple: true, prefix: true),
"api" => TermDefinition.new("api", id: "http://purl.org/linked-data/api/vocab#", simple: true, prefix: true),
Expand All @@ -47,6 +48,7 @@ class JSON::LD::Context
"bf" => TermDefinition.new("bf", id: "http://id.loc.gov/ontologies/bibframe/", simple: true, prefix: true),
"bibo" => TermDefinition.new("bibo", id: "http://purl.org/ontology/bibo/", simple: true, prefix: true),
"bibtex" => TermDefinition.new("bibtex", id: "http://purl.org/net/nknouf/ns/bibtex#", simple: true, prefix: true),
"bimerr-op" => TermDefinition.new("bimerr-op", id: "http://bimerr.iot.linkeddata.es/def/occupancy-profile#", simple: true, prefix: true),
"bio" => TermDefinition.new("bio", id: "http://purl.org/vocab/bio/0.1/", simple: true, prefix: true),
"biol" => TermDefinition.new("biol", id: "http://purl.org/NET/biol/ns#", simple: true, prefix: true),
"biopax" => TermDefinition.new("biopax", id: "http://www.biopax.org/release/biopax-level3.owl#", simple: true, prefix: true),
Expand Down Expand Up @@ -94,6 +96,7 @@ class JSON::LD::Context
"cmo" => TermDefinition.new("cmo", id: "http://purl.org/twc/ontologies/cmo.owl#", simple: true, prefix: true),
"cnt" => TermDefinition.new("cnt", id: "http://www.w3.org/2011/content#", simple: true, prefix: true),
"co" => TermDefinition.new("co", id: "http://purl.org/ontology/co/core#", simple: true, prefix: true),
"cochrane" => TermDefinition.new("cochrane", id: "http://data.cochrane.org/ontologies/core/", simple: true, prefix: true),
"cocoon" => TermDefinition.new("cocoon", id: "https://w3id.org/cocoon/v1.0#", simple: true, prefix: true),
"cogs" => TermDefinition.new("cogs", id: "http://vocab.deri.ie/cogs#", simple: true, prefix: true),
"cold" => TermDefinition.new("cold", id: "http://purl.org/configurationontology#", simple: true, prefix: true),
Expand Down Expand Up @@ -144,6 +147,8 @@ class JSON::LD::Context
"demlab" => TermDefinition.new("demlab", id: "http://www.demcare.eu/ontologies/demlab.owl#", simple: true, prefix: true),
"deo" => TermDefinition.new("deo", id: "http://purl.org/spar/deo/", simple: true, prefix: true),
"deps" => TermDefinition.new("deps", id: "http://ontologi.es/doap-deps#", simple: true, prefix: true),
"dfc" => TermDefinition.new("dfc", id: "http://datafoodconsortium.org/ontologies/DFC_FullModel.owl#", simple: true, prefix: true),
"dfcb" => TermDefinition.new("dfcb", id: "http://datafoodconsortium.org/ontologies/DFC_BusinessOntology.owl#", simple: true, prefix: true),
"dicom" => TermDefinition.new("dicom", id: "http://purl.org/healthcarevocab/v1#", simple: true, prefix: true),
"dio" => TermDefinition.new("dio", id: "https://w3id.org/dio#", simple: true, prefix: true),
"disco" => TermDefinition.new("disco", id: "http://rdf-vocabulary.ddialliance.org/discovery#", simple: true, prefix: true),
Expand Down Expand Up @@ -183,6 +188,7 @@ class JSON::LD::Context
"ecrm" => TermDefinition.new("ecrm", id: "http://erlangen-crm.org/current/", simple: true, prefix: true),
"edac" => TermDefinition.new("edac", id: "http://ontology.cybershare.utep.edu/ELSEWeb/elseweb-edac.owl#", simple: true, prefix: true),
"edm" => TermDefinition.new("edm", id: "http://www.europeana.eu/schemas/edm/", simple: true, prefix: true),
"edu" => TermDefinition.new("edu", id: "https://schema.edu.ee/", simple: true, prefix: true),
"edupro" => TermDefinition.new("edupro", id: "http://ns.inria.fr/semed/eduprogression#", simple: true, prefix: true),
"eem" => TermDefinition.new("eem", id: "http://purl.org/eem#", simple: true, prefix: true),
"eepsa" => TermDefinition.new("eepsa", id: "https://w3id.org/eepsa#", simple: true, prefix: true),
Expand Down Expand Up @@ -360,7 +366,7 @@ class JSON::LD::Context
"mo" => TermDefinition.new("mo", id: "http://purl.org/ontology/mo/", simple: true, prefix: true),
"moac" => TermDefinition.new("moac", id: "http://observedchange.com/moac/ns#", simple: true, prefix: true),
"moat" => TermDefinition.new("moat", id: "http://moat-project.org/ns#", simple: true, prefix: true),
"mod" => TermDefinition.new("mod", id: "http://www.isibang.ac.in/mod/ns#", simple: true, prefix: true),
"mod" => TermDefinition.new("mod", id: "http://www.isibang.ac.in/ns/mod#", simple: true, prefix: true),
"modsci" => TermDefinition.new("modsci", id: "https://w3id.org/skgo/modsci#", simple: true, prefix: true),
"mrel" => TermDefinition.new("mrel", id: "http://id.loc.gov/vocabulary/relators/", simple: true, prefix: true),
"msm" => TermDefinition.new("msm", id: "http://iserve.kmi.open.ac.uk/ns/msm#", simple: true, prefix: true),
Expand Down Expand Up @@ -459,7 +465,9 @@ class JSON::LD::Context
"pep" => TermDefinition.new("pep", id: "https://w3id.org/pep/", simple: true, prefix: true),
"person" => TermDefinition.new("person", id: "http://www.w3.org/ns/person#", simple: true, prefix: true),
"pext" => TermDefinition.new("pext", id: "http://www.ontotext.com/proton/protonext#", simple: true, prefix: true),
"pfeepsa" => TermDefinition.new("pfeepsa", id: "https://w3id.org/pfeepsa#", simple: true, prefix: true),
"phdd" => TermDefinition.new("phdd", id: "http://rdf-vocabulary.ddialliance.org/phdd#", simple: true, prefix: true),
"pico" => TermDefinition.new("pico", id: "http://data.cochrane.org/ontologies/pico/", simple: true, prefix: true),
"place" => TermDefinition.new("place", id: "http://purl.org/ontology/places#", simple: true, prefix: true),
"plink" => TermDefinition.new("plink", id: "http://cedric.cnam.fr/isid/ontologies/PersonLink.owl#", simple: true, prefix: true),
"plo" => TermDefinition.new("plo", id: "http://purl.org/net/po#", simple: true, prefix: true),
Expand Down Expand Up @@ -538,12 +546,14 @@ class JSON::LD::Context
"ru" => TermDefinition.new("ru", id: "http://purl.org/imbi/ru-meta.owl#", simple: true, prefix: true),
"ruto" => TermDefinition.new("ruto", id: "http://rdfunit.aksw.org/ns/core#", simple: true, prefix: true),
"s4ac" => TermDefinition.new("s4ac", id: "http://ns.inria.fr/s4ac/v2#", simple: true, prefix: true),
"s4bldg" => TermDefinition.new("s4bldg", id: "https://w3id.org/def/saref4bldg#", simple: true, prefix: true),
"s4ee" => TermDefinition.new("s4ee", id: "https://w3id.org/saref4ee#", simple: true, prefix: true),
"sam" => TermDefinition.new("sam", id: "http://def.seegrid.csiro.au/isotc211/iso19156/2011/sampling#", simple: true, prefix: true),
"samfl" => TermDefinition.new("samfl", id: "http://def.seegrid.csiro.au/ontology/om/sam-lite#", simple: true, prefix: true),
"san-lod" => TermDefinition.new("san-lod", id: "http://dati.san.beniculturali.it/SAN/", simple: true, prefix: true),
"sao" => TermDefinition.new("sao", id: "http://salt.semanticauthoring.org/ontologies/sao#", simple: true, prefix: true),
"saref" => TermDefinition.new("saref", id: "https://w3id.org/saref#", simple: true, prefix: true),
"saref4agri" => TermDefinition.new("saref4agri", id: "https://w3id.org/def/saref4agri#", simple: true, prefix: true),
"saws" => TermDefinition.new("saws", id: "http://purl.org/saws/ontology#", simple: true, prefix: true),
"schema" => TermDefinition.new("schema", id: "http://schema.org/", simple: true, prefix: true),
"scip" => TermDefinition.new("scip", id: "http://lod.taxonconcept.org/ontology/sci_people.owl#", simple: true, prefix: true),
Expand Down Expand Up @@ -621,10 +631,12 @@ class JSON::LD::Context
"tag" => TermDefinition.new("tag", id: "http://www.holygoat.co.uk/owl/redwood/0.1/tags/", simple: true, prefix: true),
"tao" => TermDefinition.new("tao", id: "http://vocab.deri.ie/tao#", simple: true, prefix: true),
"taxon" => TermDefinition.new("taxon", id: "http://purl.org/biodiversity/taxon/", simple: true, prefix: true),
"tb" => TermDefinition.new("tb", id: "https://w3id.org/timebank#", simple: true, prefix: true),
"td" => TermDefinition.new("td", id: "https://www.w3.org/2019/wot/td#", simple: true, prefix: true),
"te" => TermDefinition.new("te", id: "http://www.w3.org/2006/time-entry#", simple: true, prefix: true),
"teach" => TermDefinition.new("teach", id: "http://linkedscience.org/teach/ns#", simple: true, prefix: true),
"test" => TermDefinition.new("test", id: "http://www.w3.org/2006/03/test-description#", simple: true, prefix: true),
"tfo" => TermDefinition.new("tfo", id: "https://privatealpha.com/ontology/transformation/1#", simple: true, prefix: true),
"theatre" => TermDefinition.new("theatre", id: "http://purl.org/theatre#", simple: true, prefix: true),
"thors" => TermDefinition.new("thors", id: "http://resource.geosciml.org/ontology/timescale/thors#", simple: true, prefix: true),
"ti" => TermDefinition.new("ti", id: "http://www.ontologydesignpatterns.org/cp/owl/timeinterval.owl#", simple: true, prefix: true),
Expand Down

0 comments on commit 9a31410

Please sign in to comment.