ImageAsset 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-asset-schema.json", "title": "ImageAsset", "description": "ImageAsset from LinkedIn API", "type": "object", "properties": { "downloadUrl": { "type": "string", "format": "uri", "example": "https://media.licdn.com/dms/image/..." }, "downloadUrlExpiresAt": { "type": "integer", "format": "int64", "example": 1710979200000 }, "status": { "type": "string", "enum": [ "AVAILABLE", "PROCESSING", "FAILED" ], "example": "AVAILABLE" } } }