We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi guys,
I was looking through all SDO contexts and I noticed that one of them has prefixes outside the @context.
@context
https://github.com/datatagsuite/context/blob/master/sdo/data_acquisition_sdo_context.jsonld
specifically I am talking about the startDate and endDate.
startDate
endDate
here is the payload:
{ "@context": { "sdo": "https://schema.org/", "DataAcquisition": "sdo:CreateAction", "identifier": { "@id": "sdo:identifier", "@type": "sdo:Text" }, "name": { "@id": "sdo:name", "@type": "sdo:Text" }, "description": { "@id": "sdo:description", "@type": "sdo:Text" }, "licenses": "sdo:license", "version": "sdo:version" }, "startDate": { "@id": "sdo:startTime", "@type": "sdo:DateTime" }, "endDate": { "@id": "sdo:endTime", "@type": "sdo:DateTime" } }
The text was updated successfully, but these errors were encountered:
another good catch @samuel-kerrien, thx for reporting. I have now pushed a fix that should hopefully close this issue.
so I dropped licenses and version tags which were outside the scopes and copied performedBy and location from Activity.
licenses
version
performedBy
location
TODO: revisit markup for input and output
input
output
Sorry, something went wrong.
Great, thanks for the quick turn around ;)
No branches or pull requests
Hi guys,
I was looking through all SDO contexts and I noticed that one of them has prefixes outside the
@context
.https://github.com/datatagsuite/context/blob/master/sdo/data_acquisition_sdo_context.jsonld
specifically I am talking about the
startDate
andendDate
.here is the payload:
The text was updated successfully, but these errors were encountered: