Skip to content

Instantly share code, notes, and snippets.

@milt
Created May 28, 2019 15:31
Show Gist options
  • Save milt/c736ba37438092537b6c0127b8b835db to your computer and use it in GitHub Desktop.
Save milt/c736ba37438092537b6c0127b8b835db to your computer and use it in GitHub Desktop.
Possible xAPI ontology with sub-namespaces
@prefix : <https://w3id.org/xapi/ontology#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix verb: <https://w3id.org/xapi/ontology/verb#> .
@prefix actor: <https://w3id.org/xapi/ontology/actor#> .
@prefix agent: <https://w3id.org/xapi/ontology/agent#> .
@prefix group: <https://w3id.org/xapi/ontology/group#> .
@prefix dcterms: <http://purl.org/dc/terms/#> .
@prefix activity: <https://w3id.org/xapi/ontology/activity#> .
@prefix statement: <https://w3id.org/xapi/ontology/statement#> .
@prefix attachment: <https://w3id.org/xapi/ontology/attachment#> .
@prefix actor-account: <https://w3id.org/xapi/ontology/actor/account#> .
@prefix statement-ref: <https://w3id.org/xapi/ontology/statement-ref#> .
@prefix sub-statement: <https://w3id.org/xapi/ontology/sub-statement#> .
@prefix statement-result: <https://w3id.org/xapi/ontology/statement/result#> .
@prefix statement-context: <https://w3id.org/xapi/ontology/statement/context#> .
@prefix activity-definition: <https://w3id.org/xapi/ontology/activity/definition#> .
@prefix statement-result-score: <https://w3id.org/xapi/ontology/statement/result/score#> .
@prefix statement-context-context-activities: <https://w3id.org/xapi/ontology/statement/context/context-activities#> .
@prefix activity-definition-interaction-component: <https://w3id.org/xapi/ontology/activity/definition/interaction-component#> .
@base <https://w3id.org/xapi/ontology> .
<https://w3id.org/xapi/ontology> rdf:type owl:Ontology .
#################################################################
# Annotation properties
#################################################################
### http://www.w3.org/2002/07/owl#sameAs
owl:sameAs rdf:type owl:AnnotationProperty .
#################################################################
# Object Properties
#################################################################
### http://xmlns.com/foaf/0.1/account
foaf:account rdf:type owl:ObjectProperty .
### http://xmlns.com/foaf/0.1/member
foaf:member rdf:type owl:ObjectProperty .
### https://w3id.org/xapi/ontology/activity#definition
activity:definition rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ,
owl:InverseFunctionalProperty ;
rdfs:domain :Activity ;
rdfs:range activity:Definition .
### https://w3id.org/xapi/ontology/activity/definition#choices
activity-definition:choices rdf:type owl:ObjectProperty ;
rdfs:domain activity:Definition ;
rdfs:range activity-definition:InteractionComponent .
### https://w3id.org/xapi/ontology/activity/definition#extensions
activity-definition:extensions rdf:type owl:ObjectProperty ;
rdfs:domain activity:Definition ;
rdfs:range :Extensions .
### https://w3id.org/xapi/ontology/activity/definition#scale
activity-definition:scale rdf:type owl:ObjectProperty ;
rdfs:domain activity:Definition ;
rdfs:range activity-definition:InteractionComponent .
### https://w3id.org/xapi/ontology/activity/definition#source
activity-definition:source rdf:type owl:ObjectProperty ;
rdfs:domain activity:Definition ;
rdfs:range activity-definition:InteractionComponent .
### https://w3id.org/xapi/ontology/activity/definition#steps
activity-definition:steps rdf:type owl:ObjectProperty ;
rdfs:domain activity:Definition ;
rdfs:range activity-definition:InteractionComponent .
### https://w3id.org/xapi/ontology/activity/definition#target
activity-definition:target rdf:type owl:ObjectProperty ;
rdfs:domain activity:Definition ;
rdfs:range activity-definition:InteractionComponent .
### https://w3id.org/xapi/ontology/actor#account
actor:account rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf foaf:account ;
rdf:type owl:InverseFunctionalProperty ;
rdfs:range actor:Account .
### https://w3id.org/xapi/ontology/agent#account
agent:account rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf actor:account ;
rdfs:domain :Agent .
### https://w3id.org/xapi/ontology/group#account
group:account rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf actor:account ;
rdfs:domain :Group .
### https://w3id.org/xapi/ontology/group#member
group:member rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf foaf:member ;
rdfs:domain :Group ;
rdfs:range :Agent .
### https://w3id.org/xapi/ontology/statement#actor
statement:actor rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain :Statement ;
rdfs:range :Agent ,
:Group .
### https://w3id.org/xapi/ontology/statement#attachments
statement:attachments rdf:type owl:ObjectProperty ;
rdfs:domain :Statement ;
rdfs:range :Attachment .
### https://w3id.org/xapi/ontology/statement#authority
statement:authority rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain :Statement ;
rdfs:range :Agent ,
:Group .
### https://w3id.org/xapi/ontology/statement#context
statement:context rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ,
owl:InverseFunctionalProperty ;
rdfs:domain :Statement ;
rdfs:range statement:Context .
### https://w3id.org/xapi/ontology/statement#object
statement:object rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain :Statement ;
rdfs:range :Activity ,
:Agent ,
:Group ,
:StatementRef ,
:SubStatement .
### https://w3id.org/xapi/ontology/statement#result
statement:result rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ,
owl:InverseFunctionalProperty ;
rdfs:domain :Statement ;
rdfs:range statement:Result .
### https://w3id.org/xapi/ontology/statement#verb
statement:verb rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain :Statement ;
rdfs:range :Verb .
### https://w3id.org/xapi/ontology/statement/context#contextActivities
statement-context:contextActivities rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ,
owl:InverseFunctionalProperty ;
rdfs:domain statement:Context ;
rdfs:range statement-context:ContextActivities .
### https://w3id.org/xapi/ontology/statement/context#extensions
statement-context:extensions rdf:type owl:ObjectProperty ;
rdfs:domain statement:Context ;
rdfs:range :Extensions .
### https://w3id.org/xapi/ontology/statement/context#instructor
statement-context:instructor rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain statement:Context ;
rdfs:range :Agent ,
:Group .
### https://w3id.org/xapi/ontology/statement/context#statement
statement-context:statement rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain statement:Context ;
rdfs:range :StatementRef .
### https://w3id.org/xapi/ontology/statement/context#team
statement-context:team rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain statement:Context ;
rdfs:range :Group .
### https://w3id.org/xapi/ontology/statement/context/context-activities#category
statement-context-context-activities:category rdf:type owl:ObjectProperty ;
rdfs:domain statement-context:ContextActivities ;
rdfs:range :Activity .
### https://w3id.org/xapi/ontology/statement/context/context-activities#grouping
statement-context-context-activities:grouping rdf:type owl:ObjectProperty ;
rdfs:domain statement-context:ContextActivities ;
rdfs:range :Activity .
### https://w3id.org/xapi/ontology/statement/context/context-activities#other
statement-context-context-activities:other rdf:type owl:ObjectProperty ;
rdfs:domain statement-context:ContextActivities ;
rdfs:range :Activity .
### https://w3id.org/xapi/ontology/statement/context/context-activities#parent
statement-context-context-activities:parent rdf:type owl:ObjectProperty ;
rdfs:domain statement-context:ContextActivities ;
rdfs:range :Activity .
### https://w3id.org/xapi/ontology/statement/result#extensions
statement-result:extensions rdf:type owl:ObjectProperty ;
rdfs:domain statement:Result ;
rdfs:range :Extensions .
### https://w3id.org/xapi/ontology/statement/result#score
statement-result:score rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ,
owl:InverseFunctionalProperty ;
rdfs:domain statement:Result ;
rdfs:range statement-result:Score .
### https://w3id.org/xapi/ontology/sub-statement#actor
sub-statement:actor rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf statement:actor ;
rdfs:domain :SubStatement .
### https://w3id.org/xapi/ontology/sub-statement#attachments
sub-statement:attachments rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf statement:attachments ;
rdfs:domain :SubStatement .
### https://w3id.org/xapi/ontology/sub-statement#context
sub-statement:context rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf statement:context ;
rdfs:domain :SubStatement .
### https://w3id.org/xapi/ontology/sub-statement#object
sub-statement:object rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain :SubStatement ;
rdfs:range :Activity ,
:Agent ,
:Group ,
:StatementRef .
### https://w3id.org/xapi/ontology/sub-statement#result
sub-statement:result rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf statement:result ;
rdfs:domain :SubStatement .
### https://w3id.org/xapi/ontology/sub-statement#verb
sub-statement:verb rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf statement:verb ;
rdfs:domain :SubStatement .
#################################################################
# Data properties
#################################################################
### http://xmlns.com/foaf/0.1/accountName
foaf:accountName rdf:type owl:DatatypeProperty .
### http://xmlns.com/foaf/0.1/accountServiceHomepage
foaf:accountServiceHomepage rdf:type owl:DatatypeProperty .
### http://xmlns.com/foaf/0.1/mbox
foaf:mbox rdf:type owl:DatatypeProperty .
### http://xmlns.com/foaf/0.1/mbox_sha1sum
foaf:mbox_sha1sum rdf:type owl:DatatypeProperty .
### http://xmlns.com/foaf/0.1/name
foaf:name rdf:type owl:DatatypeProperty .
### http://xmlns.com/foaf/0.1/openid
foaf:openid rdf:type owl:DatatypeProperty .
### https://w3id.org/xapi/ontology#objectType
:objectType rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain :Activity ,
:Agent ,
:Group ,
:StatementRef ,
:SubStatement .
### https://w3id.org/xapi/ontology/activity#id
activity:id rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain :Activity ;
rdfs:range xsd:anyURI .
### https://w3id.org/xapi/ontology/activity/definition#correctResponsesPattern
activity-definition:correctResponsesPattern rdf:type owl:DatatypeProperty ;
rdfs:domain activity:Definition ;
rdfs:range xsd:string .
### https://w3id.org/xapi/ontology/activity/definition#description
activity-definition:description rdf:type owl:DatatypeProperty ;
rdfs:domain activity:Definition ;
rdfs:range rdf:PlainLiteral .
### https://w3id.org/xapi/ontology/activity/definition#interactionType
activity-definition:interactionType rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain activity:Definition ;
rdfs:range xsd:string .
### https://w3id.org/xapi/ontology/activity/definition#moreInfo
activity-definition:moreInfo rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain activity:Definition ;
rdfs:range xsd:anyURI .
### https://w3id.org/xapi/ontology/activity/definition#name
activity-definition:name rdf:type owl:DatatypeProperty ;
rdfs:domain activity:Definition ;
rdfs:range rdf:PlainLiteral .
### https://w3id.org/xapi/ontology/activity/definition#type
activity-definition:type rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain activity:Definition ;
rdfs:range xsd:anyURI .
### https://w3id.org/xapi/ontology/activity/definition/interaction-component#description
activity-definition-interaction-component:description rdf:type owl:DatatypeProperty ;
rdfs:domain activity-definition:InteractionComponent ;
rdfs:range rdf:PlainLiteral .
### https://w3id.org/xapi/ontology/activity/definition/interaction-component#id
activity-definition-interaction-component:id rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain activity-definition:InteractionComponent ;
rdfs:range xsd:string .
### https://w3id.org/xapi/ontology/actor#mbox
actor:mbox rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf foaf:mbox ;
rdf:type owl:FunctionalProperty .
### https://w3id.org/xapi/ontology/actor#mbox_sha1sum
actor:mbox_sha1sum rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf foaf:mbox_sha1sum ;
rdf:type owl:FunctionalProperty .
### https://w3id.org/xapi/ontology/actor#name
actor:name rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf foaf:name ;
rdf:type owl:FunctionalProperty .
### https://w3id.org/xapi/ontology/actor#openid
actor:openid rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf foaf:openid ;
rdf:type owl:FunctionalProperty .
### https://w3id.org/xapi/ontology/actor/account#homePage
actor-account:homePage rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf foaf:accountServiceHomepage ;
rdf:type owl:FunctionalProperty ;
rdfs:domain actor:Account .
### https://w3id.org/xapi/ontology/actor/account#name
actor-account:name rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf foaf:accountName ;
rdf:type owl:FunctionalProperty ;
rdfs:domain actor:Account .
### https://w3id.org/xapi/ontology/agent#mbox
agent:mbox rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf actor:mbox ;
rdfs:domain :Agent .
### https://w3id.org/xapi/ontology/agent#mbox_sha1sum
agent:mbox_sha1sum rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf actor:mbox_sha1sum ;
rdfs:domain :Agent .
### https://w3id.org/xapi/ontology/agent#name
agent:name rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf actor:name ;
rdfs:domain :Agent .
### https://w3id.org/xapi/ontology/agent#openid
agent:openid rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf actor:openid ;
rdfs:domain :Agent .
### https://w3id.org/xapi/ontology/attachment#contentType
attachment:contentType rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain :Attachment ;
rdfs:range xsd:string .
### https://w3id.org/xapi/ontology/attachment#description
attachment:description rdf:type owl:DatatypeProperty ;
rdfs:domain :Attachment ;
rdfs:range rdf:PlainLiteral .
### https://w3id.org/xapi/ontology/attachment#display
attachment:display rdf:type owl:DatatypeProperty ;
rdfs:domain :Attachment ;
rdfs:range rdf:PlainLiteral .
### https://w3id.org/xapi/ontology/attachment#fileUrl
attachment:fileUrl rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain :Attachment ;
rdfs:range xsd:anyURI .
### https://w3id.org/xapi/ontology/attachment#length
attachment:length rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain :Attachment ;
rdfs:range xsd:integer .
### https://w3id.org/xapi/ontology/attachment#sha2
attachment:sha2 rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain :Attachment ;
rdfs:range xsd:string .
### https://w3id.org/xapi/ontology/attachment#usageType
attachment:usageType rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain :Attachment ;
rdfs:range xsd:anyURI .
### https://w3id.org/xapi/ontology/group#mbox
group:mbox rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf actor:mbox ;
rdfs:domain :Group .
### https://w3id.org/xapi/ontology/group#mbox_sha1sum
group:mbox_sha1sum rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf actor:mbox_sha1sum ;
rdfs:domain :Group .
### https://w3id.org/xapi/ontology/group#name
group:name rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf actor:name ;
rdfs:domain :Group .
### https://w3id.org/xapi/ontology/group#openid
group:openid rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf actor:openid ;
rdfs:domain :Group .
### https://w3id.org/xapi/ontology/statement#id
statement:id rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain :Statement ;
rdfs:range xsd:string .
### https://w3id.org/xapi/ontology/statement#stored
statement:stored rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain :Statement ;
rdfs:range xsd:dateTimeStamp .
### https://w3id.org/xapi/ontology/statement#timestamp
statement:timestamp rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain :Statement ;
rdfs:range xsd:dateTimeStamp .
### https://w3id.org/xapi/ontology/statement#version
statement:version rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain :Statement ;
rdfs:range xsd:string .
### https://w3id.org/xapi/ontology/statement-ref#id
statement-ref:id rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain :StatementRef ;
rdfs:range xsd:string .
### https://w3id.org/xapi/ontology/statement/context#language
statement-context:language rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain statement:Context ;
rdfs:range xsd:string .
### https://w3id.org/xapi/ontology/statement/context#platform
statement-context:platform rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain statement:Context ;
rdfs:range xsd:string .
### https://w3id.org/xapi/ontology/statement/context#registration
statement-context:registration rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain statement:Context ;
rdfs:range xsd:string .
### https://w3id.org/xapi/ontology/statement/context#revision
statement-context:revision rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain statement:Context ;
rdfs:range xsd:string .
### https://w3id.org/xapi/ontology/statement/result#completion
statement-result:completion rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain statement:Result ;
rdfs:range xsd:boolean .
### https://w3id.org/xapi/ontology/statement/result#duration
statement-result:duration rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain statement:Result ;
rdfs:range xsd:string .
### https://w3id.org/xapi/ontology/statement/result#response
statement-result:response rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain statement:Result ;
rdfs:range xsd:string .
### https://w3id.org/xapi/ontology/statement/result#success
statement-result:success rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain statement:Result ;
rdfs:range xsd:boolean .
### https://w3id.org/xapi/ontology/statement/result/score#max
statement-result-score:max rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain statement-result:Score ;
rdfs:range xsd:decimal .
### https://w3id.org/xapi/ontology/statement/result/score#min
statement-result-score:min rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain statement-result:Score ;
rdfs:range xsd:decimal .
### https://w3id.org/xapi/ontology/statement/result/score#raw
statement-result-score:raw rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain statement-result:Score ;
rdfs:range xsd:decimal .
### https://w3id.org/xapi/ontology/statement/result/score#scaled
statement-result-score:scaled rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain statement-result:Score ;
rdfs:range xsd:decimal .
### https://w3id.org/xapi/ontology/sub-statement#timestamp
sub-statement:timestamp rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf statement:timestamp ;
rdfs:domain :SubStatement .
### https://w3id.org/xapi/ontology/verb#display
verb:display rdf:type owl:DatatypeProperty ;
rdfs:domain :Verb ;
rdfs:range rdf:PlainLiteral .
### https://w3id.org/xapi/ontology/verb#id
verb:id rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain :Verb ;
rdfs:range xsd:anyURI .
#################################################################
# Classes
#################################################################
### http://xmlns.com/foaf/0.1/Agent
foaf:Agent rdf:type owl:Class .
### http://xmlns.com/foaf/0.1/Group
foaf:Group rdf:type owl:Class .
### https://w3id.org/xapi/ontology#Activity
:Activity rdf:type owl:Class .
### https://w3id.org/xapi/ontology#Agent
:Agent rdf:type owl:Class ;
owl:sameAs foaf:Agent .
### https://w3id.org/xapi/ontology#Attachment
:Attachment rdf:type owl:Class .
### https://w3id.org/xapi/ontology#Extensions
:Extensions rdf:type owl:Class .
### https://w3id.org/xapi/ontology#Group
:Group rdf:type owl:Class ;
owl:sameAs foaf:Group .
### https://w3id.org/xapi/ontology#Statement
:Statement rdf:type owl:Class .
### https://w3id.org/xapi/ontology#StatementRef
:StatementRef rdf:type owl:Class .
### https://w3id.org/xapi/ontology#SubStatement
:SubStatement rdf:type owl:Class ;
owl:sameAs :Statement .
### https://w3id.org/xapi/ontology#Verb
:Verb rdf:type owl:Class .
### https://w3id.org/xapi/ontology/activity#Definition
activity:Definition rdf:type owl:Class .
### https://w3id.org/xapi/ontology/activity/definition#InteractionComponent
activity-definition:InteractionComponent rdf:type owl:Class .
### https://w3id.org/xapi/ontology/actor#Account
actor:Account rdf:type owl:Class .
### https://w3id.org/xapi/ontology/statement#Context
statement:Context rdf:type owl:Class .
### https://w3id.org/xapi/ontology/statement#Result
statement:Result rdf:type owl:Class .
### https://w3id.org/xapi/ontology/statement/context#ContextActivities
statement-context:ContextActivities rdf:type owl:Class .
### https://w3id.org/xapi/ontology/statement/result#Score
statement-result:Score rdf:type owl:Class .
### Generated by the OWL API (version 4.5.9.2019-02-01T07:24:44Z) https://github.com/owlcs/owlapi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment