Skip to content

Commit

Permalink
Renamed CDS pydantic models
Browse files Browse the repository at this point in the history
  • Loading branch information
jenniferajiang committed May 9, 2024
1 parent 31a2784 commit af397ca
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion healthchain/models/responses/cdsdiscovery.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class CDSService(BaseModel):
usageRequirements: Optional[str] = None


class CDSServiceDiscoveryResponse(BaseModel):
class CDSServiceInformation(BaseModel):
"""
A CDS Service is discoverable via a stable endpoint by CDS Clients. The Discovery endpoint includes information such as a
description of the CDS Service, when it should be invoked, and any data that is requested to be prefetched.
Expand Down
2 changes: 1 addition & 1 deletion healthchain/models/responses/cdsfeedback.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from typing import Optional, Dict, Any
from enum import Enum

from .cdsservice import Coding
from .cdsresponse import Coding


class OutcomeEnum(str, Enum):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@
from typing import Optional, List, Dict
from typing_extensions import Self

# TODO: add docstrings


class IndicatorEnum(str, Enum):
"""
Expand Down

0 comments on commit af397ca

Please sign in to comment.