How to implement arrays in Open Graph
masterTo represent a list of values (an array) in Open Graph, use multiple <meta> tags with the same property name. The first tag encountered (from top to bottom) takes precedence in case of conflicts.
When using structured properties, place them immediately after the root tag they belong to. A new root element signals the end of the previous structured property set and the start of a new one.
<meta property="og:image" content="https://example.com/rock.jpg" />
<meta property="og:image:width" content="300" />
<meta property="og:image:height" content="300" />
<meta property="og:image" content="https://example.com/rock2.jpg" />
<meta property="og:image" content="https://example.com/rock3.jpg" />
<meta property="og:image:height" content="1000" />