Skip to content

Commit

Permalink
made TE_EventNomination and TE_EventBequeath both extend TE_Event
Browse files Browse the repository at this point in the history
  • Loading branch information
cl4yton committed Oct 17, 2023
1 parent 1ceac48 commit f0d4a4d
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions schemas/text_extractions_schema_v0.1.0.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,14 @@ components:
allOf:
- $ref: "#/components/schemas/TE_Object"
required:
- date
- text
properties:
date:
description: |
The date of the creation or modification of the current WillModel
type: string
format: date
text:
description: |
The original raw text of the will.
Expand Down Expand Up @@ -71,6 +77,8 @@ components:

TE_Entity:
description: An extracted entity
allOf:
- $ref: "#/components/schemas/TE_Object"
properties:
id:
description: |
Expand All @@ -90,6 +98,8 @@ components:

TE_Event:
description: An extracted event
allOf:
- $ref: "#/components/schemas/TE_Object"
properties:
id:
description: |
Expand All @@ -105,6 +115,8 @@ components:

TE_EventNomination:
description: The testator names the executor
allOf:
- $ref: "#/components/schemas/TE_Event"
properties:
Testator:
description: A string representing the id of the Entity that is the Testator
Expand All @@ -115,6 +127,8 @@ components:

TE_EventBequeath:
description: A Bequeath event.
allOf:
- $ref: "#/components/schemas/TE_Event"
properties:
Testator:
description: A string representing the id of the Entity that is the Testator
Expand Down

0 comments on commit f0d4a4d

Please sign in to comment.