Gravatar · Schema

GalleryImage

A gallery image a user has uploaded.

AvatarsIdentityProfilesSocialImagesGraphQLREST

Properties

Name Type Description
url string The URL to the image.
alt_text string The image alt text.
View JSON Schema on GitHub

JSON Schema

galleryimage.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/gravatar/refs/heads/main/json-schema/galleryimage.json",
  "title": "GalleryImage",
  "type": "object",
  "description": "A gallery image a user has uploaded.",
  "required": [
    "url"
  ],
  "properties": {
    "url": {
      "type": "string",
      "description": "The URL to the image.",
      "format": "uri",
      "examples": [
        "https://0.gravatar.com/userimage/5/04bbd674f72c703f6335e2e7a00acc9a"
      ]
    },
    "alt_text": {
      "type": "string",
      "description": "The image alt text.",
      "examples": [
        "A beautiful sunset"
      ]
    }
  }
}