Dashboard

17.01.2026 08:35

Obuwie outdoorowe

Typ: footwear

Informacje podstawowe

Definicje cech (17)

1
Płeć gender

Dla kogo przeznaczone obuwie

enum_array
Dozwolone wartości:
Kobieta Mężczyzna Dziecko Unisex
Podpowiedź dla AI:

Unisex = ["Mężczyzna", "Kobieta"]

2
Kolor color
string
Podpowiedź dla AI:

Kolor nie musi być z krótkiej palety - to może być wariacja producenta i składać się z kilku koloró

3
Wodoodporność is_waterproof

Czy obuwie jest wodoodporne

boolean
Podpowiedź dla AI:

is_waterproof: true jeśli w opisie występuje słowo "membrane", "membrana", "GORE-TEX", "KEEN.DRY", "H2No" lub wyraźne stwierdzenie "wodoodporne" (nie mylić z "impregnowane" / "water-resistant"). DWR samo w sobie = false.

4
Wysokość cholewki height

Wysokość cholewki buta

enum
Dozwolone wartości:
wysokie niskie
5
Szerokość width

Szerokość stopy (wąskie, standardowe, szerokie)

string
6
Materiał zewnętrzny material_upper

Materiały użyte na cholewkę

array
Podpowiedź dla AI:

Na przykład: Skóra, Skóra + tkanina, Tkanina / tworzywa

7
Materiał wewnętrzny material_inner

Materiały wyściółki

array
Podpowiedź dla AI:

Na przykład: Skóra, Skóra + tkanina, Tkanina / materiał tekstylny, Futerko

8
Materiał podeszwy material_outsole

Materiał i typ podeszwy (np. Vibram Megagrip)

array
9
Wzmocnienia reinforcements

Wzmocnienia (Pełny otok, Częściowy otok, Przy palcach, Brak wzmocnień)

array
10
Kompatybilność z rakami crampons_compatibility

Typ kompatybilnych raków (C0, C1, C2, C3)

string
Podpowiedź dla AI:

“Nie / incompatible” => "C0"

11
System sznurowania lacing_system

Typ sznurowania (sznurowadła, szybkie sznurowanie, BOA)

string
12
Technologie technologies

Zastosowane technologie producenta

array
Podpowiedź dla AI:

Tylko nazwy własne technologii, bez opisów marketingowych

13
Sezon season

Sezon (wiosna/lato jesień/zima, całoroczne)

string
14
Ekologiczne materiały eco_friendly

Użyte materiały ekologiczne/z recyklingu

array
15
Waga (g) weight_grams

Waga pojedynczego buta w gramach

integer
Podpowiedź dla AI:

Waga netto pojedynczego buta. Jeśli podana waga pary - podziel przez 2. Bez opakowania!

16
Drop (mm) drop_mm

Różnica wysokości pięta-palce w mm

integer
17
Wysokość amortyzacji (mm) stack_height_mm

Wysokość amortyzacji (pięta/palce)

string

Wygenerowany JSON Schema

{
    "type": "object",
    "additionalProperties": false,
    "properties": {
        "products": {
            "type": "array",
            "minItems": 1,
            "maxItems": 5,
            "items": {
                "type": "object",
                "additionalProperties": false,
                "properties": {
                    "ean": {
                        "type": "string"
                    },
                    "gender": {
                        "type": [
                            "array",
                            "null"
                        ],
                        "items": {
                            "type": "string",
                            "enum": [
                                "Kobieta",
                                "Mężczyzna",
                                "Dziecko",
                                "Unisex"
                            ]
                        }
                    },
                    "color": {
                        "type": [
                            "string",
                            "null"
                        ]
                    },
                    "is_waterproof": {
                        "type": [
                            "boolean",
                            "null"
                        ]
                    },
                    "height": {
                        "type": [
                            "string",
                            "null"
                        ],
                        "enum": [
                            "wysokie",
                            "niskie",
                            null
                        ]
                    },
                    "width": {
                        "type": [
                            "string",
                            "null"
                        ]
                    },
                    "material_upper": {
                        "type": [
                            "array",
                            "null"
                        ],
                        "items": {
                            "type": "string"
                        }
                    },
                    "material_inner": {
                        "type": [
                            "array",
                            "null"
                        ],
                        "items": {
                            "type": "string"
                        }
                    },
                    "material_outsole": {
                        "type": [
                            "array",
                            "null"
                        ],
                        "items": {
                            "type": "string"
                        }
                    },
                    "reinforcements": {
                        "type": [
                            "array",
                            "null"
                        ],
                        "items": {
                            "type": "string"
                        }
                    },
                    "crampons_compatibility": {
                        "type": [
                            "string",
                            "null"
                        ]
                    },
                    "lacing_system": {
                        "type": [
                            "string",
                            "null"
                        ]
                    },
                    "technologies": {
                        "type": [
                            "array",
                            "null"
                        ],
                        "items": {
                            "type": "string"
                        }
                    },
                    "season": {
                        "type": [
                            "string",
                            "null"
                        ]
                    },
                    "eco_friendly": {
                        "type": [
                            "array",
                            "null"
                        ],
                        "items": {
                            "type": "string"
                        }
                    },
                    "weight_grams": {
                        "type": [
                            "integer",
                            "null"
                        ],
                        "minimum": 0
                    },
                    "drop_mm": {
                        "type": [
                            "integer",
                            "null"
                        ],
                        "minimum": 0
                    },
                    "stack_height_mm": {
                        "type": [
                            "string",
                            "null"
                        ]
                    },
                    "sources": {
                        "type": "array",
                        "items": {
                            "type": "object",
                            "properties": {
                                "url": {
                                    "type": "string"
                                },
                                "publisher": {
                                    "type": "string"
                                },
                                "priority": {
                                    "type": "string",
                                    "enum": [
                                        "A",
                                        "B",
                                        "C"
                                    ]
                                },
                                "evidence": {
                                    "type": "array",
                                    "items": {
                                        "type": "object",
                                        "properties": {
                                            "field": {
                                                "type": "string",
                                                "description": "Feature field key"
                                            },
                                            "quote": {
                                                "type": "string",
                                                "description": "Quote from source"
                                            }
                                        },
                                        "required": [
                                            "field",
                                            "quote"
                                        ],
                                        "additionalProperties": false
                                    }
                                }
                            },
                            "required": [
                                "url",
                                "publisher",
                                "priority",
                                "evidence"
                            ],
                            "additionalProperties": false
                        }
                    }
                },
                "required": [
                    "ean",
                    "gender",
                    "color",
                    "is_waterproof",
                    "height",
                    "width",
                    "material_upper",
                    "material_inner",
                    "material_outsole",
                    "reinforcements",
                    "crampons_compatibility",
                    "lacing_system",
                    "technologies",
                    "season",
                    "eco_friendly",
                    "weight_grams",
                    "drop_mm",
                    "stack_height_mm",
                    "sources"
                ]
            }
        }
    },
    "required": [
        "products"
    ]
}