Skip to content
Merged
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
23 changes: 23 additions & 0 deletions shapes/vcard.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
@prefix vcard: <http://www.w3.org/2006/vcard/ns#> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
@prefix prov: <http://www.w3.org/ns/prov#> .

@prefix vcard_shape: <https://solidproject.org/shapes/vcard#> .

Expand Down Expand Up @@ -209,4 +210,26 @@ vcard_shape:AddressShape
sh:description "Country Name";
sh:codeIdentifier "countryName";
] ;
.

#################################################################
# Individual Shape
#################################################################

vcard_shape:VCardIndividualShape
a sh:NodeShape ;
sh:targetClass vcard:Individual ;
sh:name "vCard Individual Shape" ;
sh:description "An object representing a single person or entity" ;
dct:created "2026-04-13"^^xsd:date ;
vs:term_status "testing" ;
dct:references <https://www.w3.org/2006/vcard/ns> ;
prov:wasDerivedFrom <https://www.w3.org/2006/vcard/ns> ;
sh:description "This shape validates vCard Individual data" ;
sh:codeIdentifier "Individual";

sh:and (
vcard_shape:VCardShape
)

.
Loading