big tings

This commit is contained in:
Max Richter
2025-08-17 15:16:17 +02:00
parent 40b9be887d
commit c687eff53d
958 changed files with 32279 additions and 704 deletions

View File

@@ -0,0 +1,45 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "schema:EnergyConsumptionDetails",
"title": "EnergyConsumptionDetails",
"description": "EnergyConsumptionDetails represents information related to the energy efficiency of a product that consumes energy. The information that can be provided is based on international regulations such as for example [EU directive 2017/1369](https://eur-lex.europa.eu/eli/reg/2017/1369/oj) for energy labeling and the [Energy labeling rule](https://www.ftc.gov/enforcement/rules/rulemaking-regulatory-reform-proceedings/energy-water-use-labeling-consumer) under the Energy Policy and Conservation Act (EPCA) in the US.",
"type": "object",
"allOf": [
{
"description": "A utility class that serves as the umbrella for a number of 'intangible' things such as quantities, structured values, etc.",
"$ref": "schema:Intangible"
}
],
"properties": {
"energyEfficiencyScaleMax": {
"description": "Specifies the most energy efficient class on the regulated EU energy consumption scale for the product category a product belongs to. For example, energy consumption for televisions placed on the market after January 1, 2020 is scaled from D to A+++.",
"oneOf": [
{ "$ref": "schema:EUEnergyEfficiencyEnumeration" },
{
"type": "array",
"items": { "$ref": "schema:EUEnergyEfficiencyEnumeration" }
}
]
},
"energyEfficiencyScaleMin": {
"description": "Specifies the least energy efficient class on the regulated EU energy consumption scale for the product category a product belongs to. For example, energy consumption for televisions placed on the market after January 1, 2020 is scaled from D to A+++.",
"oneOf": [
{ "$ref": "schema:EUEnergyEfficiencyEnumeration" },
{
"type": "array",
"items": { "$ref": "schema:EUEnergyEfficiencyEnumeration" }
}
]
},
"hasEnergyEfficiencyCategory": {
"description": "Defines the energy efficiency Category (which could be either a rating out of range of values or a yes/no certification) for a product according to an international energy efficiency standard.",
"oneOf": [
{ "$ref": "schema:EnergyEfficiencyEnumeration" },
{
"type": "array",
"items": { "$ref": "schema:EnergyEfficiencyEnumeration" }
}
]
}
}
}