Coverage for src / idx_api / schemas / __init__.py: 100%

2 statements  

« prev     ^ index     » next       coverage.py v7.13.1, created at 2025-12-28 11:09 -0700

1"""Pydantic schemas for API requests/responses.""" 

2 

3from idx_api.schemas.property import ( 

4 PropertyDetail, 

5 PropertyListItem, 

6 PropertySearchParams, 

7 PropertySearchResponse, 

8 SemanticSearchParams, 

9) 

10 

11__all__ = [ 

12 "PropertyDetail", 

13 "PropertyListItem", 

14 "PropertySearchParams", 

15 "PropertySearchResponse", 

16 "SemanticSearchParams", 

17]