Electric products metadata

Metadata attribute nameRelevanceProducts count
batteryCapacityBatteries and products that contain batteries as part of the product.7 017
batteryChemistryBatteries and products that contain batteries as part of the product.10 927
batterySizeBatteries and products that contain batteries as part of the product.443
voltageAny electrical product.75 930

electric.batteryCapacity

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"
                        }
                    }
                }
            }
        }
    }
}

electric.batteryChemistry

Specifies the chemical composition of the battery.

  • List of supported values.
    • Alkaline
    • Lead-Acid
    • LiHD
    • Lithium
    • Lithium Iron Phosphate
    • Lithium-Ion
    • Lithium-Manganese Dioxide
    • Lithium Polymer
    • Nickel-Cadmium
    • Nickel-Metal Hydride
    • Nickel-Oxyhydroxide
    • Lead-Calcium
    • Silicon-Carbon
    • Silver Oxide
    • Sealed Lead-Acid
    • Valve Regulated Lead-Acid
    • VRLA Absorbent Glass Mat
    • VRLA Gel Cell
    • Zinc-Air
    • Zinc-Carbon
    • Zinc Chloride
{
    "product": {
        "metadata": {
            "electric": {
                "batteryChemistry": "Lithium-Ion"
            }
        }
    }
}

electric.batterySize

Specifies the physical size and form factor of the battery.

  • List of supported values.
    • 18650
    • 2CR5
    • AA
    • A
    • AAA
    • AAAA
    • B
    • C
    • CR123A
    • CR2
    • CR2025
    • CR2032
    • CR2450
    • CR-P2
    • CR-V3
    • D
    • E (9V)
    • LR41
    • LR44
    • Sub-C
{
    "product": {
        "metadata": {
            "electric": {
                "batterySize": "AAA"
            }
        }
    }
}

electric.voltage

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 product
  • operational — the voltage value or range at which the product operates or provides output under normal conditions
  • input — 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"
                        }
                    }
                }
            }
        }
    }
}