This repository was archived by the owner on Jun 8, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathschema.jsonld
More file actions
62 lines (62 loc) · 2.05 KB
/
Copy pathschema.jsonld
File metadata and controls
62 lines (62 loc) · 2.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"@context": "https://schema.org",
"@graph": [
{
"@type": "Organization",
"@id": "https://www.plygem.com/#organization",
"name": "Ply Gem",
"url": "https://www.plygem.com",
"logo": "https://www.plygem.com/logos/plygem-logo.png",
"parentOrganization": {
"@type": "Organization",
"name": "Cornerstone Building Brands"
},
"description": "Leading North American manufacturer of exterior building products including windows, vinyl siding, and stone veneer.",
"address": {
"@type": "PostalAddress",
"addressCountry": "US",
"addressRegion": "NC",
"addressLocality": "Cary"
},
"sameAs": [
"https://www.facebook.com/PlyGem/",
"https://twitter.com/plygem",
"https://www.linkedin.com/company/ply-gem"
]
},
{
"@type": "Brand",
"@id": "https://www.plygem.com/#brand",
"name": "Ply Gem",
"slogan": "The Total Designed Exterior",
"manufacturer": { "@id": "https://www.plygem.com/#organization" }
},
{
"@type": "OfferCatalog",
"name": "Ply Gem Product Lines",
"itemListElement": [
{
"@type": "Product",
"name": "Mastic Vinyl Siding",
"category": "Siding",
"brand": { "@id": "https://www.plygem.com/#brand" },
"description": "Professional-grade vinyl siding known for durability and a wide color palette."
},
{
"@type": "Product",
"name": "Ply Gem 1500 Series Windows",
"category": "Windows",
"brand": { "@id": "https://www.plygem.com/#brand" },
"description": "High-performance vinyl windows designed for new construction with energy-efficient glass options."
},
{
"@type": "Product",
"name": "Ply Gem Stone",
"category": "Stone Veneer",
"brand": { "@id": "https://www.plygem.com/#brand" },
"description": "Lightweight manufactured stone veneer mimicking natural textures."
}
]
}
]
}