{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ApplicationCredentials", "title": "ApplicationCredentials", "type": "object", "properties": { "applicationUrn": { "type": "string", "description": "URN of the application", "example": "urn:li:developerApplication:12345678" }, "clientId": { "type": "string", "description": "OAuth 2.0 client ID", "example": "78abc123def456" }, "clientSecret": { "type": "string", "description": "OAuth 2.0 client secret", "example": "secretXYZ789" }, "uniqueForeignId": { "type": "string", "description": "Partner's unique identifier", "example": "acme-corp-12345" } } }