launchdarkly · Schema

Links

HATEOAS links for navigating related resources.

Properties

Name Type Description
self object A link to this resource.
View JSON Schema on GitHub

JSON Schema

launchdarkly-links-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Links",
  "title": "Links",
  "type": "object",
  "description": "HATEOAS links for navigating related resources.",
  "properties": {
    "self": {
      "type": "object",
      "description": "A link to this resource.",
      "properties": {
        "href": {
          "type": "string",
          "description": "The URL of this resource."
        },
        "type": {
          "type": "string",
          "description": "The media type."
        }
      }
    }
  },
  "additionalProperties": {
    "type": "object",
    "properties": {
      "href": {
        "type": "string",
        "description": "The URL of the linked resource."
      },
      "type": {
        "type": "string",
        "description": "The media type."
      }
    }
  }
}