Skip to content

Commit 3fcbc1d

Browse files
authored
Merge pull request #16 from SoftwareUnderstanding/develop
Replacing the right files
2 parents a3b00d9 + 47f9177 commit 3fcbc1d

2 files changed

Lines changed: 12 additions & 11 deletions

File tree

release/1.0.0/software-types.jsonld

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
"DesktopApplication": { "@id": "stype:DesktopApplication" },
99
"TerminalApplication": { "@id": "stype:TerminalApplication" },
1010
"ServerApplication": { "@id": "stype:ServerApplication" },
11+
"SoftwareLibrary": { "@id": "stype:SoftwareLibrary" },
1112
"SoftwareImage": { "@id": "stype:SoftwareImage" },
1213
"SoftwarePackage": { "@id": "stype:SoftwarePackage" },
1314
"NotebookApplication": { "@id": "stype:NotebookApplication" },
@@ -83,7 +84,7 @@
8384
"@id": "stype:executableName",
8485
"@type": "Property",
8586
"label": "Executable Name",
86-
"comment": "The name of the executable within a certain run-time context (e.g. an executable filename or name of an importable module)."
87+
"comment": "Filename of the executable for the software application."
8788
}
8889
]
8990
}

release/1.0.0/software-types.ttl

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
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#> .
@@ -10,22 +11,21 @@
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-
2929
stype: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 ;
3535
stype: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

4141
stype: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

Comments
 (0)