sem8-iot-test/agent/src/schema/parking_schema.py
ІМ-24 Владислав Коваленко af94c007a2 fixes in imports and schemas
2026-02-26 10:54:34 +00:00

9 lines
177 B
Python

from marshmallow import Schema, fields
from schema.gps_schema import GpsSchema
class ParkingSchema(Schema):
gps = fields.Nested(GpsSchema)
empty_count = fields.Int()