diff --git a/gns3server/schemas/controller/appliances.py b/gns3server/schemas/controller/appliances.py index af816d4a..7ca46437 100644 --- a/gns3server/schemas/controller/appliances.py +++ b/gns3server/schemas/controller/appliances.py @@ -417,6 +417,7 @@ class Appliance(BaseModel): appliance_id: UUID = Field(..., title='Appliance ID') name: str = Field(..., title='Appliance name') + builtin: Optional[bool] = Field(None, title='Whether the appliance is builtin or not') category: Category = Field(..., title='Category of the appliance') description: str = Field( ..., title='Description of the appliance. Could be a marketing description'