schema1:abstract leaf node


URI

http://schema.org/abstract

Label

abstract

Description

An abstract is a short description that summarizes a [[Project]]. - An abstract is a short description that summarizes a [[CreativeWork]].

Usage

DOMAINPROPERTYRANGE
schema1:CreativeWork , schema1:Project schema1:abstract rdf:langString , 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 schema1: <http://schema.org/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

schema1:abstract a rdf:Property ;
    rdfs:label "abstract" ;
    schema1:domainIncludes schema1:CreativeWork,
        schema1:Project ;
    schema1:rangeIncludes rdf:langString,
        xsd:string ;
    rdfs:comment "An abstract is a short description that summarizes a [[CreativeWork]].",
        "An abstract is a short description that summarizes a [[Project]]." .