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
The API Controllers seem to output timestamps in a non-standard numeric format, For example in ProcessedSpat:
ProcessedSpat
"minEndTime": 1732129222.0999999
whereas those fields should be ISO8601 strings according to the schema: https://github.com/usdot-jpo-ode/jpo-geojsonconverter/blob/develop/jpo-geojsonconverter/src/main/resources/schemas/processed-spat.schema.json
The API app might need jsr310 support added and/or add some Jackson configuration settings added to application.properties such as:
spring.jackson.serialization.write-dates-as-timestamps=false
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The API Controllers seem to output timestamps in a non-standard numeric format, For example in
ProcessedSpat
:whereas those fields should be ISO8601 strings according to the schema:
https://github.com/usdot-jpo-ode/jpo-geojsonconverter/blob/develop/jpo-geojsonconverter/src/main/resources/schemas/processed-spat.schema.json
The API app might need jsr310 support added and/or add some Jackson configuration settings added to application.properties such as:
The text was updated successfully, but these errors were encountered: