JSONPlaceholder · Schema

Comment

A sample comment attached to a post in the JSONPlaceholder dataset.

DevelopmentTestingPrototypingFake APIOpen SourceREST

Properties

Name Type Description
id integer Unique comment identifier (1-500).
postId integer Identifier of the post this comment belongs to.
name string Display name / subject of the comment.
email string Email address of the commenter.
body string Comment body text.
View JSON Schema on GitHub

JSON Schema

jsonplaceholder-comment-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-comment-schema.json",
  "title": "Comment",
  "description": "A sample comment attached to a post in the JSONPlaceholder dataset.",
  "type": "object",
  "required": ["id", "postId", "name", "email", "body"],
  "properties": {
    "id": {
      "type": "integer",
      "description": "Unique comment identifier (1-500).",
      "example": 1
    },
    "postId": {
      "type": "integer",
      "description": "Identifier of the post this comment belongs to.",
      "example": 1
    },
    "name": {
      "type": "string",
      "description": "Display name / subject of the comment.",
      "example": "id labore ex et quam laborum"
    },
    "email": {
      "type": "string",
      "format": "email",
      "description": "Email address of the commenter.",
      "example": "[email protected]"
    },
    "body": {
      "type": "string",
      "description": "Comment body text.",
      "example": "laudantium enim quasi est quidem magnam voluptate ipsam eos tempora quo necessitatibus"
    }
  }
}