sdo:mainEntityOfPage leaf node


URI

https://schema.org/mainEntityOfPage

Label

mainEntityOfPage

Description

Indicates a page (or other CreativeWork) for which this thing is the main entity being described. See [background notes](/docs/datamodel.html#mainEntityBackground) for details.

Usage

DOMAINPROPERTYRANGE
sdo:Thing sdo:mainEntityOfPage sdo:URL

Implementation

@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sdo: <https://schema.org/> .

sdo:mainEntityOfPage a rdf:Property ;
    rdfs:label "mainEntityOfPage"@en,
        "hoofdentiteit van een pagina"@nl ;
    rdfs:comment "Indicates a page (or other CreativeWork) for which this thing is the main entity being described. See [background notes](/docs/datamodel.html#mainEntityBackground) for details."@en,
        "Geeft een pagina (of ander CreativeWork) aan waarvoor dit ding de hoofdentiteit is die wordt beschreven. Zie [achtergrondnotities](/docs/datamodel.html#mainEntityBackground) voor details."@nl ;
    rdfs:domain sdo:Thing ;
    rdfs:range sdo:URL .