Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion shapes/longchat-example.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
@prefix ical: <http://www.w3.org/2002/12/cal/ical#> .
@prefix mee: <http://www.w3.org/ns/pim/meeting#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix schema: <http://schema.org/> .
@prefix schema: <https://schema.org/> .
@prefix schema_http: <http://schema.org/> .
Copy link

Copilot AI Apr 8, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

schema_http prefix is introduced but not used anywhere in this example file. Consider removing the unused prefix, or add an example triple that uses the schema_http: namespace (if the intent is to demonstrate compatibility with both schema.org IRIs).

Suggested change
@prefix schema_http: <http://schema.org/> .

Copilot uses AI. Check for mistakes.
@prefix sec: <https://w3id.org/security#> .
@prefix sioc: <http://rdfs.org/sioc/ns#> .
@prefix solid: <http://www.w3.org/ns/solid/terms#> .
Expand Down
3 changes: 1 addition & 2 deletions shapes/longchat-shapes.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ to validate, the concrete YYYY/MM/DD/chat.ttl path convention.""" .
sh:path ui:backgroundColor ;
sh:datatype xsd:string ;
sh:maxCount 1 ;
sh:pattern "#[0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f]" ;
sh:pattern "^#[0-9A-Fa-f]{6}$" ;
] .


Expand Down Expand Up @@ -279,7 +279,6 @@ to validate, the concrete YYYY/MM/DD/chat.ttl path convention.""" .
sh:property [
sh:path [ sh:inversePath sioc:has_reply ] ;
sh:minCount 1 ;
sh:maxCount 1 ;
sh:node :LongChatMessageShape ;
] ;

Expand Down
Loading