Commit bc46e474 authored by ajil.k's avatar ajil.k

Update schema.py

parent 6db2e80d
...@@ -13,7 +13,7 @@ class DeviceDetails(BaseModel): ...@@ -13,7 +13,7 @@ class DeviceDetails(BaseModel):
description="The location of the site where the device is located") description="The location of the site where the device is located")
customer: str = Field(default="", description="The name of the customer that owns the device") customer: str = Field(default="", description="The name of the customer that owns the device")
vendor: str = Field(default="", description="The name of the vendor that supplied the device") vendor: str = Field(default="", description="The name of the vendor that supplied the device")
tags: list[str] = Field(default=[], description="Any tags associated with the device") tags: list = Field(default=[], description="Any tags associated with the device")
class DeviceParameters(BaseModel): class DeviceParameters(BaseModel):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment