Link

A hypermedia link.

Federal GovernmentGeologicalEarth ScienceNatural ResourcesEarthquakeWaterHydrology

Properties

Name Type Description
href string Link URL.
rel string Link relation type.
type string Media type of the linked resource.
title string Human-readable link title.
View JSON Schema on GitHub

JSON Schema

usgs-water-data-api-link-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/u-s-geological-survey/refs/heads/main/json-schema/usgs-water-data-api-link-schema.json",
  "title": "Link",
  "description": "A hypermedia link.",
  "type": "object",
  "properties": {
    "href": {
      "type": "string",
      "description": "Link URL.",
      "example": "https://api.waterdata.usgs.gov/ogcapi/v0/"
    },
    "rel": {
      "type": "string",
      "description": "Link relation type.",
      "example": "self"
    },
    "type": {
      "type": "string",
      "description": "Media type of the linked resource.",
      "example": "application/json"
    },
    "title": {
      "type": "string",
      "description": "Human-readable link title.",
      "example": "This document"
    }
  }
}