-
Notifications
You must be signed in to change notification settings - Fork 1
/
mudchar.ttl
32 lines (28 loc) · 1.42 KB
/
mudchar.ttl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix time: <http://www.w3.org/2006/time#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix vgo: <http://purl.org/net/videogameontology#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix mud: <https://raw.githubusercontent.com/Multi-User-Domain/vocab/main/mud.ttl#> .
@prefix mudlogic: <https://raw.githubusercontent.com/Multi-User-Domain/vocab/main/mudlogic.ttl#> .
@prefix mudchar: <https://raw.githubusercontent.com/Multi-User-Domain/vocab/main/mudchar.ttl#> .
mudchar: rdf:type owl:Ontology ;
# Description
dcterms:title "Multi-User Domain Characters ontology" ;
dcterms:description """
The Base implementation for Characters and Parties in Multi-User Domain. Intended to be the base for all interactive living fauna
""" ;
# Ownership
dcterms:license <http://creativecommons.org/licenses/by/4.0/> ;
dcterms:creator <https://calum.inrupt.net/profile/card#me> .
mudchar:Party a rdfs:Class ;
rdfs:subclassOf foaf:Group ;
rdfs:label "Party"@en ;
rdfs:comment "A Group of characters in a single unit, in the same physical location"@en .
mudchar:Character a rdfs:Class ;
rdfs:subClassOf vgo:Character ;
rdfs:label "Character"@en ;
rdfs:label "Personnage"@fr .