APIs.guru · JSON Structure

Apis Guru Api Structure

Meta information about API

Type: object Properties: 3 Required: 3
API CatalogAPI DirectoryAPI DiscoveryCommunityGraphQLOpen SourceOpenAPI

API is a JSON Structure definition published by APIs.guru, describing 3 properties, of which 3 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

added preferred versions

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/apis-guru/refs/heads/main/json-structure/apis-guru-api-structure.json",
  "name": "API",
  "description": "Meta information about API",
  "additionalProperties": false,
  "properties": {
    "added": {
      "description": "Timestamp when the API was first added to the directory",
      "type": "datetime"
    },
    "preferred": {
      "description": "Recommended version",
      "type": "string"
    },
    "versions": {
      "additionalProperties": {
        "$ref": "#/components/schemas/ApiVersion"
      },
      "description": "List of supported versions of the API",
      "minProperties": 1,
      "type": "object"
    }
  },
  "required": [
    "added",
    "preferred",
    "versions"
  ],
  "type": "object"
}