attribute instead of metadata

This commit is contained in:
Josh Burman 2021-09-14 11:48:25 -04:00
parent b472af6020
commit 03e042e91f

7
app/models/attribute.py Normal file
View File

@ -0,0 +1,7 @@
from pydantic import BaseModel
from typing import Optional
class Attribute(BaseModel):
value: str
type: Optional[str]
id: str