Ionetix · Schema

page

CompanyHealthcareLife SciencesRadiopharmaceuticalsNuclear MedicineMedical ImagingCardiologyOncologyIsotopesManufacturingContent

Properties

Name Type Description
date stringnull The date the post was published, in the site's timezone.
date_gmt stringnull The date the post was published, as GMT.
guid object The globally unique identifier for the post.
id integer Unique identifier for the post.
link string URL to the post.
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.
type string Type of post.
password string A password to protect access to the content and excerpt.
permalink_template string Permalink template for the post.
generated_slug string Slug automatically generated from the post title.
class_list array An array of the class names for the post container element.
parent integer The ID for the parent of the post.
title object The title for the post.
content object The content for the post.
author integer The ID for the author of the post.
excerpt object The excerpt for the post.
featured_media integer The ID of the featured media for the post.
comment_status string Whether or not comments are open on the post.
ping_status string Whether or not the post can be pinged.
menu_order integer The order of the post in relation to other posts.
meta object Meta fields.
template string The theme file to use to display the post.
publishpress_future_action object Future action
publishpress_future_workflow_manual_trigger object Workflow Manual Trigger
rttpg_featured_image_url array Different sized featured images
rttpg_category string Category list links
View JSON Schema on GitHub

JSON Schema

ionetix-pages.schema.json Raw ↑
{
 "$schema": "http://json-schema.org/draft-04/schema#",
 "title": "page",
 "type": "object",
 "properties": {
  "date": {
   "description": "The date the post was published, in the site's timezone.",
   "type": [
    "string",
    "null"
   ],
   "format": "date-time"
  },
  "date_gmt": {
   "description": "The date the post was published, as GMT.",
   "type": [
    "string",
    "null"
   ],
   "format": "date-time"
  },
  "guid": {
   "description": "The globally unique identifier for the post.",
   "type": "object",
   "properties": {
    "raw": {
     "description": "GUID for the post, as it exists in the database.",
     "type": "string"
    },
    "rendered": {
     "description": "GUID for the post, transformed for display.",
     "type": "string"
    }
   }
  },
  "id": {
   "description": "Unique identifier for the post.",
   "type": "integer"
  },
  "link": {
   "description": "URL to the post.",
   "type": "string",
   "format": "uri"
  },
  "modified": {
   "description": "The date the post was last modified, in the site's timezone.",
   "type": "string",
   "format": "date-time"
  },
  "modified_gmt": {
   "description": "The date the post was last modified, as GMT.",
   "type": "string",
   "format": "date-time"
  },
  "slug": {
   "description": "An alphanumeric identifier for the post unique to its type.",
   "type": "string"
  },
  "status": {
   "description": "A named status for the post.",
   "type": "string",
   "enum": [
    "publish",
    "future",
    "draft",
    "pending",
    "private"
   ]
  },
  "type": {
   "description": "Type of post.",
   "type": "string"
  },
  "password": {
   "description": "A password to protect access to the content and excerpt.",
   "type": "string"
  },
  "permalink_template": {
   "description": "Permalink template for the post.",
   "type": "string"
  },
  "generated_slug": {
   "description": "Slug automatically generated from the post title.",
   "type": "string"
  },
  "class_list": {
   "description": "An array of the class names for the post container element.",
   "type": "array",
   "items": {
    "type": "string"
   }
  },
  "parent": {
   "description": "The ID for the parent of the post.",
   "type": "integer"
  },
  "title": {
   "description": "The title for the post.",
   "type": "object",
   "properties": {
    "raw": {
     "description": "Title for the post, as it exists in the database.",
     "type": "string"
    },
    "rendered": {
     "description": "HTML title for the post, transformed for display.",
     "type": "string"
    }
   }
  },
  "content": {
   "description": "The content for the post.",
   "type": "object",
   "properties": {
    "raw": {
     "description": "Content for the post, as it exists in the database.",
     "type": "string"
    },
    "rendered": {
     "description": "HTML content for the post, transformed for display.",
     "type": "string"
    },
    "block_version": {
     "description": "Version of the content block format used by the post.",
     "type": "integer"
    },
    "protected": {
     "description": "Whether the content is protected with a password.",
     "type": "boolean"
    }
   }
  },
  "author": {
   "description": "The ID for the author of the post.",
   "type": "integer"
  },
  "excerpt": {
   "description": "The excerpt for the post.",
   "type": "object",
   "properties": {
    "raw": {
     "description": "Excerpt for the post, as it exists in the database.",
     "type": "string"
    },
    "rendered": {
     "description": "HTML excerpt for the post, transformed for display.",
     "type": "string"
    },
    "protected": {
     "description": "Whether the excerpt is protected with a password.",
     "type": "boolean"
    }
   }
  },
  "featured_media": {
   "description": "The ID of the featured media for the post.",
   "type": "integer"
  },
  "comment_status": {
   "description": "Whether or not comments are open on the post.",
   "type": "string",
   "enum": [
    "open",
    "closed"
   ]
  },
  "ping_status": {
   "description": "Whether or not the post can be pinged.",
   "type": "string",
   "enum": [
    "open",
    "closed"
   ]
  },
  "menu_order": {
   "description": "The order of the post in relation to other posts.",
   "type": "integer"
  },
  "meta": {
   "description": "Meta fields.",
   "type": "object",
   "properties": {
    "inline_featured_image": {
     "type": "boolean",
     "title": "",
     "description": "",
     "default": false
    },
    "footnotes": {
     "type": "string",
     "title": "",
     "description": "",
     "default": ""
    }
   }
  },
  "template": {
   "description": "The theme file to use to display the post.",
   "type": "string"
  },
  "publishpress_future_action": {
   "description": "Future action",
   "type": "object"
  },
  "publishpress_future_workflow_manual_trigger": {
   "description": "Workflow Manual Trigger",
   "type": "object"
  },
  "rttpg_featured_image_url": {
   "description": "Different sized featured images",
   "type": "array"
  },
  "rttpg_category": {
   "description": "Category list links",
   "type": "string"
  }
 },
 "links": [
  {
   "rel": "https://api.w.org/action-publish",
   "title": "The current user can publish this post.",
   "href": "https://ionetix.com/wp-json/wp/v2/pages/{id}",
   "targetSchema": {
    "type": "object",
    "properties": {
     "status": {
      "type": "string",
      "enum": [
       "publish",
       "future"
      ]
     }
    }
   }
  },
  {
   "rel": "https://api.w.org/action-unfiltered-html",
   "title": "The current user can post unfiltered HTML markup and JavaScript.",
   "href": "https://ionetix.com/wp-json/wp/v2/pages/{id}",
   "targetSchema": {
    "type": "object",
    "properties": {
     "content": {
      "raw": {
       "type": "string"
      }
     }
    }
   }
  },
  {
   "rel": "https://api.w.org/action-assign-author",
   "title": "The current user can change the author on this post.",
   "href": "https://ionetix.com/wp-json/wp/v2/pages/{id}",
   "targetSchema": {
    "type": "object",
    "properties": {
     "author": {
      "type": "integer"
     }
    }
   }
  }
 ],
 "x-source": "HTTP OPTIONS https://ionetix.com/wp-json/wp/v2/pages",
 "x-fetched": "2026-08-23"
}

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/ionetix-pages.schema"
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.