Facebook · JSON Structure

Graph Api Post Structure

A Facebook post.

Type: object Properties: 7
Fortune 500AdvertisingContent PublishingMessagingSocial MediaSocial Networking

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

Properties

id message created_time updated_time type link permalink_url

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/facebook/refs/heads/main/json-structure/graph-api-post-structure.json",
  "name": "Post",
  "description": "A Facebook post.",
  "type": "object",
  "properties": {
    "id": { "type": "string", "description": "The post ID." },
    "message": { "type": "string", "description": "Post message text." },
    "created_time": { "type": "datetime", "description": "Time the post was created." },
    "updated_time": { "type": "datetime", "description": "Time the post was last updated." },
    "type": { "type": "string", "description": "Post type.", "enum": ["link", "status", "photo", "video", "offer"] },
    "link": { "type": "uri", "description": "URL attached to the post." },
    "permalink_url": { "type": "uri", "description": "Permanent URL to the post." }
  }
}