schema: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
schema:CreativeWork , schema:Project schema:abstract xsd:string , rdf:langString

Implementation

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

schema:abstract a rdf:Property ;
    rdfs:label "abstract" ;
    schema:domainIncludes schema:CreativeWork,
        schema:Project ;
    schema: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]]." .