solid-panes
Version:
Solid-compatible Panes: applets and views for the mashlib and databrowser
36 lines (31 loc) • 1.41 kB
text/turtle
#>.
#>.
#>.
#>.
#>.
#>.
solid:User a rdfs:Class;
rdfs:label "user"@en, "utilisateur"@fr;
rdfs:comment """Any person who might use a Solid-based system""";
rdfs:subClassOf foaf:Person, schema:Person, vcard:Individual.
# Since these options are opt-in, it is a bit strange to have new users opt in
# That they are new users - also we do not use this class for anything specific
# yet
# solid:NewUser a rdfs:Class;
# rdfs:label "new user"@en;
# rdfs:comment """A person who might use a Solid-based system who has a low
# level of familiarity with technical details.""";
# rdfs:subClassOf solid:User.
solid:PowerUser a rdfs:Class;
rdfs:label "power user"@en;
rdfs:comment """A person who might use a Solid-based system
who is prepared to be given a more complex interface in order
to be provided with more pwerful features.""";
rdfs:subClassOf solid:User.
solid:Developer a rdfs:Class;
rdfs:label "Developer";
rdfs:comment """Any person who might use a Solid-based system,
who has software development skills.""";
rdfs:subClassOf solid:User.