http://usefulinc.com/ns/doap#Version
Instances of doap:Version can have the following properties:
PROPERTY | TYPE | DESCRIPTION | RANGE |
---|---|---|---|
From class doap:Version | |||
doap:file-release | rdf:Property | URI of download associated with this release. | owl:Thing |
doap:os | rdf:Property | Sistema operativo a que o projeto está limitado. Omita esta propriedade se o projeto não é condicionado pelo SO usado. - Operating system that a project is limited to. Omit this property if the project is not OS-specific. | rdfs:Literal |
doap:platform | rdf:Property | Indicator of software platform (non-OS specific), e.g. Java, Firefox, ECMA CLR | rdfs:Literal |
doap:revision | rdf:Property | Revision identifier of a software release. | rdfs:Literal |
From class owl:Thing | |||
doap:created | rdf:Property | Date when something was created, in YYYY-MM-DD form. e.g. 2004-04-05 | rdfs:Literal |
doap:description | rdf:Property | Plain text description of a project, of 2-4 sentences in length. | rdfs:Literal |
doap:license | rdf:Property | The URI of an RDF description of the license the software is distributed under. E.g. a SPDX reference | owl:Thing |
doap:name | rdf:Property | A name of something. | rdfs:Literal |
doap:shortdesc | rdf:Property | Short (8 or 9 words) plain text description of a project. | rdfs:Literal |
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix doap: <http://usefulinc.com/ns/doap#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix void: <http://rdfs.org/ns/void#> .
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
doap:Version a rdfs:Class ;
rdfs:label "Verze"@cs,
"Version"@de,
"Version"@en,
"Versión"@es,
"Version"@fr,
"Versão"@pt ;
rdfs:comment "Informace o uvolněné verzi projektu."@cs,
"Versionsinformation eines Projekt Releases."@de,
"Version information of a project release."@en,
"Información sobre la versión de un release del proyecto."@es,
"Détails sur une version d'une release d'un projet."@fr,
"Informação sobre a versão do projeto lançado."@pt ;
rdfs:isDefinedBy doap: .