Skip to content

Commit

Permalink
Merge remote-tracking branch 'refs/remotes/origin/main'
Browse files Browse the repository at this point in the history
  • Loading branch information
danbri committed May 17, 2023
2 parents b5530af + a789c41 commit 357d48e
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions data/schema.ttl
Expand Up @@ -1780,7 +1780,7 @@ See also the <a href="/docs/hotels.html">dedicated document on the use of schema
:MediaObject a rdfs:Class ;
rdfs:label "MediaObject" ;
rdfs:comment "A media object, such as an image, video, or audio object embedded in a web page or a downloadable dataset, i.e. DataDownload. Note that a creative work may have many media objects associated with it on the same web page. For example, a page about a single song (MusicRecording) may have a music video (VideoObject), and a high and low bandwidth audio stream (2 [[AudioObject]]s)." ;
rdfs:comment "A media object, such as an image, video, audio, or text object embedded in a web page or a downloadable dataset i.e. DataDownload. Note that a creative work may have many media objects associated with it on the same web page. For example, a page about a single song (MusicRecording) may have a music video (VideoObject), and a high and low bandwidth audio stream (2 AudioObject's)." ;
rdfs:subClassOf :CreativeWork .
:MediaSubscription a rdfs:Class ;
Expand Down Expand Up @@ -3004,6 +3004,12 @@ See also the <a href="/docs/hotels.html">dedicated document on the use of schema
rdfs:comment "A file composed primarily of text." ;
rdfs:subClassOf :DigitalDocument .
:TextObject a rdfs:Class ;
rdfs:label "TextObject" ;
rdfs:comment "A text file. The text can be unformatted or contain markup, html, etc." ;
rdfs:subClassOf :MediaObject ;
owl:equivalentClass <http://purl.org/dc/dcmitype/Text> .
:TheaterEvent a rdfs:Class ;
rdfs:label "TheaterEvent" ;
rdfs:comment "Event type: Theater performance." ;
Expand Down Expand Up @@ -9693,7 +9699,8 @@ we define a supporting type, [[SpeakableSpecification]] which is defined to be
:description a rdf:Property ;
rdfs:label "description" ;
:domainIncludes :Thing ;
:rangeIncludes :Text ;
:rangeIncludes :Text,
:TextObject ;
rdfs:comment "A description of the item." ;
owl:equivalentProperty dc:description .

Expand Down

0 comments on commit 357d48e

Please sign in to comment.