action nsidc_facets { label: "View the facet information corresponding to a search" description: "In the NSIDC Search and Arctic Data Explorer interfaces, this endpoint is used in conjunction with /OpenSearch whenever a user submits a new search. Consequently, it has the same parameters as /OpenSearch." provider: nsidc method: GET path: "/Facets" encoding: json input: { type: "object" properties: { count: { type: "integer" } endDate: { type: "string" format: "date" } facetFilters: { type: "string" } searchTerms: { type: "string" } sortKeys: { type: "string" enum: ["score,,desc", "spatial_area,,asc", "spatial_area,,desc", "temporal_duration,,asc", "temporal_duration,,desc", "updated,,desc"] } source: { type: "string" enum: ["NSIDC", "ADE"] } spatial: { type: "string" } startDate: { type: "string" format: "date" } startIndex: { type: "integer" } } additionalProperties: false } output: { type: "object" additionalProperties: true } }