http://example.org/boardgame-ontology#hasPublisher leaf node


URI

http://example.org/boardgame-ontology#hasPublisher

Label

hasPublisher

Usage

DOMAINPROPERTYRANGE
http://example.org/boardgame-ontology#Game http://example.org/boardgame-ontology#hasPublisher xsd:string

Implementation

@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 xsd: <http://www.w3.org/2001/XMLSchema#> .

<http://example.org/boardgame-ontology#hasPublisher> a rdf:Property ;
    rdfs:domain <http://example.org/boardgame-ontology#Game> ;
    rdfs:range xsd:string ;
    sh:maxCount 1 ;
    sh:minCount 1 .