WordPress · JSON Structure

Wordpress Rendered Content Structure

A rendered content object containing raw and rendered versions

Type: object Properties: 2
CMSContent ManagementOpen SourceWordPress

RenderedContent is a JSON Structure definition published by WordPress, describing 2 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

rendered protected

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

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/wordpress/refs/heads/main/json-structure/wordpress-rendered-content-structure.json",
  "name": "RenderedContent",
  "description": "A rendered content object containing raw and rendered versions",
  "type": "object",
  "properties": {
    "rendered": {
      "type": "string",
      "description": "The HTML rendered version of the content",
      "example": "<p>Hello World</p>"
    },
    "protected": {
      "type": "boolean",
      "description": "Whether the content is protected with a password",
      "example": false
    }
  }
}