as:mediaType leaf node


URI

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

Label

mediaType

Description

The MIME Media Type

Usage

DOMAINPROPERTYRANGE
Blank node (see implementation) as:mediaType xsd:string

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:mediaType a owl:DatatypeProperty,
        owl:FunctionalProperty ;
    rdfs:label "mediaType"@en ;
    rdfs:comment "The MIME Media Type"@en ;
    rdfs:domain [ a owl:Class ;
            owl:unionOf ( as:Link as:Object ) ] ;
    rdfs:range xsd:string .