Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #181 +/- ##
=========================================
Coverage 100.00% 100.00%
=========================================
Files 115 115
Lines 2706 2706
Branches 330 330
=========================================
Hits 2706 2706 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
eudoroolivares2016
approved these changes
Mar 12, 2026
mandyparson
approved these changes
Mar 12, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Overview
What is the feature?
Update UMM-S schema version from 1.5.3 to 1.5.4
What is the Solution?
UMM-S schema added a new enum value "NETCDF-4 (OPeNDAP URL)" under Options.
Since Options is a JSON object in we only need to update the version number.
What areas of the application does this impact?
This only required a single version bump in GQL without any other changes.
Testing
Ingest a service draft
mutation Mutation($conceptType: DraftConceptType!, $metadata: JSON!, $nativeId: String!, $providerId: String!, $ummVersion: String!) { ingestDraft(conceptType: $conceptType, metadata: $metadata, nativeId: $nativeId, providerId: $providerId, ummVersion: $ummVersion) { conceptId revisionId warnings existingErrors } }with
{ "conceptType": "Service", "metadata": "{\"ServiceOptions\":{\"SupportedReformattings\":[{\"SupportedOutputFormats\":[\"NETCDF-4 (OPeNDAP URL)\"],\"SupportedInputFormat\":\"HDF5\"}]},\"URL\":{\"Description\":\"www.test.org\",\"URLValue\":\"www.test.org\"},\"RelatedURLs\":[{\"URLContentType\":\"VisualizationURL\",\"Description\":\"testing\",\"Type\":\"GET RELATED VISUALIZATION\",\"Subtype\":\"WORLDVIEW\",\"URL\":\"test.org\"}],\"Type\":\"WEB SERVICES\",\"ServiceKeywords\":[{\"ServiceCategory\":\"EARTH SCIENCE SERVICES\",\"ServiceTopic\":\"DATA MANAGEMENT/DATA HANDLING\",\"ServiceTerm\":\"CATALOGING\"}],\"ServiceOrganizations\":[{\"Roles\":[\"DEVELOPER\"],\"ShortName\":\"RI/DOA\",\"LongName\":\"Department of Administration, Rhode Island\"}],\"OperationMetadata\":[{\"OperationName\":\"GetCapabilities\"}],\"ServiceQuality\":{\"QualityFlag\":\"Reviewed\"},\"AccessConstraints\":\"testing\",\"ContactGroups\":[{\"Roles\":[\"TECHNICAL CONTACT\"],\"GroupName\":\"TESTER\"}],\"Description\":\"testing\",\"Version\":\"1\",\"Name\":\"Ingest testing\",\"LongName\":\"Ingest testing\"}", "nativeId": "ASDF-MMT_1", "providerId": "MMT_1", "ummVersion": "1.5.4" }Fetching it returns this correct
MetadataSpecification ... "MetadataSpecification": { "URL": "https://cdn.earthdata.nasa.gov/umm/service/v1.5.4", "Name": "UMM-S", "Version": "1.5.4" }Attachments
Please include relevant screenshots or files that would be helpful in reviewing and verifying this change.
Checklist