Skip to content

Commit

Permalink
Merge pull request #1433 from estuary/source-linkedin-pages
Browse files Browse the repository at this point in the history
New branch for linkedin pages
  • Loading branch information
jonwihl authored Apr 5, 2024
2 parents 17529ca + 2abb9fc commit 6567726
Show file tree
Hide file tree
Showing 22 changed files with 4,848 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/python.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ on:
- "source-hubspot-native/**"
- "source-hubspot/**"
- "source-notion/**"
- "source-linkedin-pages/**"
pull_request:
branches: [main]
paths:
Expand All @@ -27,6 +28,7 @@ on:
- "source-hubspot-native/**"
- "source-hubspot/**"
- "source-notion/**"
- "source-linkedin-pages/**"

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand Down Expand Up @@ -78,6 +80,10 @@ jobs:
type: capture
version: v2
usage_rate: "1.0"
- name: source-linkedin-pages
type: capture
version: v1
usage_rate: "1.0"

steps:
- uses: actions/checkout@v4
Expand Down
36 changes: 36 additions & 0 deletions source-linkedin-pages/acmeCo/flow.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
---
collections:
acmeCo/follower_statistics:
schema: follower_statistics.schema.yaml
key:
- /_meta/row_id
acmeCo/organization_lookup:
schema: organization_lookup.schema.yaml
key:
- /_meta/row_id
acmeCo/share_statistics:
schema: share_statistics.schema.yaml
key:
- /_meta/row_id
acmeCo/total_follower_count:
schema:
$schema: "http://json-schema.org/draft-04/schema#"
additionalProperties: true
type: object
required:
- _meta
properties:
firstDegreeSize:
type:
- "null"
- integer
_meta:
type: object
properties:
row_id:
type: integer
required:
- row_id
x-infer-schema: true
key:
- /_meta/row_id
82 changes: 82 additions & 0 deletions source-linkedin-pages/acmeCo/follower_statistics.schema.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
---
$schema: "http://json-schema.org/draft-04/schema#"
type: object
additionalProperties: true
required:
- _meta
properties:
_meta:
type: object
properties:
row_id:
type: integer
required:
- row_id
followerCountsByStaffCountRange:
type:
- "null"
- array
items:
type:
- "null"
- object
additionalProperties: true
followerCountsByFunction:
type:
- "null"
- array
items:
type:
- "null"
- object
additionalProperties: true
followerCountsByAssociationType:
type:
- "null"
- array
items:
type:
- "null"
- object
additionalProperties: true
followerCountsBySeniority:
type:
- "null"
- array
items:
type:
- "null"
- object
additionalProperties: true
followerCountsByRegion:
type:
- "null"
- array
items:
type:
- "null"
- object
additionalProperties: true
organizationalEntity:
type:
- "null"
- string
followerCountsByCountry:
type:
- "null"
- array
items:
type:
- "null"
- object
additionalProperties: true
followerCountsByIndustry:
type:
- "null"
- array
items:
type:
- "null"
- object
additionalProperties: true
x-infer-schema: true
Loading

0 comments on commit 6567726

Please sign in to comment.