# -*- coding: utf-8 -*- from typing import List from pydantic import BaseModel class Space(BaseModel): id: str realtime_temperature: float equipment: List[str] temperature_target: float