;;; -*-Scheme-*- ;;;; TAMI schema (ns-base-uri "http://dig.csail.mit.edu/TAMI/tami-schema") (ns-prefix sorn: "http://dig.csail.mit.edu/TAMI/sorn-schema#") (ns-prefix u: "http://niem.gov/niem/universal/0.1#") ;(ns-prefix s: "http://niem.gov/niem/structures/0.1#") (ns-prefix c: "http://niem.gov/niem/common/0.1#") (ns-prefix j: "http://www.niem.gov/niem/domains/justice/0.1#") ;(ns-prefix emer: "http://www.niem.gov/niem/domains/emergency-management/0.1#") ;(ns-prefix int: "http://www.niem.gov/niem/domains/intelligence/0.1#") (ns-prefix air: "http://www.megginson.com/exp/ns/airports#") (nss-class :Entity) (nss-class :Person (nss-superclass :Entity) (nss-property u:personGivenName rdfs:Literal) (nss-property u:personMiddleName rdfs:Literal) (nss-property u:personSurName rdfs:Literal) (nss-property :birthDate xsd:Date) (nss-property :homeAddress :Location) (nss-property :employment :Employment)) (nss-class :Official (nss-superclass :Person)) (nss-class :Subject (nss-superclass :Person)) (nss-class :Suspect (nss-superclass :Subject)) (nss-class :Victim (nss-superclass :Subject)) (nss-class :Location (nss-property u:locationAddress rdfs:Literal) (nss-property u:locationCityName rdfs:Literal) (nss-property u:locationStateName rdfs:Literal) (nss-property u:locationPostalCodeID rdfs:Literal)) (nss-class :Organization (nss-superclass :Entity) (nss-property dc:title rdfs:Literal) (nss-property dc:identifier rdfs:Resource) (nss-property :partOf :Organization)) (nss-class :Office (nss-superclass :Entity) (nss-property dc:title rdfs:Literal) (nss-property :address :Location) (nss-property :organization :Organization)) (nss-class :Employment (nss-property :position (nss-class #f)) (nss-property :organization :Organization) (nss-property :office :Office)) (nss-class :Database (nss-property :owner :Entity)) (nss-class :DataRecord (nss-property :source :Database)) (nss-class :Commercial-database (nss-superclass :Database)) (nss-class :PassengerNameRecord (nss-superclass :DataRecord) (nss-property :passenger :Person) (nss-property :flight :Flight)) (nss-class :Flight (nss-property :number rdfs:Literal) (nss-property :origin air:Iata) (nss-property :destination air:Iata)) (nss-class :Event (nss-property dc:date rdfs:Literal) (nss-property :antecedent :Event) (nss-property :logOwner :Entity)) (nss-class :Search (nss-superclass :Event) (nss-property :query (nss-class #f)) (nss-property :result :SearchResult)) (nss-class :SearchResult (nss-superclass :Transfer) (nss-property :source :Database)) (nss-class :Transfer (nss-superclass :Event) (nss-property :sender :Entity) (nss-property :recipient :Entity) (nss-property :content rdfs:Resource) (nss-property sorn:source sorn:Data-source) (nss-property sorn:category sorn:Data-category) (nss-property sorn:purpose sorn:Authorized-purpose)) (nss-class :Assignment (nss-superclass :Event) (nss-property :assigner :Entity) (nss-property :assignee :Entity) (nss-property :subject :Event) (nss-property :content rdfs:Resource)) (nss-class :CaseOpening (nss-superclass :Event) (nss-property :opens :Case)) (nss-class :Case (nss-property :isOpenedBy :CaseOpening) (nss-property c:caseTrackingID rdfs:Literal) (nss-property c:caseCategory c:CaseCategoryText) (nss-property :agent :Official)) (nss-class :WarrantIssue (nss-superclass :Event) (nss-property :subject :KKW) (nss-property j:initiatingAttorney :Official) (nss-property j:judge :Official) (nss-property j:arrestWarrant j:ArrestWarrant)) (nss-class j:Arrest (nss-superclass :Event) (nss-property j:arrestWarrant j:ArrestWarrant) (nss-property j:arrestOfficial :Official) (nss-property j:arrestSubject :Subject) (nss-property j:arrestLocation :Location) (nss-property j:arrestCharge :Statute) (nss-property j:arrestSubjectRightsReadIndicator xsd:Boolean)) (nss-class j:ArrestWarrant (nss-property c:caseCategory c:CaseCategoryText) (nss-property j:caseCourt :Court) (nss-property j:arrestSubject :Subject) (nss-property j:data :ArrestData)) (nss-class :Statute) (nss-property :statute :Statute)