Raw schema
{
"type": "object",
"properties": {
"number": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "СБКТС number.",
"title": "Number"
},
"vin": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "VIN (10-17 chars; substring/exact).",
"title": "Vin"
},
"brand": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Brand.",
"title": "Brand"
},
"type": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Type.",
"title": "Type"
},
"comm_name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Commercial name.",
"title": "Comm Name"
},
"engine": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "ICE engine model (icontains).",
"title": "Engine"
},
"year": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"description": "Manufacture year (YYYY).",
"title": "Year"
},
"motor": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Electric motor model (icontains).",
"title": "Motor"
},
"motor_power": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"description": "Motor power (kW).",
"title": "Motor Power"
},
"category": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Vehicle category.",
"title": "Category"
},
"eco_class": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Ecological class — '5' or name; auto-resolved to reference id.",
"title": "Eco Class"
},
"wheel_formula": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Wheel formula (e.g. '4x2'); auto-resolved to reference id.",
"title": "Wheel Formula"
},
"axis_count": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Axle count (e.g. '2') or exact 'axes / wheels' (e.g. '2 / 4') — auto-resolved to reference id. A bare axle count may match several wheel configs; then candidates are returned to pick from.",
"title": "Axis Count"
},
"issuer": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Testing lab name — auto-resolved to id (or pass numeric id). See list_test_labs.",
"title": "Issuer"
},
"date_from": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Issue date from (YYYY-MM-DD).",
"title": "Date From"
},
"date_to": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Issue date to (YYYY-MM-DD).",
"title": "Date To"
},
"page": {
"default": 1,
"description": "1-based page index.",
"minimum": 1,
"title": "Page",
"type": "integer"
},
"page_size": {
"default": 20,
"description": "Rows per page (max 50).",
"maximum": 50,
"minimum": 1,
"title": "Page Size",
"type": "integer"
}
},
"title": "search_sbktsArguments"
}