sem8-iot-test/agent/src/schema/parking_schema.py

9 lines
177 B
Python
Raw Normal View History

2026-02-26 12:11:07 +02:00
from marshmallow import Schema, fields
2026-02-26 10:54:34 +00:00
from schema.gps_schema import GpsSchema
2026-02-26 12:11:07 +02:00
class ParkingSchema(Schema):
gps = fields.Nested(GpsSchema)
empty_count = fields.Int()