Error

JSON Schema for Error in the USGS Water Data OGC API

Federal GovernmentNational ParksFederal LandsWater ResourcesWildlifeMineralsGeospatialGeologyNative American AffairsPublic Lands

Properties

Name Type Description
error object
View JSON Schema on GitHub

JSON Schema

doi-usgs-water-Error-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Error",
  "description": "JSON Schema for Error in the USGS Water Data OGC API",
  "properties": {
    "error": {
      "properties": {
        "code": {
          "description": "Error code such as OVER_RATE_LIMIT, see https://api.data.gov/docs/developer-manual/#general-web-service-errors",
          "type": "string"
        },
        "message": {
          "description": "Error message",
          "type": "string"
        }
      },
      "required": [
        "code",
        "message"
      ],
      "type": "object"
    }
  },
  "type": "object"
}