doap:Repository


URI

http://usefulinc.com/ns/doap#Repository

Label

Repository

Description

Source code repository.

Usage

Instances of doap:Repository can have the following properties:

PROPERTYTYPEDESCRIPTIONRANGE
From class doap:Repository
doap:anon-root rdf:Property Repository for anonymous access. rdfs:Literal
doap:browse rdf:Property Web browser interface to repository. owl:Thing
doap:location rdf:Property Location of a repository. owl:Thing
doap:repositoryOf rdf:Property The project that uses a repository. doap:Project
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

Implementation

@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:Repository a rdfs:Class ;
    rdfs:label "Úložiště"@cs,
        "Repository"@de,
        "Repository"@en,
        "Repositorio"@es,
        "Dépôt"@fr,
        "Repositório"@pt ;
    rdfs:comment "Úložiště zdrojových kódů."@cs,
        "Quellcode-Versionierungssystem."@de,
        "Source code repository."@en,
        "Repositorio del código fuente."@es,
        "Dépôt du code source."@fr,
        "Repositório do código fonte."@pt ;
    rdfs:isDefinedBy doap: .