Facebook · Schema

PostRequest

Request to create a post.

Fortune 500AdvertisingContent PublishingMessagingSocial MediaSocial Networking

Properties

Name Type Description
message string Post message text.
link string URL to attach to the post.
place string Page ID of a location to tag.
tags string Comma-separated user IDs to tag.
View JSON Schema on GitHub

JSON Schema

facebook-postrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PostRequest",
  "title": "PostRequest",
  "type": "object",
  "description": "Request to create a post.",
  "properties": {
    "message": {
      "type": "string",
      "description": "Post message text.",
      "example": "Check out this amazing content!"
    },
    "link": {
      "type": "string",
      "format": "uri",
      "description": "URL to attach to the post.",
      "example": "https://example.com/article"
    },
    "place": {
      "type": "string",
      "description": "Page ID of a location to tag."
    },
    "tags": {
      "type": "string",
      "description": "Comma-separated user IDs to tag."
    }
  }
}