ns1:publishedPostcode leaf node


URI

http://scigraph.springernature.com/ontologies/core/publishedPostcode

Label

Property: published postcode

Description

The :publishedPostcode property specifies the name of a postcode, as it appears in the context of an event, e.g. a publication.

Inherits from

Usage

DOMAINPROPERTYRANGE
ns1:Event ns1:publishedPostcode xsd:string

Implementation

@prefix ns1: <http://scigraph.springernature.com/ontologies/core/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

ns1:publishedPostcode a owl:DatatypeProperty ;
    rdfs:label "Property: published postcode" ;
    rdfs:comment "The :publishedPostcode property specifies the name of a postcode, as it appears in the context of an event, e.g. a publication."@en ;
    rdfs:domain ns1:Event ;
    rdfs:isDefinedBy ns1: ;
    rdfs:range xsd:string ;
    rdfs:subPropertyOf ns1:nameInfo .