Dashboard

17.01.2026 08:35

Sprzęt wspinaczkowy

Typ: climbing

Informacje podstawowe

Definicje cech (12)

1
Typ sprzętu equipment_type

Rodzaj sprzętu (karabinek, przyrząd, uprząż)

string
2
Waga (g) weight_grams
integer
3
Materiał material

Materiały (aluminium, stal, dyneema)

array
4
Średnica liny (mm) rope_diameter_mm

Zakres średnic lin (np. "8.5-11")

string
5
Certyfikaty certifications

Certyfikaty bezpieczeństwa (CE, UIAA)

array
6
Wytrzymałość (kN) breaking_strength_kn

Wytrzymałość na zerwanie

number
7
Rozwarcie karabinka (mm) gate_opening_mm

Rozwarcie zatrzasku karabinka

number
8
Typ zamka locking_type

Typ zamka (screw, auto, twin-gate)

string
9
Technologie technologies
array
10
Kolor color
string
11
Rozmiar uprzęży harness_size

Zakres rozmiarów (XS-XL lub obwód)

string
12
Liczba pętli gear loop gear_loops

Liczba pętli na sprzęt

integer

Wygenerowany JSON Schema

{
    "type": "object",
    "additionalProperties": false,
    "properties": {
        "products": {
            "type": "array",
            "minItems": 1,
            "maxItems": 5,
            "items": {
                "type": "object",
                "additionalProperties": false,
                "properties": {
                    "ean": {
                        "type": "string"
                    },
                    "equipment_type": {
                        "type": [
                            "string",
                            "null"
                        ]
                    },
                    "weight_grams": {
                        "type": [
                            "integer",
                            "null"
                        ],
                        "minimum": 0
                    },
                    "material": {
                        "type": [
                            "array",
                            "null"
                        ],
                        "items": {
                            "type": "string"
                        }
                    },
                    "rope_diameter_mm": {
                        "type": [
                            "string",
                            "null"
                        ]
                    },
                    "certifications": {
                        "type": [
                            "array",
                            "null"
                        ],
                        "items": {
                            "type": "string"
                        }
                    },
                    "breaking_strength_kn": {
                        "type": [
                            "number",
                            "null"
                        ]
                    },
                    "gate_opening_mm": {
                        "type": [
                            "number",
                            "null"
                        ]
                    },
                    "locking_type": {
                        "type": [
                            "string",
                            "null"
                        ]
                    },
                    "technologies": {
                        "type": [
                            "array",
                            "null"
                        ],
                        "items": {
                            "type": "string"
                        }
                    },
                    "color": {
                        "type": [
                            "string",
                            "null"
                        ]
                    },
                    "harness_size": {
                        "type": [
                            "string",
                            "null"
                        ]
                    },
                    "gear_loops": {
                        "type": [
                            "integer",
                            "null"
                        ],
                        "minimum": 0
                    },
                    "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",
                    "equipment_type",
                    "weight_grams",
                    "material",
                    "rope_diameter_mm",
                    "certifications",
                    "breaking_strength_kn",
                    "gate_opening_mm",
                    "locking_type",
                    "technologies",
                    "color",
                    "harness_size",
                    "gear_loops",
                    "sources"
                ]
            }
        }
    },
    "required": [
        "products"
    ]
}