Skip to content

Commit

Permalink
open-graph-scraper actually returns string for all embedded URL meta …
Browse files Browse the repository at this point in the history
…tags [NEYN-3302] (#214)
  • Loading branch information
tybook authored Oct 8, 2024
1 parent 3f88300 commit b33ee37
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions src/v2/spec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -184,37 +184,37 @@ components:
alt:
type: string
height:
type: integer
type: string # Should be 'integer' but open-graph-scraper lies and returns a string
url:
type: string
width:
type: integer
type: string # Should be 'integer' but open-graph-scraper lies and returns a string
required:
- url
TwitterPlayerObject:
type: object
properties:
height:
type: integer
type: string # Should be 'integer' but open-graph-scraper lies and returns a string
stream:
type: string
url:
type: string
width:
type: integer
type: string # Should be 'integer' but open-graph-scraper lies and returns a string
required:
- url
ImageObject:
type: object
properties:
height:
type: integer
type: string # Should be 'integer' but open-graph-scraper lies and returns a string
type:
type: string
url:
type: string
width:
type: integer
type: string # Should be 'integer' but open-graph-scraper lies and returns a string
alt:
type: string
required:
Expand All @@ -223,13 +223,13 @@ components:
type: object
properties:
height:
type: integer
type: string # Should be 'integer' but open-graph-scraper lies and returns a string
type:
type: string
url:
type: string
width:
type: integer
type: string # Should be 'integer' but open-graph-scraper lies and returns a string
required:
- url
MusicSongObject:
Expand All @@ -238,7 +238,7 @@ components:
disc:
type: string
track:
type: integer
type: string # Should be 'integer' but open-graph-scraper lies and returns a string
url:
type: string
required:
Expand Down

0 comments on commit b33ee37

Please sign in to comment.