Legal-RDF:DramaContext

From LexmlWiki

Class Relations
Superclasses
Subclasses
Unions
None
Disjoints
None
Synonyms
None
Antonyms
None
Ranges
None
See Also
None

An event (act or activity) that represents a context which may have a bearing on the interpretation of other information nodes.

Model: Semantics Model

Date: 2006-10
Subclasses are a singular event, or a series of events, represented as a chronology, i.e., "an arrangement of events in time" [wordnet].
Predicate ObjectsRefines

Actor, a ActorContextContributor

An actor involved with the dramatic event (act or activity).

Prop, a PropContextContributor

A prop involved with the event (act or activity).

Role, a RoleContext Format

A role involved with the event (act or activity).

Scene, a SceneContextCoverage

A scene (time or place) involved with the event (act or activity).

Theme, a ThemeContextSubject

A theme related to the event (act or activitiy.

Text AttributesRefines
Examples
<!-- example script -->
actor = new ActorContext('Actor01');
actor.Drama = new DramaContext("Drama01");
actor.Prop  = new PropContext("Prop01");
actor.Role  = new RoleContext('Role01');
actor.Scene = new SceneContext("Scene01');
actor.Scene.Location = new LocationNode("Location01");
actor.Scene.Setting  = new SettingNode("Setting01");
actor.Theme  = new ThemeContext("Theme01");

actor.Drama.Type = Ontology("DraftingActivity")
actor.Prop.Type  = Ontology("ComputerProduct");
actor.Role.Type  = Ontology("AuthorRole");
actor.Scene.Type = Ontology("HomeOffice");
actor.Scene.Location.Type = Ontology("MediaRoom");
actor.Scene.Setting.Type  = Ontology("FallSetting");
actor.Theme.Type  = Ontology("DomainOntology")

actor.Role.Performer = actor.Scene.Actor 
  = actor.Prop.Actor = actor.Drama.Drafter = actor;
actor.Role.Prop = actor.Scene.Prop = actor.Prop;
actor.Scene.Role = actor.Role; 
actor.Drama.Theme = actor.Theme;
2006-10 Definition
<owl:Class rdf:ID='&lgl;DramaContext'>
   <lgl:model rdf:resource='&lgl;SemanticModel'/>
   <rdfs:subClassOf rdf:resource='&lgl;ContextNode'/>

   <owl:ObjectProperty rdf:about='&lgl;Drama'>
      <rdfs:subPropertyOf rdf:resource='&lgl;Date'/>
      <rdfs:domain rdf:resource='&lgl;DramaContext'/>
      <rdfs:range rdf:resource='&lgl;ActorContext'/>
   </owl:ObjectProperty>
   <owl:ObjectProperty rdf:about='&lgl;Role'>
      <rdfs:subPropertyOf rdf:resource='&lgl;Format'/>
      <rdfs:domain rdf:resource='&lgl;DramaContext'/>
      <rdfs:range rdf:resource='&lgl;RoleContext'/>
   </owl:ObjectProperty>
   <owl:ObjectProperty rdf:about='&lgl;Scene'>
      <rdfs:subPropertyOf rdf:resource='&lgl;Coverage'/>
      <rdfs:domain rdf:resource='&lgl;DramaContext'/>
      <rdfs:range rdf:resource='&lgl;SceneContext'/>
   </owl:ObjectProperty>
   <owl:ObjectProperty rdf:about='&lgl;Prop'>
      <rdfs:subPropertyOf rdf:resource='&lgl;Contributor'/>
      <rdfs:domain rdf:resource='&lgl;DramaContext'/>
      <rdfs:range rdf:resource='&lgl;PropContext'/>
   </owl:ObjectProperty>
   <owl:ObjectProperty rdf:about='&lgl;Theme'>
      <rdfs:subPropertyOf rdf:resource='&lgl;Subject'/>
      <rdfs:domain rdf:resource='&lgl;DramaContext'/>
      <rdfs:range rdf:resource='&lgl;ThemeContext'/>
   </owl:ObjectProperty>
</owl:Class>