diff --git a/airbyte-integrations/connectors/source-linkedin-pages/source_linkedin_pages/schemas/share_statistics.json b/airbyte-integrations/connectors/source-linkedin-pages/source_linkedin_pages/schemas/share_statistics.json index 2bea295e87bf9..621997bd13b52 100644 --- a/airbyte-integrations/connectors/source-linkedin-pages/source_linkedin_pages/schemas/share_statistics.json +++ b/airbyte-integrations/connectors/source-linkedin-pages/source_linkedin_pages/schemas/share_statistics.json @@ -1,27 +1,26 @@ { - "$schema": "http://json-schema.org/draft-04/schema#", - "type": "object", + "type": ["null", "object"], "properties": { "paging": { - "type": "object", + "type": ["null", "object"], "properties": { "start": { - "type": "integer" + "type": ["null", "integer"] }, "count": { - "type": "integer" + "type": ["null", "integer"] }, "links": { - "type": "array", + "type": ["null", "array"], "items": {} }, "total": { - "type": "integer" + "type": ["null", "integer"] } } }, "elements": { - "type": "array", + "type": ["null", "array"], "items": {} } }