TechRepublic · Schema

TechRepublic Post

A TechRepublic article, news post, or technology analysis piece returned from the WordPress REST API.

Enterprise ITMediaTechnology NewsContentPublishing

Properties

Name Type Description
id integer Unique identifier for the post.
date string The date the post was published, in the site's timezone.
date_gmt string The date the post was published, as GMT.
modified string The date the post was last modified, in the site's timezone.
modified_gmt string The date the post was last modified, as GMT.
slug string An alphanumeric identifier for the post unique to its type.
status string A named status for the post.
link string URL to the post.
title object The title for the post.
content object The content for the post.
excerpt object The excerpt for the post.
author integer The ID for the author of the post.
featured_media integer The ID of the featured media for the post.
categories array The terms assigned to the post in the category taxonomy.
tags array The terms assigned to the post in the post_tag taxonomy.
View JSON Schema on GitHub

JSON Schema

techrepublic-post-schema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/techrepublic/main/json-schema/techrepublic-post-schema.json",
  "title": "TechRepublic Post",
  "description": "A TechRepublic article, news post, or technology analysis piece returned from the WordPress REST API.",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "description": "Unique identifier for the post."
    },
    "date": {
      "type": "string",
      "format": "date-time",
      "description": "The date the post was published, in the site's timezone."
    },
    "date_gmt": {
      "type": "string",
      "format": "date-time",
      "description": "The date the post was published, as GMT."
    },
    "modified": {
      "type": "string",
      "format": "date-time",
      "description": "The date the post was last modified, in the site's timezone."
    },
    "modified_gmt": {
      "type": "string",
      "format": "date-time",
      "description": "The date the post was last modified, as GMT."
    },
    "slug": {
      "type": "string",
      "description": "An alphanumeric identifier for the post unique to its type.",
      "pattern": "^[a-z0-9-]+$"
    },
    "status": {
      "type": "string",
      "description": "A named status for the post.",
      "enum": ["publish", "future", "draft", "pending", "private"]
    },
    "link": {
      "type": "string",
      "format": "uri",
      "description": "URL to the post."
    },
    "title": {
      "type": "object",
      "description": "The title for the post.",
      "properties": {
        "rendered": {
          "type": "string",
          "description": "HTML representation of the title."
        }
      },
      "required": ["rendered"]
    },
    "content": {
      "type": "object",
      "description": "The content for the post.",
      "properties": {
        "rendered": {
          "type": "string",
          "description": "HTML representation of the content."
        },
        "protected": {
          "type": "boolean",
          "description": "Whether the content is protected with a password."
        }
      },
      "required": ["rendered", "protected"]
    },
    "excerpt": {
      "type": "object",
      "description": "The excerpt for the post.",
      "properties": {
        "rendered": {
          "type": "string",
          "description": "HTML representation of the excerpt."
        },
        "protected": {
          "type": "boolean"
        }
      },
      "required": ["rendered"]
    },
    "author": {
      "type": "integer",
      "description": "The ID for the author of the post."
    },
    "featured_media": {
      "type": "integer",
      "description": "The ID of the featured media for the post."
    },
    "categories": {
      "type": "array",
      "description": "The terms assigned to the post in the category taxonomy.",
      "items": {
        "type": "integer"
      }
    },
    "tags": {
      "type": "array",
      "description": "The terms assigned to the post in the post_tag taxonomy.",
      "items": {
        "type": "integer"
      }
    }
  },
  "required": ["id", "date", "slug", "status", "link", "title", "content", "author"]
}

Work with this as data

Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for schemas

4 MCP tools reach this
  • find_json_schemasBrowse and filter every JSON Schema in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools

Call it yourself

curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/techrepublic-post"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.