Skip to content

Commit

Permalink
feat: Vehicle Sales Ontology
Browse files Browse the repository at this point in the history
  • Loading branch information
tpluscode committed Feb 11, 2024
1 parent c3f3a3e commit 7e02878
Show file tree
Hide file tree
Showing 9 changed files with 766 additions and 4 deletions.
5 changes: 5 additions & 0 deletions .changeset/cuddly-gifts-pull.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@vocabulary/vso": major
---

First release
6 changes: 6 additions & 0 deletions .changeset/red-rivers-repair.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"@zazuko/prefixes": minor
"@zazuko/vocabularies": minor
---

Added Vehicle Sales Ontology (`vso:`)
7 changes: 7 additions & 0 deletions ontologies/vso/meta.nt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<https://prefix.zazuko.com/vso:> <http://dbpedia.org/ontology/filename> "@vocabulary/vso/vso.nq" .
<https://prefix.zazuko.com/vso:> <http://purl.org/dc/terms/description> "VSO: The Vehicle Sales Ontology\n \nA Web vocabulary for describings cars, boats, bikes, and other vehicles for e-commerce.\n\nVocabulary: http://purl.org/vso/ns\nNamespace: http://purl.org/vso/ns#\n\nThe Vehicle Sales Ontology is designed to be used in combination with GoodRelations, a standard vocabulary for the commercial aspects of offers for sale or rental. \n\nSee http://purl.org/goodrelations/ for more information." .
<https://prefix.zazuko.com/vso:> <http://purl.org/dc/terms/title> "VSO: The Vehicle Sales Ontology for Semantic Web-based E-Commerce" .
<https://prefix.zazuko.com/vso:> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/rdfa#PrefixMapping> .
<https://prefix.zazuko.com/vso:> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <https://www.heppnetz.de/ontologies/vso/ns.owl> .
<https://prefix.zazuko.com/vso:> <http://www.w3.org/ns/rdfa#prefix> "vso" .
<https://prefix.zazuko.com/vso:> <http://www.w3.org/ns/rdfa#uri> <http://purl.org/vso/ns#> .
32 changes: 32 additions & 0 deletions ontologies/vso/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"name": "@vocabulary/vso",
"version": "0.0.0",
"type": "module",
"main": "index.js",
"description": "Vehicle Sales Ontology",
"scripts": {
"fetch": "npx --node-options='--loader=ts-node/esm' vocab-build datasets",
"prebuild": "npx --node-options='--loader=ts-node/esm' vocab-build module",
"build": "tsc",
"prepack": "npm run build"
},
"devDependencies": {
"@vocabulary/builder": "^1.0.2"
},
"homepage": "https://prefix.zazuko.com/prefix/vso:",
"vocabulary": {
"prefix": "vso",
"namespace": "http://purl.org/vso/ns#",
"file": "https://www.heppnetz.de/ontologies/vso/ns.owl"
},
"bugs": {
"url": "https://github.com/zazuko/rdf-vocabularies/issues"
},
"license": "MIT",
"files": [
"*.js",
"*.d.ts",
"*.nq",
"*.nt"
]
}
4 changes: 4 additions & 0 deletions ontologies/vso/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"extends": "../../tsconfig",
"files": ["index.ts"]
}
693 changes: 693 additions & 0 deletions ontologies/vso/vso.nq

Large diffs are not rendered by default.

21 changes: 17 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions packages/prefixes/prefixes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@ const packagedPrefixes = {
vcard: 'http://www.w3.org/2006/vcard/ns#',
void: 'http://rdfs.org/ns/void#',
vs: 'http://www.w3.org/2003/06/sw-vocab-status/ns#',
vso: 'http://purl.org/vso/ns#',
wdrs: 'http://www.w3.org/2007/05/powder-s#',
wgs: 'http://www.w3.org/2003/01/geo/wgs84_pos#',
xhv: 'http://www.w3.org/1999/xhtml/vocab#',
Expand Down
1 change: 1 addition & 0 deletions packages/vocabularies/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,7 @@
"@vocabulary/vcard": "^1.0.0",
"@vocabulary/void": "^1.0.0",
"@vocabulary/vs": "^1.0.0",
"@vocabulary/vso": "^0.0.0",
"@vocabulary/wdrs": "^1.0.0",
"@vocabulary/wgs": "^1.0.0",
"@vocabulary/xhv": "^1.0.0",
Expand Down

0 comments on commit 7e02878

Please sign in to comment.