Is it possible to have class variables that are not part of the schema that is parsed by pydantic? ie: ``` class MyModel(BaseModel): # This is part of pydantic group: str = None # This is not. ACTIONS = ['a', 'b', 'c']```