michielbdejong/solid-panes

View on GitHub
src/dashboard/preferencesFormText.ttl

Summary

Maintainability
Test Coverage
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>.
@prefix solid: <http://www.w3.org/ns/solid/terms#>.
@prefix ui: <http://www.w3.org/ns/ui#>.
@prefix : <#>.

:this <http://purl.org/dc/elements/1.1/title> "Basic preferences" ;
      a ui:Form ;
      ui:part :categorizeUser, :privateComment, :personalInformationHeading;
      ui:parts ( :personalInformationHeading :privateComment :categorizeUser ).

:personalInformationHeading a ui:Heading;
      ui:contents "Personal information".

:privateComment a ui:Comment;
      ui:contents "This information is private.".

:categorizeUser a ui:Classifier;
      ui:label "Level of user"; ui:property rdf:type ; ui:category solid:User.