-
Notifications
You must be signed in to change notification settings - Fork 1
/
mudacct.ttl
35 lines (31 loc) · 1.5 KB
/
mudacct.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
33
34
35
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix ldp: <http://www.w3.org/ns/ldp#> .
@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 schema: <http://schema.org/> .
@prefix mudacct: <https://raw.githubusercontent.com/Multi-User-Domain/vocab/main/mudacct.ttl#> .
mudacct: rdf:type owl:Ontology ;
# Description
dcterms:title "Multi-User Domain Account ontology" ;
dcterms:description """
User data is stored and managed using a standard which leverages this ontology
""" ;
# Ownership
dcterms:license <http://creativecommons.org/licenses/by/4.0/> ;
dcterms:creator <https://calum.inrupt.net/profile/card#me> .
mudacct:Account a rdfs:Class ;
rdfs:subclassOf foaf:OnlineGamingAccount ;
rdfs:label "Multi-User Domain Account"@en ;
rdfs:comment "The users' account identifies them while they traverse the MUD"@en .
mudacct:characterList a rdf:Property ;
rdfs:label "characters list"@en ;
rdfs:label "liste de personnages"@fr ;
rdfs:comment "a list of the Characters owned by an associated Account"@en ;
rdfs:comment "une liste de personnages appartenant à un compte"@fr ;
rdfs:domain mudacct:Account ;
rdfs:range ldp:Container, schema:URL .