Created
July 21, 2022 09:56
-
-
Save phochste/7837474d3b3de586e40b8a32aceb4bba to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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