Facebook · Schema
Photo
A Facebook photo.
Fortune 500AdvertisingContent PublishingMessagingSocial MediaSocial Networking
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Photo ID. |
| name | string | Photo caption. |
| created_time | string | Time the photo was uploaded. |
| link | string | URL to the photo on Facebook. |
| picture | string | URL to a thumbnail of the photo. |
| source | string | URL to the full-size photo. |
| width | integer | Photo width in pixels. |
| height | integer | Photo height in pixels. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Photo",
"title": "Photo",
"type": "object",
"description": "A Facebook photo.",
"properties": {
"id": {
"type": "string",
"description": "Photo ID.",
"example": "300001234567890"
},
"name": {
"type": "string",
"description": "Photo caption.",
"example": "Sunset at the beach"
},
"created_time": {
"type": "string",
"format": "date-time",
"description": "Time the photo was uploaded."
},
"link": {
"type": "string",
"format": "uri",
"description": "URL to the photo on Facebook."
},
"picture": {
"type": "string",
"format": "uri",
"description": "URL to a thumbnail of the photo."
},
"source": {
"type": "string",
"format": "uri",
"description": "URL to the full-size photo."
},
"width": {
"type": "integer",
"description": "Photo width in pixels.",
"example": 1920
},
"height": {
"type": "integer",
"description": "Photo height in pixels.",
"example": 1080
}
}
}