| Metadata attribute name | Relevance | Products count |
|---|---|---|
| batteryCapacity | Batteries and products that contain batteries as part of the product. | 7 017 |
| batteryChemistry | Batteries and products that contain batteries as part of the product. | 10 927 |
| batterySize | Batteries and products that contain batteries as part of the product. | 443 |
| voltage | Any electrical product. | 75 930 |
An object describing the battery’s capacity in charge and / or energy terms.
nominal — battery nominal capacity expressed as electric charge.Represented as a Measurement object with units in ampere-hours (Ah) or milliampere-hours (mAh).
energy — battery energy capacity.Represented as a Measurement object with units in watt-hours (Wh) or kilowatt-hours (kWh).
apparentEnergy — battery apparent energy capacity.Represented as a Measurement object with units in watt-hours (VAh) or kilowatt-hours (kVAh).
{
"product": {
"metadata": {
"electric": {
"batteryCapacity": {
"nominal": {
"equals": {
"value": "3000",
"unit": "mAh" // Possible values: "mAh", "Ah"
}
},
"energy": {
"equals": {
"value": "11.1",
"unit": "Wh" // Possible values: "Wh", "kWh"
}
}
}
}
}
}
}
Specifies the chemical composition of the battery.
AlkalineLead-AcidLiHDLithiumLithium Iron PhosphateLithium-IonLithium-Manganese DioxideLithium PolymerNickel-CadmiumNickel-Metal HydrideNickel-OxyhydroxideLead-CalciumSilicon-CarbonSilver OxideSealed Lead-AcidValve Regulated Lead-AcidVRLA Absorbent Glass MatVRLA Gel CellZinc-AirZinc-CarbonZinc Chloride{
"product": {
"metadata": {
"electric": {
"batteryChemistry": "Lithium-Ion"
}
}
}
}
Specifies the physical size and form factor of the battery.
186502CR5AAAAAAAAAABCCR123ACR2CR2025CR2032CR2450CR-P2CR-V3DE (9V)LR41LR44Sub-C{
"product": {
"metadata": {
"electric": {
"batterySize": "AAA"
}
}
}
}
The electric.voltage metadata property describes voltage characteristics of a product.
It may contain one or more voltage types, depending on the available data.
Supported voltage types are:
nominal — the nominal (reference) voltage of the productoperational — the voltage value or range at which the product operates or provides output under normal conditionsinput — the voltage supplied to the product (for example, mains or power supply input)Each voltage type is represented by a Measurement object and is measured in volts.
{
"product": {
"metadata": {
"electric": {
"voltage": {
"nominal": {
"equals": {
"value": "1.2",
"unit": "volt"
}
},
"operational": {
"greaterThan": {
"value": "1",
"unit": "volt"
},
"lessThan": {
"value": "1.5",
"unit": "volt"
}
}
}
}
}
}
}