{ "$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-post-schema.json", "title": "Post", "description": "Post from LinkedIn API", "type": "object", "properties": { "id": { "type": "string", "example": "urn:li:share:7012345678901234567" }, "author": { "type": "string", "example": "urn:li:organization:10002687" }, "commentary": { "type": "string", "example": "Exciting news from our team!" }, "visibility": { "type": "string", "enum": [ "PUBLIC", "CONNECTIONS" ], "example": "PUBLIC" }, "lifecycleState": { "type": "string", "enum": [ "PUBLISHED", "DRAFT" ], "example": "PUBLISHED" }, "created": { "$ref": "#/components/schemas/Timestamp" }, "lastModified": { "$ref": "#/components/schemas/Timestamp" } } }