|
1 | 1 | @prefix : <https://schema.org/> . |
2 | 2 | @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . |
3 | 3 | @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . |
| 4 | +@prefix owl: <http://www.w3.org/2002/07/owl#> . |
4 | 5 | @prefix xml: <http://www.w3.org/XML/1998/namespace> . |
5 | 6 | @prefix xsd: <http://www.w3.org/2001/XMLSchema#> . |
6 | 7 | @prefix stype: <https://w3id.org/software-types#> . |
|
9 | 10 | # all of the following are newly proposed as part of https://github.com/codemeta/codemeta/issues/271 |
10 | 11 | # and are eventually proposed upstream to schema.org (but that may take a while) |
11 | 12 |
|
| 13 | +#metadata |
| 14 | +<https://w3id.org/software-types> rdf:type owl:Ontology ; |
| 15 | + owl:versionIRI <https://w3id.org/software-types/1.0.0> ; |
| 16 | + <http://purl.org/dc/terms/abstract> "This profile describes vocabulary terms needed to describe the metadata of software application types (e.g., command line, desktop, software package, software library, etc.)"@en ; |
| 17 | + <http://purl.org/dc/elements/1.1/description> "This profile describes vocabulary terms needed to describe the metadata of software application types (e.g., command line, desktop, software package, software library, etc.)"@en ; |
| 18 | + <http://purl.org/dc/elements/1.1/title> "The Software Types ontology"@en ; |
| 19 | + <http://purl.org/dc/terms/created> "February 3rd, 2022"@en ; |
| 20 | + <http://purl.org/dc/terms/creator> "Maarten van Gompel"@en , |
| 21 | + "Daniel Garijo"@en ; |
| 22 | + <http://purl.org/dc/terms/license> <http://creativecommons.org/licenses/by/2.0/> ; |
| 23 | + <http://purl.org/vocab/vann/preferredNamespacePrefix> "stype"@en ; |
| 24 | + <http://purl.org/vocab/vann/preferredNamespaceUri> "https://w3id.org/software-types" ; |
| 25 | + <http://schema.org/citation> "Cite this vocabulary as: van Gompel, M and Garijo, D. The Software Types ontology 1.0.0."@en ; |
| 26 | + rdfs:comment "This profile describes vocabulary terms needed to describe the metadata of software application types (e.g., command line, desktop, software package, software library, etc.)"@en ; |
| 27 | + owl:versionInfo "1.0.0"@en . |
| 28 | + |
12 | 29 | stype:CommandLineApplication a rdfs:Class ; |
13 | 30 | rdfs:label "Command-Line Application" ; |
14 | 31 | :source <https://github.com/codemeta/codemeta/issues/271> ; |
|
0 commit comments