Disney API · Schema

ServiceIndex

Map of named endpoint operations to their URL templates returned by GET /.

EntertainmentCharactersDisneyOpen SourceFan APIRESTGraphQL

Properties

Name Type Description
getCharacter string URL template for the paginated character list endpoint.
getCharacterById string URL template for the single-character-by-id endpoint.
getCharactersById string URL template for the plural-path single-character alias.
View JSON Schema on GitHub

JSON Schema

disney-service-index-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/disney/refs/heads/main/json-schema/disney-service-index-schema.json",
  "title": "ServiceIndex",
  "description": "Map of named endpoint operations to their URL templates returned by GET /.",
  "type": "object",
  "required": [
    "getCharacter",
    "getCharacterById",
    "getCharactersById"
  ],
  "properties": {
    "getCharacter": {
      "type": "string",
      "description": "URL template for the paginated character list endpoint.",
      "example": "/character"
    },
    "getCharacterById": {
      "type": "string",
      "description": "URL template for the single-character-by-id endpoint.",
      "example": "/character/:id"
    },
    "getCharactersById": {
      "type": "string",
      "description": "URL template for the plural-path single-character alias.",
      "example": "/characters/:id"
    }
  }
}