Skip to content

Commit

Permalink
Add appliesToId to DocumentContentReference (DDF-RA #498)
Browse files Browse the repository at this point in the history
  • Loading branch information
ASL-rmarshall committed Oct 29, 2024
1 parent f581916 commit d24fafe
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions docs/USDM_API.json
Original file line number Diff line number Diff line change
Expand Up @@ -2597,6 +2597,10 @@
"type": "string",
"title": "Sectiontitle"
},
"appliesToId": {
"type": "string",
"title": "Appliestoid"
},
"instanceType": {
"type": "string",
"enum": [
Expand All @@ -2611,6 +2615,7 @@
"id",
"sectionNumber",
"sectionTitle",
"appliesToId",
"instanceType"
],
"title": "DocumentContentReference"
Expand Down
4 changes: 4 additions & 0 deletions docs/USDM_API.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1730,6 +1730,9 @@ components:
sectionTitle:
type: string
title: Sectiontitle
appliesToId:
type: string
title: Appliestoid
instanceType:
type: string
enum:
Expand All @@ -1741,6 +1744,7 @@ components:
- id
- sectionNumber
- sectionTitle
- appliesToId
- instanceType
title: DocumentContentReference
EligibilityCriterion-Input:
Expand Down
1 change: 1 addition & 0 deletions model/document_content_reference.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@
class DocumentContentReference(ApiBaseModelWithId):
sectionNumber: str
sectionTitle: str
appliesToId: str
instanceType: Literal['DocumentContentReference']

0 comments on commit d24fafe

Please sign in to comment.