Google 是否认可“组织”架构?

问题描述 投票:0回答:1
据我所知,Google 不支持组织架构。本地业务模式有效,但对于我检查过的 schema.org 上的一些示例,组织模式只是被识别为本地业务模式。 如果有人对此有任何想法,请帮忙。

为组织编写了具有所有必要属性的代码,当我在丰富结果测试中检查代码时,代码中没有错误,但它被识别为徽标架构。如果我删除徽标链接,则不会检测到架构。

schema json-ld google-rich-snippets rich-snippets
1个回答
0
投票
尝试使用此代码来获取本地业务架构和组织架构

<script type="application/ld+json"> { "@context": "https://schema.org", "@type": "Organization", "image": "https://www.example.com/example_image.jpg", "url": "https://www.example.com", "sameAs": ["https://example.net/profile/example1234", "https://example.org/example1234"], "logo": "https://www.example.com/images/logo.png", "name": "Example Corporation", "description": "The example corporation is well-known for producing high-quality widgets", "email": "[email protected]", "telephone": "+47-99-999-9999", "address": { "@type": "PostalAddress", "streetAddress": "Rue Improbable 99", "addressLocality": "Paris", "addressCountry": "FR", "addressRegion": "Ile-de-France", "postalCode": "75001" }, "vatID": "FR12345678901", "iso6523Code": "0199:724500PMK2A2M1SQQ228" } </script>
    
© www.soinside.com 2019 - 2024. All rights reserved.