Wolfram|Alpha · Schema

Subpod

A sub-result within a Wolfram|Alpha pod.

AIArtificial IntelligenceComputational KnowledgeNatural Language ProcessingSearch

Properties

Name Type Description
plaintext string Plain text representation of the result.
img object Image representation of the result.
View JSON Schema on GitHub

JSON Schema

wolfram-alpha-subpod-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Subpod",
  "title": "Subpod",
  "type": "object",
  "description": "A sub-result within a Wolfram|Alpha pod.",
  "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": "string",
          "format": "uri",
          "description": "URL of the result image."
        },
        "alt": {
          "type": "string",
          "description": "Alt text for the result image."
        },
        "width": {
          "type": "integer"
        },
        "height": {
          "type": "integer"
        }
      },
      "example": {
        "src": "https://example.com/path",
        "alt": "string-value",
        "width": 1,
        "height": 1
      }
    }
  }
}