Skip to content
Discussion options

You must be logged in to vote

The browser doesn't detect that the strings are datetimes (there's no datetime datatype in JSON).
You need to make the browser aware that the fields contain datetimes.
There are two options for this:

  1. Make the field definitions available in your deployment. Read more about it here: https://github.com/radiantearth/stac-browser/blob/main/README.md#additional-metadata-fields
  2. Either create an extension (if your fields are resuable within a specific domain) and then submit the definitions to stac-fields

Example for the first option, to be added to your fields.config.js:

Registry.addExtension("cadip", "CADIP");
Registry.addMetadataField("cadip:planned_data_start", {
  label: "Planned Start",
  f…

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by m-mohr
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants
Converted from issue

This discussion was converted from issue #631 on July 07, 2025 11:46.