Use the certification [certification]
attribute to describe certifications required by local regulations, such as energy efficiency ratings and CO2 class, associated with a product. To show your product with a supported certification, provide a supported combination of authority [certification_authority]
, name [certification_name]
, and code [certification_code]
.
In this article
When to use
Optional for products that require certain information to be shown in your Shopping ads or free listings, for example due to local regulations and for supported voluntary certifications as described below.
If you don't provide certification information for your products, Google may automatically add it based on GTIN and MPN data. This helps ensure that your products' certification information is shown accurately on Google. You can correct or update the information by submitting new certification attributes and sub-attributes for your products.
Supported certifications
- EU Energy Labeling (EPREL)
- CO2 Efficiency of Vehicles in France (ADEME)
- CO2 and Efficiency of Vehicles in Germany (BMWK)
- Energy Star in the United States and Canada
Sub-attributes
This attribute uses the following sub-attributes:
- Authority
[certification_authority]
(Required): The authority or certification body responsible for issuing the certification. - Name
[certification_name]
(Required): The name of the certification. - Code
[certification_code]
(Sometimes Required): The code of the certification. Check the details of the certification at the link below, to understand if this sub-attribute is required. - Value
[certification_value]
(Sometimes Required): The value of the certification. Check the details of the certification at the link below, to understand if this sub-attribute is required.
Format
Follow these formatting guidelines to make sure Google understands the data you're submitting.
Learn when and how to submit your product data in English
Type | Unicode characters (Recommended: ASCII only) |
Repeated field | Yes |
Schema.org property | Product.hasCertification Type: Certification (specify properties issuedBy, name, and certificationIdentification) |
File format | Example entry |
---|---|
Text feeds |
Format the attribute header by including the sub-attributes you’re submitting. Include certification The authority For example, to submit 3 sub-attributes authority
Example header and values: For EPREL:
For Vehicles:
If you don't include the sub-attributes in the attribute header, we’ll assume that your values include 3 sub-attributes in this order:
|
XML feeds |
|
To format your data for Content API, you can read the Content API for Shopping resource.
How to encode in Schema.org
The following example illustrates how to specify certification information using structured data. The example specifies an EPREL energy efficiency label for an LED.
{
"@context": "https://schema.org/",
"@type": "Product",
"sku": "1234-5678",
"image": "https://www.example.com/led.jpg",
"name": "LED",
"description": "Dimmable LED",
"gtin14": "12345678901231",
"mpn": "WH1234",
"brand": {
"@type": "Brand",
"name": "ExampleLightingBrand"
},
"hasCertification": {
"@type": "Certification",
"issuedBy": {
"@type": "Organization",
"name": "European_Commission"
},
"name": "EPREL",
"certificationIdentification": "123456"
},
"offers": {
"@type": "Offer",
"url": "https://www.example.com/led",
"itemCondition": "https://schema.org/NewCondition",
"availability": "https://schema.org/InStock",
"price": 2.30,
"priceCurrency": "EUR"
}
}
Minimum requirement
This is the requirement you need to meet to show your product with a supported certification. If you don’t follow this requirement, you will find a warning in the “Needs attention” tab. No products will be disapproved due to not meeting the minimum requirements:
- Provide a supported combination of Authority, Name and Code.