{ "$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." } } }