Disney API · JSON Structure

Disney Service Index Structure

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

Type: object Properties: 3 Required: 3
EntertainmentCharactersDisneyOpen SourceFan APIRESTGraphQL

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

Properties

getCharacter getCharacterById getCharactersById

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/disney/refs/heads/main/json-structure/disney-service-index-structure.json",
  "name": "ServiceIndex",
  "description": "Map of named REST 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"
    }
  }
}