make value optional, as it may not always be provided

This commit is contained in:
Josh Burman 2021-10-27 02:13:34 +00:00
parent 4577370689
commit 338a6c2ac3

View File

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