FakerAPI · JSON Structure

Fakerapi Book Structure

A fake book record produced by FakerAPI /api/v1/books.

Type: object Properties: 9 Required: 5
Test DataFake DataMockingDeveloper ToolsOpen SourcePublic APIs

Book is a JSON Structure definition published by FakerAPI, describing 9 properties, of which 5 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

id title author genre description isbn image published publisher

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://fakerapi.it/structures/book.json",
  "name": "Book",
  "description": "A fake book record produced by FakerAPI /api/v1/books.",
  "type": "object",
  "properties": {
    "id": { "type": "int32" },
    "title": { "type": "string" },
    "author": { "type": "string" },
    "genre": { "type": "string" },
    "description": { "type": "string" },
    "isbn": { "type": "string" },
    "image": { "type": "uri" },
    "published": { "type": "date" },
    "publisher": { "type": "string" }
  },
  "required": ["id", "title", "author", "isbn", "published"]
}