diff --git a/app/models/attribute.py b/app/models/attribute.py new file mode 100644 index 0000000..0219ea6 --- /dev/null +++ b/app/models/attribute.py @@ -0,0 +1,7 @@ +from pydantic import BaseModel +from typing import Optional + +class Attribute(BaseModel): + value: str + type: Optional[str] + id: str