Facebook · Schema

ThreadsInsight

A Threads insight metric.

Fortune 500AdvertisingContent PublishingMessagingSocial MediaSocial Networking

Properties

Name Type Description
name string Metric name.
period string Aggregation period.
values array
View JSON Schema on GitHub

JSON Schema

facebook-threadsinsight-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ThreadsInsight",
  "title": "ThreadsInsight",
  "type": "object",
  "description": "A Threads insight metric.",
  "properties": {
    "name": {
      "type": "string",
      "description": "Metric name.",
      "example": "views"
    },
    "period": {
      "type": "string",
      "description": "Aggregation period."
    },
    "values": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "value": {
            "type": "integer"
          }
        }
      }
    }
  }
}