ns1:body leaf node


URI

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

Label

Property: body

Description

The :body property specifies the main body content of a publication as a language string.

Usage

DOMAINPROPERTYRANGE
ns1:Publication ns1:body rdf:langString

Implementation

@prefix ns1: <http://scigraph.springernature.com/ontologies/core/> .
@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#> .

ns1:body a owl:DatatypeProperty ;
    rdfs:label "Property: body"@en ;
    rdfs:comment "The :body property specifies the main body content of a publication as a language string."@en ;
    rdfs:domain ns1:Publication ;
    rdfs:isDefinedBy ns1: ;
    rdfs:range rdf:langString .