{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "comment", "type": "object", "properties": { "id": { "description": "Unique identifier for the comment.", "type": "integer" }, "author": { "description": "The ID of the user object, if author was a user.", "type": "integer" }, "author_email": { "description": "Email address for the comment author.", "type": "string", "format": "email" }, "author_ip": { "description": "IP address for the comment author.", "type": "string", "format": "ip" }, "author_name": { "description": "Display name for the comment author.", "type": "string" }, "author_url": { "description": "URL for the comment author.", "type": "string", "format": "uri" }, "author_user_agent": { "description": "User agent for the comment author.", "type": "string" }, "content": { "description": "The content for the comment.", "type": "object", "properties": { "raw": { "description": "Content for the comment, as it exists in the database.", "type": "string" }, "rendered": { "description": "HTML content for the comment, transformed for display.", "type": "string" } } }, "date": { "description": "The date the comment was published, in the site's timezone.", "type": "string", "format": "date-time" }, "date_gmt": { "description": "The date the comment was published, as GMT.", "type": "string", "format": "date-time" }, "link": { "description": "URL to the comment.", "type": "string", "format": "uri" }, "parent": { "description": "The ID for the parent of the comment.", "type": "integer", "default": 0 }, "post": { "description": "The ID of the associated post object.", "type": "integer", "default": 0 }, "status": { "description": "State of the comment.", "type": "string" }, "type": { "description": "Type of the comment.", "type": "string", "default": "comment" }, "author_avatar_urls": { "description": "Avatar URLs for the comment author.", "type": "object", "properties": { "24": { "description": "Avatar URL with image size of 24 pixels.", "type": "string", "format": "uri" }, "48": { "description": "Avatar URL with image size of 48 pixels.", "type": "string", "format": "uri" }, "96": { "description": "Avatar URL with image size of 96 pixels.", "type": "string", "format": "uri" } } }, "meta": { "description": "Meta fields.", "type": "object", "properties": { "_wp_note_status": { "type": "string", "title": "", "description": "Note resolution status", "default": "", "enum": [ "resolved", "reopen" ] } } } }, "x-source": "HTTP OPTIONS https://ionetix.com/wp-json/wp/v2/comments", "x-fetched": "2026-08-23" }