Open hmaier-fws opened 1 year ago
Temporal is incorrectly mapped for mdJSON, though correct for ISO. At this point, I believe we are only considering mdJSON-DCAT. Should be resourceInfo.timePeriod{ }.
Rights logic won't work. There is no "accessLevel" in mdJSON. Following the logic that Hilmar suggested in DCAT.md of using MD_ClassificationCode, possibly utilizing codes "unclassified" and "restricted". However, I don't see a suitable code to imply "non-public". We may consider extending the codelist to explicitly identify these codes, or just add non-public to the list. Modified logic would like this:
if constraint[0] exists, and for any constraint[ ] if security.classification = "unclassified" or "public" then rights = "Public" else if security.classification = "restricted" or "restrictedPublic" then rights = "Restricted Public" else if security.classification = "nonPublic" = then rights = "Non Public"
Issue
Add support for DCAT-US schema conditional fields.
Related issues: #251, #264
For information on the DCAT-US schema see:
Conditional fields:
Proposed mapping of mdJSON to DCAT-US conditional fields.
license
if exists resourceInfo.constraint.reference[0]
[allows author to identify a license to use, or default to CC0 if none provided, CC0 would cover international usage as opposed to publicdomain]
[others: http://www.usa.gov/publicdomain/label/1.0/, http://opendatacommons.org/licenses/pddl/1.0]
rights
spatial
geographicElement[0].coordinate[1] + "," + geographicElement[0].coordinate[0] [lat, long decimal degrees]
temporal
if exists tempororalExtent[0].timePeriod.startDate and exists temporaralExtent[0].timePeriod.endDate
[may need revisiting relative to decision on date only formatting]
distribution
Moved to new issue