Skip to content

Instantly share code, notes, and snippets.

@phochste
Created July 21, 2022 09:56
Show Gist options
  • Save phochste/7837474d3b3de586e40b8a32aceb4bba to your computer and use it in GitHub Desktop.
Save phochste/7837474d3b3de586e40b8a32aceb4bba to your computer and use it in GitHub Desktop.
@prefix ui: <http://www.w3.org/ns/ui#>.
@prefix schema: <http://schema.org/>.
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>.
@prefix : <#>.
:this
a ui:Form;
ui:parts (
:NameField
:CheckField
:AgeField
:DateField
:Addresses
).
:NameField
a ui:SingleLineTextField;
ui:size 60;
ui:property schema:name;
ui:label "Name"@en.
:CheckField
a ui:BooleanField;
ui:property schema:checkMe;
ui:label "Check me!"@en.
:AgeField
a ui:IntegerField ;
ui:property schema:age;
ui:label "My age ..."@en.
:DateField
a ui:DateField;
ui:property schema:starts;
ui:label "My date..."@en.
:Addresses
a ui:Multiple;
ui:part :oneAddress ;
ui:property schema:addresses.
:oneAddress
a ui:SingleLineTextField;
ui:size 60;
ui:property schema:name;
ui:label "Name"@en.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment