JSONPlaceholder · Schema

Album

A sample photo album owned by a user in the JSONPlaceholder dataset.

DevelopmentTestingPrototypingFake APIOpen SourceREST

Properties

Name Type Description
id integer Unique album identifier (1-100).
userId integer Identifier of the user who owns the album.
title string Album title.
View JSON Schema on GitHub

JSON Schema

jsonplaceholder-album-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/jsonplaceholder/refs/heads/main/json-schema/jsonplaceholder-album-schema.json",
  "title": "Album",
  "description": "A sample photo album owned by a user in the JSONPlaceholder dataset.",
  "type": "object",
  "required": ["id", "userId", "title"],
  "properties": {
    "id": {
      "type": "integer",
      "description": "Unique album identifier (1-100).",
      "example": 1
    },
    "userId": {
      "type": "integer",
      "description": "Identifier of the user who owns the album.",
      "example": 1
    },
    "title": {
      "type": "string",
      "description": "Album title.",
      "example": "quidem molestiae enim"
    }
  }
}