FAIRDataTeam/FAIRDataPoint

Q: Should `fdp-o:startDate` be an `xsd:date`, instead of `xsd:dateTime`?

dennisvang opened this issue · 0 comments

What is your question?

Not sure if this is a bug or if I'm just missing something:

According to the FDP spec, fdp-o:startDate and fdp-o:endDate must have Datatype xsd:date.

However, the reference implementation appears to use sh:datatype xsd:dateTime, although the corresponding dash:editor is a dash:DatePickerEditor (not a dash:DateTimePickerEditor):

sh:property [
sh:path fdp:startDate ;
sh:datatype xsd:dateTime ;
sh:maxCount 1 ;
dash:editor dash:DatePickerEditor ;
dash:viewer dash:LiteralViewer ;
] , [
sh:path fdp:endDate ;
sh:datatype xsd:dateTime ;
sh:maxCount 1 ;
dash:editor dash:DatePickerEditor ;
dash:viewer dash:LiteralViewer ;
] , [

Is this correct?