as:content leaf node


URI

http://www.w3.org/ns/activitystreams#content

Label

content

Description

The content of the object.

Usage

DOMAINPROPERTYRANGE
as:Object , Blank node (see implementation) as:content owl:Thing (inferred)

Implementation

@prefix as: <http://www.w3.org/ns/activitystreams#> .
@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#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

as:content a owl:DatatypeProperty ;
    rdfs:label "content"@en ;
    rdfs:comment "The content of the object."@en ;
    rdfs:domain as:Object ;
    rdfs:range [ a owl:Class ;
            owl:unionOf ( rdf:langString xsd:string ) ] .