Obuwie outdoorowe
Typ: footwear
Informacje podstawowe
Definicje cech (17)
gender
Dla kogo przeznaczone obuwie
Unisex = ["Mężczyzna", "Kobieta"]
color
Kolor nie musi być z krótkiej palety - to może być wariacja producenta i składać się z kilku koloró
is_waterproof
Czy obuwie jest wodoodporne
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.
height
Wysokość cholewki buta
width
Szerokość stopy (wąskie, standardowe, szerokie)
material_upper
Materiały użyte na cholewkę
Na przykład: Skóra, Skóra + tkanina, Tkanina / tworzywa
material_inner
Materiały wyściółki
Na przykład: Skóra, Skóra + tkanina, Tkanina / materiał tekstylny, Futerko
material_outsole
Materiał i typ podeszwy (np. Vibram Megagrip)
reinforcements
Wzmocnienia (Pełny otok, Częściowy otok, Przy palcach, Brak wzmocnień)
crampons_compatibility
Typ kompatybilnych raków (C0, C1, C2, C3)
“Nie / incompatible” => "C0"
lacing_system
Typ sznurowania (sznurowadła, szybkie sznurowanie, BOA)
technologies
Zastosowane technologie producenta
Tylko nazwy własne technologii, bez opisów marketingowych
season
Sezon (wiosna/lato jesień/zima, całoroczne)
eco_friendly
Użyte materiały ekologiczne/z recyklingu
weight_grams
Waga pojedynczego buta w gramach
Waga netto pojedynczego buta. Jeśli podana waga pary - podziel przez 2. Bez opakowania!
drop_mm
Różnica wysokości pięta-palce w mm
stack_height_mm
Wysokość amortyzacji (pięta/palce)
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"
]
}