ImageReference from LinkedIn API
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/linkedin/refs/heads/main/json-schema/linkedin-regulations-data-portability-image-reference-schema.json", "title": "ImageReference", "description": "ImageReference from LinkedIn API", "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 } } } } }