LinkedIn · Schema

ImageReference

BusinessCareersMarketingProfessional NetworkingRecruitingSocial MediaFortune 1000

Properties

Name Type Description
cropped object
original object
cropInfo object
View JSON Schema on GitHub

JSON Schema

linkedin-imagereference-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ImageReference",
  "title": "ImageReference",
  "type": "object",
  "properties": {
    "cropped": {
      "$ref": "#/components/schemas/ImageAsset"
    },
    "original": {
      "$ref": "#/components/schemas/ImageAsset"
    },
    "cropInfo": {
      "type": "object",
      "properties": {
        "x": {
          "type": "integer",
          "example": 0
        },
        "y": {
          "type": "integer",
          "example": 0
        },
        "width": {
          "type": "integer",
          "example": 400
        },
        "height": {
          "type": "integer",
          "example": 400
        }
      }
    }
  }
}