From 03e042e91ff30516efb4268ce4f01a3c0ad4bb81 Mon Sep 17 00:00:00 2001 From: Josh Burman Date: Tue, 14 Sep 2021 11:48:25 -0400 Subject: [PATCH] attribute instead of metadata --- app/models/attribute.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 app/models/attribute.py 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