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

9 lines
187 B
Python
Raw Normal View History

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