Add builtin field in Appliance model

pull/2262/head
grossmj 11 months ago
parent 785eff869d
commit 9357ac6035

@ -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'

Loading…
Cancel
Save