Skip to content

Commit d2879ed

Browse files
authoredMar 25, 2025
Merge pull request #133 from amagimedia/ad-an30-11006
New properties for EpisodeCollection
2 parents 8bcc758 + e7820cb commit d2879ed

File tree

2 files changed

+68
-0
lines changed

2 files changed

+68
-0
lines changed
 

‎ebucore/amagi_ebucoreExtension.rdf

+34
Original file line numberDiff line numberDiff line change
@@ -509,4 +509,38 @@
509509
<rdfs:range rdf:resource="https://metadata.amagi.tv/ebu/amagi_ebucoreExtension#Cuepoint"/>
510510
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
511511
</rdf:Description>
512+
<rdf:Description rdf:about="https://metadata.amagi.tv/ebu/amagi_ebucoreExtension#hasChildCollection">
513+
<rdfs:label xml:lang="en">Has Child Collections</rdfs:label>
514+
<rdfs:domain rdf:resource="http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset"/>
515+
<rdfs:comment xml:lang="en">To denote whether a Series/Season can have Collections has its child</rdfs:comment>
516+
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#boolean"/>
517+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
518+
</rdf:Description>
519+
<rdf:Description rdf:about="https://metadata.amagi.tv/ebu/amagi_ebucoreExtension#isChildCollection">
520+
<rdfs:label xml:lang="en">Is Child Collection</rdfs:label>
521+
<rdfs:domain rdf:resource="http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset"/>
522+
<rdfs:comment xml:lang="en">To denote whether a Collection can belong to a Series/Season</rdfs:comment>
523+
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#boolean"/>
524+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
525+
</rdf:Description>
526+
<rdf:Description rdf:about="https://metadata.amagi.tv/ebu/amagi_ebucoreExtension#EpisodeCollection">
527+
<rdfs:subClassOf rdf:resource="http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Collection"/>
528+
<rdfs:comment xml:lang="en">Collection object that can be child of series/season</rdfs:comment>
529+
<rdfs:label xml:lang="en">EpisodeCollection</rdfs:label>
530+
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
531+
</rdf:Description>
532+
<rdf:Description rdf:about="https://metadata.amagi.tv/ebu/amagi_ebucoreExtension#isCollectionOfSeason">
533+
<rdfs:label xml:lang="en">Is Collection Of Season</rdfs:label>
534+
<rdfs:domain rdf:resource="http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#EpisodeCollection"/>
535+
<rdfs:comment xml:lang="en">To denote the collections of a Season</rdfs:comment>
536+
<rdfs:range rdf:resource="http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Season"/>
537+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
538+
</rdf:Description>
539+
<rdf:Description rdf:about="https://metadata.amagi.tv/ebu/amagi_ebucoreExtension#isCollectionOfSeries">
540+
<rdfs:label xml:lang="en">Is Collection Of Series</rdfs:label>
541+
<rdfs:domain rdf:resource="http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#EpisodeCollection"/>
542+
<rdfs:comment xml:lang="en">To denote the collections of a Series</rdfs:comment>
543+
<rdfs:range rdf:resource="http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Series"/>
544+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
545+
</rdf:Description>
512546
</rdf:RDF>

‎ebucore/amagi_ebucoreExtension.ttl

+34
Original file line numberDiff line numberDiff line change
@@ -610,3 +610,37 @@
610610
rdfs:comment "Custom keys of an entity"@en ;
611611
rdfs:domain <http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset> ;
612612
rdfs:label "Has Custom Key Value"@en .
613+
614+
<https://metadata.amagi.tv/ebu/amagi_ebucoreExtension#hasChildCollection>
615+
rdf:type rdf:Property ;
616+
rdfs:range <http://www.w3.org/2001/XMLSchema#boolean> ;
617+
rdfs:comment "To denote whether a Series/Season can have Collections has its child"@en ;
618+
rdfs:domain <http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset> ;
619+
rdfs:label "Has Child Collections"@en .
620+
621+
<https://metadata.amagi.tv/ebu/amagi_ebucoreExtension#isChildCollection>
622+
rdf:type rdf:Property ;
623+
rdfs:range <http://www.w3.org/2001/XMLSchema#boolean> ;
624+
rdfs:comment "To denote whether a Collection can belong to a Series/Season"@en ;
625+
rdfs:domain <http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Asset> ;
626+
rdfs:label "Is Child Collection"@en .
627+
628+
<https://metadata.amagi.tv/ebu/amagi_ebucoreExtension#isCollectionOfSeries>
629+
rdf:type rdf:Property ;
630+
rdfs:range <http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Series> ;
631+
rdfs:comment "To denote the collections of a Series"@en ;
632+
rdfs:domain <http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#EpisodeCollection> ;
633+
rdfs:label "Is Collection Of Series"@en .
634+
635+
<https://metadata.amagi.tv/ebu/amagi_ebucoreExtension#isCollectionOfSeason>
636+
rdf:type rdf:Property ;
637+
rdfs:range <http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Season> ;
638+
rdfs:comment "To denote the collections of a Season"@en ;
639+
rdfs:domain <http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#EpisodeCollection> ;
640+
rdfs:label "Is Collection Of Season"@en .
641+
642+
<https://metadata.amagi.tv/ebu/amagi_ebucoreExtension#EpisodeCollection>
643+
rdf:type rdfs:Class ;
644+
rdfs:label "EpisodeCollection"@en ;
645+
rdfs:comment "Collection object that can be child of series/season"@en ;
646+
rdfs:subClassOf <http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#Collection> .

0 commit comments

Comments
 (0)