Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion release/1.0.0/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Schema.org profile for specifying software application types, used for software

**Profile available at**: [https://w3id.org/software-types](https://w3id.org/software-types)

**Supported serializations**: JSON-LD (`application/ld+json`), Turtle (`text/turtle`) and HTML. See the code snippet below for an example on how to retrieve the profile in Turtle with a `curl` command:
**Supported serializations**: [JSON-LD](https://softwareUnderstanding.github.io/software_types/release/1.0.0/software-types.jsonld) (`application/ld+json`), [Turtle](https://softwareUnderstanding.github.io/software_types/release/1.0.0/software-types.ttl) (`text/turtle`) and [HTML](https://softwareunderstanding.github.io/software_types/release/1.0.0/). See the code snippet below for an example on how to retrieve the profile in Turtle with a `curl` command:

```
curl -sH "accept:text/turtle" -L https://w3id.org/software-types
Expand Down
17 changes: 17 additions & 0 deletions release/1.0.0/software-types.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,23 @@
# all of the following are newly proposed as part of https://github.com/codemeta/codemeta/issues/271
# and are eventually proposed upstream to schema.org (but that may take a while)

#metadata
stype: rdf:type owl:Ontology ;
owl:versionIRI <https://w3id.org/stype/1.0.0> ;
<http://purl.org/dc/terms/abstract> "This profile describes vocabulary terms for specifying software application types, used for software metadata descriptions."@en ;
<http://purl.org/dc/elements/1.1/description> "This profile describes vocabulary terms for specifying software application types, used for software metadata descriptions."@en ;
<http://purl.org/dc/elements/1.1/title> "The Software Types ontology"@en ;
<http://purl.org/dc/terms/created> "February 3rd, 2022"@en ;
<http://purl.org/dc/terms/creator> "Maarten van Gompel"@en ,
"Daniel Garijo"@en ;
<http://purl.org/dc/terms/license> <http://creativecommons.org/licenses/by/2.0/> ;
<http://purl.org/vocab/vann/preferredNamespacePrefix> "stype"@en ;
<http://purl.org/vocab/vann/preferredNamespaceUri> "https://w3id.org/software-types#" ;
<http://schema.org/citation> "Cite this vocabulary as: van Gompel, M and Garijo, D. The Software Input/Output Data ontology 1.0.0."@en ;
rdfs:comment "This profile describes vocabulary terms for specifying software application types, used for software metadata descriptions."@en ;
owl:versionInfo "1.0.0"@en .


stype:CommandLineApplication a rdfs:Class ;
rdfs:label "Command-Line Application" ;
:source <https://github.com/codemeta/codemeta/issues/271> ;
Expand Down