11@prefix : <https://schema.org/> .
22@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
33@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
4+ @prefix owl: <http://www.w3.org/2002/07/owl#> .
45@prefix xml: <http://www.w3.org/XML/1998/namespace> .
56@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
67@prefix stype: <https://w3id.org/software-types#> .
1011# and are eventually proposed upstream to schema.org (but that may take a while)
1112
1213# metadata
13- stype: rdf:type owl:Ontology ;
14- owl:versionIRI <https://w3id.org/stype /1.0.0> ;
15- <http://purl.org/dc/terms/abstract> " This profile describes vocabulary terms for specifying software application types, used for software metadata descriptions. " @en ;
16- <http://purl.org/dc/elements/1.1/description> " This profile describes vocabulary terms for specifying software application types, used for software metadata descriptions. " @en ;
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 ;
1718 <http://purl.org/dc/elements/1.1/title> " The Software Types ontology" @en ;
1819 <http://purl.org/dc/terms/created> " February 3rd, 2022" @en ;
1920 <http://purl.org/dc/terms/creator> " Maarten van Gompel" @en ,
2021 " Daniel Garijo" @en ;
2122 <http://purl.org/dc/terms/license> <http://creativecommons.org/licenses/by/2.0/> ;
2223 <http://purl.org/vocab/vann/preferredNamespacePrefix> " stype" @en ;
23- <http://purl.org/vocab/vann/preferredNamespaceUri> " https://w3id.org/software-types# " ;
24- <http://schema.org/citation> " Cite this vocabulary as: van Gompel, M and Garijo, D. The Software Input/Output Data ontology 1.0.0." @en ;
25- rdfs:comment " This profile describes vocabulary terms for specifying software application types, used for software metadata descriptions. " @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 ;
2627 owl:versionInfo " 1.0.0" @en .
2728
28-
2929stype:CommandLineApplication a rdfs:Class ;
3030 rdfs:label " Command-Line Application" ;
3131 :source <https://github.com/codemeta/codemeta/issues/271> ;
@@ -35,7 +35,7 @@ stype:CommandLineApplication a rdfs:Class ;
3535stype:DesktopApplication a rdfs:Class ;
3636 rdfs:label " Desktop Application" ;
3737 :source <https://github.com/codemeta/codemeta/issues/271> ;
38- rdfs:comment " A software application offering a desktop graphical user interface." ;
38+ rdfs:comment " A software application offering a graphical user interface on the deskop ." ;
3939 rdfs:subClassOf :SoftwareApplication .
4040
4141stype:TerminalApplication a rdfs:Class ;
@@ -81,7 +81,7 @@ stype:executableName a rdf:Property ;
8181 :domainIncludes :SoftwareApplication , :SoftwareSourceCode ;
8282 :rangeIncludes :Text ;
8383 :source <https://github.com/codemeta/codemeta/issues/271> ;
84- rdfs:comment " The name of the executable within a certain run-time context (e.g. an executable filename or name of an importable module). " .
84+ rdfs:comment: " Filename of the executable for the software application " .
8585
8686# the following already exist, but are extended:
8787
0 commit comments