├── .changeset ├── README.md └── config.json ├── .editorconfig ├── .eslintignore ├── .eslintrc.json ├── .github ├── check-deps.sh ├── pr-commenter.yml └── workflows │ ├── add-to-backlog.yaml │ ├── node.js.yaml │ ├── prefixes-changeset-reminder.yaml │ └── release.yaml ├── .gitignore ├── .husky └── pre-commit ├── CHANGELOG.md ├── LICENSE ├── README.md ├── examples.js ├── ontologies ├── acl │ ├── CHANGELOG.md │ ├── acl.nq │ ├── meta.nt │ ├── package.json │ └── tsconfig.json ├── as │ ├── CHANGELOG.md │ ├── as.nq │ ├── meta.nt │ ├── package.json │ └── tsconfig.json ├── bibo │ ├── CHANGELOG.md │ ├── bibo.nq │ ├── meta.nt │ ├── package.json │ └── tsconfig.json ├── cc │ ├── CHANGELOG.md │ ├── cc.nq │ ├── meta.nt │ ├── package.json │ └── tsconfig.json ├── cert │ ├── CHANGELOG.md │ ├── cert.nq │ ├── meta.nt │ ├── package.json │ └── tsconfig.json ├── cnt │ ├── CHANGELOG.md │ ├── cnt.nq │ ├── meta.nt │ ├── package.json │ └── tsconfig.json ├── constant │ ├── CHANGELOG.md │ ├── constant.nq │ ├── meta.nt │ ├── package.json │ └── tsconfig.json ├── crm │ ├── CHANGELOG.md │ ├── crm.nq │ ├── meta.nt │ ├── package.json │ └── tsconfig.json ├── csvw │ ├── CHANGELOG.md │ ├── csvw.nq │ ├── meta.nt │ ├── package.json │ └── tsconfig.json ├── ctag │ ├── CHANGELOG.md │ ├── ctag.nq │ ├── meta.nt │ ├── package.json │ └── tsconfig.json ├── cur │ ├── CHANGELOG.md │ ├── cur.nq │ ├── meta.nt │ ├── package.json │ └── tsconfig.json ├── dash-sparql │ ├── CHANGELOG.md │ ├── dash-sparql.nq │ ├── meta.nt │ ├── package.json │ └── tsconfig.json ├── dash │ ├── CHANGELOG.md │ ├── dash.nq │ ├── meta.nt │ ├── package.json │ └── tsconfig.json ├── dbo │ ├── CHANGELOG.md │ ├── dbo.nq │ ├── meta.nt │ ├── package.json │ └── tsconfig.json ├── dc11 │ ├── CHANGELOG.md │ ├── dc11.nq │ ├── meta.nt │ ├── package.json │ └── tsconfig.json ├── dcam │ ├── CHANGELOG.md │ ├── dcam.nq │ ├── meta.nt │ ├── package.json │ └── tsconfig.json ├── dcat │ ├── CHANGELOG.md │ ├── dcat.nq │ ├── meta.nt │ ├── package.json │ └── tsconfig.json ├── dcmitype │ ├── CHANGELOG.md │ ├── dcmitype.nq │ ├── meta.nt │ ├── package.json │ └── tsconfig.json ├── dcterms │ ├── CHANGELOG.md │ ├── dcterms.nq │ ├── meta.nt │ ├── package.json │ └── tsconfig.json ├── dig │ ├── CHANGELOG.md │ ├── dig.nq │ ├── meta.nt │ ├── package.json │ └── tsconfig.json ├── discipline │ ├── CHANGELOG.md │ ├── discipline.nq │ ├── meta.nt │ ├── package.json │ └── tsconfig.json ├── doap │ ├── CHANGELOG.md │ ├── doap.nq │ ├── meta.nt │ ├── package.json │ └── tsconfig.json ├── dprod │ ├── CHANGELOG.md │ ├── dprod.nq │ ├── meta.nt │ ├── package.json │ └── tsconfig.json ├── dpv │ ├── CHANGELOG.md │ ├── dpv.nq │ ├── meta.nt │ ├── package.json │ └── tsconfig.json ├── dqv │ ├── CHANGELOG.md │ ├── dqv.nq │ ├── meta.nt │ ├── package.json │ └── tsconfig.json ├── dtype │ ├── CHANGELOG.md │ ├── dtype.nq │ ├── meta.nt │ ├── package.json │ └── tsconfig.json ├── duv │ ├── CHANGELOG.md │ ├── duv.nq │ ├── meta.nt │ ├── package.json │ └── tsconfig.json ├── earl │ ├── CHANGELOG.md │ ├── earl.nq │ ├── meta.nt │ ├── package.json │ └── tsconfig.json ├── ebucore │ ├── CHANGELOG.md │ ├── ebucore.nq │ ├── meta.nt │ ├── package.json │ └── tsconfig.json ├── exif │ ├── CHANGELOG.md │ ├── exif.nq │ ├── meta.nt │ ├── package.json │ └── tsconfig.json ├── foaf │ ├── CHANGELOG.md │ ├── foaf.nq │ ├── meta.nt │ ├── package.json │ └── tsconfig.json ├── frbr │ ├── CHANGELOG.md │ ├── frbr.nq │ ├── meta.nt │ ├── package.json │ └── tsconfig.json ├── geo │ ├── CHANGELOG.md │ ├── geo.nq │ ├── meta.nt │ ├── package.json │ └── tsconfig.json ├── geof │ ├── CHANGELOG.md │ ├── geof.nq │ ├── meta.nt │ ├── package.json │ └── tsconfig.json ├── geor │ ├── CHANGELOG.md │ ├── geor.nq │ ├── meta.nt │ ├── package.json │ └── tsconfig.json ├── gml │ ├── CHANGELOG.md │ ├── gml.nq │ ├── meta.nt │ ├── package.json │ └── tsconfig.json ├── gn │ ├── CHANGELOG.md │ ├── gn.nq │ ├── meta.nt │ ├── package.json │ └── tsconfig.json ├── gr │ ├── CHANGELOG.md │ ├── gr.nq │ ├── meta.nt │ ├── package.json │ └── tsconfig.json ├── grddl │ ├── CHANGELOG.md │ ├── grddl.nq │ ├── meta.nt │ ├── package.json │ └── tsconfig.json ├── gs1 │ ├── CHANGELOG.md │ ├── gs1.nq │ ├── meta.nt │ ├── package.json │ └── tsconfig.json ├── gtfs │ ├── CHANGELOG.md │ ├── gtfs.nq │ ├── meta.nt │ ├── package.json │ └── tsconfig.json ├── http │ ├── CHANGELOG.md │ ├── http.nq │ ├── meta.nt │ ├── package.json │ └── tsconfig.json ├── hydra │ ├── CHANGELOG.md │ ├── hydra.nq │ ├── meta.nt │ ├── package.json │ └── tsconfig.json ├── ical │ ├── CHANGELOG.md │ ├── ical.nq │ ├── meta.nt │ ├── package.json │ └── tsconfig.json ├── la │ ├── CHANGELOG.md │ ├── la.nq │ ├── meta.nt │ ├── package.json │ └── tsconfig.json ├── ldp │ ├── CHANGELOG.md │ ├── ldp.nq │ ├── meta.nt │ ├── package.json │ └── tsconfig.json ├── list │ ├── CHANGELOG.md │ ├── list.nq │ ├── meta.nt │ ├── package.json │ └── tsconfig.json ├── locn │ ├── CHANGELOG.md │ ├── locn.nq │ ├── meta.nt │ ├── package.json │ └── tsconfig.json ├── log │ ├── CHANGELOG.md │ ├── log.nq │ ├── meta.nt │ ├── package.json │ └── tsconfig.json ├── lvont │ ├── CHANGELOG.md │ ├── lvont.nq │ ├── meta.nt │ ├── package.json │ └── tsconfig.json ├── m4i │ ├── CHANGELOG.md │ ├── m4i.nq │ ├── meta.nt │ ├── package.json │ └── tsconfig.json ├── ma │ ├── CHANGELOG.md │ ├── ma.nq │ ├── meta.nt │ ├── package.json │ └── tsconfig.json ├── mads │ ├── CHANGELOG.md │ ├── mads.nq │ ├── meta.nt │ ├── package.json │ └── tsconfig.json ├── math │ ├── CHANGELOG.md │ ├── math.nq │ ├── meta.nt │ ├── package.json │ └── tsconfig.json ├── oa │ ├── CHANGELOG.md │ ├── meta.nt │ ├── oa.nq │ ├── package.json │ └── tsconfig.json ├── og │ ├── CHANGELOG.md │ ├── meta.nt │ ├── og.nq │ ├── package.json │ └── tsconfig.json ├── oidc │ ├── CHANGELOG.md │ ├── meta.nt │ ├── oidc.nq │ ├── package.json │ └── tsconfig.json ├── org │ ├── CHANGELOG.md │ ├── meta.nt │ ├── org.nq │ ├── package.json │ └── tsconfig.json ├── owl │ ├── CHANGELOG.md │ ├── meta.nt │ ├── owl.nq │ ├── package.json │ └── tsconfig.json ├── pim │ ├── CHANGELOG.md │ ├── meta.nt │ ├── package.json │ ├── pim.nq │ └── tsconfig.json ├── prefix │ ├── CHANGELOG.md │ ├── meta.nt │ ├── package.json │ ├── prefix.nq │ └── tsconfig.json ├── prov │ ├── CHANGELOG.md │ ├── meta.nt │ ├── package.json │ ├── prov.nq │ └── tsconfig.json ├── qb │ ├── CHANGELOG.md │ ├── meta.nt │ ├── package.json │ ├── qb.nq │ └── tsconfig.json ├── qkdv │ ├── CHANGELOG.md │ ├── meta.nt │ ├── package.json │ ├── qkdv.nq │ └── tsconfig.json ├── quantitykind │ ├── CHANGELOG.md │ ├── meta.nt │ ├── package.json │ ├── quantitykind.nq │ └── tsconfig.json ├── qudt │ ├── CHANGELOG.md │ ├── meta.nt │ ├── package.json │ ├── qudt.nq │ └── tsconfig.json ├── rdau │ ├── CHANGELOG.md │ ├── meta.nt │ ├── package.json │ ├── rdau.nq │ └── tsconfig.json ├── rdf │ ├── CHANGELOG.md │ ├── meta.nt │ ├── package.json │ ├── rdf.nq │ └── tsconfig.json ├── rdfa │ ├── CHANGELOG.md │ ├── meta.nt │ ├── package.json │ ├── rdfa.nq │ └── tsconfig.json ├── rdfs │ ├── CHANGELOG.md │ ├── meta.nt │ ├── package.json │ ├── rdfs.nq │ └── tsconfig.json ├── rev │ ├── CHANGELOG.md │ ├── meta.nt │ ├── package.json │ ├── rev.nq │ └── tsconfig.json ├── rico │ ├── CHANGELOG.md │ ├── meta.nt │ ├── package.json │ ├── rico.nq │ └── tsconfig.json ├── rr │ ├── CHANGELOG.md │ ├── meta.nt │ ├── package.json │ ├── rr.nq │ └── tsconfig.json ├── rss │ ├── CHANGELOG.md │ ├── meta.nt │ ├── package.json │ ├── rss.nq │ └── tsconfig.json ├── schema │ ├── CHANGELOG.md │ ├── meta.nt │ ├── package.json │ ├── schema.nq │ └── tsconfig.json ├── sd │ ├── CHANGELOG.md │ ├── meta.nt │ ├── package.json │ ├── sd.nq │ └── tsconfig.json ├── sdmx │ ├── CHANGELOG.md │ ├── meta.nt │ ├── package.json │ ├── sdmx.nq │ └── tsconfig.json ├── sem │ ├── CHANGELOG.md │ ├── meta.nt │ ├── package.json │ ├── sem.nq │ └── tsconfig.json ├── set │ ├── CHANGELOG.md │ ├── meta.nt │ ├── package.json │ ├── set.nq │ └── tsconfig.json ├── sf │ ├── CHANGELOG.md │ ├── meta.nt │ ├── package.json │ ├── sf.nq │ └── tsconfig.json ├── sh │ ├── CHANGELOG.md │ ├── README.md │ ├── meta.nt │ ├── package.json │ ├── sh.nq │ ├── src │ │ └── shacl-af.ttl │ └── tsconfig.json ├── shex │ ├── CHANGELOG.md │ ├── meta.nt │ ├── package.json │ ├── shex.nq │ └── tsconfig.json ├── shsh │ ├── CHANGELOG.md │ ├── meta.nt │ ├── package.json │ ├── shsh.nq │ └── tsconfig.json ├── sioc │ ├── CHANGELOG.md │ ├── meta.nt │ ├── package.json │ ├── sioc.nq │ └── tsconfig.json ├── skos │ ├── CHANGELOG.md │ ├── meta.nt │ ├── package.json │ ├── skos.nq │ └── tsconfig.json ├── skosxl │ ├── CHANGELOG.md │ ├── meta.nt │ ├── package.json │ ├── skosxl.nq │ └── tsconfig.json ├── solid │ ├── CHANGELOG.md │ ├── meta.nt │ ├── package.json │ ├── solid.nq │ └── tsconfig.json ├── sosa │ ├── CHANGELOG.md │ ├── meta.nt │ ├── package.json │ ├── sosa.nq │ └── tsconfig.json ├── sou │ ├── CHANGELOG.md │ ├── meta.nt │ ├── package.json │ ├── sou.nq │ └── tsconfig.json ├── ssn │ ├── CHANGELOG.md │ ├── meta.nt │ ├── package.json │ ├── ssn.nq │ └── tsconfig.json ├── stat │ ├── CHANGELOG.md │ ├── meta.nt │ ├── package.json │ ├── stat.nq │ └── tsconfig.json ├── string │ ├── CHANGELOG.md │ ├── meta.nt │ ├── package.json │ ├── string.nq │ └── tsconfig.json ├── test │ ├── CHANGELOG.md │ ├── meta.nt │ ├── package.json │ ├── test.nq │ └── tsconfig.json ├── time │ ├── CHANGELOG.md │ ├── meta.nt │ ├── package.json │ ├── time.nq │ └── tsconfig.json ├── unit │ ├── CHANGELOG.md │ ├── meta.nt │ ├── package.json │ ├── tsconfig.json │ └── unit.nq ├── vaem │ ├── CHANGELOG.md │ ├── meta.nt │ ├── package.json │ ├── tsconfig.json │ └── vaem.nq ├── vann │ ├── CHANGELOG.md │ ├── meta.nt │ ├── package.json │ ├── tsconfig.json │ └── vann.nq ├── vcard │ ├── CHANGELOG.md │ ├── meta.nt │ ├── package.json │ ├── tsconfig.json │ └── vcard.nq ├── void │ ├── CHANGELOG.md │ ├── meta.nt │ ├── package.json │ ├── tsconfig.json │ └── void.nq ├── vs │ ├── CHANGELOG.md │ ├── meta.nt │ ├── package.json │ ├── tsconfig.json │ └── vs.nq ├── vso │ ├── CHANGELOG.md │ ├── meta.nt │ ├── package.json │ ├── tsconfig.json │ └── vso.nq ├── wdrs │ ├── CHANGELOG.md │ ├── meta.nt │ ├── package.json │ ├── tsconfig.json │ └── wdrs.nq ├── wgs │ ├── CHANGELOG.md │ ├── meta.nt │ ├── package.json │ ├── tsconfig.json │ └── wgs.nq ├── xhv │ ├── CHANGELOG.md │ ├── meta.nt │ ├── package.json │ ├── tsconfig.json │ └── xhv.nq ├── xkos │ ├── CHANGELOG.md │ ├── meta.nt │ ├── package.json │ ├── tsconfig.json │ └── xkos.nq └── xsd │ ├── CHANGELOG.md │ ├── meta.nt │ ├── package.json │ ├── tsconfig.json │ └── xsd.nq ├── package-lock.json ├── package.json ├── packages ├── builder │ ├── CHANGELOG.md │ ├── README.md │ ├── bin │ │ └── index.js │ ├── datasets.ts │ ├── index.ts │ ├── lib │ │ ├── fetch.ts │ │ └── overrides.ts │ ├── modules.ts │ ├── package.json │ └── tsconfig.json ├── loader │ ├── CHANGELOG.md │ ├── index.ts │ ├── lib │ │ └── loadDataset.ts │ ├── package.json │ └── tsconfig.json ├── prefixes │ ├── .build │ │ └── prefixes.sh │ ├── CHANGELOG.md │ ├── expand.ts │ ├── index.ts │ ├── lib │ │ └── prefixesOnly.ts │ ├── package.json │ ├── prefixes.ts │ ├── shrink.ts │ └── tsconfig.json └── vocabularies │ ├── CHANGELOG.md │ ├── bin │ └── vocab.js │ ├── expand.ts │ ├── expandWithCheck.ts │ ├── index.ts │ ├── meta.ts │ ├── package.json │ ├── prefixes.ts │ ├── shrink.ts │ ├── test │ ├── index.test.ts │ └── meta.test.ts │ ├── tsconfig.json │ └── vocabularies.ts └── tsconfig.json /.changeset/README.md: -------------------------------------------------------------------------------- 1 | # Changesets 2 | 3 | Hello and welcome! This folder has been automatically generated by `@changesets/cli`, a build tool that works 4 | with multi-package repos, or single-package repos to help you version and publish your code. You can 5 | find the full documentation for it [in our repository](https://github.com/changesets/changesets) 6 | 7 | We have a quick list of common questions to get you started engaging with this project in 8 | [our documentation](https://github.com/changesets/changesets/blob/main/docs/common-questions.md) 9 | -------------------------------------------------------------------------------- /.changeset/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "https://unpkg.com/@changesets/config@2.3.0/schema.json", 3 | "changelog": "@changesets/cli/changelog", 4 | "commit": false, 5 | "fixed": [], 6 | "linked": [], 7 | "access": "public", 8 | "baseBranch": "master", 9 | "updateInternalDependencies": "patch", 10 | "ignore": [] 11 | } 12 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | [*] 2 | indent_style = space 3 | indent_size = 2 4 | insert_final_newline = true 5 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | ontologies/ 2 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": [ "@tpluscode" ], 3 | "parserOptions": { 4 | "project": "./tsconfig.json" 5 | }, 6 | "env": { 7 | "mocha": true 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /.github/check-deps.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | VOCABS=$(jq '.name' ontologies/*/package.json) 4 | 5 | for vocab in $VOCABS 6 | do 7 | HAS_DEPENDENCY=$(grep "$vocab" packages/vocabularies/package.json) 8 | if [ ! "$HAS_DEPENDENCY" ] 9 | then 10 | MISSING=true 11 | echo "𝙭 ${vocab}" 12 | fi 13 | done 14 | 15 | if [ $MISSING ] 16 | then 17 | exit 1 18 | fi 19 | -------------------------------------------------------------------------------- /.github/pr-commenter.yml: -------------------------------------------------------------------------------- 1 | comment: 2 | on-update: nothing 3 | 4 | footer: | 5 | --- 6 | Automated comment created by [PR Commenter](https://github.com/exercism/pr-commenter-action) :robot:. 7 | 8 | snippets: 9 | - id: vocab-changes 10 | files: 11 | - 'ontologies/**/*' 12 | body: "Did you remember to add changeset to `@zazuko/prefixes`?" 13 | -------------------------------------------------------------------------------- /.github/workflows/add-to-backlog.yaml: -------------------------------------------------------------------------------- 1 | name: Add issues to shared backlog 2 | 3 | on: 4 | issues: 5 | types: 6 | - opened 7 | pull_request: 8 | branches-ignore: 9 | - "dependabot/**/*" 10 | types: 11 | - opened 12 | 13 | jobs: 14 | add-to-project: 15 | runs-on: ubuntu-latest 16 | steps: 17 | - uses: actions/add-to-project@v0.4.0 18 | with: 19 | project-url: https://github.com/orgs/zazuko/projects/23 20 | github-token: ${{ secrets.BACKLOG_PAT }} 21 | -------------------------------------------------------------------------------- /.github/workflows/prefixes-changeset-reminder.yaml: -------------------------------------------------------------------------------- 1 | name: Prefix reminder 2 | 3 | on: 4 | - pull_request 5 | 6 | jobs: 7 | build: 8 | runs-on: ubuntu-latest 9 | 10 | steps: 11 | - name: remind-about-prefixes 12 | uses: exercism/pr-commenter-action@v1.4.0 13 | with: 14 | github-token: ${{ secrets.GITHUB_TOKEN }} 15 | config-file: ".github/pr-commenter.yml" 16 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | coverage 3 | *.d.ts 4 | *.d.ts.map 5 | *.js 6 | *.mjs 7 | !mocha-setup.js 8 | ontologies/*/index.ts 9 | packages/vocabularies/meta.nt 10 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | . "$(dirname -- "$0")/_/husky.sh" 3 | 4 | npm run -w @zazuko/prefixes update-prefixes 5 | git add packages/prefixes/prefixes.ts 6 | npx lint-staged 7 | -------------------------------------------------------------------------------- /ontologies/acl/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # @vocabulary/acl 2 | 3 | ## 1.0.4 4 | 5 | ### Patch Changes 6 | 7 | - c82d252: Update `@rdfjs/types` to v2. Remove `rdf-js` completely 8 | 9 | ## 1.0.3 10 | 11 | ### Patch Changes 12 | 13 | - d3570dc: Use `@rdfjs/types` instead of `rdf-js` in built TS module 14 | 15 | ## 1.0.2 16 | 17 | ### Patch Changes 18 | 19 | - e365e06: Replace usages of `rdf-js` with `@rdfjs/types` in type declarations 20 | 21 | ## 1.0.1 22 | 23 | ### Patch Changes 24 | 25 | - 714b4f7: Missing `main` field caused warnings when used in node 26 | 27 | ## 1.0.0 28 | 29 | ### Major Changes 30 | 31 | - 4a451f1: Separated vocabulary packages (closes #118, closes #55, closes #97) 32 | 33 | ### Patch Changes 34 | 35 | - 7c9890f: Added Prefix Server links to packages 36 | 37 | ## 1.0.0-rc.1 38 | 39 | ### Patch Changes 40 | 41 | - 7c9890f: Added Prefix Server links to packages 42 | 43 | ## 1.0.0-rc.0 44 | 45 | ### Major Changes 46 | 47 | - 4a451f1: Separated vocabulary packages (closes #118, closes #55, closes #97) 48 | -------------------------------------------------------------------------------- /ontologies/acl/meta.nt: -------------------------------------------------------------------------------- 1 | "@vocabulary/acl/acl.nq" . 2 | . 3 | . 4 | "acl" . 5 | . 6 | -------------------------------------------------------------------------------- /ontologies/acl/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@vocabulary/acl", 3 | "version": "1.0.4", 4 | "type": "module", 5 | "main": "index.js", 6 | "scripts": { 7 | "fetch": "npx --node-options='--loader=ts-node/esm' vocab-build datasets", 8 | "prebuild": "npx --node-options='--loader=ts-node/esm' vocab-build module", 9 | "build": "tsc", 10 | "prepack": "npm run build" 11 | }, 12 | "devDependencies": { 13 | "@vocabulary/builder": "^1.0.8" 14 | }, 15 | "license": "MIT", 16 | "homepage": "https://prefix.zazuko.com/prefix/acl:", 17 | "vocabulary": { 18 | "prefix": "acl", 19 | "namespace": "http://www.w3.org/ns/auth/acl#" 20 | }, 21 | "files": [ 22 | "*.js", 23 | "*.d.ts", 24 | "*.nq", 25 | "*.nt" 26 | ], 27 | "peerDependencies": { 28 | "@rdfjs/types": "^2.0.0" 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /ontologies/acl/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/as/meta.nt: -------------------------------------------------------------------------------- 1 | "@vocabulary/as/as.nq" . 2 | "Extended Activity Streams 2.0 Vocabulary" . 3 | "Activity Streams 2.0" . 4 | . 5 | . 6 | "as" . 7 | . 8 | -------------------------------------------------------------------------------- /ontologies/as/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/bibo/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@vocabulary/bibo", 3 | "version": "1.0.5", 4 | "type": "module", 5 | "main": "index.js", 6 | "scripts": { 7 | "fetch": "npx --node-options='--loader=ts-node/esm' vocab-build datasets", 8 | "prebuild": "npx --node-options='--loader=ts-node/esm' vocab-build module", 9 | "build": "tsc", 10 | "prepack": "npm run build" 11 | }, 12 | "devDependencies": { 13 | "@vocabulary/builder": "^1.0.8" 14 | }, 15 | "homepage": "https://prefix.zazuko.com/prefix/bibo:", 16 | "vocabulary": { 17 | "prefix": "bibo", 18 | "namespace": "http://purl.org/ontology/bibo/", 19 | "mediaType": "application/rdf+xml" 20 | }, 21 | "license": "MIT", 22 | "files": [ 23 | "*.js", 24 | "*.d.ts", 25 | "*.nq", 26 | "*.nt" 27 | ], 28 | "bugs": { 29 | "url": "https://github.com/zazuko/rdf-vocabularies/issues" 30 | }, 31 | "peerDependencies": { 32 | "@rdfjs/types": "^2.0.0" 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /ontologies/bibo/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/cc/meta.nt: -------------------------------------------------------------------------------- 1 | "@vocabulary/cc/cc.nq" . 2 | . 3 | . 4 | "cc" . 5 | . 6 | -------------------------------------------------------------------------------- /ontologies/cc/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@vocabulary/cc", 3 | "version": "1.0.5", 4 | "type": "module", 5 | "main": "index.js", 6 | "scripts": { 7 | "fetch": "npx --node-options='--loader=ts-node/esm' vocab-build datasets", 8 | "prebuild": "npx --node-options='--loader=ts-node/esm' vocab-build module", 9 | "build": "tsc", 10 | "prepack": "npm run build" 11 | }, 12 | "devDependencies": { 13 | "@vocabulary/builder": "^1.0.8" 14 | }, 15 | "homepage": "https://prefix.zazuko.com/prefix/cc:", 16 | "vocabulary": { 17 | "prefix": "cc", 18 | "namespace": "http://creativecommons.org/ns#", 19 | "file": "https://creativecommons.org/schema.rdf" 20 | }, 21 | "license": "MIT", 22 | "files": [ 23 | "*.js", 24 | "*.d.ts", 25 | "*.nq", 26 | "*.nt" 27 | ], 28 | "bugs": { 29 | "url": "https://github.com/zazuko/rdf-vocabularies/issues" 30 | }, 31 | "peerDependencies": { 32 | "@rdfjs/types": "^2.0.0" 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /ontologies/cc/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/cert/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # @vocabulary/cert 2 | 3 | ## 1.0.4 4 | 5 | ### Patch Changes 6 | 7 | - c82d252: Update `@rdfjs/types` to v2. Remove `rdf-js` completely 8 | 9 | ## 1.0.3 10 | 11 | ### Patch Changes 12 | 13 | - d3570dc: Use `@rdfjs/types` instead of `rdf-js` in built TS module 14 | 15 | ## 1.0.2 16 | 17 | ### Patch Changes 18 | 19 | - e365e06: Replace usages of `rdf-js` with `@rdfjs/types` in type declarations 20 | 21 | ## 1.0.1 22 | 23 | ### Patch Changes 24 | 25 | - a676187: Added `bugs` link to package 26 | 27 | ## 1.0.0 28 | 29 | ### Major Changes 30 | 31 | - f63ae7f: First release 32 | -------------------------------------------------------------------------------- /ontologies/cert/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@vocabulary/cert", 3 | "version": "1.0.4", 4 | "type": "module", 5 | "description": "Ontology for Certificates and crypto stuff", 6 | "scripts": { 7 | "fetch": "npx --node-options='--loader=ts-node/esm' vocab-build datasets", 8 | "prebuild": "npx --node-options='--loader=ts-node/esm' vocab-build module", 9 | "build": "tsc", 10 | "prepack": "npm run build" 11 | }, 12 | "devDependencies": { 13 | "@vocabulary/builder": "^1.0.8" 14 | }, 15 | "license": "MIT", 16 | "homepage": "https://prefix.zazuko.com/prefix/cert:", 17 | "vocabulary": { 18 | "prefix": "cert", 19 | "namespace": "http://www.w3.org/ns/auth/cert#" 20 | }, 21 | "files": [ 22 | "*.js", 23 | "*.d.ts", 24 | "*.nq", 25 | "*.nt" 26 | ], 27 | "bugs": { 28 | "url": "https://github.com/zazuko/rdf-vocabularies/issues" 29 | }, 30 | "peerDependencies": { 31 | "@rdfjs/types": "^2.0.0" 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /ontologies/cert/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/cnt/meta.nt: -------------------------------------------------------------------------------- 1 | "@vocabulary/cnt/cnt.nq" . 2 | "Representing Content in RDF as defined by http://www.w3.org/TR/Content-in-RDF/" . 3 | "Representing Content in RDF" . 4 | . 5 | . 6 | "cnt" . 7 | . 8 | -------------------------------------------------------------------------------- /ontologies/cnt/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@vocabulary/cnt", 3 | "version": "1.0.5", 4 | "type": "module", 5 | "main": "index.js", 6 | "scripts": { 7 | "fetch": "npx --node-options='--loader=ts-node/esm' vocab-build datasets", 8 | "prebuild": "npx --node-options='--loader=ts-node/esm' vocab-build module", 9 | "build": "tsc", 10 | "prepack": "npm run build" 11 | }, 12 | "devDependencies": { 13 | "@vocabulary/builder": "^1.0.8" 14 | }, 15 | "homepage": "https://prefix.zazuko.com/prefix/cnt:", 16 | "vocabulary": { 17 | "prefix": "cnt", 18 | "namespace": "http://www.w3.org/2011/content#" 19 | }, 20 | "license": "MIT", 21 | "files": [ 22 | "*.js", 23 | "*.d.ts", 24 | "*.nq", 25 | "*.nt" 26 | ], 27 | "bugs": { 28 | "url": "https://github.com/zazuko/rdf-vocabularies/issues" 29 | }, 30 | "peerDependencies": { 31 | "@rdfjs/types": "^2.0.0" 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /ontologies/cnt/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/constant/meta.nt: -------------------------------------------------------------------------------- 1 | "@vocabulary/constant/constant.nq" . 2 | . 3 | . 4 | "constant" . 5 | . 6 | -------------------------------------------------------------------------------- /ontologies/constant/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@vocabulary/constant", 3 | "version": "1.0.5", 4 | "type": "module", 5 | "main": "index.js", 6 | "scripts": { 7 | "fetch": "npx --node-options='--loader=ts-node/esm' vocab-build datasets", 8 | "prebuild": "npx --node-options='--loader=ts-node/esm' vocab-build module", 9 | "build": "tsc", 10 | "prepack": "npm run build" 11 | }, 12 | "devDependencies": { 13 | "@vocabulary/builder": "^1.0.8" 14 | }, 15 | "homepage": "https://prefix.zazuko.com/prefix/constant:", 16 | "vocabulary": { 17 | "prefix": "constant", 18 | "namespace": "http://qudt.org/vocab/constant/" 19 | }, 20 | "license": "MIT", 21 | "files": [ 22 | "*.js", 23 | "*.d.ts", 24 | "*.nq", 25 | "*.nt" 26 | ], 27 | "bugs": { 28 | "url": "https://github.com/zazuko/rdf-vocabularies/issues" 29 | }, 30 | "peerDependencies": { 31 | "@rdfjs/types": "^2.0.0" 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /ontologies/constant/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/crm/meta.nt: -------------------------------------------------------------------------------- 1 | "@vocabulary/crm/crm.nq" . 2 | . 3 | . 4 | "crm" . 5 | . 6 | -------------------------------------------------------------------------------- /ontologies/crm/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@vocabulary/crm", 3 | "version": "1.0.5", 4 | "type": "module", 5 | "main": "index.js", 6 | "scripts": { 7 | "fetch": "npx --node-options='--loader=ts-node/esm' vocab-build datasets", 8 | "prebuild": "npx --node-options='--loader=ts-node/esm' vocab-build module", 9 | "build": "tsc", 10 | "prepack": "npm run build" 11 | }, 12 | "devDependencies": { 13 | "@vocabulary/builder": "^1.0.8" 14 | }, 15 | "homepage": "https://prefix.zazuko.com/prefix/crm:", 16 | "vocabulary": { 17 | "prefix": "crm", 18 | "namespace": "http://www.cidoc-crm.org/cidoc-crm/" 19 | }, 20 | "license": "MIT", 21 | "files": [ 22 | "*.js", 23 | "*.d.ts", 24 | "*.nq", 25 | "*.nt" 26 | ], 27 | "bugs": { 28 | "url": "https://github.com/zazuko/rdf-vocabularies/issues" 29 | }, 30 | "peerDependencies": { 31 | "@rdfjs/types": "^2.0.0" 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /ontologies/crm/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/csvw/meta.nt: -------------------------------------------------------------------------------- 1 | "@vocabulary/csvw/csvw.nq" . 2 | "This document describes the RDFS vocabulary description used in the Metadata Vocabulary for Tabular Data [[tabular-metadata]] along with the default JSON-LD Context." . 3 | "CSVW Namespace Vocabulary Terms" . 4 | . 5 | . 6 | "csvw" . 7 | . 8 | -------------------------------------------------------------------------------- /ontologies/csvw/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@vocabulary/csvw", 3 | "version": "1.0.5", 4 | "type": "module", 5 | "main": "index.js", 6 | "scripts": { 7 | "fetch": "npx --node-options='--loader=ts-node/esm' vocab-build datasets", 8 | "prebuild": "npx --node-options='--loader=ts-node/esm' vocab-build module", 9 | "build": "tsc", 10 | "prepack": "npm run build" 11 | }, 12 | "devDependencies": { 13 | "@vocabulary/builder": "^1.0.8" 14 | }, 15 | "homepage": "https://prefix.zazuko.com/prefix/csvw:", 16 | "vocabulary": { 17 | "prefix": "csvw", 18 | "namespace": "http://www.w3.org/ns/csvw#" 19 | }, 20 | "license": "MIT", 21 | "files": [ 22 | "*.js", 23 | "*.d.ts", 24 | "*.nq", 25 | "*.nt" 26 | ], 27 | "bugs": { 28 | "url": "https://github.com/zazuko/rdf-vocabularies/issues" 29 | }, 30 | "peerDependencies": { 31 | "@rdfjs/types": "^2.0.0" 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /ontologies/csvw/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/ctag/meta.nt: -------------------------------------------------------------------------------- 1 | "@vocabulary/ctag/ctag.nq" . 2 | "Common Tag RDF vocabulary, described using W3C RDF Schema. Common Tags allows documents and document fragments (any resource which can be identified by a URI) to be labeled with keywords and URIs, unambigiously idenfying the concepts covered by the resource." . 3 | "Common Tag vocabulary" . 4 | . 5 | . 6 | "ctag" . 7 | . 8 | -------------------------------------------------------------------------------- /ontologies/ctag/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/cur/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # @vocabulary/cur 2 | 3 | ## 1.0.1 4 | 5 | ### Patch Changes 6 | 7 | - c82d252: Update `@rdfjs/types` to v2. Remove `rdf-js` completely 8 | 9 | ## 1.0.0 10 | 11 | ### Major Changes 12 | 13 | - 640abf9: Added QUDT currencies 14 | -------------------------------------------------------------------------------- /ontologies/cur/meta.nt: -------------------------------------------------------------------------------- 1 | "@vocabulary/cur/cur.nq" . 2 | "QUDT VOCAB Currency Units Release 3.0.0" . 3 | . 4 | . 5 | "cur" . 6 | . 7 | -------------------------------------------------------------------------------- /ontologies/cur/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@vocabulary/cur", 3 | "version": "1.0.1", 4 | "type": "module", 5 | "main": "index.js", 6 | "scripts": { 7 | "fetch": "npx --node-options='--loader=ts-node/esm' vocab-build datasets", 8 | "prebuild": "npx --node-options='--loader=ts-node/esm' vocab-build module", 9 | "build": "tsc", 10 | "prepack": "npm run build" 11 | }, 12 | "devDependencies": { 13 | "@vocabulary/builder": "^1.0.8" 14 | }, 15 | "homepage": "https://prefix.zazuko.com/prefix/cur:", 16 | "vocabulary": { 17 | "prefix": "cur", 18 | "namespace": "http://qudt.org/vocab/currency/" 19 | }, 20 | "bugs": { 21 | "url": "https://github.com/zazuko/rdf-vocabularies/issues" 22 | }, 23 | "license": "MIT", 24 | "files": [ 25 | "*.js", 26 | "*.d.ts", 27 | "*.nq", 28 | "*.nt" 29 | ], 30 | "peerDependencies": { 31 | "@rdfjs/types": "^2.0.0" 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /ontologies/cur/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/dash-sparql/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@vocabulary/dash-sparql", 3 | "version": "1.0.5", 4 | "type": "module", 5 | "main": "index.js", 6 | "description": "SPARQL Vocabulary for SHACL", 7 | "scripts": { 8 | "fetch": "npx --node-options='--loader=ts-node/esm' vocab-build datasets", 9 | "prebuild": "npx --node-options='--loader=ts-node/esm' vocab-build module", 10 | "build": "tsc", 11 | "prepack": "npm run build" 12 | }, 13 | "homepage": "https://prefix.zazuko.com/prefix/dash-sparql:", 14 | "devDependencies": { 15 | "@vocabulary/builder": "^1.0.8" 16 | }, 17 | "vocabulary": { 18 | "prefix": "dash-sparql", 19 | "namespace": "http://datashapes.org/sparql#" 20 | }, 21 | "license": "MIT", 22 | "files": [ 23 | "*.js", 24 | "*.d.ts", 25 | "*.nq", 26 | "*.nt" 27 | ], 28 | "bugs": { 29 | "url": "https://github.com/zazuko/rdf-vocabularies/issues" 30 | }, 31 | "peerDependencies": { 32 | "@rdfjs/types": "^2.0.0" 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /ontologies/dash-sparql/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/dash/meta.nt: -------------------------------------------------------------------------------- 1 | "@vocabulary/dash/dash.nq" . 2 | "DASH is a SHACL library for frequently needed features and design patterns. The constraint components in this library are 100% standards compliant and will work on any engine that fully supports SHACL." . 3 | "DASH Data Shapes Vocabulary" . 4 | . 5 | . 6 | "dash" . 7 | . 8 | -------------------------------------------------------------------------------- /ontologies/dash/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@vocabulary/dash", 3 | "version": "1.0.5", 4 | "type": "module", 5 | "main": "index.js", 6 | "scripts": { 7 | "fetch": "npx --node-options='--loader=ts-node/esm' vocab-build datasets", 8 | "prebuild": "npx --node-options='--loader=ts-node/esm' vocab-build module", 9 | "build": "tsc", 10 | "prepack": "npm run build" 11 | }, 12 | "devDependencies": { 13 | "@vocabulary/builder": "^1.0.8" 14 | }, 15 | "homepage": "https://prefix.zazuko.com/prefix/dash:", 16 | "vocabulary": { 17 | "prefix": "dash", 18 | "namespace": "http://datashapes.org/dash#" 19 | }, 20 | "license": "MIT", 21 | "files": [ 22 | "*.js", 23 | "*.d.ts", 24 | "*.nq", 25 | "*.nt" 26 | ], 27 | "bugs": { 28 | "url": "https://github.com/zazuko/rdf-vocabularies/issues" 29 | }, 30 | "peerDependencies": { 31 | "@rdfjs/types": "^2.0.0" 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /ontologies/dash/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/dbo/meta.nt: -------------------------------------------------------------------------------- 1 | "@vocabulary/dbo/dbo.nq" . 2 | "The DBpedia ontology provides the classes and properties used in the DBpedia data set." . 3 | "The DBpedia Ontology" . 4 | . 5 | . 6 | . 7 | "dbo" . 8 | . 9 | -------------------------------------------------------------------------------- /ontologies/dbo/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/dc11/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # @vocabulary/dc11 2 | 3 | ## 1.0.5 4 | 5 | ### Patch Changes 6 | 7 | - c82d252: Update `@rdfjs/types` to v2. Remove `rdf-js` completely 8 | 9 | ## 1.0.4 10 | 11 | ### Patch Changes 12 | 13 | - d3570dc: Use `@rdfjs/types` instead of `rdf-js` in built TS module 14 | 15 | ## 1.0.3 16 | 17 | ### Patch Changes 18 | 19 | - e365e06: Replace usages of `rdf-js` with `@rdfjs/types` in type declarations 20 | 21 | ## 1.0.2 22 | 23 | ### Patch Changes 24 | 25 | - a676187: Added `bugs` link to package 26 | 27 | ## 1.0.1 28 | 29 | ### Patch Changes 30 | 31 | - 714b4f7: Missing `main` field caused warnings when used in node 32 | 33 | ## 1.0.0 34 | 35 | ### Major Changes 36 | 37 | - 4a451f1: Separated vocabulary packages (closes #118, closes #55, closes #97) 38 | 39 | ## 1.0.0-rc.0 40 | 41 | ### Major Changes 42 | 43 | - 4a451f1: Separated vocabulary packages (closes #118, closes #55, closes #97) 44 | -------------------------------------------------------------------------------- /ontologies/dc11/meta.nt: -------------------------------------------------------------------------------- 1 | "@vocabulary/dc11/dc11.nq" . 2 | "Dublin Core Metadata Element Set, Version 1.1" . 3 | . 4 | . 5 | "dc11" . 6 | . 7 | -------------------------------------------------------------------------------- /ontologies/dc11/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@vocabulary/dc11", 3 | "version": "1.0.5", 4 | "type": "module", 5 | "main": "index.js", 6 | "scripts": { 7 | "fetch": "npx --node-options='--loader=ts-node/esm' vocab-build datasets", 8 | "prebuild": "npx --node-options='--loader=ts-node/esm' vocab-build module", 9 | "build": "tsc", 10 | "prepack": "npm run build" 11 | }, 12 | "devDependencies": { 13 | "@vocabulary/builder": "^1.0.8" 14 | }, 15 | "vocabulary": { 16 | "prefix": "dc11", 17 | "namespace": "http://purl.org/dc/elements/1.1/" 18 | }, 19 | "license": "MIT", 20 | "files": [ 21 | "*.js", 22 | "*.d.ts", 23 | "*.nq", 24 | "*.nt" 25 | ], 26 | "bugs": { 27 | "url": "https://github.com/zazuko/rdf-vocabularies/issues" 28 | }, 29 | "peerDependencies": { 30 | "@rdfjs/types": "^2.0.0" 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /ontologies/dc11/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/dcam/meta.nt: -------------------------------------------------------------------------------- 1 | "@vocabulary/dcam/dcam.nq" . 2 | "Metadata terms for vocabulary description" . 3 | . 4 | . 5 | "dcam" . 6 | . 7 | -------------------------------------------------------------------------------- /ontologies/dcam/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@vocabulary/dcam", 3 | "version": "1.0.5", 4 | "type": "module", 5 | "main": "index.js", 6 | "scripts": { 7 | "fetch": "npx --node-options='--loader=ts-node/esm' vocab-build datasets", 8 | "prebuild": "npx --node-options='--loader=ts-node/esm' vocab-build module", 9 | "build": "tsc", 10 | "prepack": "npm run build" 11 | }, 12 | "devDependencies": { 13 | "@vocabulary/builder": "^1.0.8" 14 | }, 15 | "homepage": "https://prefix.zazuko.com/prefix/dcam:", 16 | "vocabulary": { 17 | "prefix": "dcam", 18 | "namespace": "http://purl.org/dc/dcam/" 19 | }, 20 | "license": "MIT", 21 | "files": [ 22 | "*.js", 23 | "*.d.ts", 24 | "*.nq", 25 | "*.nt" 26 | ], 27 | "bugs": { 28 | "url": "https://github.com/zazuko/rdf-vocabularies/issues" 29 | }, 30 | "peerDependencies": { 31 | "@rdfjs/types": "^2.0.0" 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /ontologies/dcam/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/dcat/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@vocabulary/dcat", 3 | "version": "1.0.5", 4 | "type": "module", 5 | "main": "index.js", 6 | "scripts": { 7 | "fetch": "npx --node-options='--loader=ts-node/esm' vocab-build datasets", 8 | "prebuild": "npx --node-options='--loader=ts-node/esm' vocab-build module", 9 | "build": "tsc", 10 | "prepack": "npm run build" 11 | }, 12 | "devDependencies": { 13 | "@vocabulary/builder": "^1.0.8" 14 | }, 15 | "homepage": "https://prefix.zazuko.com/prefix/dcat:", 16 | "vocabulary": { 17 | "prefix": "dcat", 18 | "namespace": "http://www.w3.org/ns/dcat#" 19 | }, 20 | "license": "MIT", 21 | "files": [ 22 | "*.js", 23 | "*.d.ts", 24 | "*.nq", 25 | "*.nt" 26 | ], 27 | "bugs": { 28 | "url": "https://github.com/zazuko/rdf-vocabularies/issues" 29 | }, 30 | "peerDependencies": { 31 | "@rdfjs/types": "^2.0.0" 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /ontologies/dcat/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/dcmitype/meta.nt: -------------------------------------------------------------------------------- 1 | "@vocabulary/dcmitype/dcmitype.nq" . 2 | "DCMI Type Vocabulary" . 3 | . 4 | . 5 | "dcmitype" . 6 | . 7 | -------------------------------------------------------------------------------- /ontologies/dcmitype/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@vocabulary/dcmitype", 3 | "version": "1.0.5", 4 | "type": "module", 5 | "main": "index.js", 6 | "scripts": { 7 | "fetch": "npx --node-options='--loader=ts-node/esm' vocab-build datasets", 8 | "prebuild": "npx --node-options='--loader=ts-node/esm' vocab-build module", 9 | "build": "tsc", 10 | "prepack": "npm run build" 11 | }, 12 | "devDependencies": { 13 | "@vocabulary/builder": "^1.0.8" 14 | }, 15 | "homepage": "https://prefix.zazuko.com/prefix/dcmitype:", 16 | "vocabulary": { 17 | "prefix": "dcmitype", 18 | "namespace": "http://purl.org/dc/dcmitype/" 19 | }, 20 | "license": "MIT", 21 | "files": [ 22 | "*.js", 23 | "*.d.ts", 24 | "*.nq", 25 | "*.nt" 26 | ], 27 | "bugs": { 28 | "url": "https://github.com/zazuko/rdf-vocabularies/issues" 29 | }, 30 | "peerDependencies": { 31 | "@rdfjs/types": "^2.0.0" 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /ontologies/dcmitype/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/dcterms/meta.nt: -------------------------------------------------------------------------------- 1 | "@vocabulary/dcterms/dcterms.nq" . 2 | "DCMI Metadata Terms - other" . 3 | . 4 | . 5 | "dcterms" . 6 | . 7 | -------------------------------------------------------------------------------- /ontologies/dcterms/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@vocabulary/dcterms", 3 | "version": "1.0.5", 4 | "type": "module", 5 | "main": "index.js", 6 | "scripts": { 7 | "fetch": "npx --node-options='--loader=ts-node/esm' vocab-build datasets", 8 | "prebuild": "npx --node-options='--loader=ts-node/esm' vocab-build module", 9 | "build": "tsc", 10 | "prepack": "npm run build" 11 | }, 12 | "devDependencies": { 13 | "@vocabulary/builder": "^1.0.8" 14 | }, 15 | "homepage": "https://prefix.zazuko.com/prefix/dcterms:", 16 | "vocabulary": { 17 | "prefix": "dcterms", 18 | "namespace": "http://purl.org/dc/terms/" 19 | }, 20 | "license": "MIT", 21 | "files": [ 22 | "*.js", 23 | "*.d.ts", 24 | "*.nq", 25 | "*.nt" 26 | ], 27 | "bugs": { 28 | "url": "https://github.com/zazuko/rdf-vocabularies/issues" 29 | }, 30 | "peerDependencies": { 31 | "@rdfjs/types": "^2.0.0" 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /ontologies/dcterms/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/dig/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # @vocabulary/dig 2 | 3 | ## 1.0.5 4 | 5 | ### Patch Changes 6 | 7 | - c82d252: Update `@rdfjs/types` to v2. Remove `rdf-js` completely 8 | 9 | ## 1.0.4 10 | 11 | ### Patch Changes 12 | 13 | - d3570dc: Use `@rdfjs/types` instead of `rdf-js` in built TS module 14 | 15 | ## 1.0.3 16 | 17 | ### Patch Changes 18 | 19 | - e365e06: Replace usages of `rdf-js` with `@rdfjs/types` in type declarations 20 | 21 | ## 1.0.2 22 | 23 | ### Patch Changes 24 | 25 | - a676187: Added `bugs` link to package 26 | 27 | ## 1.0.1 28 | 29 | ### Patch Changes 30 | 31 | - 714b4f7: Missing `main` field caused warnings when used in node 32 | 33 | ## 1.0.0 34 | 35 | ### Major Changes 36 | 37 | - 696d7dd: First import (364 quads) 38 | -------------------------------------------------------------------------------- /ontologies/dig/meta.nt: -------------------------------------------------------------------------------- 1 | "@vocabulary/dig/dig.nq" . 2 | . 3 | . 4 | "dig" . 5 | . 6 | -------------------------------------------------------------------------------- /ontologies/dig/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/discipline/meta.nt: -------------------------------------------------------------------------------- 1 | "@vocabulary/discipline/discipline.nq" . 2 | "QUDT Disciplines Ontology" . 3 | . 4 | . 5 | "discipline" . 6 | . 7 | -------------------------------------------------------------------------------- /ontologies/discipline/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@vocabulary/discipline", 3 | "version": "1.0.5", 4 | "type": "module", 5 | "main": "index.js", 6 | "scripts": { 7 | "prebuild": "npx --node-options='--loader=ts-node/esm' vocab-build module", 8 | "build": "tsc", 9 | "prepack": "npm run build" 10 | }, 11 | "devDependencies": { 12 | "@vocabulary/builder": "^1.0.8" 13 | }, 14 | "homepage": "https://prefix.zazuko.com/prefix/discipline:", 15 | "vocabulary": { 16 | "prefix": "discipline", 17 | "namespace": "http://qudt.org/vocab/discipline/" 18 | }, 19 | "license": "MIT", 20 | "files": [ 21 | "*.js", 22 | "*.d.ts", 23 | "*.nq", 24 | "*.nt" 25 | ], 26 | "bugs": { 27 | "url": "https://github.com/zazuko/rdf-vocabularies/issues" 28 | }, 29 | "peerDependencies": { 30 | "@rdfjs/types": "^2.0.0" 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /ontologies/discipline/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/doap/meta.nt: -------------------------------------------------------------------------------- 1 | "@vocabulary/doap/doap.nq" . 2 | "The Description of a Project (DOAP) vocabulary, described using W3C RDF Schema and the Web Ontology Language." . 3 | "Description of a Project (DOAP) vocabulary" . 4 | . 5 | . 6 | "doap" . 7 | . 8 | -------------------------------------------------------------------------------- /ontologies/doap/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@vocabulary/doap", 3 | "version": "1.0.5", 4 | "type": "module", 5 | "main": "index.js", 6 | "scripts": { 7 | "fetch": "npx --node-options='--loader=ts-node/esm' vocab-build datasets", 8 | "prebuild": "npx --node-options='--loader=ts-node/esm' vocab-build module", 9 | "build": "tsc", 10 | "prepack": "npm run build" 11 | }, 12 | "devDependencies": { 13 | "@vocabulary/builder": "^1.0.8" 14 | }, 15 | "homepage": "https://prefix.zazuko.com/prefix/doap:", 16 | "vocabulary": { 17 | "prefix": "doap", 18 | "namespace": "http://usefulinc.com/ns/doap#", 19 | "mediaType": "application/rdf+xml" 20 | }, 21 | "license": "MIT", 22 | "files": [ 23 | "*.js", 24 | "*.d.ts", 25 | "*.nq", 26 | "*.nt" 27 | ], 28 | "bugs": { 29 | "url": "https://github.com/zazuko/rdf-vocabularies/issues" 30 | }, 31 | "peerDependencies": { 32 | "@rdfjs/types": "^2.0.0" 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /ontologies/doap/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/dprod/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # @vocabulary/dprod 2 | 3 | ## 1.0.1 4 | 5 | ### Patch Changes 6 | 7 | - c82d252: Update `@rdfjs/types` to v2. Remove `rdf-js` completely 8 | 9 | ## 1.0.0 10 | 11 | ### Major Changes 12 | 13 | - 960cbb3: Added The Data Product (DPROD) Ontology 14 | -------------------------------------------------------------------------------- /ontologies/dprod/meta.nt: -------------------------------------------------------------------------------- 1 | "@vocabulary/dprod/dprod.nq" . 2 | "DPROD extends DCAT to enable publishers to describe Data Products and data services in a decentralized way." . 3 | "The Data Product (DPROD) Ontology" . 4 | . 5 | . 6 | "dprod" . 7 | . 8 | -------------------------------------------------------------------------------- /ontologies/dprod/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/dpv/meta.nt: -------------------------------------------------------------------------------- 1 | "ontologies/dpv.nq" . 2 | . 3 | . 4 | . 5 | . 6 | . 7 | "dpv" . 8 | . 9 | -------------------------------------------------------------------------------- /ontologies/dpv/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/dqv/meta.nt: -------------------------------------------------------------------------------- 1 | "@vocabulary/dqv/dqv.nq" . 2 | "The Data Quality Vocabulary (DQV) is seen as an extension to DCAT to cover the quality of the data, how frequently is it updated, whether it accepts user corrections, persistence commitments etc. When used by publishers, this vocabulary will foster trust in the data amongst developers." . 3 | "Data Quality Vocabulary" . 4 | . 5 | . 6 | "dqv" . 7 | . 8 | -------------------------------------------------------------------------------- /ontologies/dqv/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@vocabulary/dqv", 3 | "version": "1.0.5", 4 | "type": "module", 5 | "main": "index.js", 6 | "scripts": { 7 | "fetch": "npx --node-options='--loader=ts-node/esm' vocab-build datasets", 8 | "prebuild": "npx --node-options='--loader=ts-node/esm' vocab-build module", 9 | "build": "tsc", 10 | "prepack": "npm run build" 11 | }, 12 | "devDependencies": { 13 | "@vocabulary/builder": "^1.0.8" 14 | }, 15 | "homepage": "https://prefix.zazuko.com/prefix/dqv:", 16 | "vocabulary": { 17 | "prefix": "dqv", 18 | "namespace": "http://www.w3.org/ns/dqv#" 19 | }, 20 | "bugs": { 21 | "url": "https://github.com/zazuko/rdf-vocabularies/issues" 22 | }, 23 | "license": "MIT", 24 | "files": [ 25 | "*.js", 26 | "*.d.ts", 27 | "*.nq", 28 | "*.nt" 29 | ], 30 | "peerDependencies": { 31 | "@rdfjs/types": "^2.0.0" 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /ontologies/dqv/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/dtype/meta.nt: -------------------------------------------------------------------------------- 1 | "@vocabulary/dtype/dtype.nq" . 2 | . 3 | . 4 | "dtype" . 5 | . 6 | -------------------------------------------------------------------------------- /ontologies/dtype/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@vocabulary/dtype", 3 | "version": "1.0.5", 4 | "type": "module", 5 | "main": "index.js", 6 | "scripts": { 7 | "fetch": "npx --node-options='--loader=ts-node/esm' vocab-build datasets", 8 | "prebuild": "npx --node-options='--loader=ts-node/esm' vocab-build module", 9 | "build": "tsc", 10 | "prepack": "npm run build" 11 | }, 12 | "devDependencies": { 13 | "@vocabulary/builder": "^1.0.8" 14 | }, 15 | "homepage": "https://prefix.zazuko.com/prefix/dtype:", 16 | "vocabulary": { 17 | "prefix": "dtype", 18 | "namespace": "http://www.linkedmodel.org/schema/dtype#", 19 | "mediaType": "application/rdf+xml" 20 | }, 21 | "bugs": { 22 | "url": "https://github.com/zazuko/rdf-vocabularies/issues" 23 | }, 24 | "license": "MIT", 25 | "files": [ 26 | "*.js", 27 | "*.d.ts", 28 | "*.nq", 29 | "*.nt" 30 | ], 31 | "peerDependencies": { 32 | "@rdfjs/types": "^2.0.0" 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /ontologies/dtype/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/duv/meta.nt: -------------------------------------------------------------------------------- 1 | "@vocabulary/duv/duv.nq" . 2 | "The Dataset Usage Vocabulary (DUV) is used to describe consumer experiences, citations, and feedback about datasets from the human perspective." . 3 | "Dataset Usage Vocabulary" . 4 | . 5 | . 6 | "duv" . 7 | . 8 | -------------------------------------------------------------------------------- /ontologies/duv/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@vocabulary/duv", 3 | "version": "1.0.5", 4 | "type": "module", 5 | "main": "index.js", 6 | "scripts": { 7 | "fetch": "npx --node-options='--loader=ts-node/esm' vocab-build datasets", 8 | "prebuild": "npx --node-options='--loader=ts-node/esm' vocab-build module", 9 | "build": "tsc", 10 | "prepack": "npm run build" 11 | }, 12 | "devDependencies": { 13 | "@vocabulary/builder": "^1.0.8" 14 | }, 15 | "homepage": "https://prefix.zazuko.com/prefix/duv:", 16 | "vocabulary": { 17 | "prefix": "duv", 18 | "namespace": "http://www.w3.org/ns/duv#" 19 | }, 20 | "bugs": { 21 | "url": "https://github.com/zazuko/rdf-vocabularies/issues" 22 | }, 23 | "license": "MIT", 24 | "files": [ 25 | "*.js", 26 | "*.d.ts", 27 | "*.nq", 28 | "*.nt" 29 | ], 30 | "peerDependencies": { 31 | "@rdfjs/types": "^2.0.0" 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /ontologies/duv/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/earl/meta.nt: -------------------------------------------------------------------------------- 1 | "@vocabulary/earl/earl.nq" . 2 | "Formal schema of the Evaluation and Report Language (EARL) 1.0" . 3 | "Evaluation and Report Language (EARL) 1.0 Schema" . 4 | . 5 | . 6 | "earl" . 7 | . 8 | -------------------------------------------------------------------------------- /ontologies/earl/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@vocabulary/earl", 3 | "version": "2.0.5", 4 | "type": "module", 5 | "main": "index.js", 6 | "scripts": { 7 | "fetch": "npx --node-options='--loader=ts-node/esm' vocab-build datasets", 8 | "prebuild": "npx --node-options='--loader=ts-node/esm' vocab-build module", 9 | "build": "tsc", 10 | "prepack": "npm run build" 11 | }, 12 | "devDependencies": { 13 | "@vocabulary/builder": "^1.0.8" 14 | }, 15 | "homepage": "https://prefix.zazuko.com/prefix/earl:", 16 | "vocabulary": { 17 | "prefix": "earl", 18 | "namespace": "http://www.w3.org/ns/earl#", 19 | "xmlParserOptions": { 20 | "baseIRI": "http://www.w3.org/ns/earl#" 21 | } 22 | }, 23 | "bugs": { 24 | "url": "https://github.com/zazuko/rdf-vocabularies/issues" 25 | }, 26 | "license": "MIT", 27 | "files": [ 28 | "*.js", 29 | "*.d.ts", 30 | "*.nq", 31 | "*.nt" 32 | ], 33 | "peerDependencies": { 34 | "@rdfjs/types": "^2.0.0" 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /ontologies/earl/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/ebucore/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@vocabulary/ebucore", 3 | "version": "1.0.5", 4 | "type": "module", 5 | "main": "index.js", 6 | "scripts": { 7 | "fetch": "npx --node-options='--loader=ts-node/esm' vocab-build datasets", 8 | "prebuild": "npx --node-options='--loader=ts-node/esm' vocab-build module", 9 | "build": "tsc", 10 | "prepack": "npm run build" 11 | }, 12 | "devDependencies": { 13 | "@vocabulary/builder": "^1.0.8" 14 | }, 15 | "homepage": "https://prefix.zazuko.com/prefix/ebucore:", 16 | "vocabulary": { 17 | "prefix": "ebucore", 18 | "namespace": "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#", 19 | "file": "https://www.ebu.ch/metadata/ontologies/ebucore/ebucore.rdf" 20 | }, 21 | "bugs": { 22 | "url": "https://github.com/zazuko/rdf-vocabularies/issues" 23 | }, 24 | "license": "MIT", 25 | "files": [ 26 | "*.js", 27 | "*.d.ts", 28 | "*.nq", 29 | "*.nt" 30 | ], 31 | "peerDependencies": { 32 | "@rdfjs/types": "^2.0.0" 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /ontologies/ebucore/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/exif/meta.nt: -------------------------------------------------------------------------------- 1 | "@vocabulary/exif/exif.nq" . 2 | "Vocabulary to describe an Exif format picture data. All Exif 2.2 tags are defined as RDF properties, as well as several terms to help this schema." . 3 | "Exif data description vocabulary" . 4 | . 5 | . 6 | "exif" . 7 | . 8 | -------------------------------------------------------------------------------- /ontologies/exif/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@vocabulary/exif", 3 | "version": "1.0.5", 4 | "type": "module", 5 | "main": "index.js", 6 | "scripts": { 7 | "fetch": "npx --node-options='--loader=ts-node/esm' vocab-build datasets", 8 | "prebuild": "npx --node-options='--loader=ts-node/esm' vocab-build module", 9 | "build": "tsc", 10 | "prepack": "npm run build" 11 | }, 12 | "devDependencies": { 13 | "@vocabulary/builder": "^1.0.8" 14 | }, 15 | "homepage": "https://prefix.zazuko.com/prefix/exif:", 16 | "vocabulary": { 17 | "prefix": "exif", 18 | "namespace": "http://www.w3.org/2003/12/exif/ns#" 19 | }, 20 | "bugs": { 21 | "url": "https://github.com/zazuko/rdf-vocabularies/issues" 22 | }, 23 | "license": "MIT", 24 | "files": [ 25 | "*.js", 26 | "*.d.ts", 27 | "*.nq", 28 | "*.nt" 29 | ], 30 | "peerDependencies": { 31 | "@rdfjs/types": "^2.0.0" 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /ontologies/exif/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/foaf/meta.nt: -------------------------------------------------------------------------------- 1 | "@vocabulary/foaf/foaf.nq" . 2 | "The Friend of a Friend (FOAF) RDF vocabulary, described using W3C RDF Schema and the Web Ontology Language." . 3 | "Friend of a Friend (FOAF) vocabulary" . 4 | . 5 | . 6 | "foaf" . 7 | . 8 | -------------------------------------------------------------------------------- /ontologies/foaf/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@vocabulary/foaf", 3 | "version": "1.0.5", 4 | "type": "module", 5 | "main": "index.js", 6 | "scripts": { 7 | "fetch": "npx --node-options='--loader=ts-node/esm' vocab-build datasets", 8 | "prebuild": "npx --node-options='--loader=ts-node/esm' vocab-build module", 9 | "build": "tsc", 10 | "prepack": "npm run build" 11 | }, 12 | "devDependencies": { 13 | "@vocabulary/builder": "^1.0.8" 14 | }, 15 | "homepage": "https://prefix.zazuko.com/prefix/foaf:", 16 | "vocabulary": { 17 | "prefix": "foaf", 18 | "namespace": "http://xmlns.com/foaf/0.1/" 19 | }, 20 | "bugs": { 21 | "url": "https://github.com/zazuko/rdf-vocabularies/issues" 22 | }, 23 | "license": "MIT", 24 | "files": [ 25 | "*.js", 26 | "*.d.ts", 27 | "*.nq", 28 | "*.nt" 29 | ], 30 | "peerDependencies": { 31 | "@rdfjs/types": "^2.0.0" 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /ontologies/foaf/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/frbr/meta.nt: -------------------------------------------------------------------------------- 1 | "@vocabulary/frbr/frbr.nq" . 2 | . 3 | . 4 | "frbr" . 5 | . 6 | -------------------------------------------------------------------------------- /ontologies/frbr/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@vocabulary/frbr", 3 | "version": "1.0.5", 4 | "type": "module", 5 | "main": "index.js", 6 | "scripts": { 7 | "fetch": "npx --node-options='--loader=ts-node/esm' vocab-build datasets", 8 | "prebuild": "npx --node-options='--loader=ts-node/esm' vocab-build module", 9 | "build": "tsc", 10 | "prepack": "npm run build" 11 | }, 12 | "devDependencies": { 13 | "@vocabulary/builder": "^1.0.8" 14 | }, 15 | "homepage": "https://prefix.zazuko.com/prefix/frbr:", 16 | "vocabulary": { 17 | "prefix": "frbr", 18 | "namespace": "http://purl.org/vocab/frbr/core#", 19 | "file": "http://purl.org/spar/frbr.nt" 20 | }, 21 | "bugs": { 22 | "url": "https://github.com/zazuko/rdf-vocabularies/issues" 23 | }, 24 | "license": "MIT", 25 | "files": [ 26 | "*.js", 27 | "*.d.ts", 28 | "*.nq", 29 | "*.nt" 30 | ], 31 | "peerDependencies": { 32 | "@rdfjs/types": "^2.0.0" 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /ontologies/frbr/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/geo/meta.nt: -------------------------------------------------------------------------------- 1 | "@vocabulary/geo/geo.nq" . 2 | "An RDF/OWL vocabulary for representing spatial information" . 3 | "GeoSPARQL Ontology" . 4 | . 5 | . 6 | "geo" . 7 | . 8 | -------------------------------------------------------------------------------- /ontologies/geo/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/geof/meta.nt: -------------------------------------------------------------------------------- 1 | "@vocabulary/geof/geof.nq" . 2 | . 3 | . 4 | "geof" . 5 | . 6 | -------------------------------------------------------------------------------- /ontologies/geof/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@vocabulary/geof", 3 | "version": "1.0.5", 4 | "type": "module", 5 | "main": "index.js", 6 | "scripts": { 7 | "fetch": "npx --node-options='--loader=ts-node/esm' vocab-build datasets", 8 | "prebuild": "npx --node-options='--loader=ts-node/esm' vocab-build module", 9 | "build": "tsc", 10 | "prepack": "npm run build" 11 | }, 12 | "devDependencies": { 13 | "@vocabulary/builder": "^1.0.8" 14 | }, 15 | "homepage": "https://prefix.zazuko.com/prefix/geof:", 16 | "vocabulary": { 17 | "prefix": "geof", 18 | "namespace": "http://www.opengis.net/def/function/geosparql/" 19 | }, 20 | "bugs": { 21 | "url": "https://github.com/zazuko/rdf-vocabularies/issues" 22 | }, 23 | "license": "MIT", 24 | "files": [ 25 | "*.js", 26 | "*.d.ts", 27 | "*.nq", 28 | "*.nt" 29 | ], 30 | "peerDependencies": { 31 | "@rdfjs/types": "^2.0.0" 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /ontologies/geof/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/geor/meta.nt: -------------------------------------------------------------------------------- 1 | "@vocabulary/geor/geor.nq" . 2 | . 3 | . 4 | "geor" . 5 | . 6 | -------------------------------------------------------------------------------- /ontologies/geor/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@vocabulary/geor", 3 | "version": "1.0.5", 4 | "type": "module", 5 | "main": "index.js", 6 | "scripts": { 7 | "fetch": "npx --node-options='--loader=ts-node/esm' vocab-build datasets", 8 | "prebuild": "npx --node-options='--loader=ts-node/esm' vocab-build module", 9 | "build": "tsc", 10 | "prepack": "npm run build" 11 | }, 12 | "devDependencies": { 13 | "@vocabulary/builder": "^1.0.8" 14 | }, 15 | "homepage": "https://prefix.zazuko.com/prefix/geor:", 16 | "vocabulary": { 17 | "prefix": "geor", 18 | "namespace": "http://www.opengis.net/def/rule/geosparql/" 19 | }, 20 | "bugs": { 21 | "url": "https://github.com/zazuko/rdf-vocabularies/issues" 22 | }, 23 | "license": "MIT", 24 | "files": [ 25 | "*.js", 26 | "*.d.ts", 27 | "*.nq", 28 | "*.nt" 29 | ], 30 | "peerDependencies": { 31 | "@rdfjs/types": "^2.0.0" 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /ontologies/geor/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/gml/meta.nt: -------------------------------------------------------------------------------- 1 | "@vocabulary/gml/gml.nq" . 2 | . 3 | . 4 | "gml" . 5 | . 6 | -------------------------------------------------------------------------------- /ontologies/gml/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@vocabulary/gml", 3 | "version": "1.0.5", 4 | "type": "module", 5 | "main": "index.js", 6 | "scripts": { 7 | "fetch": "npx --node-options='--loader=ts-node/esm' vocab-build datasets", 8 | "prebuild": "npx --node-options='--loader=ts-node/esm' vocab-build module", 9 | "build": "tsc", 10 | "prepack": "npm run build" 11 | }, 12 | "devDependencies": { 13 | "@vocabulary/builder": "^1.0.8" 14 | }, 15 | "homepage": "https://prefix.zazuko.com/prefix/gml:", 16 | "vocabulary": { 17 | "prefix": "gml", 18 | "namespace": "http://www.opengis.net/ont/gml#", 19 | "file": "http://schemas.opengis.net/gml/3.2.1/gml_32_geometries.rdf", 20 | "mediaType": "application/rdf+xml" 21 | }, 22 | "bugs": { 23 | "url": "https://github.com/zazuko/rdf-vocabularies/issues" 24 | }, 25 | "license": "MIT", 26 | "files": [ 27 | "*.js", 28 | "*.d.ts", 29 | "*.nq", 30 | "*.nt" 31 | ], 32 | "peerDependencies": { 33 | "@rdfjs/types": "^2.0.0" 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /ontologies/gml/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/gn/meta.nt: -------------------------------------------------------------------------------- 1 | "@vocabulary/gn/gn.nq" . 2 | "The Geonames ontologies provides elements of description for geographical features, in particular those defined in the geonames.org data base" . 3 | "The Geonames ontology" . 4 | . 5 | . 6 | "gn" . 7 | . 8 | -------------------------------------------------------------------------------- /ontologies/gn/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@vocabulary/gn", 3 | "version": "1.0.5", 4 | "type": "module", 5 | "main": "index.js", 6 | "scripts": { 7 | "fetch": "npx --node-options='--loader=ts-node/esm' vocab-build datasets", 8 | "prebuild": "npx --node-options='--loader=ts-node/esm' vocab-build module", 9 | "build": "tsc", 10 | "prepack": "npm run build" 11 | }, 12 | "devDependencies": { 13 | "@vocabulary/builder": "^1.0.8" 14 | }, 15 | "homepage": "https://prefix.zazuko.com/prefix/gn:", 16 | "vocabulary": { 17 | "prefix": "gn", 18 | "namespace": "http://www.geonames.org/ontology#" 19 | }, 20 | "bugs": { 21 | "url": "https://github.com/zazuko/rdf-vocabularies/issues" 22 | }, 23 | "license": "MIT", 24 | "files": [ 25 | "*.js", 26 | "*.d.ts", 27 | "*.nq", 28 | "*.nt" 29 | ], 30 | "peerDependencies": { 31 | "@rdfjs/types": "^2.0.0" 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /ontologies/gn/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/gr/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@vocabulary/gr", 3 | "version": "1.0.5", 4 | "type": "module", 5 | "main": "index.js", 6 | "scripts": { 7 | "fetch": "npx --node-options='--loader=ts-node/esm' vocab-build datasets", 8 | "prebuild": "npx --node-options='--loader=ts-node/esm' vocab-build module", 9 | "build": "tsc", 10 | "prepack": "npm run build" 11 | }, 12 | "devDependencies": { 13 | "@vocabulary/builder": "^1.0.8" 14 | }, 15 | "homepage": "https://prefix.zazuko.com/prefix/gr:", 16 | "vocabulary": { 17 | "prefix": "gr", 18 | "namespace": "http://purl.org/goodrelations/v1#", 19 | "file": "http://www.heppnetz.de/ontologies/goodrelations/v1.owl", 20 | "mediaType": "application/rdf+xml" 21 | }, 22 | "bugs": { 23 | "url": "https://github.com/zazuko/rdf-vocabularies/issues" 24 | }, 25 | "license": "MIT", 26 | "files": [ 27 | "*.js", 28 | "*.d.ts", 29 | "*.nq", 30 | "*.nt" 31 | ], 32 | "peerDependencies": { 33 | "@rdfjs/types": "^2.0.0" 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /ontologies/gr/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/grddl/meta.nt: -------------------------------------------------------------------------------- 1 | "@vocabulary/grddl/grddl.nq" . 2 | . 3 | . 4 | "grddl" . 5 | . 6 | -------------------------------------------------------------------------------- /ontologies/grddl/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@vocabulary/grddl", 3 | "version": "1.0.5", 4 | "type": "module", 5 | "main": "index.js", 6 | "scripts": { 7 | "fetch": "npx --node-options='--loader=ts-node/esm' vocab-build datasets", 8 | "prebuild": "npx --node-options='--loader=ts-node/esm' vocab-build module", 9 | "build": "tsc", 10 | "prepack": "npm run build" 11 | }, 12 | "devDependencies": { 13 | "@vocabulary/builder": "^1.0.8" 14 | }, 15 | "homepage": "https://prefix.zazuko.com/prefix/grddl:", 16 | "vocabulary": { 17 | "prefix": "grddl", 18 | "namespace": "http://www.w3.org/2003/g/data-view#" 19 | }, 20 | "bugs": { 21 | "url": "https://github.com/zazuko/rdf-vocabularies/issues" 22 | }, 23 | "license": "MIT", 24 | "files": [ 25 | "*.js", 26 | "*.d.ts", 27 | "*.nq", 28 | "*.nt" 29 | ], 30 | "peerDependencies": { 31 | "@rdfjs/types": "^2.0.0" 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /ontologies/grddl/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/gs1/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # @vocabulary/gs1 2 | 3 | ## 1.1.5 4 | 5 | ### Patch Changes 6 | 7 | - c82d252: Update `@rdfjs/types` to v2. Remove `rdf-js` completely 8 | 9 | ## 1.1.4 10 | 11 | ### Patch Changes 12 | 13 | - d3570dc: Use `@rdfjs/types` instead of `rdf-js` in built TS module 14 | 15 | ## 1.1.3 16 | 17 | ### Patch Changes 18 | 19 | - e365e06: Replace usages of `rdf-js` with `@rdfjs/types` in type declarations 20 | 21 | ## 1.1.2 22 | 23 | ### Patch Changes 24 | 25 | - a676187: Added `bugs` link to package 26 | 27 | ## 1.1.1 28 | 29 | ### Patch Changes 30 | 31 | - 714b4f7: Missing `main` field caused warnings when used in node 32 | 33 | ## 1.1.0 34 | 35 | ### Minor Changes 36 | 37 | - cc3782e: Updated to version 1.9 38 | 39 | ## 1.0.0 40 | 41 | ### Major Changes 42 | 43 | - 4a451f1: Separated vocabulary packages (closes #118, closes #55, closes #97) 44 | 45 | ## 1.0.0-rc.0 46 | 47 | ### Major Changes 48 | 49 | - 4a451f1: Separated vocabulary packages (closes #118, closes #55, closes #97) 50 | -------------------------------------------------------------------------------- /ontologies/gs1/meta.nt: -------------------------------------------------------------------------------- 1 | "@vocabulary/gs1/gs1.nq" . 2 | . 3 | . 4 | "gs1" . 5 | . 6 | -------------------------------------------------------------------------------- /ontologies/gs1/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@vocabulary/gs1", 3 | "version": "1.1.5", 4 | "type": "module", 5 | "main": "index.js", 6 | "scripts": { 7 | "fetch": "npx --node-options='--loader=ts-node/esm' vocab-build datasets", 8 | "prebuild": "npx --node-options='--loader=ts-node/esm' vocab-build module", 9 | "build": "tsc", 10 | "prepack": "npm run build" 11 | }, 12 | "devDependencies": { 13 | "@vocabulary/builder": "^1.0.8" 14 | }, 15 | "vocabulary": { 16 | "prefix": "gs1", 17 | "namespace": "https://gs1.org/voc/", 18 | "file": "https://www.gs1.org/docs/gs1-smartsearch/gs1Voc_v1_9.ttl", 19 | "mediaType": "text/turtle" 20 | }, 21 | "bugs": { 22 | "url": "https://github.com/zazuko/rdf-vocabularies/issues" 23 | }, 24 | "license": "MIT", 25 | "files": [ 26 | "*.js", 27 | "*.d.ts", 28 | "*.nq", 29 | "*.nt" 30 | ], 31 | "peerDependencies": { 32 | "@rdfjs/types": "^2.0.0" 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /ontologies/gs1/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/gtfs/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@vocabulary/gtfs", 3 | "version": "1.0.5", 4 | "type": "module", 5 | "main": "index.js", 6 | "scripts": { 7 | "fetch": "npx --node-options='--loader=ts-node/esm' vocab-build datasets", 8 | "prebuild": "npx --node-options='--loader=ts-node/esm' vocab-build module", 9 | "build": "tsc", 10 | "prepack": "npm run build" 11 | }, 12 | "devDependencies": { 13 | "@vocabulary/builder": "^1.0.8" 14 | }, 15 | "homepage": "https://prefix.zazuko.com/prefix/gtfs:", 16 | "vocabulary": { 17 | "prefix": "gtfs", 18 | "namespace": "http://vocab.gtfs.org/terms#", 19 | "mediaType": "text/n3" 20 | }, 21 | "bugs": { 22 | "url": "https://github.com/zazuko/rdf-vocabularies/issues" 23 | }, 24 | "license": "MIT", 25 | "files": [ 26 | "*.js", 27 | "*.d.ts", 28 | "*.nq", 29 | "*.nt" 30 | ], 31 | "peerDependencies": { 32 | "@rdfjs/types": "^2.0.0" 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /ontologies/gtfs/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/http/meta.nt: -------------------------------------------------------------------------------- 1 | "@vocabulary/http/http.nq" . 2 | "A namespace for describing HTTP messages (http://www.w3.org/Protocols/rfc2616/rfc2616.html)" . 3 | "HTTP in RDF" . 4 | . 5 | . 6 | "http" . 7 | . 8 | -------------------------------------------------------------------------------- /ontologies/http/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@vocabulary/http", 3 | "version": "1.0.5", 4 | "type": "module", 5 | "main": "index.js", 6 | "scripts": { 7 | "fetch": "npx --node-options='--loader=ts-node/esm' vocab-build datasets", 8 | "prebuild": "npx --node-options='--loader=ts-node/esm' vocab-build module", 9 | "build": "tsc", 10 | "prepack": "npm run build" 11 | }, 12 | "devDependencies": { 13 | "@vocabulary/builder": "^1.0.8" 14 | }, 15 | "homepage": "https://prefix.zazuko.com/prefix/http:", 16 | "vocabulary": { 17 | "prefix": "http", 18 | "namespace": "http://www.w3.org/2011/http#", 19 | "mediaType": "application/rdf+xml" 20 | }, 21 | "bugs": { 22 | "url": "https://github.com/zazuko/rdf-vocabularies/issues" 23 | }, 24 | "license": "MIT", 25 | "files": [ 26 | "*.js", 27 | "*.d.ts", 28 | "*.nq", 29 | "*.nt" 30 | ], 31 | "peerDependencies": { 32 | "@rdfjs/types": "^2.0.0" 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /ontologies/http/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/hydra/meta.nt: -------------------------------------------------------------------------------- 1 | "@vocabulary/hydra/hydra.nq" . 2 | "The Hydra Core Vocabulary is a lightweight vocabulary to create hypermedia-driven Web APIs. By specifying a number of concepts commonly used in Web APIs it enables the creation of generic API clients." . 3 | "The Hydra Core Vocabulary" . 4 | . 5 | . 6 | "hydra" . 7 | . 8 | -------------------------------------------------------------------------------- /ontologies/hydra/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@vocabulary/hydra", 3 | "version": "1.0.5", 4 | "type": "module", 5 | "main": "index.js", 6 | "scripts": { 7 | "fetch": "npx --node-options='--loader=ts-node/esm' vocab-build datasets", 8 | "prebuild": "npx --node-options='--loader=ts-node/esm' vocab-build module", 9 | "build": "tsc", 10 | "prepack": "npm run build" 11 | }, 12 | "devDependencies": { 13 | "@vocabulary/builder": "^1.0.8" 14 | }, 15 | "homepage": "https://prefix.zazuko.com/prefix/hydra:", 16 | "vocabulary": { 17 | "prefix": "hydra", 18 | "namespace": "http://www.w3.org/ns/hydra/core#" 19 | }, 20 | "bugs": { 21 | "url": "https://github.com/zazuko/rdf-vocabularies/issues" 22 | }, 23 | "license": "MIT", 24 | "files": [ 25 | "*.js", 26 | "*.d.ts", 27 | "*.nq", 28 | "*.nt" 29 | ], 30 | "peerDependencies": { 31 | "@rdfjs/types": "^2.0.0" 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /ontologies/hydra/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/ical/meta.nt: -------------------------------------------------------------------------------- 1 | "@vocabulary/ical/ical.nq" . 2 | . 3 | . 4 | "ical" . 5 | . 6 | -------------------------------------------------------------------------------- /ontologies/ical/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@vocabulary/ical", 3 | "version": "1.0.5", 4 | "type": "module", 5 | "main": "index.js", 6 | "scripts": { 7 | "fetch": "npx --node-options='--loader=ts-node/esm' vocab-build datasets", 8 | "prebuild": "npx --node-options='--loader=ts-node/esm' vocab-build module", 9 | "build": "tsc", 10 | "prepack": "npm run build" 11 | }, 12 | "devDependencies": { 13 | "@vocabulary/builder": "^1.0.8" 14 | }, 15 | "homepage": "https://prefix.zazuko.com/prefix/ical:", 16 | "vocabulary": { 17 | "prefix": "ical", 18 | "namespace": "http://www.w3.org/2002/12/cal/icaltzd#", 19 | "file": "http://www.w3.org/2002/12/cal/icaltzd.rdf", 20 | "mediaType": "application/rdf+xml" 21 | }, 22 | "bugs": { 23 | "url": "https://github.com/zazuko/rdf-vocabularies/issues" 24 | }, 25 | "license": "MIT", 26 | "files": [ 27 | "*.js", 28 | "*.d.ts", 29 | "*.nq", 30 | "*.nt" 31 | ], 32 | "peerDependencies": { 33 | "@rdfjs/types": "^2.0.0" 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /ontologies/ical/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/la/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # @vocabulary/la 2 | 3 | ## 1.0.5 4 | 5 | ### Patch Changes 6 | 7 | - c82d252: Update `@rdfjs/types` to v2. Remove `rdf-js` completely 8 | 9 | ## 1.0.4 10 | 11 | ### Patch Changes 12 | 13 | - d3570dc: Use `@rdfjs/types` instead of `rdf-js` in built TS module 14 | 15 | ## 1.0.3 16 | 17 | ### Patch Changes 18 | 19 | - e365e06: Replace usages of `rdf-js` with `@rdfjs/types` in type declarations 20 | 21 | ## 1.0.2 22 | 23 | ### Patch Changes 24 | 25 | - a676187: Added `bugs` link to package 26 | 27 | ## 1.0.1 28 | 29 | ### Patch Changes 30 | 31 | - 714b4f7: Missing `main` field caused warnings when used in node 32 | 33 | ## 1.0.0 34 | 35 | ### Major Changes 36 | 37 | - 696d7dd: First import (245 quads) 38 | -------------------------------------------------------------------------------- /ontologies/la/meta.nt: -------------------------------------------------------------------------------- 1 | "@vocabulary/la/la.nq" . 2 | . 3 | . 4 | "la" . 5 | . 6 | -------------------------------------------------------------------------------- /ontologies/la/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@vocabulary/la", 3 | "version": "1.0.5", 4 | "type": "module", 5 | "main": "index.js", 6 | "scripts": { 7 | "fetch": "npx --node-options='--loader=ts-node/esm' vocab-build datasets", 8 | "prebuild": "npx --node-options='--loader=ts-node/esm' vocab-build module", 9 | "build": "tsc", 10 | "prepack": "npm run build" 11 | }, 12 | "devDependencies": { 13 | "@vocabulary/builder": "^1.0.8" 14 | }, 15 | "license": "MIT", 16 | "homepage": "https://prefix.zazuko.com/prefix/la:", 17 | "vocabulary": { 18 | "prefix": "la", 19 | "namespace": "https://linked.art/ns/terms/", 20 | "mediaType": "application/rdf+xml" 21 | }, 22 | "bugs": { 23 | "url": "https://github.com/zazuko/rdf-vocabularies/issues" 24 | }, 25 | "files": [ 26 | "*.js", 27 | "*.d.ts", 28 | "*.nq", 29 | "*.nt" 30 | ], 31 | "peerDependencies": { 32 | "@rdfjs/types": "^2.0.0" 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /ontologies/la/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/ldp/meta.nt: -------------------------------------------------------------------------------- 1 | "@vocabulary/ldp/ldp.nq" . 2 | "Vocabulary URIs defined in the Linked Data Platform (LDP) namespace." . 3 | "The W3C Linked Data Platform (LDP) Vocabulary" . 4 | . 5 | . 6 | "ldp" . 7 | . 8 | -------------------------------------------------------------------------------- /ontologies/ldp/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@vocabulary/ldp", 3 | "version": "1.0.5", 4 | "type": "module", 5 | "main": "index.js", 6 | "scripts": { 7 | "fetch": "npx --node-options='--loader=ts-node/esm' vocab-build datasets", 8 | "prebuild": "npx --node-options='--loader=ts-node/esm' vocab-build module", 9 | "build": "tsc", 10 | "prepack": "npm run build" 11 | }, 12 | "devDependencies": { 13 | "@vocabulary/builder": "^1.0.8" 14 | }, 15 | "homepage": "https://prefix.zazuko.com/prefix/ldp:", 16 | "vocabulary": { 17 | "prefix": "ldp", 18 | "namespace": "http://www.w3.org/ns/ldp#" 19 | }, 20 | "bugs": { 21 | "url": "https://github.com/zazuko/rdf-vocabularies/issues" 22 | }, 23 | "license": "MIT", 24 | "files": [ 25 | "*.js", 26 | "*.d.ts", 27 | "*.nq", 28 | "*.nt" 29 | ], 30 | "peerDependencies": { 31 | "@rdfjs/types": "^2.0.0" 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /ontologies/ldp/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/list/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # @vocabulary/list 2 | 3 | ## 1.0.5 4 | 5 | ### Patch Changes 6 | 7 | - c82d252: Update `@rdfjs/types` to v2. Remove `rdf-js` completely 8 | 9 | ## 1.0.4 10 | 11 | ### Patch Changes 12 | 13 | - d3570dc: Use `@rdfjs/types` instead of `rdf-js` in built TS module 14 | 15 | ## 1.0.3 16 | 17 | ### Patch Changes 18 | 19 | - e365e06: Replace usages of `rdf-js` with `@rdfjs/types` in type declarations 20 | 21 | ## 1.0.2 22 | 23 | ### Patch Changes 24 | 25 | - a676187: Added `bugs` link to package 26 | 27 | ## 1.0.1 28 | 29 | ### Patch Changes 30 | 31 | - 714b4f7: Missing `main` field caused warnings when used in node 32 | 33 | ## 1.0.0 34 | 35 | ### Major Changes 36 | 37 | - 8f52b5b: Added `http://www.w3.org/2000/10/swap/list#` (18 triples) 38 | -------------------------------------------------------------------------------- /ontologies/list/meta.nt: -------------------------------------------------------------------------------- 1 | "@vocabulary/list/list.nq" . 2 | . 3 | . 4 | "list" . 5 | . 6 | -------------------------------------------------------------------------------- /ontologies/list/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/locn/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@vocabulary/locn", 3 | "version": "1.0.5", 4 | "type": "module", 5 | "main": "index.js", 6 | "scripts": { 7 | "fetch": "npx --node-options='--loader=ts-node/esm' vocab-build datasets", 8 | "prebuild": "npx --node-options='--loader=ts-node/esm' vocab-build module", 9 | "build": "tsc", 10 | "prepack": "npm run build" 11 | }, 12 | "devDependencies": { 13 | "@vocabulary/builder": "^1.0.8" 14 | }, 15 | "homepage": "https://prefix.zazuko.com/prefix/locn:", 16 | "vocabulary": { 17 | "prefix": "locn", 18 | "namespace": "http://www.w3.org/ns/locn#" 19 | }, 20 | "license": "MIT", 21 | "files": [ 22 | "*.js", 23 | "*.d.ts", 24 | "*.nq", 25 | "*.nt" 26 | ], 27 | "bugs": { 28 | "url": "https://github.com/zazuko/rdf-vocabularies/issues" 29 | }, 30 | "peerDependencies": { 31 | "@rdfjs/types": "^2.0.0" 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /ontologies/locn/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/log/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # @vocabulary/log 2 | 3 | ## 1.0.5 4 | 5 | ### Patch Changes 6 | 7 | - c82d252: Update `@rdfjs/types` to v2. Remove `rdf-js` completely 8 | 9 | ## 1.0.4 10 | 11 | ### Patch Changes 12 | 13 | - d3570dc: Use `@rdfjs/types` instead of `rdf-js` in built TS module 14 | 15 | ## 1.0.3 16 | 17 | ### Patch Changes 18 | 19 | - e365e06: Replace usages of `rdf-js` with `@rdfjs/types` in type declarations 20 | 21 | ## 1.0.2 22 | 23 | ### Patch Changes 24 | 25 | - a676187: Added `bugs` link to package 26 | 27 | ## 1.0.1 28 | 29 | ### Patch Changes 30 | 31 | - 714b4f7: Missing `main` field caused warnings when used in node 32 | 33 | ## 1.0.0 34 | 35 | ### Major Changes 36 | 37 | - a267e9c: Added `http://www.w3.org/2000/10/swap/log#` (86 triples) 38 | -------------------------------------------------------------------------------- /ontologies/log/meta.nt: -------------------------------------------------------------------------------- 1 | "@vocabulary/log/log.nq" . 2 | . 3 | . 4 | "log" . 5 | . 6 | -------------------------------------------------------------------------------- /ontologies/log/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/lvont/meta.nt: -------------------------------------------------------------------------------- 1 | "@vocabulary/lvont/lvont.nq" . 2 | "Lexvo.org Ontology" . 3 | "Lexvo.org Ontology" . 4 | . 5 | . 6 | "lvont" . 7 | . 8 | -------------------------------------------------------------------------------- /ontologies/lvont/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@vocabulary/lvont", 3 | "version": "1.0.5", 4 | "type": "module", 5 | "main": "index.js", 6 | "scripts": { 7 | "fetch": "npx --node-options='--loader=ts-node/esm' vocab-build datasets", 8 | "prebuild": "npx --node-options='--loader=ts-node/esm' vocab-build module", 9 | "build": "tsc", 10 | "prepack": "npm run build" 11 | }, 12 | "devDependencies": { 13 | "@vocabulary/builder": "^1.0.8" 14 | }, 15 | "homepage": "https://prefix.zazuko.com/prefix/lvont:", 16 | "vocabulary": { 17 | "prefix": "lvont", 18 | "namespace": "http://lexvo.org/ontology#", 19 | "mediaType": "application/rdf+xml" 20 | }, 21 | "bugs": { 22 | "url": "https://github.com/zazuko/rdf-vocabularies/issues" 23 | }, 24 | "license": "MIT", 25 | "files": [ 26 | "*.js", 27 | "*.d.ts", 28 | "*.nq", 29 | "*.nt" 30 | ], 31 | "peerDependencies": { 32 | "@rdfjs/types": "^2.0.0" 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /ontologies/lvont/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/m4i/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # @vocabulary/m4i 2 | 3 | ## 1.2.1 4 | 5 | ### Patch Changes 6 | 7 | - c82d252: Update `@rdfjs/types` to v2. Remove `rdf-js` completely 8 | 9 | ## 1.2.0 10 | 11 | ### Minor Changes 12 | 13 | - 886c252: Updated m4i to v1.3.0 (closes #199) 14 | 15 | ## 1.1.3 16 | 17 | ### Patch Changes 18 | 19 | - d3570dc: Use `@rdfjs/types` instead of `rdf-js` in built TS module 20 | 21 | ## 1.1.2 22 | 23 | ### Patch Changes 24 | 25 | - e365e06: Replace usages of `rdf-js` with `@rdfjs/types` in type declarations 26 | 27 | ## 1.1.1 28 | 29 | ### Patch Changes 30 | 31 | - a676187: Added `bugs` link to package 32 | 33 | ## 1.1.0 34 | 35 | ### Minor Changes 36 | 37 | - 090bd43: Updated to 2023-09-27 snapshot (closes #170) 38 | 39 | ## 1.0.0 40 | 41 | ### Major Changes 42 | 43 | - 7a13928: First version 44 | -------------------------------------------------------------------------------- /ontologies/m4i/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@vocabulary/m4i", 3 | "version": "1.2.1", 4 | "type": "module", 5 | "description": "Metadata4Ing: An ontology for describing the generation of research data within a scientific activity.", 6 | "scripts": { 7 | "fetch": "npx --node-options='--loader=ts-node/esm' vocab-build datasets", 8 | "prebuild": "npx --node-options='--loader=ts-node/esm' vocab-build module", 9 | "build": "tsc", 10 | "prepack": "npm run build" 11 | }, 12 | "devDependencies": { 13 | "@vocabulary/builder": "^1.0.8" 14 | }, 15 | "homepage": "https://prefix.zazuko.com/prefix/m4i:", 16 | "vocabulary": { 17 | "prefix": "m4i", 18 | "namespace": "http://w3id.org/nfdi4ing/metadata4ing#" 19 | }, 20 | "bugs": { 21 | "url": "https://github.com/zazuko/rdf-vocabularies/issues" 22 | }, 23 | "license": "MIT", 24 | "files": [ 25 | "*.js", 26 | "*.d.ts", 27 | "*.nq", 28 | "*.nt" 29 | ], 30 | "peerDependencies": { 31 | "@rdfjs/types": "^2.0.0" 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /ontologies/m4i/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/ma/meta.nt: -------------------------------------------------------------------------------- 1 | "@vocabulary/ma/ma.nq" . 2 | "Created by Tobias Buerger, Jean Pierre Evain and Pierre-Antoine Champin with the RDFS Taskforce within the W3C Media Annotation Working Group." . 3 | . 4 | . 5 | "ma" . 6 | . 7 | -------------------------------------------------------------------------------- /ontologies/ma/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@vocabulary/ma", 3 | "version": "1.0.5", 4 | "type": "module", 5 | "main": "index.js", 6 | "scripts": { 7 | "fetch": "npx --node-options='--loader=ts-node/esm' vocab-build datasets", 8 | "prebuild": "npx --node-options='--loader=ts-node/esm' vocab-build module", 9 | "build": "tsc", 10 | "prepack": "npm run build" 11 | }, 12 | "devDependencies": { 13 | "@vocabulary/builder": "^1.0.8" 14 | }, 15 | "homepage": "https://prefix.zazuko.com/prefix/ma:", 16 | "vocabulary": { 17 | "prefix": "ma", 18 | "namespace": "http://www.w3.org/ns/ma-ont#" 19 | }, 20 | "bugs": { 21 | "url": "https://github.com/zazuko/rdf-vocabularies/issues" 22 | }, 23 | "license": "MIT", 24 | "files": [ 25 | "*.js", 26 | "*.d.ts", 27 | "*.nq", 28 | "*.nt" 29 | ], 30 | "peerDependencies": { 31 | "@rdfjs/types": "^2.0.0" 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /ontologies/ma/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/mads/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@vocabulary/mads", 3 | "version": "1.0.5", 4 | "type": "module", 5 | "main": "index.js", 6 | "scripts": { 7 | "fetch": "npx --node-options='--loader=ts-node/esm' vocab-build datasets", 8 | "prebuild": "npx --node-options='--loader=ts-node/esm' vocab-build module", 9 | "build": "tsc", 10 | "prepack": "npm run build" 11 | }, 12 | "devDependencies": { 13 | "@vocabulary/builder": "^1.0.8" 14 | }, 15 | "homepage": "https://prefix.zazuko.com/prefix/mads:", 16 | "vocabulary": { 17 | "prefix": "mads", 18 | "namespace": "http://www.loc.gov/mads/rdf/v1#" 19 | }, 20 | "bugs": { 21 | "url": "https://github.com/zazuko/rdf-vocabularies/issues" 22 | }, 23 | "license": "MIT", 24 | "files": [ 25 | "*.js", 26 | "*.d.ts", 27 | "*.nq", 28 | "*.nt" 29 | ], 30 | "peerDependencies": { 31 | "@rdfjs/types": "^2.0.0" 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /ontologies/mads/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/math/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # @vocabulary/math 2 | 3 | ## 1.0.5 4 | 5 | ### Patch Changes 6 | 7 | - c82d252: Update `@rdfjs/types` to v2. Remove `rdf-js` completely 8 | 9 | ## 1.0.4 10 | 11 | ### Patch Changes 12 | 13 | - d3570dc: Use `@rdfjs/types` instead of `rdf-js` in built TS module 14 | 15 | ## 1.0.3 16 | 17 | ### Patch Changes 18 | 19 | - e365e06: Replace usages of `rdf-js` with `@rdfjs/types` in type declarations 20 | 21 | ## 1.0.2 22 | 23 | ### Patch Changes 24 | 25 | - a676187: Added `bugs` link to package 26 | 27 | ## 1.0.1 28 | 29 | ### Patch Changes 30 | 31 | - 714b4f7: Missing `main` field caused warnings when used in node 32 | 33 | ## 1.0.0 34 | 35 | ### Major Changes 36 | 37 | - 2d9ab91: Added `http://www.w3.org/2000/10/swap/math#` (139 triples) 38 | -------------------------------------------------------------------------------- /ontologies/math/meta.nt: -------------------------------------------------------------------------------- 1 | "@vocabulary/math/math.nq" . 2 | . 3 | . 4 | "math" . 5 | . 6 | -------------------------------------------------------------------------------- /ontologies/math/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@vocabulary/math", 3 | "version": "1.0.5", 4 | "type": "module", 5 | "main": "index.js", 6 | "description": "http://www.w3.org/2000/10/swap/math#", 7 | "scripts": { 8 | "fetch": "npx --node-options='--loader=ts-node/esm' vocab-build datasets", 9 | "prebuild": "npx --node-options='--loader=ts-node/esm' vocab-build module", 10 | "build": "tsc", 11 | "prepack": "npm run build" 12 | }, 13 | "devDependencies": { 14 | "@vocabulary/builder": "^1.0.8" 15 | }, 16 | "license": "MIT", 17 | "homepage": "https://prefix.zazuko.com/prefix/math:", 18 | "vocabulary": { 19 | "prefix": "math", 20 | "namespace": "http://www.w3.org/2000/10/swap/math#" 21 | }, 22 | "bugs": { 23 | "url": "https://github.com/zazuko/rdf-vocabularies/issues" 24 | }, 25 | "files": [ 26 | "*.js", 27 | "*.d.ts", 28 | "*.nq", 29 | "*.nt" 30 | ], 31 | "peerDependencies": { 32 | "@rdfjs/types": "^2.0.0" 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /ontologies/math/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/oa/meta.nt: -------------------------------------------------------------------------------- 1 | "@vocabulary/oa/oa.nq" . 2 | "The Web Annotation ontology defines the terms of the Web Annotation vocabulary. Any changes to this document MUST be from a Working Group in the W3C that has established expertise in the area." . 3 | "Web Annotation Ontology" . 4 | . 5 | . 6 | "oa" . 7 | . 8 | -------------------------------------------------------------------------------- /ontologies/oa/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@vocabulary/oa", 3 | "version": "1.0.5", 4 | "type": "module", 5 | "main": "index.js", 6 | "scripts": { 7 | "fetch": "npx --node-options='--loader=ts-node/esm' vocab-build datasets", 8 | "prebuild": "npx --node-options='--loader=ts-node/esm' vocab-build module", 9 | "build": "tsc", 10 | "prepack": "npm run build" 11 | }, 12 | "devDependencies": { 13 | "@vocabulary/builder": "^1.0.8" 14 | }, 15 | "homepage": "https://prefix.zazuko.com/prefix/oa:", 16 | "vocabulary": { 17 | "prefix": "oa", 18 | "namespace": "http://www.w3.org/ns/oa#" 19 | }, 20 | "bugs": { 21 | "url": "https://github.com/zazuko/rdf-vocabularies/issues" 22 | }, 23 | "license": "MIT", 24 | "files": [ 25 | "*.js", 26 | "*.d.ts", 27 | "*.nq", 28 | "*.nt" 29 | ], 30 | "peerDependencies": { 31 | "@rdfjs/types": "^2.0.0" 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /ontologies/oa/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/og/meta.nt: -------------------------------------------------------------------------------- 1 | "@vocabulary/og/og.nq" . 2 | . 3 | . 4 | "og" . 5 | . 6 | -------------------------------------------------------------------------------- /ontologies/og/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@vocabulary/og", 3 | "version": "1.0.5", 4 | "type": "module", 5 | "main": "index.js", 6 | "scripts": { 7 | "fetch": "npx --node-options='--loader=ts-node/esm' vocab-build datasets", 8 | "prebuild": "npx --node-options='--loader=ts-node/esm' vocab-build module", 9 | "build": "tsc", 10 | "prepack": "npm run build" 11 | }, 12 | "devDependencies": { 13 | "@vocabulary/builder": "^1.0.8" 14 | }, 15 | "license": "MIT", 16 | "homepage": "https://prefix.zazuko.com/prefix/og:", 17 | "vocabulary": { 18 | "prefix": "og", 19 | "namespace": "http://ogp.me/ns#", 20 | "file": "https://ogp.me/ns/ogp.me.ttl", 21 | "mediaType": "text/turtle" 22 | }, 23 | "bugs": { 24 | "url": "https://github.com/zazuko/rdf-vocabularies/issues" 25 | }, 26 | "files": [ 27 | "*.js", 28 | "*.d.ts", 29 | "*.nq", 30 | "*.nt" 31 | ], 32 | "peerDependencies": { 33 | "@rdfjs/types": "^2.0.0" 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /ontologies/og/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/oidc/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # @vocabulary/oidc 2 | 3 | ## 1.0.4 4 | 5 | ### Patch Changes 6 | 7 | - c82d252: Update `@rdfjs/types` to v2. Remove `rdf-js` completely 8 | 9 | ## 1.0.3 10 | 11 | ### Patch Changes 12 | 13 | - d3570dc: Use `@rdfjs/types` instead of `rdf-js` in built TS module 14 | 15 | ## 1.0.2 16 | 17 | ### Patch Changes 18 | 19 | - e365e06: Replace usages of `rdf-js` with `@rdfjs/types` in type declarations 20 | 21 | ## 1.0.1 22 | 23 | ### Patch Changes 24 | 25 | - a676187: Added `bugs` link to package 26 | 27 | ## 1.0.0 28 | 29 | ### Major Changes 30 | 31 | - f63ae7f: First release 32 | -------------------------------------------------------------------------------- /ontologies/oidc/meta.nt: -------------------------------------------------------------------------------- 1 | "@vocabulary/oidc/oidc.nq" . 2 | "The OpenID Connect vocabulary used by the Solid-OIDC authentication specification." . 3 | "Solid OIDC" . 4 | . 5 | . 6 | "oidc" . 7 | . 8 | -------------------------------------------------------------------------------- /ontologies/oidc/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@vocabulary/oidc", 3 | "version": "1.0.4", 4 | "type": "module", 5 | "description": "The OpenID Connect vocabulary used by the Solid-OIDC authentication specification.", 6 | "scripts": { 7 | "fetch": "npx --node-options='--loader=ts-node/esm' vocab-build datasets", 8 | "prebuild": "npx --node-options='--loader=ts-node/esm' vocab-build module", 9 | "build": "tsc", 10 | "prepack": "npm run build" 11 | }, 12 | "devDependencies": { 13 | "@vocabulary/builder": "^1.0.8" 14 | }, 15 | "homepage": "https://prefix.zazuko.com/prefix/oidc:", 16 | "vocabulary": { 17 | "prefix": "oidc", 18 | "namespace": "http://www.w3.org/ns/solid/oidc#" 19 | }, 20 | "bugs": { 21 | "url": "https://github.com/zazuko/rdf-vocabularies/issues" 22 | }, 23 | "license": "MIT", 24 | "files": [ 25 | "*.js", 26 | "*.d.ts", 27 | "*.nq", 28 | "*.nt" 29 | ], 30 | "peerDependencies": { 31 | "@rdfjs/types": "^2.0.0" 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /ontologies/oidc/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/org/meta.nt: -------------------------------------------------------------------------------- 1 | "@vocabulary/org/org.nq" . 2 | "Vocabulary for describing organizational structures, specializable to a broad variety of types of organization." . 3 | "Core organization ontology" . 4 | . 5 | . 6 | "org" . 7 | . 8 | -------------------------------------------------------------------------------- /ontologies/org/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@vocabulary/org", 3 | "version": "1.0.5", 4 | "type": "module", 5 | "main": "index.js", 6 | "scripts": { 7 | "fetch": "npx --node-options='--loader=ts-node/esm' vocab-build datasets", 8 | "prebuild": "npx --node-options='--loader=ts-node/esm' vocab-build module", 9 | "build": "tsc", 10 | "prepack": "npm run build" 11 | }, 12 | "devDependencies": { 13 | "@vocabulary/builder": "^1.0.8" 14 | }, 15 | "homepage": "https://prefix.zazuko.com/prefix/org:", 16 | "vocabulary": { 17 | "prefix": "org", 18 | "namespace": "http://www.w3.org/ns/org#" 19 | }, 20 | "bugs": { 21 | "url": "https://github.com/zazuko/rdf-vocabularies/issues" 22 | }, 23 | "license": "MIT", 24 | "files": [ 25 | "*.js", 26 | "*.d.ts", 27 | "*.nq", 28 | "*.nt" 29 | ], 30 | "peerDependencies": { 31 | "@rdfjs/types": "^2.0.0" 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /ontologies/org/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/owl/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@vocabulary/owl", 3 | "version": "1.0.5", 4 | "type": "module", 5 | "main": "index.js", 6 | "scripts": { 7 | "fetch": "npx --node-options='--loader=ts-node/esm' vocab-build datasets", 8 | "prebuild": "npx --node-options='--loader=ts-node/esm' vocab-build module", 9 | "build": "tsc", 10 | "prepack": "npm run build" 11 | }, 12 | "devDependencies": { 13 | "@vocabulary/builder": "^1.0.8" 14 | }, 15 | "homepage": "https://prefix.zazuko.com/prefix/owl:", 16 | "vocabulary": { 17 | "prefix": "owl", 18 | "namespace": "http://www.w3.org/2002/07/owl#" 19 | }, 20 | "bugs": { 21 | "url": "https://github.com/zazuko/rdf-vocabularies/issues" 22 | }, 23 | "license": "MIT", 24 | "files": [ 25 | "*.js", 26 | "*.d.ts", 27 | "*.nq", 28 | "*.nt" 29 | ], 30 | "peerDependencies": { 31 | "@rdfjs/types": "^2.0.0" 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /ontologies/owl/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/pim/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # @vocabulary/pim 2 | 3 | ## 1.0.4 4 | 5 | ### Patch Changes 6 | 7 | - c82d252: Update `@rdfjs/types` to v2. Remove `rdf-js` completely 8 | 9 | ## 1.0.3 10 | 11 | ### Patch Changes 12 | 13 | - d3570dc: Use `@rdfjs/types` instead of `rdf-js` in built TS module 14 | 15 | ## 1.0.2 16 | 17 | ### Patch Changes 18 | 19 | - e365e06: Replace usages of `rdf-js` with `@rdfjs/types` in type declarations 20 | 21 | ## 1.0.1 22 | 23 | ### Patch Changes 24 | 25 | - a676187: Added `bugs` link to package 26 | 27 | ## 1.0.0 28 | 29 | ### Major Changes 30 | 31 | - f63ae7f: First release 32 | -------------------------------------------------------------------------------- /ontologies/pim/meta.nt: -------------------------------------------------------------------------------- 1 | "@vocabulary/pim/pim.nq" . 2 | . 3 | . 4 | "pim" . 5 | . 6 | -------------------------------------------------------------------------------- /ontologies/pim/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@vocabulary/pim", 3 | "version": "1.0.4", 4 | "type": "module", 5 | "description": "Workspace Ontology", 6 | "scripts": { 7 | "fetch": "npx --node-options='--loader=ts-node/esm' vocab-build datasets", 8 | "prebuild": "npx --node-options='--loader=ts-node/esm' vocab-build module", 9 | "build": "tsc", 10 | "prepack": "npm run build" 11 | }, 12 | "devDependencies": { 13 | "@vocabulary/builder": "^1.0.8" 14 | }, 15 | "homepage": "https://prefix.zazuko.com/prefix/pim:", 16 | "vocabulary": { 17 | "prefix": "pim", 18 | "namespace": "http://www.w3.org/ns/pim/space#" 19 | }, 20 | "bugs": { 21 | "url": "https://github.com/zazuko/rdf-vocabularies/issues" 22 | }, 23 | "license": "MIT", 24 | "files": [ 25 | "*.js", 26 | "*.d.ts", 27 | "*.nq", 28 | "*.nt" 29 | ], 30 | "peerDependencies": { 31 | "@rdfjs/types": "^2.0.0" 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /ontologies/pim/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/prefix/meta.nt: -------------------------------------------------------------------------------- 1 | "@vocabulary/prefix/prefix.nq" . 2 | . 3 | . 4 | "prefix" . 5 | . 6 | -------------------------------------------------------------------------------- /ontologies/prefix/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@vocabulary/prefix", 3 | "version": "1.0.5", 4 | "type": "module", 5 | "main": "index.js", 6 | "scripts": { 7 | "fetch": "npx --node-options='--loader=ts-node/esm' vocab-build datasets", 8 | "prebuild": "npx --node-options='--loader=ts-node/esm' vocab-build module", 9 | "build": "tsc", 10 | "prepack": "npm run build" 11 | }, 12 | "devDependencies": { 13 | "@vocabulary/builder": "^1.0.8" 14 | }, 15 | "homepage": "https://prefix.zazuko.com/prefix/prefix:", 16 | "vocabulary": { 17 | "prefix": "prefix", 18 | "namespace": "http://qudt.org/vocab/prefix/", 19 | "file": "http://qudt.org/2.1/vocab/prefix" 20 | }, 21 | "bugs": { 22 | "url": "https://github.com/zazuko/rdf-vocabularies/issues" 23 | }, 24 | "license": "MIT", 25 | "files": [ 26 | "*.js", 27 | "*.d.ts", 28 | "*.nq", 29 | "*.nt" 30 | ], 31 | "peerDependencies": { 32 | "@rdfjs/types": "^2.0.0" 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /ontologies/prefix/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/prov/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@vocabulary/prov", 3 | "version": "1.0.5", 4 | "type": "module", 5 | "main": "index.js", 6 | "scripts": { 7 | "fetch": "npx --node-options='--loader=ts-node/esm' vocab-build datasets", 8 | "prebuild": "npx --node-options='--loader=ts-node/esm' vocab-build module", 9 | "build": "tsc", 10 | "prepack": "npm run build" 11 | }, 12 | "devDependencies": { 13 | "@vocabulary/builder": "^1.0.8" 14 | }, 15 | "homepage": "https://prefix.zazuko.com/prefix/prov:", 16 | "vocabulary": { 17 | "prefix": "prov", 18 | "namespace": "http://www.w3.org/ns/prov#" 19 | }, 20 | "bugs": { 21 | "url": "https://github.com/zazuko/rdf-vocabularies/issues" 22 | }, 23 | "license": "MIT", 24 | "files": [ 25 | "*.js", 26 | "*.d.ts", 27 | "*.nq", 28 | "*.nt" 29 | ], 30 | "peerDependencies": { 31 | "@rdfjs/types": "^2.0.0" 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /ontologies/prov/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/qb/meta.nt: -------------------------------------------------------------------------------- 1 | "@vocabulary/qb/qb.nq" . 2 | "This vocabulary allows multi-dimensional data, such as statistics, to be published in RDF. It is based on the core information model from SDMX (and thus also DDI)." . 3 | "Vocabulary for multi-dimensional (e.g. statistical) data publishing" . 4 | . 5 | . 6 | "qb" . 7 | . 8 | -------------------------------------------------------------------------------- /ontologies/qb/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@vocabulary/qb", 3 | "version": "1.0.5", 4 | "type": "module", 5 | "main": "index.js", 6 | "scripts": { 7 | "fetch": "npx --node-options='--loader=ts-node/esm' vocab-build datasets", 8 | "prebuild": "npx --node-options='--loader=ts-node/esm' vocab-build module", 9 | "build": "tsc", 10 | "prepack": "npm run build" 11 | }, 12 | "devDependencies": { 13 | "@vocabulary/builder": "^1.0.8" 14 | }, 15 | "homepage": "https://prefix.zazuko.com/prefix/qb:", 16 | "vocabulary": { 17 | "prefix": "qb", 18 | "namespace": "http://purl.org/linked-data/cube#", 19 | "mediaType": "text/turtle" 20 | }, 21 | "bugs": { 22 | "url": "https://github.com/zazuko/rdf-vocabularies/issues" 23 | }, 24 | "license": "MIT", 25 | "files": [ 26 | "*.js", 27 | "*.d.ts", 28 | "*.nq", 29 | "*.nt" 30 | ], 31 | "peerDependencies": { 32 | "@rdfjs/types": "^2.0.0" 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /ontologies/qb/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/qkdv/meta.nt: -------------------------------------------------------------------------------- 1 | "@vocabulary/qkdv/qkdv.nq" . 2 | . 3 | . 4 | "qkdv" . 5 | . 6 | -------------------------------------------------------------------------------- /ontologies/qkdv/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@vocabulary/qkdv", 3 | "version": "1.0.5", 4 | "type": "module", 5 | "main": "index.js", 6 | "scripts": { 7 | "fetch": "npx --node-options='--loader=ts-node/esm' vocab-build datasets", 8 | "prebuild": "npx --node-options='--loader=ts-node/esm' vocab-build module", 9 | "build": "tsc", 10 | "prepack": "npm run build" 11 | }, 12 | "devDependencies": { 13 | "@vocabulary/builder": "^1.0.8" 14 | }, 15 | "homepage": "https://prefix.zazuko.com/prefix/qkdv:", 16 | "vocabulary": { 17 | "prefix": "qkdv", 18 | "namespace": "http://qudt.org/vocab/dimensionvector/" 19 | }, 20 | "bugs": { 21 | "url": "https://github.com/zazuko/rdf-vocabularies/issues" 22 | }, 23 | "license": "MIT", 24 | "files": [ 25 | "*.js", 26 | "*.d.ts", 27 | "*.nq", 28 | "*.nt" 29 | ], 30 | "peerDependencies": { 31 | "@rdfjs/types": "^2.0.0" 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /ontologies/qkdv/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/quantitykind/meta.nt: -------------------------------------------------------------------------------- 1 | "@vocabulary/quantitykind/quantitykind.nq" . 2 | . 3 | . 4 | "quantitykind" . 5 | . 6 | -------------------------------------------------------------------------------- /ontologies/quantitykind/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@vocabulary/quantitykind", 3 | "version": "2.0.0", 4 | "type": "module", 5 | "main": "index.js", 6 | "scripts": { 7 | "fetch": "npx --node-options='--loader=ts-node/esm' vocab-build datasets", 8 | "prebuild": "npx --node-options='--loader=ts-node/esm' vocab-build module", 9 | "build": "tsc", 10 | "prepack": "npm run build" 11 | }, 12 | "devDependencies": { 13 | "@vocabulary/builder": "^1.0.8" 14 | }, 15 | "homepage": "https://prefix.zazuko.com/prefix/quantitykind:", 16 | "vocabulary": { 17 | "prefix": "quantitykind", 18 | "namespace": "http://qudt.org/vocab/quantitykind/", 19 | "file": "http://qudt.org/3.1.0/vocab/quantitykind" 20 | }, 21 | "bugs": { 22 | "url": "https://github.com/zazuko/rdf-vocabularies/issues" 23 | }, 24 | "license": "MIT", 25 | "files": [ 26 | "*.js", 27 | "*.d.ts", 28 | "*.nq", 29 | "*.nt" 30 | ], 31 | "peerDependencies": { 32 | "@rdfjs/types": "^2.0.0" 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /ontologies/quantitykind/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/qudt/meta.nt: -------------------------------------------------------------------------------- 1 | "@vocabulary/qudt/qudt.nq" . 2 | . 3 | . 4 | . 5 | "qudt" . 6 | . 7 | -------------------------------------------------------------------------------- /ontologies/qudt/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/rdau/meta.nt: -------------------------------------------------------------------------------- 1 | "@vocabulary/rdau/rdau.nq" . 2 | "RDA Unconstrained properties" . 3 | . 4 | . 5 | "rdau" . 6 | . 7 | -------------------------------------------------------------------------------- /ontologies/rdau/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@vocabulary/rdau", 3 | "version": "1.0.5", 4 | "type": "module", 5 | "main": "index.js", 6 | "scripts": { 7 | "fetch": "npx --node-options='--loader=ts-node/esm' vocab-build datasets", 8 | "prebuild": "npx --node-options='--loader=ts-node/esm' vocab-build module", 9 | "build": "tsc", 10 | "prepack": "npm run build" 11 | }, 12 | "devDependencies": { 13 | "@vocabulary/builder": "^1.0.8" 14 | }, 15 | "homepage": "https://prefix.zazuko.com/prefix/rdau:", 16 | "vocabulary": { 17 | "prefix": "rdau", 18 | "namespace": "http://rdaregistry.info/Elements/u/", 19 | "file": "http://rdaregistry.info/Elements/u.nt", 20 | "mediaType": "application/n-triples" 21 | }, 22 | "bugs": { 23 | "url": "https://github.com/zazuko/rdf-vocabularies/issues" 24 | }, 25 | "license": "MIT", 26 | "files": [ 27 | "*.js", 28 | "*.d.ts", 29 | "*.nq", 30 | "*.nt" 31 | ], 32 | "peerDependencies": { 33 | "@rdfjs/types": "^2.0.0" 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /ontologies/rdau/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/rdf/meta.nt: -------------------------------------------------------------------------------- 1 | "@vocabulary/rdf/rdf.nq" . 2 | "This is the RDF Schema for the RDF vocabulary terms in the RDF Namespace, defined in RDF 1.1 Concepts." . 3 | "The RDF Concepts Vocabulary (RDF)" . 4 | . 5 | . 6 | "rdf" . 7 | . 8 | -------------------------------------------------------------------------------- /ontologies/rdf/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@vocabulary/rdf", 3 | "version": "1.0.5", 4 | "type": "module", 5 | "main": "index.js", 6 | "scripts": { 7 | "fetch": "npx --node-options='--loader=ts-node/esm' vocab-build datasets", 8 | "prebuild": "npx --node-options='--loader=ts-node/esm' vocab-build module", 9 | "build": "tsc", 10 | "prepack": "npm run build" 11 | }, 12 | "devDependencies": { 13 | "@vocabulary/builder": "^1.0.8" 14 | }, 15 | "homepage": "https://prefix.zazuko.com/prefix/rdf:", 16 | "vocabulary": { 17 | "prefix": "rdf", 18 | "namespace": "http://www.w3.org/1999/02/22-rdf-syntax-ns#" 19 | }, 20 | "bugs": { 21 | "url": "https://github.com/zazuko/rdf-vocabularies/issues" 22 | }, 23 | "license": "MIT", 24 | "files": [ 25 | "*.js", 26 | "*.d.ts", 27 | "*.nq", 28 | "*.nt" 29 | ], 30 | "peerDependencies": { 31 | "@rdfjs/types": "^2.0.0" 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /ontologies/rdf/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/rdfa/meta.nt: -------------------------------------------------------------------------------- 1 | "@vocabulary/rdfa/rdfa.nq" . 2 | "This document describes the RDFa Vocabulary for Term and Prefix Assignment. The Vocabulary is used to modify RDFa 1.1 processing behavior." . 3 | "RDFa Vocabulary for Term and Prefix Assignment, and for Processor Graph Reporting" . 4 | . 5 | . 6 | "rdfa" . 7 | . 8 | -------------------------------------------------------------------------------- /ontologies/rdfa/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@vocabulary/rdfa", 3 | "version": "1.0.5", 4 | "type": "module", 5 | "main": "index.js", 6 | "scripts": { 7 | "fetch": "npx --node-options='--loader=ts-node/esm' vocab-build datasets", 8 | "prebuild": "npx --node-options='--loader=ts-node/esm' vocab-build module", 9 | "build": "tsc", 10 | "prepack": "npm run build" 11 | }, 12 | "devDependencies": { 13 | "@vocabulary/builder": "^1.0.8" 14 | }, 15 | "homepage": "https://prefix.zazuko.com/prefix/rdfa:", 16 | "vocabulary": { 17 | "prefix": "rdfa", 18 | "namespace": "http://www.w3.org/ns/rdfa#" 19 | }, 20 | "bugs": { 21 | "url": "https://github.com/zazuko/rdf-vocabularies/issues" 22 | }, 23 | "license": "MIT", 24 | "files": [ 25 | "*.js", 26 | "*.d.ts", 27 | "*.nq", 28 | "*.nt" 29 | ], 30 | "peerDependencies": { 31 | "@rdfjs/types": "^2.0.0" 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /ontologies/rdfa/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/rdfs/meta.nt: -------------------------------------------------------------------------------- 1 | "@vocabulary/rdfs/rdfs.nq" . 2 | "The RDF Schema vocabulary (RDFS)" . 3 | . 4 | . 5 | "rdfs" . 6 | . 7 | -------------------------------------------------------------------------------- /ontologies/rdfs/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@vocabulary/rdfs", 3 | "version": "1.0.5", 4 | "type": "module", 5 | "main": "index.js", 6 | "scripts": { 7 | "fetch": "npx --node-options='--loader=ts-node/esm' vocab-build datasets", 8 | "prebuild": "npx --node-options='--loader=ts-node/esm' vocab-build module", 9 | "build": "tsc", 10 | "prepack": "npm run build" 11 | }, 12 | "devDependencies": { 13 | "@vocabulary/builder": "^1.0.8" 14 | }, 15 | "homepage": "https://prefix.zazuko.com/prefix/rdfs:", 16 | "vocabulary": { 17 | "prefix": "rdfs", 18 | "namespace": "http://www.w3.org/2000/01/rdf-schema#" 19 | }, 20 | "bugs": { 21 | "url": "https://github.com/zazuko/rdf-vocabularies/issues" 22 | }, 23 | "license": "MIT", 24 | "files": [ 25 | "*.js", 26 | "*.d.ts", 27 | "*.nq", 28 | "*.nt" 29 | ], 30 | "peerDependencies": { 31 | "@rdfjs/types": "^2.0.0" 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /ontologies/rdfs/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/rev/meta.nt: -------------------------------------------------------------------------------- 1 | "@vocabulary/rev/rev.nq" . 2 | "Vocabulary for expressing reviews and ratings using the Resource Description Framework. It is compatible with hReview and conforms to OWL Lite" . 3 | "RDF Review Vocabulary" . 4 | . 5 | . 6 | "rev" . 7 | . 8 | -------------------------------------------------------------------------------- /ontologies/rev/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/rico/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/rr/meta.nt: -------------------------------------------------------------------------------- 1 | "@vocabulary/rr/rr.nq" . 2 | "RDB to RDF Mapping Language - Vocabulary" . 3 | "R2RML vocabulary" . 4 | . 5 | . 6 | "rr" . 7 | . 8 | -------------------------------------------------------------------------------- /ontologies/rr/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@vocabulary/rr", 3 | "version": "1.0.5", 4 | "type": "module", 5 | "main": "index.js", 6 | "scripts": { 7 | "fetch": "npx --node-options='--loader=ts-node/esm' vocab-build datasets", 8 | "prebuild": "npx --node-options='--loader=ts-node/esm' vocab-build module", 9 | "build": "tsc", 10 | "prepack": "npm run build" 11 | }, 12 | "devDependencies": { 13 | "@vocabulary/builder": "^1.0.8" 14 | }, 15 | "homepage": "https://prefix.zazuko.com/prefix/rr:", 16 | "vocabulary": { 17 | "prefix": "rr", 18 | "namespace": "http://www.w3.org/ns/r2rml#" 19 | }, 20 | "bugs": { 21 | "url": "https://github.com/zazuko/rdf-vocabularies/issues" 22 | }, 23 | "license": "MIT", 24 | "files": [ 25 | "*.js", 26 | "*.d.ts", 27 | "*.nq", 28 | "*.nt" 29 | ], 30 | "peerDependencies": { 31 | "@rdfjs/types": "^2.0.0" 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /ontologies/rr/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/rss/meta.nt: -------------------------------------------------------------------------------- 1 | "@vocabulary/rss/rss.nq" . 2 | . 3 | . 4 | "rss" . 5 | . 6 | -------------------------------------------------------------------------------- /ontologies/rss/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/schema/meta.nt: -------------------------------------------------------------------------------- 1 | "@vocabulary/schema/schema.nq" . 2 | . 3 | . 4 | "schema" . 5 | . 6 | -------------------------------------------------------------------------------- /ontologies/schema/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@vocabulary/schema", 3 | "version": "1.0.5", 4 | "type": "module", 5 | "main": "index.js", 6 | "scripts": { 7 | "fetch": "npx --node-options='--loader=ts-node/esm' vocab-build datasets", 8 | "prebuild": "npx --node-options='--loader=ts-node/esm' vocab-build module", 9 | "build": "tsc", 10 | "prepack": "npm run build" 11 | }, 12 | "devDependencies": { 13 | "@vocabulary/builder": "^1.0.8" 14 | }, 15 | "homepage": "https://prefix.zazuko.com/prefix/schema:", 16 | "vocabulary": { 17 | "prefix": "schema", 18 | "namespace": "http://schema.org/", 19 | "file": "https://schema.org/version/latest/schemaorg-current-http.nt" 20 | }, 21 | "bugs": { 22 | "url": "https://github.com/zazuko/rdf-vocabularies/issues" 23 | }, 24 | "license": "MIT", 25 | "files": [ 26 | "*.js", 27 | "*.d.ts", 28 | "*.nq", 29 | "*.nt" 30 | ], 31 | "peerDependencies": { 32 | "@rdfjs/types": "^2.0.0" 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /ontologies/schema/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/sd/meta.nt: -------------------------------------------------------------------------------- 1 | "@vocabulary/sd/sd.nq" . 2 | . 3 | . 4 | "sd" . 5 | . 6 | -------------------------------------------------------------------------------- /ontologies/sd/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@vocabulary/sd", 3 | "version": "1.0.5", 4 | "type": "module", 5 | "main": "index.js", 6 | "scripts": { 7 | "fetch": "npx --node-options='--loader=ts-node/esm' vocab-build datasets", 8 | "prebuild": "npx --node-options='--loader=ts-node/esm' vocab-build module", 9 | "build": "tsc", 10 | "prepack": "npm run build" 11 | }, 12 | "devDependencies": { 13 | "@vocabulary/builder": "^1.0.8" 14 | }, 15 | "homepage": "https://prefix.zazuko.com/prefix/sd:", 16 | "vocabulary": { 17 | "prefix": "sd", 18 | "namespace": "http://www.w3.org/ns/sparql-service-description#" 19 | }, 20 | "bugs": { 21 | "url": "https://github.com/zazuko/rdf-vocabularies/issues" 22 | }, 23 | "license": "MIT", 24 | "files": [ 25 | "*.js", 26 | "*.d.ts", 27 | "*.nq", 28 | "*.nt" 29 | ], 30 | "peerDependencies": { 31 | "@rdfjs/types": "^2.0.0" 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /ontologies/sd/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/sdmx/meta.nt: -------------------------------------------------------------------------------- 1 | "@vocabulary/sdmx/sdmx.nq" . 2 | "This vocabulary extends the data cube vocabulary to support publication of statistical data in RDF, using an information model based on SDMX" . 3 | "Vocabulary for publishing SDMX statistical data in RDF" . 4 | . 5 | . 6 | "sdmx" . 7 | . 8 | -------------------------------------------------------------------------------- /ontologies/sdmx/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@vocabulary/sdmx", 3 | "version": "1.0.5", 4 | "type": "module", 5 | "main": "index.js", 6 | "scripts": { 7 | "fetch": "npx --node-options='--loader=ts-node/esm' vocab-build datasets", 8 | "prebuild": "npx --node-options='--loader=ts-node/esm' vocab-build module", 9 | "build": "tsc", 10 | "prepack": "npm run build" 11 | }, 12 | "devDependencies": { 13 | "@vocabulary/builder": "^1.0.8" 14 | }, 15 | "homepage": "https://prefix.zazuko.com/prefix/sdmx:", 16 | "vocabulary": { 17 | "prefix": "sdmx", 18 | "namespace": "http://purl.org/linked-data/sdmx#", 19 | "mediaType": "text/turtle" 20 | }, 21 | "bugs": { 22 | "url": "https://github.com/zazuko/rdf-vocabularies/issues" 23 | }, 24 | "license": "MIT", 25 | "files": [ 26 | "*.js", 27 | "*.d.ts", 28 | "*.nq", 29 | "*.nt" 30 | ], 31 | "peerDependencies": { 32 | "@rdfjs/types": "^2.0.0" 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /ontologies/sdmx/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/sem/meta.nt: -------------------------------------------------------------------------------- 1 | "@vocabulary/sem/sem.nq" . 2 | . 3 | . 4 | "sem" . 5 | . 6 | -------------------------------------------------------------------------------- /ontologies/sem/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/set/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # @vocabulary/set 2 | 3 | ## 1.0.5 4 | 5 | ### Patch Changes 6 | 7 | - c82d252: Update `@rdfjs/types` to v2. Remove `rdf-js` completely 8 | 9 | ## 1.0.4 10 | 11 | ### Patch Changes 12 | 13 | - d3570dc: Use `@rdfjs/types` instead of `rdf-js` in built TS module 14 | 15 | ## 1.0.3 16 | 17 | ### Patch Changes 18 | 19 | - e365e06: Replace usages of `rdf-js` with `@rdfjs/types` in type declarations 20 | 21 | ## 1.0.2 22 | 23 | ### Patch Changes 24 | 25 | - a676187: Added `bugs` link to package 26 | 27 | ## 1.0.1 28 | 29 | ### Patch Changes 30 | 31 | - 714b4f7: Missing `main` field caused warnings when used in node 32 | 33 | ## 1.0.0 34 | 35 | ### Major Changes 36 | 37 | - c89b71d: Added `http://www.w3.org/2000/10/swap/set#` (25 triples) 38 | -------------------------------------------------------------------------------- /ontologies/set/meta.nt: -------------------------------------------------------------------------------- 1 | "@vocabulary/set/set.nq" . 2 | . 3 | . 4 | "set" . 5 | . 6 | -------------------------------------------------------------------------------- /ontologies/set/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@vocabulary/set", 3 | "version": "1.0.5", 4 | "type": "module", 5 | "main": "index.js", 6 | "description": "http://www.w3.org/2000/10/swap/set#", 7 | "scripts": { 8 | "fetch": "npx --node-options='--loader=ts-node/esm' vocab-build datasets", 9 | "prebuild": "npx --node-options='--loader=ts-node/esm' vocab-build module", 10 | "build": "tsc", 11 | "prepack": "npm run build" 12 | }, 13 | "devDependencies": { 14 | "@vocabulary/builder": "^1.0.8" 15 | }, 16 | "homepage": "https://prefix.zazuko.com/prefix/set:", 17 | "license": "MIT", 18 | "vocabulary": { 19 | "prefix": "set", 20 | "namespace": "http://www.w3.org/2000/10/swap/set#" 21 | }, 22 | "bugs": { 23 | "url": "https://github.com/zazuko/rdf-vocabularies/issues" 24 | }, 25 | "files": [ 26 | "*.js", 27 | "*.d.ts", 28 | "*.nq", 29 | "*.nt" 30 | ], 31 | "peerDependencies": { 32 | "@rdfjs/types": "^2.0.0" 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /ontologies/set/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/sf/meta.nt: -------------------------------------------------------------------------------- 1 | "@vocabulary/sf/sf.nq" . 2 | . 3 | . 4 | "sf" . 5 | . 6 | -------------------------------------------------------------------------------- /ontologies/sf/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@vocabulary/sf", 3 | "version": "1.0.5", 4 | "type": "module", 5 | "main": "index.js", 6 | "scripts": { 7 | "fetch": "npx --node-options='--loader=ts-node/esm' vocab-build datasets", 8 | "prebuild": "npx --node-options='--loader=ts-node/esm' vocab-build module", 9 | "build": "tsc", 10 | "prepack": "npm run build" 11 | }, 12 | "devDependencies": { 13 | "@vocabulary/builder": "^1.0.8" 14 | }, 15 | "homepage": "https://prefix.zazuko.com/prefix/sf:", 16 | "vocabulary": { 17 | "prefix": "sf", 18 | "namespace": "http://www.opengis.net/ont/sf#", 19 | "file": "http://schemas.opengis.net/sf/1.0/simple_features_geometries.rdf", 20 | "mediaType": "application/rdf+xml" 21 | }, 22 | "bugs": { 23 | "url": "https://github.com/zazuko/rdf-vocabularies/issues" 24 | }, 25 | "license": "MIT", 26 | "files": [ 27 | "*.js", 28 | "*.d.ts", 29 | "*.nq", 30 | "*.nt" 31 | ], 32 | "peerDependencies": { 33 | "@rdfjs/types": "^2.0.0" 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /ontologies/sf/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/sh/README.md: -------------------------------------------------------------------------------- 1 | # @vocabulary/sh 2 | 3 | This package contains a snapshot of the SHACL vocabulary with the addition of 4 | an unofficial rendition of the latest [SHACL Advanced Features](https://w3c.github.io/shacl/shacl-af/) 5 | draft. 6 | 7 | ## SHACL Advanced Features 8 | 9 | SHACL-AF adds a handful of properties and node expressions. The latter are expressed here as 10 | node shapes. 11 | 12 | ### Known issues 13 | 14 | The node shape `sh:FunctionExpression` currently does not work and will cause false negatives when 15 | validation a shape which uses function expressions. 16 | -------------------------------------------------------------------------------- /ontologies/sh/meta.nt: -------------------------------------------------------------------------------- 1 | "@vocabulary/sh/sh.nq" . 2 | "This vocabulary defines terms used in SHACL, the W3C Shapes Constraint Language." . 3 | "W3C Shapes Constraint Language (SHACL) Vocabulary" . 4 | . 5 | . 6 | . 7 | "sh" . 8 | . 9 | -------------------------------------------------------------------------------- /ontologies/sh/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/shex/meta.nt: -------------------------------------------------------------------------------- 1 | "@vocabulary/shex/shex.nq" . 2 | "This document describes the RDFS vocabulary description used in the Shape Expression Language (ShEx) [[shex-semantics]] along with the default JSON-LD Context and shape expression to validate RDF versions of shapes." . 3 | "Shape Expression Vocabulary" . 4 | . 5 | . 6 | "shex" . 7 | . 8 | -------------------------------------------------------------------------------- /ontologies/shex/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@vocabulary/shex", 3 | "version": "1.0.5", 4 | "type": "module", 5 | "main": "index.js", 6 | "scripts": { 7 | "fetch": "npx --node-options='--loader=ts-node/esm' vocab-build datasets", 8 | "prebuild": "npx --node-options='--loader=ts-node/esm' vocab-build module", 9 | "build": "tsc", 10 | "prepack": "npm run build" 11 | }, 12 | "devDependencies": { 13 | "@vocabulary/builder": "^1.0.8" 14 | }, 15 | "homepage": "https://prefix.zazuko.com/prefix/shex:", 16 | "vocabulary": { 17 | "prefix": "shex", 18 | "namespace": "http://www.w3.org/ns/shex#" 19 | }, 20 | "bugs": { 21 | "url": "https://github.com/zazuko/rdf-vocabularies/issues" 22 | }, 23 | "license": "MIT", 24 | "files": [ 25 | "*.js", 26 | "*.d.ts", 27 | "*.nq", 28 | "*.nt" 29 | ], 30 | "peerDependencies": { 31 | "@rdfjs/types": "^2.0.0" 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /ontologies/shex/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/shsh/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # @vocabulary/shsh 2 | 3 | ## 1.0.4 4 | 5 | ### Patch Changes 6 | 7 | - c82d252: Update `@rdfjs/types` to v2. Remove `rdf-js` completely 8 | 9 | ## 1.0.3 10 | 11 | ### Patch Changes 12 | 13 | - d3570dc: Use `@rdfjs/types` instead of `rdf-js` in built TS module 14 | 15 | ## 1.0.2 16 | 17 | ### Patch Changes 18 | 19 | - e365e06: Replace usages of `rdf-js` with `@rdfjs/types` in type declarations 20 | 21 | ## 1.0.1 22 | 23 | ### Patch Changes 24 | 25 | - a196f31: Namespace was HTTPS instead of the correct HTTP 26 | 27 | ## 1.0.0 28 | 29 | ### Major Changes 30 | 31 | - 8d17feb: Imported shacl-shacl 32 | -------------------------------------------------------------------------------- /ontologies/shsh/meta.nt: -------------------------------------------------------------------------------- 1 | "@vocabulary/shsh/shsh.nq" . 2 | "This shapes graph can be used to validate SHACL shapes graphs against a subset of the syntax rules." . 3 | "SHACL for SHACL" . 4 | . 5 | . 6 | "shsh" . 7 | . 8 | -------------------------------------------------------------------------------- /ontologies/shsh/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/sioc/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@vocabulary/sioc", 3 | "version": "1.0.5", 4 | "type": "module", 5 | "main": "index.js", 6 | "scripts": { 7 | "fetch": "npx --node-options='--loader=ts-node/esm' vocab-build datasets", 8 | "prebuild": "npx --node-options='--loader=ts-node/esm' vocab-build module", 9 | "build": "tsc", 10 | "prepack": "npm run build" 11 | }, 12 | "devDependencies": { 13 | "@vocabulary/builder": "^1.0.8" 14 | }, 15 | "homepage": "https://prefix.zazuko.com/prefix/sioc:", 16 | "vocabulary": { 17 | "prefix": "sioc", 18 | "namespace": "http://rdfs.org/sioc/ns#" 19 | }, 20 | "bugs": { 21 | "url": "https://github.com/zazuko/rdf-vocabularies/issues" 22 | }, 23 | "license": "MIT", 24 | "files": [ 25 | "*.js", 26 | "*.d.ts", 27 | "*.nq", 28 | "*.nt" 29 | ], 30 | "peerDependencies": { 31 | "@rdfjs/types": "^2.0.0" 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /ontologies/sioc/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/skos/meta.nt: -------------------------------------------------------------------------------- 1 | "@vocabulary/skos/skos.nq" . 2 | "An RDF vocabulary for describing the basic structure and content of concept schemes such as thesauri, classification schemes, subject heading lists, taxonomies, 'folksonomies', other types of controlled vocabulary, and also concept schemes embedded in glossaries and terminologies." . 3 | "SKOS Vocabulary" . 4 | . 5 | . 6 | "skos" . 7 | . 8 | -------------------------------------------------------------------------------- /ontologies/skos/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@vocabulary/skos", 3 | "version": "1.0.5", 4 | "type": "module", 5 | "main": "index.js", 6 | "scripts": { 7 | "fetch": "npx --node-options='--loader=ts-node/esm' vocab-build datasets", 8 | "prebuild": "npx --node-options='--loader=ts-node/esm' vocab-build module", 9 | "build": "tsc", 10 | "prepack": "npm run build" 11 | }, 12 | "devDependencies": { 13 | "@vocabulary/builder": "^1.0.8" 14 | }, 15 | "homepage": "https://prefix.zazuko.com/prefix/skos:", 16 | "vocabulary": { 17 | "prefix": "skos", 18 | "namespace": "http://www.w3.org/2004/02/skos/core#" 19 | }, 20 | "bugs": { 21 | "url": "https://github.com/zazuko/rdf-vocabularies/issues" 22 | }, 23 | "license": "MIT", 24 | "files": [ 25 | "*.js", 26 | "*.d.ts", 27 | "*.nq", 28 | "*.nt" 29 | ], 30 | "peerDependencies": { 31 | "@rdfjs/types": "^2.0.0" 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /ontologies/skos/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/skosxl/meta.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zazuko/rdf-vocabularies/f637a043599b767cd301c99e089dcc4b618aa05e/ontologies/skosxl/meta.nt -------------------------------------------------------------------------------- /ontologies/skosxl/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@vocabulary/skosxl", 3 | "version": "1.0.5", 4 | "type": "module", 5 | "main": "index.js", 6 | "scripts": { 7 | "fetch": "npx --node-options='--loader=ts-node/esm' vocab-build datasets", 8 | "prebuild": "npx --node-options='--loader=ts-node/esm' vocab-build module", 9 | "build": "tsc", 10 | "prepack": "npm run build" 11 | }, 12 | "devDependencies": { 13 | "@vocabulary/builder": "^1.0.8" 14 | }, 15 | "homepage": "https://prefix.zazuko.com/prefix/skosxl:", 16 | "vocabulary": { 17 | "prefix": "skosxl", 18 | "namespace": "http://www.w3.org/2008/05/skos-xl#" 19 | }, 20 | "bugs": { 21 | "url": "https://github.com/zazuko/rdf-vocabularies/issues" 22 | }, 23 | "license": "MIT", 24 | "files": [ 25 | "*.js", 26 | "*.d.ts", 27 | "*.nq", 28 | "*.nt" 29 | ], 30 | "peerDependencies": { 31 | "@rdfjs/types": "^2.0.0" 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /ontologies/skosxl/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/solid/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # @vocabulary/solid 2 | 3 | ## 1.0.4 4 | 5 | ### Patch Changes 6 | 7 | - c82d252: Update `@rdfjs/types` to v2. Remove `rdf-js` completely 8 | 9 | ## 1.0.3 10 | 11 | ### Patch Changes 12 | 13 | - d3570dc: Use `@rdfjs/types` instead of `rdf-js` in built TS module 14 | 15 | ## 1.0.2 16 | 17 | ### Patch Changes 18 | 19 | - e365e06: Replace usages of `rdf-js` with `@rdfjs/types` in type declarations 20 | 21 | ## 1.0.1 22 | 23 | ### Patch Changes 24 | 25 | - a676187: Added `bugs` link to package 26 | 27 | ## 1.0.0 28 | 29 | ### Major Changes 30 | 31 | - f63ae7f: First release 32 | -------------------------------------------------------------------------------- /ontologies/solid/meta.nt: -------------------------------------------------------------------------------- 1 | "@vocabulary/solid/solid.nq" . 2 | "The Solid Terms vocabulary defines terms referenced in Solid specifications." . 3 | "Solid Terms" . 4 | . 5 | . 6 | "solid" . 7 | . 8 | -------------------------------------------------------------------------------- /ontologies/solid/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@vocabulary/solid", 3 | "version": "1.0.4", 4 | "type": "module", 5 | "description": "The Solid Terms vocabulary defines terms referenced in Solid specifications", 6 | "scripts": { 7 | "fetch": "npx --node-options='--loader=ts-node/esm' vocab-build datasets", 8 | "prebuild": "npx --node-options='--loader=ts-node/esm' vocab-build module", 9 | "build": "tsc", 10 | "prepack": "npm run build" 11 | }, 12 | "devDependencies": { 13 | "@vocabulary/builder": "^1.0.8" 14 | }, 15 | "homepage": "https://prefix.zazuko.com/prefix/solid:", 16 | "vocabulary": { 17 | "prefix": "solid", 18 | "namespace": "http://www.w3.org/ns/solid/terms#" 19 | }, 20 | "bugs": { 21 | "url": "https://github.com/zazuko/rdf-vocabularies/issues" 22 | }, 23 | "license": "MIT", 24 | "files": [ 25 | "*.js", 26 | "*.d.ts", 27 | "*.nq", 28 | "*.nt" 29 | ], 30 | "peerDependencies": { 31 | "@rdfjs/types": "^2.0.0" 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /ontologies/solid/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/sosa/meta.nt: -------------------------------------------------------------------------------- 1 | "@vocabulary/sosa/sosa.nq" . 2 | "This ontology is based on the SSN Ontology by the W3C Semantic Sensor Networks Incubator Group (SSN-XG), together with considerations from the W3C/OGC Spatial Data on the Web Working Group." . 3 | "Sensor, Observation, Sample, and Actuator (SOSA) Ontology" . 4 | . 5 | . 6 | "sosa" . 7 | . 8 | -------------------------------------------------------------------------------- /ontologies/sosa/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@vocabulary/sosa", 3 | "version": "1.0.5", 4 | "type": "module", 5 | "main": "index.js", 6 | "scripts": { 7 | "fetch": "npx --node-options='--loader=ts-node/esm' vocab-build datasets", 8 | "prebuild": "npx --node-options='--loader=ts-node/esm' vocab-build module", 9 | "build": "tsc", 10 | "prepack": "npm run build" 11 | }, 12 | "devDependencies": { 13 | "@vocabulary/builder": "^1.0.8" 14 | }, 15 | "homepage": "https://prefix.zazuko.com/prefix/sosa:", 16 | "vocabulary": { 17 | "prefix": "sosa", 18 | "namespace": "http://www.w3.org/ns/sosa/" 19 | }, 20 | "bugs": { 21 | "url": "https://github.com/zazuko/rdf-vocabularies/issues" 22 | }, 23 | "license": "MIT", 24 | "files": [ 25 | "*.js", 26 | "*.d.ts", 27 | "*.nq", 28 | "*.nt" 29 | ], 30 | "peerDependencies": { 31 | "@rdfjs/types": "^2.0.0" 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /ontologies/sosa/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/sou/meta.nt: -------------------------------------------------------------------------------- 1 | "@vocabulary/sou/sou.nq" . 2 | "QUDT Vocabulary - Systems of Units - v2.1.25" . 3 | . 4 | . 5 | "sou" . 6 | . 7 | -------------------------------------------------------------------------------- /ontologies/sou/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@vocabulary/sou", 3 | "version": "1.0.5", 4 | "type": "module", 5 | "main": "index.js", 6 | "scripts": { 7 | "fetch": "npx --node-options='--loader=ts-node/esm' vocab-build datasets", 8 | "prebuild": "npx --node-options='--loader=ts-node/esm' vocab-build module", 9 | "build": "tsc", 10 | "prepack": "npm run build" 11 | }, 12 | "devDependencies": { 13 | "@vocabulary/builder": "^1.0.8" 14 | }, 15 | "homepage": "https://prefix.zazuko.com/prefix/sou:", 16 | "vocabulary": { 17 | "prefix": "sou", 18 | "namespace": "http://qudt.org/vocab/sou/" 19 | }, 20 | "bugs": { 21 | "url": "https://github.com/zazuko/rdf-vocabularies/issues" 22 | }, 23 | "license": "MIT", 24 | "files": [ 25 | "*.js", 26 | "*.d.ts", 27 | "*.nq", 28 | "*.nt" 29 | ], 30 | "peerDependencies": { 31 | "@rdfjs/types": "^2.0.0" 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /ontologies/sou/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/ssn/meta.nt: -------------------------------------------------------------------------------- 1 | "@vocabulary/ssn/ssn.nq" . 2 | "This ontology describes sensors, actuators and observations, and related concepts. It does not describe domain concepts, time, locations, etc. these are intended to be included from other ontologies via OWL imports." . 3 | "Semantic Sensor Network Ontology" . 4 | . 5 | . 6 | "ssn" . 7 | . 8 | -------------------------------------------------------------------------------- /ontologies/ssn/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@vocabulary/ssn", 3 | "version": "1.0.5", 4 | "type": "module", 5 | "main": "index.js", 6 | "scripts": { 7 | "fetch": "npx --node-options='--loader=ts-node/esm' vocab-build datasets", 8 | "prebuild": "npx --node-options='--loader=ts-node/esm' vocab-build module", 9 | "build": "tsc", 10 | "prepack": "npm run build" 11 | }, 12 | "devDependencies": { 13 | "@vocabulary/builder": "^1.0.8" 14 | }, 15 | "homepage": "https://prefix.zazuko.com/prefix/ssn:", 16 | "vocabulary": { 17 | "prefix": "ssn", 18 | "namespace": "http://www.w3.org/ns/ssn/" 19 | }, 20 | "bugs": { 21 | "url": "https://github.com/zazuko/rdf-vocabularies/issues" 22 | }, 23 | "license": "MIT", 24 | "files": [ 25 | "*.js", 26 | "*.d.ts", 27 | "*.nq", 28 | "*.nt" 29 | ], 30 | "peerDependencies": { 31 | "@rdfjs/types": "^2.0.0" 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /ontologies/ssn/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/stat/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # @vocabulary/stat 2 | 3 | ## 1.0.4 4 | 5 | ### Patch Changes 6 | 7 | - c82d252: Update `@rdfjs/types` to v2. Remove `rdf-js` completely 8 | 9 | ## 1.0.3 10 | 11 | ### Patch Changes 12 | 13 | - d3570dc: Use `@rdfjs/types` instead of `rdf-js` in built TS module 14 | 15 | ## 1.0.2 16 | 17 | ### Patch Changes 18 | 19 | - e365e06: Replace usages of `rdf-js` with `@rdfjs/types` in type declarations 20 | 21 | ## 1.0.1 22 | 23 | ### Patch Changes 24 | 25 | - a676187: Added `bugs` link to package 26 | 27 | ## 1.0.0 28 | 29 | ### Major Changes 30 | 31 | - f63ae7f: First release 32 | -------------------------------------------------------------------------------- /ontologies/stat/meta.nt: -------------------------------------------------------------------------------- 1 | "@vocabulary/stat/stat.nq" . 2 | . 3 | . 4 | "stat" . 5 | . 6 | -------------------------------------------------------------------------------- /ontologies/stat/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/string/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # @vocabulary/string 2 | 3 | ## 1.0.5 4 | 5 | ### Patch Changes 6 | 7 | - c82d252: Update `@rdfjs/types` to v2. Remove `rdf-js` completely 8 | 9 | ## 1.0.4 10 | 11 | ### Patch Changes 12 | 13 | - d3570dc: Use `@rdfjs/types` instead of `rdf-js` in built TS module 14 | 15 | ## 1.0.3 16 | 17 | ### Patch Changes 18 | 19 | - e365e06: Replace usages of `rdf-js` with `@rdfjs/types` in type declarations 20 | 21 | ## 1.0.2 22 | 23 | ### Patch Changes 24 | 25 | - a676187: Added `bugs` link to package 26 | 27 | ## 1.0.1 28 | 29 | ### Patch Changes 30 | 31 | - 714b4f7: Missing `main` field caused warnings when used in node 32 | 33 | ## 1.0.0 34 | 35 | ### Major Changes 36 | 37 | - 50f03cd: Added String Processing Ontology (105 triples) 38 | -------------------------------------------------------------------------------- /ontologies/string/meta.nt: -------------------------------------------------------------------------------- 1 | "@vocabulary/string/string.nq" . 2 | "String Processing Ontology" . 3 | . 4 | . 5 | "string" . 6 | . 7 | -------------------------------------------------------------------------------- /ontologies/string/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/test/meta.nt: -------------------------------------------------------------------------------- 1 | "@vocabulary/test/test.nq" . 2 | . 3 | . 4 | "test" . 5 | . 6 | -------------------------------------------------------------------------------- /ontologies/test/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@vocabulary/test", 3 | "version": "1.0.5", 4 | "type": "module", 5 | "main": "index.js", 6 | "scripts": { 7 | "fetch": "npx --node-options='--loader=ts-node/esm' vocab-build datasets", 8 | "prebuild": "npx --node-options='--loader=ts-node/esm' vocab-build module", 9 | "build": "tsc", 10 | "prepack": "npm run build" 11 | }, 12 | "devDependencies": { 13 | "@vocabulary/builder": "^1.0.8" 14 | }, 15 | "homepage": "https://prefix.zazuko.com/prefix/test:", 16 | "vocabulary": { 17 | "prefix": "test", 18 | "namespace": "http://www.w3.org/2006/03/test-description#", 19 | "mediaType": "text/n3" 20 | }, 21 | "bugs": { 22 | "url": "https://github.com/zazuko/rdf-vocabularies/issues" 23 | }, 24 | "license": "MIT", 25 | "files": [ 26 | "*.js", 27 | "*.d.ts", 28 | "*.nq", 29 | "*.nt" 30 | ], 31 | "peerDependencies": { 32 | "@rdfjs/types": "^2.0.0" 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /ontologies/test/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/time/meta.nt: -------------------------------------------------------------------------------- 1 | "@vocabulary/time/time.nq" . 2 | "OWL-Time" . 3 | . 4 | . 5 | "time" . 6 | . 7 | -------------------------------------------------------------------------------- /ontologies/time/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@vocabulary/time", 3 | "version": "1.0.5", 4 | "type": "module", 5 | "main": "index.js", 6 | "scripts": { 7 | "fetch": "npx --node-options='--loader=ts-node/esm' vocab-build datasets", 8 | "prebuild": "npx --node-options='--loader=ts-node/esm' vocab-build module", 9 | "build": "tsc", 10 | "prepack": "npm run build" 11 | }, 12 | "devDependencies": { 13 | "@vocabulary/builder": "^1.0.8" 14 | }, 15 | "homepage": "https://prefix.zazuko.com/prefix/time:", 16 | "vocabulary": { 17 | "prefix": "time", 18 | "namespace": "http://www.w3.org/2006/time#" 19 | }, 20 | "bugs": { 21 | "url": "https://github.com/zazuko/rdf-vocabularies/issues" 22 | }, 23 | "license": "MIT", 24 | "files": [ 25 | "*.js", 26 | "*.d.ts", 27 | "*.nq", 28 | "*.nt" 29 | ], 30 | "peerDependencies": { 31 | "@rdfjs/types": "^2.0.0" 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /ontologies/time/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/unit/meta.nt: -------------------------------------------------------------------------------- 1 | "@vocabulary/unit/unit.nq" . 2 | . 3 | . 4 | "unit" . 5 | . 6 | -------------------------------------------------------------------------------- /ontologies/unit/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@vocabulary/unit", 3 | "version": "2.0.0", 4 | "type": "module", 5 | "main": "index.js", 6 | "scripts": { 7 | "fetch": "npx --node-options='--loader=ts-node/esm' vocab-build datasets", 8 | "prebuild": "npx --node-options='--loader=ts-node/esm' vocab-build module", 9 | "build": "tsc", 10 | "prepack": "npm run build" 11 | }, 12 | "devDependencies": { 13 | "@vocabulary/builder": "^1.0.8" 14 | }, 15 | "homepage": "https://prefix.zazuko.com/prefix/unit:", 16 | "vocabulary": { 17 | "prefix": "unit", 18 | "namespace": "http://qudt.org/vocab/unit/", 19 | "file": "https://qudt.org/3.1.0/vocab/unit" 20 | }, 21 | "bugs": { 22 | "url": "https://github.com/zazuko/rdf-vocabularies/issues" 23 | }, 24 | "license": "MIT", 25 | "files": [ 26 | "*.js", 27 | "*.d.ts", 28 | "*.nq", 29 | "*.nt" 30 | ], 31 | "peerDependencies": { 32 | "@rdfjs/types": "^2.0.0" 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /ontologies/unit/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/vaem/meta.nt: -------------------------------------------------------------------------------- 1 | "@vocabulary/vaem/vaem.nq" . 2 | . 3 | . 4 | "vaem" . 5 | . 6 | -------------------------------------------------------------------------------- /ontologies/vaem/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@vocabulary/vaem", 3 | "version": "1.0.5", 4 | "type": "module", 5 | "main": "index.js", 6 | "scripts": { 7 | "fetch": "npx --node-options='--loader=ts-node/esm' vocab-build datasets", 8 | "prebuild": "npx --node-options='--loader=ts-node/esm' vocab-build module", 9 | "build": "tsc", 10 | "prepack": "npm run build" 11 | }, 12 | "devDependencies": { 13 | "@vocabulary/builder": "^1.0.8" 14 | }, 15 | "homepage": "https://prefix.zazuko.com/prefix/vaem:", 16 | "vocabulary": { 17 | "prefix": "vaem", 18 | "namespace": "http://www.linkedmodel.org/schema/vaem#", 19 | "mediaType": "application/rdf+xml" 20 | }, 21 | "bugs": { 22 | "url": "https://github.com/zazuko/rdf-vocabularies/issues" 23 | }, 24 | "license": "MIT", 25 | "files": [ 26 | "*.js", 27 | "*.d.ts", 28 | "*.nq", 29 | "*.nt" 30 | ], 31 | "peerDependencies": { 32 | "@rdfjs/types": "^2.0.0" 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /ontologies/vaem/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/vann/meta.nt: -------------------------------------------------------------------------------- 1 | "@vocabulary/vann/vann.nq" . 2 | "This document describes a vocabulary for annotating descriptions of vocabularies with examples and usage notes." . 3 | "VANN: A vocabulary for annotating vocabulary descriptions" . 4 | . 5 | . 6 | "vann" . 7 | . 8 | -------------------------------------------------------------------------------- /ontologies/vann/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/vcard/meta.nt: -------------------------------------------------------------------------------- 1 | "@vocabulary/vcard/vcard.nq" . 2 | "Ontology for vCard based on RFC6350" . 3 | "Ontology for vCard" . 4 | . 5 | . 6 | "vcard" . 7 | . 8 | -------------------------------------------------------------------------------- /ontologies/vcard/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@vocabulary/vcard", 3 | "version": "1.0.5", 4 | "type": "module", 5 | "main": "index.js", 6 | "scripts": { 7 | "fetch": "npx --node-options='--loader=ts-node/esm' vocab-build datasets", 8 | "prebuild": "npx --node-options='--loader=ts-node/esm' vocab-build module", 9 | "build": "tsc", 10 | "prepack": "npm run build" 11 | }, 12 | "devDependencies": { 13 | "@vocabulary/builder": "^1.0.8" 14 | }, 15 | "homepage": "https://prefix.zazuko.com/prefix/vcard:", 16 | "vocabulary": { 17 | "prefix": "vcard", 18 | "namespace": "http://www.w3.org/2006/vcard/ns#" 19 | }, 20 | "bugs": { 21 | "url": "https://github.com/zazuko/rdf-vocabularies/issues" 22 | }, 23 | "license": "MIT", 24 | "files": [ 25 | "*.js", 26 | "*.d.ts", 27 | "*.nq", 28 | "*.nt" 29 | ], 30 | "peerDependencies": { 31 | "@rdfjs/types": "^2.0.0" 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /ontologies/vcard/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/void/meta.nt: -------------------------------------------------------------------------------- 1 | "@vocabulary/void/void.nq" . 2 | . 3 | . 4 | "void" . 5 | . 6 | -------------------------------------------------------------------------------- /ontologies/void/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@vocabulary/void", 3 | "version": "1.0.5", 4 | "type": "module", 5 | "main": "index.js", 6 | "scripts": { 7 | "fetch": "npx --node-options='--loader=ts-node/esm' vocab-build datasets", 8 | "prebuild": "npx --node-options='--loader=ts-node/esm' vocab-build module", 9 | "build": "tsc", 10 | "prepack": "npm run build" 11 | }, 12 | "devDependencies": { 13 | "@vocabulary/builder": "^1.0.8" 14 | }, 15 | "homepage": "https://prefix.zazuko.com/prefix/void:", 16 | "vocabulary": { 17 | "prefix": "void", 18 | "namespace": "http://rdfs.org/ns/void#", 19 | "file": "http://vocab.deri.ie/void.ttl" 20 | }, 21 | "bugs": { 22 | "url": "https://github.com/zazuko/rdf-vocabularies/issues" 23 | }, 24 | "license": "MIT", 25 | "files": [ 26 | "*.js", 27 | "*.d.ts", 28 | "*.nq", 29 | "*.nt" 30 | ], 31 | "peerDependencies": { 32 | "@rdfjs/types": "^2.0.0" 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /ontologies/void/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/vs/meta.nt: -------------------------------------------------------------------------------- 1 | "@vocabulary/vs/vs.nq" . 2 | "An RDF vocabulary for relating SW vocabulary terms to their status." . 3 | "SemWeb Vocab Status ontology" . 4 | . 5 | . 6 | "vs" . 7 | . 8 | -------------------------------------------------------------------------------- /ontologies/vs/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@vocabulary/vs", 3 | "version": "1.0.5", 4 | "type": "module", 5 | "main": "index.js", 6 | "scripts": { 7 | "fetch": "npx --node-options='--loader=ts-node/esm' vocab-build datasets", 8 | "prebuild": "npx --node-options='--loader=ts-node/esm' vocab-build module", 9 | "build": "tsc", 10 | "prepack": "npm run build" 11 | }, 12 | "devDependencies": { 13 | "@vocabulary/builder": "^1.0.8" 14 | }, 15 | "homepage": "https://prefix.zazuko.com/prefix/vs:", 16 | "vocabulary": { 17 | "prefix": "vs", 18 | "namespace": "http://www.w3.org/2003/06/sw-vocab-status/ns#" 19 | }, 20 | "bugs": { 21 | "url": "https://github.com/zazuko/rdf-vocabularies/issues" 22 | }, 23 | "license": "MIT", 24 | "files": [ 25 | "*.js", 26 | "*.d.ts", 27 | "*.nq", 28 | "*.nt" 29 | ], 30 | "peerDependencies": { 31 | "@rdfjs/types": "^2.0.0" 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /ontologies/vs/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/vso/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # @vocabulary/vso 2 | 3 | ## 1.0.2 4 | 5 | ### Patch Changes 6 | 7 | - c82d252: Update `@rdfjs/types` to v2. Remove `rdf-js` completely 8 | 9 | ## 1.0.1 10 | 11 | ### Patch Changes 12 | 13 | - e365e06: Replace usages of `rdf-js` with `@rdfjs/types` in type declarations 14 | 15 | ## 1.0.0 16 | 17 | ### Major Changes 18 | 19 | - 3fd3e37: First release 20 | -------------------------------------------------------------------------------- /ontologies/vso/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@vocabulary/vso", 3 | "version": "1.0.2", 4 | "type": "module", 5 | "main": "index.js", 6 | "description": "Vehicle Sales Ontology", 7 | "scripts": { 8 | "fetch": "npx --node-options='--loader=ts-node/esm' vocab-build datasets", 9 | "prebuild": "npx --node-options='--loader=ts-node/esm' vocab-build module", 10 | "build": "tsc", 11 | "prepack": "npm run build" 12 | }, 13 | "devDependencies": { 14 | "@vocabulary/builder": "^1.0.8" 15 | }, 16 | "homepage": "https://prefix.zazuko.com/prefix/vso:", 17 | "vocabulary": { 18 | "prefix": "vso", 19 | "namespace": "http://purl.org/vso/ns#", 20 | "file": "https://www.heppnetz.de/ontologies/vso/ns.owl" 21 | }, 22 | "bugs": { 23 | "url": "https://github.com/zazuko/rdf-vocabularies/issues" 24 | }, 25 | "license": "MIT", 26 | "files": [ 27 | "*.js", 28 | "*.d.ts", 29 | "*.nq", 30 | "*.nt" 31 | ], 32 | "peerDependencies": { 33 | "@rdfjs/types": "^2.0.0" 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /ontologies/vso/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/wdrs/meta.nt: -------------------------------------------------------------------------------- 1 | "@vocabulary/wdrs/wdrs.nq" . 2 | "This file specifies the set of classes and properties used in the RDF/OWL version of POWDER documents." . 3 | "POWDER-S Vocabulary" . 4 | . 5 | . 6 | "wdrs" . 7 | . 8 | -------------------------------------------------------------------------------- /ontologies/wdrs/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@vocabulary/wdrs", 3 | "version": "1.0.5", 4 | "type": "module", 5 | "main": "index.js", 6 | "scripts": { 7 | "fetch": "npx --node-options='--loader=ts-node/esm' vocab-build datasets", 8 | "prebuild": "npx --node-options='--loader=ts-node/esm' vocab-build module", 9 | "build": "tsc", 10 | "prepack": "npm run build" 11 | }, 12 | "devDependencies": { 13 | "@vocabulary/builder": "^1.0.8" 14 | }, 15 | "homepage": "https://prefix.zazuko.com/prefix/wdrs:", 16 | "vocabulary": { 17 | "prefix": "wdrs", 18 | "namespace": "http://www.w3.org/2007/05/powder-s#" 19 | }, 20 | "bugs": { 21 | "url": "https://github.com/zazuko/rdf-vocabularies/issues" 22 | }, 23 | "license": "MIT", 24 | "files": [ 25 | "*.js", 26 | "*.d.ts", 27 | "*.nq", 28 | "*.nt" 29 | ], 30 | "peerDependencies": { 31 | "@rdfjs/types": "^2.0.0" 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /ontologies/wdrs/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/wgs/meta.nt: -------------------------------------------------------------------------------- 1 | "@vocabulary/wgs/wgs.nq" . 2 | "A vocabulary for representing latitude, longitude and \n altitude information in the WGS84 geodetic reference datum. \n Version $Id: wgs84_pos.rdf,v 1.22 2009/04/20 15:00:30 timbl Exp $. See http://www.w3.org/2003/01/geo/ for more details." . 3 | "WGS84 Geo Positioning: an RDF vocabulary" . 4 | . 5 | . 6 | "wgs" . 7 | . 8 | -------------------------------------------------------------------------------- /ontologies/wgs/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@vocabulary/wgs", 3 | "version": "1.0.5", 4 | "type": "module", 5 | "main": "index.js", 6 | "scripts": { 7 | "fetch": "npx --node-options='--loader=ts-node/esm' vocab-build datasets", 8 | "prebuild": "npx --node-options='--loader=ts-node/esm' vocab-build module", 9 | "build": "tsc", 10 | "prepack": "npm run build" 11 | }, 12 | "devDependencies": { 13 | "@vocabulary/builder": "^1.0.8" 14 | }, 15 | "homepage": "https://prefix.zazuko.com/prefix/wgs:", 16 | "vocabulary": { 17 | "prefix": "wgs", 18 | "namespace": "http://www.w3.org/2003/01/geo/wgs84_pos#" 19 | }, 20 | "bugs": { 21 | "url": "https://github.com/zazuko/rdf-vocabularies/issues" 22 | }, 23 | "license": "MIT", 24 | "files": [ 25 | "*.js", 26 | "*.d.ts", 27 | "*.nq", 28 | "*.nt" 29 | ], 30 | "peerDependencies": { 31 | "@rdfjs/types": "^2.0.0" 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /ontologies/wgs/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/xhv/meta.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zazuko/rdf-vocabularies/f637a043599b767cd301c99e089dcc4b618aa05e/ontologies/xhv/meta.nt -------------------------------------------------------------------------------- /ontologies/xhv/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/xkos/meta.nt: -------------------------------------------------------------------------------- 1 | "@vocabulary/xkos/xkos.nq" . 2 | "This ontology is based on work initiated at Dagstuhl Schloss in September 2011" . 3 | "XKOS: an SKOS extension for representing statistical classifications" . 4 | . 5 | . 6 | "xkos" . 7 | . 8 | -------------------------------------------------------------------------------- /ontologies/xkos/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /ontologies/xsd/meta.nt: -------------------------------------------------------------------------------- 1 | "@vocabulary/xsd/xsd.nq" . 2 | . 3 | . 4 | "xsd" . 5 | . 6 | -------------------------------------------------------------------------------- /ontologies/xsd/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@vocabulary/xsd", 3 | "version": "1.0.5", 4 | "type": "module", 5 | "main": "index.js", 6 | "scripts": { 7 | "fetch": "npx --node-options='--loader=ts-node/esm' vocab-build datasets", 8 | "prebuild": "npx --node-options='--loader=ts-node/esm' vocab-build module", 9 | "build": "tsc", 10 | "prepack": "npm run build" 11 | }, 12 | "devDependencies": { 13 | "@vocabulary/builder": "^1.0.8" 14 | }, 15 | "homepage": "https://prefix.zazuko.com/prefix/xsd:", 16 | "vocabulary": { 17 | "prefix": "xsd", 18 | "namespace": "http://www.w3.org/2001/XMLSchema#", 19 | "file": "https://raw.githubusercontent.com/ruby-rdf/rdf/master/etc/xsd.ttl", 20 | "mediaType": "text/turtle" 21 | }, 22 | "bugs": { 23 | "url": "https://github.com/zazuko/rdf-vocabularies/issues" 24 | }, 25 | "license": "MIT", 26 | "files": [ 27 | "*.js", 28 | "*.d.ts", 29 | "*.nq", 30 | "*.nt" 31 | ], 32 | "peerDependencies": { 33 | "@rdfjs/types": "^2.0.0" 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /ontologies/xsd/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": ["index.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /packages/builder/bin/index.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env -S node --no-warnings 2 | import('../index.js') 3 | -------------------------------------------------------------------------------- /packages/builder/lib/fetch.ts: -------------------------------------------------------------------------------- 1 | import fileFetch from 'file-fetch' 2 | import httpFetch from 'node-fetch' 3 | import protoFetch from 'proto-fetch' 4 | 5 | export default protoFetch({ 6 | file: fileFetch, 7 | http: httpFetch, 8 | https: httpFetch, 9 | }) 10 | -------------------------------------------------------------------------------- /packages/builder/lib/overrides.ts: -------------------------------------------------------------------------------- 1 | interface FileSpec { 2 | file?: string 3 | mediaType?: string 4 | xmlParserOptions?: { 5 | baseIRI: string 6 | } 7 | } 8 | 9 | export interface Override extends FileSpec { 10 | files?: FileSpec[] 11 | } 12 | -------------------------------------------------------------------------------- /packages/builder/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@vocabulary/builder", 3 | "version": "1.0.9", 4 | "type": "module", 5 | "bin": { 6 | "vocab-build": "./bin/index.js" 7 | }, 8 | "scripts": { 9 | "prepack": "tsc" 10 | }, 11 | "dependencies": { 12 | "@rdfjs/fetch-lite": "^3.2.1", 13 | "@rdfjs/formats": "^4", 14 | "@rdfjs/serializer-rdfjs": "^0.1.2", 15 | "@rdfjs/types": "^2", 16 | "@zazuko/env-node": "^3.0.0", 17 | "@zazuko/prefixes": "^2.0.0", 18 | "commander": "^10.0.0", 19 | "get-stream": "^6.0.1", 20 | "file-fetch": "^1.7.0", 21 | "node-fetch": "^3.3.0", 22 | "proto-fetch": "^1.0.0", 23 | "rdfxml-streaming-parser": "^2.2.1", 24 | "ts-node": "^10.9.1" 25 | }, 26 | "devDependencies": { 27 | "@types/file-fetch": "^1.6.6", 28 | "@types/proto-fetch": "^1.0.5", 29 | "@types/rdfjs__fetch-lite": "^3.0.11", 30 | "@types/rdfjs__formats": "^4.0.1", 31 | "@types/rdfjs__serializer-rdfjs": "^0.1.6" 32 | }, 33 | "license": "MIT" 34 | } 35 | -------------------------------------------------------------------------------- /packages/builder/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": [ 4 | "index.ts", 5 | "datasets.ts", 6 | "modules.ts" 7 | ] 8 | } 9 | -------------------------------------------------------------------------------- /packages/loader/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # @zazuko/vocabulary-loader 2 | 3 | ## 1.0.4 4 | 5 | ### Patch Changes 6 | 7 | - b9da819: Updated `@zazuko/env(-node)` to v3 8 | 9 | ## 1.0.3 10 | 11 | ### Patch Changes 12 | 13 | - 90ad47a: Removed `rdf-js` dependency 14 | 15 | ## 1.0.2 16 | 17 | ### Patch Changes 18 | 19 | - 0653527: Updated `@zazuko/env` 20 | 21 | ## 1.0.1 22 | 23 | ### Patch Changes 24 | 25 | - c142fb9: Missing package contents 26 | 27 | ## 1.0.0 28 | 29 | ### Major Changes 30 | 31 | - c055d61: First release 32 | -------------------------------------------------------------------------------- /packages/loader/lib/loadDataset.ts: -------------------------------------------------------------------------------- 1 | import fs from 'fs' 2 | import module from 'module' 3 | import type prefixes from '@zazuko/prefixes' 4 | 5 | const { resolve } = module.createRequire(import.meta.url) 6 | 7 | export async function loadDatasetStream(prefix: keyof typeof prefixes) { 8 | return fs.createReadStream(resolve(`@vocabulary/${String(prefix)}/${String(prefix)}.nq`), { encoding: 'utf8' }) 9 | } 10 | -------------------------------------------------------------------------------- /packages/loader/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@zazuko/vocabulary-loader", 3 | "version": "1.0.4", 4 | "type": "module", 5 | "main": "index.js", 6 | "files": [ 7 | "**/*.js", 8 | "**/*.d.ts", 9 | "CHANGELOG.md" 10 | ], 11 | "scripts": { 12 | "prepack": "tsc" 13 | }, 14 | "dependencies": { 15 | "@zazuko/env": "^3.0.0", 16 | "@rdfjs/parser-n3": "^2.0.1", 17 | "@types/rdfjs__environment": "1", 18 | "rdf-dataset-ext": "^1.1.0" 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /packages/loader/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": [ 4 | "index.ts" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /packages/prefixes/.build/prefixes.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | DIR_PATH=$(dirname $0) 4 | IFS=; 5 | 6 | PREFIX_MAP="$(jq -r '" '"'\(.vocabulary.prefix)'"': '"'\(.vocabulary.namespace)'"',"' $DIR_PATH/../../../ontologies/*/package.json)" 7 | 8 | echo "import prefixesOnly from './lib/prefixesOnly.js' 9 | 10 | const packagedPrefixes = { 11 | $PREFIX_MAP 12 | } 13 | 14 | const prefixes = { 15 | ...packagedPrefixes, 16 | ...prefixesOnly, 17 | } as const 18 | 19 | // eslint-disable-next-line @typescript-eslint/no-empty-interface 20 | export interface Prefixes extends Readonly { 21 | 22 | } 23 | export interface CustomPrefixes { 24 | [key: string]: string 25 | } 26 | 27 | export default prefixes as Prefixes & CustomPrefixes" 28 | -------------------------------------------------------------------------------- /packages/prefixes/expand.ts: -------------------------------------------------------------------------------- 1 | import prefixes from './prefixes.js' 2 | 3 | export function getParts(prefixed: string): { term: string; baseIRI: string; prefix: string } | null { 4 | const [prefix, term] = prefixed.split(':') 5 | if (!prefix || !term) { 6 | return null 7 | } 8 | 9 | const baseIRI = prefixes[prefix] 10 | if (!baseIRI) { 11 | throw new Error(`Unavailable prefix '${prefix}:'`) 12 | } 13 | 14 | return { prefix, term, baseIRI } 15 | } 16 | 17 | export function expand(prefixed: string): string { 18 | const parts = getParts(prefixed) 19 | if (!parts) { 20 | return '' 21 | } 22 | 23 | return `${parts.baseIRI}${parts.term}` 24 | } 25 | -------------------------------------------------------------------------------- /packages/prefixes/index.ts: -------------------------------------------------------------------------------- 1 | import prefixes from './prefixes.js' 2 | 3 | export { expand } from './expand.js' 4 | export { shrink } from './shrink.js' 5 | 6 | export default prefixes 7 | -------------------------------------------------------------------------------- /packages/prefixes/lib/prefixesOnly.ts: -------------------------------------------------------------------------------- 1 | export default { 2 | rif: 'http://www.w3.org/2007/rif#', 3 | v: 'http://rdf.data-vocabulary.org/#', 4 | wdr: 'http://www.w3.org/2007/05/powder#', 5 | xml: 'http://www.w3.org/XML/1998/namespace/', 6 | } 7 | -------------------------------------------------------------------------------- /packages/prefixes/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@zazuko/prefixes", 3 | "version": "2.4.0", 4 | "type": "module", 5 | "repository": { 6 | "type": "git", 7 | "url": "git+https://github.com/zazuko/rdf-vocabularies.git", 8 | "directory": "packages/prefixes" 9 | }, 10 | "scripts": { 11 | "update-prefixes": "./.build/prefixes.sh > prefixes.ts", 12 | "prepack": "tsc" 13 | }, 14 | "main": "index.js", 15 | "exports": { 16 | ".": "./index.js", 17 | "./expand": "./expand.js", 18 | "./expand.js": "./expand.js", 19 | "./prefixes": "./prefixes.js", 20 | "./prefixes.js": "./prefixes.js", 21 | "./shrink": "./shrink.js", 22 | "./shrink.js": "./shrink.js" 23 | }, 24 | "license": "MIT", 25 | "files": [ 26 | "*.js", 27 | "*.d.ts", 28 | "lib/*.js", 29 | "lib/*.d.ts" 30 | ] 31 | } 32 | -------------------------------------------------------------------------------- /packages/prefixes/shrink.ts: -------------------------------------------------------------------------------- 1 | import builtins from './prefixes.js' 2 | 3 | /** 4 | * Converts an IRI to a prefixed node using a set of prefixes. By default, the 5 | * built-in prefixes are used. When the `extraPrefixes` argument is given, uses these prefixes 6 | * first, and then tries the built-in set 7 | * 8 | * @param iri 9 | * @param [extraPrefixes] 10 | */ 11 | export function shrink(iri: string, extraPrefixes: Record = {}) { 12 | const prefixes = { ...builtins, ...extraPrefixes } 13 | const candidates = Array.from(Object.entries(prefixes)).filter(([, baseIRI]) => iri.startsWith(baseIRI)) 14 | if (candidates.length) { 15 | candidates.sort(([, iri1], [, iri2]) => iri2.length - iri1.length) 16 | const found = candidates[0] 17 | return iri.replace(new RegExp(`^${found[1]}`), `${found[0]}:`) 18 | } 19 | return '' 20 | } 21 | -------------------------------------------------------------------------------- /packages/prefixes/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": [ 4 | "index.ts", 5 | "expand.ts", 6 | "prefixes.ts" 7 | ] 8 | } 9 | -------------------------------------------------------------------------------- /packages/vocabularies/expand.ts: -------------------------------------------------------------------------------- 1 | export { expand, getParts } from '@zazuko/prefixes/expand' 2 | -------------------------------------------------------------------------------- /packages/vocabularies/index.ts: -------------------------------------------------------------------------------- 1 | import type { NamedNode } from '@rdfjs/types' 2 | import { expand as _expand } from './expand.js' 3 | import { expandWithCheck } from './expandWithCheck.js' 4 | 5 | export { default as prefixes } from './prefixes.js' 6 | export { vocabularies, loadFile } from './vocabularies.js' 7 | export { shrink } from './shrink.js' 8 | export { expandWithCheck } from './expandWithCheck.js' 9 | 10 | export function expand (prefixed: string): string; 11 | export function expand (prefixed: string, types: (string | NamedNode)[]): Promise; 12 | export function expand(prefixed: string, types: (string | NamedNode)[] = []): string | Promise { 13 | if (types && types.length) { 14 | return expandWithCheck(prefixed, types) 15 | } 16 | 17 | return _expand(prefixed) 18 | } 19 | -------------------------------------------------------------------------------- /packages/vocabularies/meta.ts: -------------------------------------------------------------------------------- 1 | import { createReadStream } from 'fs' 2 | import module from 'module' 3 | import Parser from '@rdfjs/parser-n3' 4 | import rdf from '@zazuko/env' 5 | import fromStream from 'rdf-dataset-ext/fromStream.js' 6 | 7 | const { resolve } = module.createRequire(import.meta.url) 8 | const metaQuads = resolve('./meta.nt') 9 | 10 | export default function () { 11 | const parser = new Parser() 12 | return fromStream(rdf.dataset(), parser.import(createReadStream(metaQuads))) 13 | } 14 | -------------------------------------------------------------------------------- /packages/vocabularies/prefixes.ts: -------------------------------------------------------------------------------- 1 | import prefixes from '@zazuko/prefixes/prefixes' 2 | 3 | export { Prefixes } from '@zazuko/prefixes/prefixes' 4 | 5 | export default prefixes 6 | -------------------------------------------------------------------------------- /packages/vocabularies/shrink.ts: -------------------------------------------------------------------------------- 1 | export { shrink } from '@zazuko/prefixes/shrink' 2 | -------------------------------------------------------------------------------- /packages/vocabularies/test/meta.test.ts: -------------------------------------------------------------------------------- 1 | import { expect } from 'chai' 2 | import meta from '../meta.js' 3 | 4 | describe('@zazuko/vocabularies/meta', () => { 5 | it('loads meta', async () => { 6 | // when 7 | const dataset = await meta() 8 | 9 | // then 10 | expect(dataset.size).to.be.greaterThan(0) 11 | }) 12 | }) 13 | -------------------------------------------------------------------------------- /packages/vocabularies/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig", 3 | "files": [ 4 | "index.ts", 5 | "expand.ts", 6 | "expandWithCheck.ts", 7 | "meta.ts", 8 | "shrink.ts", 9 | "prefixes.ts", 10 | "vocabularies.ts" 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /packages/vocabularies/vocabularies.ts: -------------------------------------------------------------------------------- 1 | import { create } from '@zazuko/vocabulary-loader' 2 | import prefixes from './prefixes.js' 3 | 4 | export { loadFile, Datasets } from '@zazuko/vocabulary-loader' 5 | 6 | export const vocabularies = create(prefixes) 7 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "esnext", 4 | "module": "ESNext", 5 | "noUnusedLocals": true, 6 | "noUnusedParameters": true, 7 | "moduleResolution": "node", 8 | "esModuleInterop": true, 9 | "noImplicitAny": true, 10 | "strict": true, 11 | "strictNullChecks": true, 12 | "lib": [ 13 | "ES2022", 14 | "webworker" 15 | ], 16 | "declaration": true, 17 | "declarationMap": true 18 | } 19 | } 20 | --------------------------------------------------------------------------------