Wolfram|Alpha · JSON Structure

Wolframalpha Subpod Structure

A sub-result within a Wolfram|Alpha pod.

Type: object Properties: 2
AIArtificial IntelligenceComputational KnowledgeMachine LearningNatural Language ProcessingPublic APIsSearch

Subpod is a JSON Structure definition published by Wolfram|Alpha, describing 2 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

plaintext img

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/wolframalpha/refs/heads/main/json-structure/wolframalpha-subpod-structure.json",
  "name": "Subpod",
  "description": "A sub-result within a Wolfram|Alpha pod.",
  "type": "object",
  "properties": {
    "plaintext": {
      "type": "string",
      "description": "Plain text representation of the result.",
      "example": "1/3"
    },
    "img": {
      "type": "object",
      "description": "Image representation of the result.",
      "properties": {
        "src": {
          "type": "uri",
          "description": "URL of the result image."
        },
        "alt": {
          "type": "string",
          "description": "Alt text for the result image."
        },
        "width": {
          "type": "int32"
        },
        "height": {
          "type": "int32"
        }
      },
      "example": {
        "src": "https://example.com/path",
        "alt": "string-value",
        "width": 1,
        "height": 1
      }
    }
  }
}