Skip to content

Commit 0b1ae6c

Browse files
committed
lowercase properties (#43)
1 parent d60d2c5 commit 0b1ae6c

1 file changed

Lines changed: 48 additions & 48 deletions

File tree

shapes/chat.ttl

Lines changed: 48 additions & 48 deletions
Original file line numberDiff line numberDiff line change
@@ -28,29 +28,29 @@ chat_shape:ChatChannelShape a sh:NodeShape ;
2828
dc:source <https://github.com/SolidOS/chat-pane/blob/main/shapes/chat-shapes.ttl> ;
2929
prov:wasDerivedFrom <https://github.com/SolidOS/chat-pane/blob/main/shapes/chat-shapes.ttl> ;
3030
sh:codeIdentifier "ChatChannel" ;
31-
sh:property chat_shape:ChatChannelShape_type,
32-
chat_shape:ChatChannelShape_author,
33-
chat_shape:ChatChannelShape_title,
34-
chat_shape:ChatChannelShape_createdDate,
35-
chat_shape:ChatChannelShape_sharedPreferences,
36-
chat_shape:ChatChannelShape_participation .
37-
38-
chat_shape:ChatChannelShape_type a sh:PropertyShape ;
31+
sh:property chat_shape:chatchannelshape_type,
32+
chat_shape:chatchannelshape_author,
33+
chat_shape:chatchannelshape_title,
34+
chat_shape:chatchannelshape_createddate,
35+
chat_shape:chatchannelshape_sharedpreferences,
36+
chat_shape:chatchannelshape_participation .
37+
38+
chat_shape:chatchannelshape_type a sh:PropertyShape ;
3939
sh:path rdf:type ;
4040
sh:value mee:LongChat ;
4141
sh:minCount 1 ;
4242
sh:name "Type" ;
4343
sh:description "Specifies that the node must be of type LongChat." ;
4444
sh:codeIdentifier "type" .
4545

46-
chat_shape:ChatChannelShape_author a sh:PropertyShape ;
46+
chat_shape:chatchannelshape_author a sh:PropertyShape ;
4747
sh:path dc:author ;
4848
sh:minCount 1 ;
4949
sh:name "Author" ;
5050
sh:description "The author of the chat channel." ;
5151
sh:codeIdentifier "author" .
5252

53-
chat_shape:ChatChannelShape_title a sh:PropertyShape ;
53+
chat_shape:chatchannelshape_title a sh:PropertyShape ;
5454
sh:path dc:title ;
5555
sh:datatype xsd:string ;
5656
sh:minCount 1 ;
@@ -59,7 +59,7 @@ chat_shape:ChatChannelShape_title a sh:PropertyShape ;
5959
sh:description "The title of the chat channel." ;
6060
sh:codeIdentifier "title" .
6161

62-
chat_shape:ChatChannelShape_createdDate a sh:PropertyShape ;
62+
chat_shape:chatchannelshape_createddate a sh:PropertyShape ;
6363
sh:path dc:created ;
6464
sh:datatype xsd:dateTime ;
6565
sh:minCount 1 ;
@@ -68,15 +68,15 @@ chat_shape:ChatChannelShape_createdDate a sh:PropertyShape ;
6868
sh:description "The creation date of the chat channel." ;
6969
sh:codeIdentifier "createdDate" .
7070

71-
chat_shape:ChatChannelShape_sharedPreferences a sh:PropertyShape ;
71+
chat_shape:chatchannelshape_sharedpreferences a sh:PropertyShape ;
7272
sh:path ui:sharedPreferences ;
7373
sh:node chat_shape:ChatSharedPreferencesShape ;
7474
sh:minCount 0 ;
7575
sh:name "Shared Preferences" ;
7676
sh:description "References user interface preferences shared in the chat." ;
7777
sh:codeIdentifier "sharedPreferences" .
7878

79-
chat_shape:ChatChannelShape_participation a sh:PropertyShape ;
79+
chat_shape:chatchannelshape_participation a sh:PropertyShape ;
8080
sh:path flow:participation ;
8181
sh:node chat_shape:ChatParticipationShape ;
8282
sh:name "Participation" ;
@@ -94,13 +94,13 @@ chat_shape:ChatMessageShape a sh:NodeShape ;
9494
dc:source <https://github.com/SolidOS/chat-pane/blob/main/shapes/chat-shapes.ttl> ;
9595
prov:wasDerivedFrom <https://github.com/SolidOS/chat-pane/blob/main/shapes/chat-shapes.ttl> ;
9696
sh:codeIdentifier "ChatMessage" ;
97-
sh:property chat_shape:ChatMessageShape_createdDate,
98-
chat_shape:ChatMessageShape_author,
99-
chat_shape:ChatMessageShape_content
97+
sh:property chat_shape:chatmessageshape_createddate,
98+
chat_shape:chatmessageshape_author,
99+
chat_shape:chatmessageshape_content
100100
.
101-
# chat_shape:ChatMessageShape_relatedChatChannel unsupported at this time
101+
# chat_shape:chatmessageshape_relatedChatChannel unsupported at this time
102102

103-
chat_shape:ChatMessageShape_createdDate a sh:PropertyShape ;
103+
chat_shape:chatmessageshape_createddate a sh:PropertyShape ;
104104
sh:path terms:created ;
105105
sh:minCount 1 ;
106106
sh:maxCount 1 ;
@@ -109,15 +109,15 @@ chat_shape:ChatMessageShape_createdDate a sh:PropertyShape ;
109109
sh:description "The date and time when the message was created." ;
110110
sh:codeIdentifier "createdDate" .
111111

112-
chat_shape:ChatMessageShape_author a sh:PropertyShape ;
112+
chat_shape:chatmessageshape_author a sh:PropertyShape ;
113113
sh:path foaf:maker ;
114114
sh:minCount 1 ;
115115
sh:maxCount 1 ;
116116
sh:name "Message Author" ;
117117
sh:description "The agent or person who authored the message." ;
118118
sh:codeIdentifier "author" .
119119

120-
chat_shape:ChatMessageShape_content a sh:PropertyShape ;
120+
chat_shape:chatmessageshape_content a sh:PropertyShape ;
121121
sh:path sioc:content ;
122122
sh:datatype xsd:string ;
123123
sh:minCount 1 ;
@@ -126,7 +126,7 @@ chat_shape:ChatMessageShape_content a sh:PropertyShape ;
126126
sh:description "The textual content of the message." ;
127127
sh:codeIdentifier "content" .
128128

129-
chat_shape:ChatMessageShape_relatedChatChannel a sh:PropertyShape ;
129+
chat_shape:chatmessageshape_relatedchatchannel a sh:PropertyShape ;
130130
sh:path [ sh:inversePath flow:message ] ;
131131
sh:minCount 1 ;
132132
sh:name "Related Chat" ;
@@ -144,15 +144,15 @@ chat_shape:ChatParticipationShape a sh:NodeShape ;
144144
dc:source <https://github.com/SolidOS/chat-pane/blob/main/shapes/chat-shapes.ttl> ;
145145
prov:wasDerivedFrom <https://github.com/SolidOS/chat-pane/blob/main/shapes/chat-shapes.ttl> ;
146146
sh:codeIdentifier "Participation" ;
147-
sh:property chat_shape:ChatParticipationShape_startDate,
148-
chat_shape:ChatParticipationShape_participant,
149-
chat_shape:ChatParticipationShape_colorizeByAuthor,
150-
chat_shape:ChatParticipationShape_expandImagesInline,
151-
chat_shape:ChatParticipationShape_inlineImageHeight,
152-
chat_shape:ChatParticipationShape_newestFirst,
153-
chat_shape:ChatParticipationShape_backgroundColor .
154-
155-
chat_shape:ChatParticipationShape_startDate a sh:PropertyShape ;
147+
sh:property chat_shape:chatparticipationshape_startdate,
148+
chat_shape:chatparticipationshape_participant,
149+
chat_shape:chatparticipationshape_colorizebyauthor,
150+
chat_shape:chatparticipationshape_expandimagesinline,
151+
chat_shape:chatparticipationshape_inlineimageheight,
152+
chat_shape:chatparticipationshape_newestfirst,
153+
chat_shape:chatparticipationshape_backgroundcolor .
154+
155+
chat_shape:chatparticipationshape_startdate a sh:PropertyShape ;
156156
sh:path ical:dtstart ;
157157
sh:datatype xsd:dateTime ;
158158
sh:minCount 1 ;
@@ -161,47 +161,47 @@ chat_shape:ChatParticipationShape_startDate a sh:PropertyShape ;
161161
sh:description "The date and time when the participation started." ;
162162
sh:codeIdentifier "startDate" .
163163

164-
chat_shape:ChatParticipationShape_participant a sh:PropertyShape ;
164+
chat_shape:chatparticipationshape_participant a sh:PropertyShape ;
165165
sh:path flow:participant ;
166166
sh:minCount 1 ;
167167
sh:maxCount 1 ;
168168
sh:name "Participant" ;
169169
sh:description "The agent or person participating in the chat." ;
170170
sh:codeIdentifier "participant" .
171171

172-
chat_shape:ChatParticipationShape_colorizeByAuthor a sh:PropertyShape ;
172+
chat_shape:chatparticipationshape_colorizebyauthor a sh:PropertyShape ;
173173
sh:path solid:colorizeByAuthor ;
174174
sh:datatype xsd:boolean ;
175175
sh:maxCount 1 ;
176176
sh:name "Colorize By Author" ;
177177
sh:description "Indicates if messages from this participant should be colorized by author." ;
178178
sh:codeIdentifier "colorizeByAuthor" .
179179

180-
chat_shape:ChatParticipationShape_expandImagesInline a sh:PropertyShape ;
180+
chat_shape:chatparticipationshape_expandimagesinline a sh:PropertyShape ;
181181
sh:path solid:expandImagesInline ;
182182
sh:datatype xsd:boolean ;
183183
sh:maxCount 1 ;
184184
sh:name "Expand Images Inline" ;
185185
sh:description "Indicates if images should be displayed inline for this participant." ;
186186
sh:codeIdentifier "expandImagesInline" .
187187

188-
chat_shape:ChatParticipationShape_inlineImageHeight a sh:PropertyShape ;
188+
chat_shape:chatparticipationshape_inlineimageheight a sh:PropertyShape ;
189189
sh:path solid:inlineImageHeightEms ;
190190
sh:datatype xsd:integer ;
191191
sh:maxCount 1 ;
192192
sh:name "Inline Image Height (ems)" ;
193193
sh:comment "Preferred height of inline images in em units for this participant." ;
194194
sh:codeIdentifier "inlineImageHeight" .
195195

196-
chat_shape:ChatParticipationShape_newestFirst a sh:PropertyShape ;
196+
chat_shape:chatparticipationshape_newestfirst a sh:PropertyShape ;
197197
sh:path solid:newestFirst ;
198198
sh:datatype xsd:boolean ;
199199
sh:maxCount 1 ;
200200
sh:name "Newest First" ;
201201
sh:description "If true, messages are displayed newest first for this participant." ;
202202
sh:codeIdentifier "newestFirst" .
203203

204-
chat_shape:ChatParticipationShape_backgroundColor a sh:PropertyShape ;
204+
chat_shape:chatparticipationshape_backgroundcolor a sh:PropertyShape ;
205205
sh:path ui:backgroundColor ;
206206
sh:datatype xsd:string ;
207207
sh:maxCount 1 ;
@@ -221,27 +221,27 @@ chat_shape:ChatSharedPreferencesShape a sh:NodeShape ;
221221
dc:source <https://github.com/SolidOS/chat-pane/blob/main/shapes/chat-shapes.ttl> ;
222222
prov:wasDerivedFrom <https://github.com/SolidOS/chat-pane/blob/main/shapes/chat-shapes.ttl> ;
223223
sh:codeIdentifier "ChatSharedPreferences" ;
224-
sh:property chat_shape:ChatSharedPreferencesShape_expandImagesInline,
225-
chat_shape:ChatSharedPreferencesShape_inlineImageHeight,
226-
chat_shape:ChatSharedPreferencesShape_newestFirst .
224+
sh:property chat_shape:chatsharedpreferencesshape_expandimagesinline,
225+
chat_shape:chatsharedpreferencesshape_inlineimageheight,
226+
chat_shape:chatsharedpreferencesshape_newestfirst .
227227

228-
chat_shape:ChatSharedPreferencesShape_expandImagesInline a sh:PropertyShape ;
228+
chat_shape:chatsharedpreferencesshape_expandimagesinline a sh:PropertyShape ;
229229
sh:path solid:expandImagesInline ;
230230
sh:datatype xsd:boolean ;
231231
sh:maxCount 1 ;
232232
sh:name "Expand Images Inline" ;
233233
sh:description "Indicates whether images should be expanded inline in the chat UI." ;
234234
sh:codeIdentifier "expandImagesInline" .
235235

236-
chat_shape:ChatSharedPreferencesShape_inlineImageHeight a sh:PropertyShape ;
236+
chat_shape:chatsharedpreferencesshape_inlineimageheight a sh:PropertyShape ;
237237
sh:path solid:inlineImageHeightEms ;
238238
sh:datatype xsd:integer ;
239239
sh:maxCount 1 ;
240240
sh:name "Inline Image Height (ems)" ;
241241
sh:description "Preferred height for inline images in em units." ;
242242
sh:codeIdentifier "inlineImageHeight" .
243243

244-
chat_shape:ChatSharedPreferencesShape_newestFirst a sh:PropertyShape ;
244+
chat_shape:chatsharedpreferencesshape_newestfirst a sh:PropertyShape ;
245245
sh:path solid:newestFirst ;
246246
sh:datatype xsd:boolean ;
247247
sh:maxCount 1 ;
@@ -260,24 +260,24 @@ chat_shape:ChatActionShape a sh:NodeShape ;
260260
dc:source <https://github.com/SolidOS/chat-pane/blob/main/shapes/chat-shapes.ttl> ;
261261
prov:wasDerivedFrom <https://github.com/SolidOS/chat-pane/blob/main/shapes/chat-shapes.ttl> ;
262262
sh:codeIdentifier "ChatAction" ;
263-
sh:property chat_shape:ChatActionShape_type,
264-
chat_shape:ChatActionShape_agent,
265-
chat_shape:ChatActionShape_target
263+
sh:property chat_shape:chatactionshape_type,
264+
chat_shape:chatactionshape_agent,
265+
chat_shape:chatactionshape_target
266266
.
267267

268-
chat_shape:ChatActionShape_type a sh:PropertyShape ;
268+
chat_shape:chatactionshape_type a sh:PropertyShape ;
269269
sh:path rdf:type ;
270270
sh:minCount 1 ;
271271
sh:name "Type" ;
272272
sh:codeIdentifier "type" .
273273

274-
chat_shape:ChatActionShape_agent a sh:PropertyShape ;
274+
chat_shape:chatactionshape_agent a sh:PropertyShape ;
275275
sh:path schema:agent ;
276276
sh:maxCount 1 ;
277277
sh:name "Agent" ;
278278
sh:codeIdentifier "agent" .
279279

280-
chat_shape:ChatActionShape_target a sh:PropertyShape ;
280+
chat_shape:chatactionshape_target a sh:PropertyShape ;
281281
sh:path schema:target ;
282282
sh:minCount 1 ;
283283
sh:maxCount 1 ;

0 commit comments

Comments
 (0)