From 2dfe6b15f206a6b50f0a158eaec788904b3fa498 Mon Sep 17 00:00:00 2001 From: Jordan Scott Date: Wed, 1 Jun 2022 13:44:11 -0500 Subject: [PATCH] added nulls to share_statistics schema --- .../schemas/share_statistics.json | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) 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": {} } }