File tree Expand file tree Collapse file tree 4 files changed +6
-0
lines changed Expand file tree Collapse file tree 4 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ namespace equaliq.extraction
5
5
6
6
use equaliq#StringList
7
7
use equaliq#ContractType
8
+ use equaliq#ContractTexts
8
9
9
10
// General Contract Extraction not directly tied to EQ or IQ analysis
10
11
@@ -17,6 +18,8 @@ structure ContractExtractionResult {
17
18
terms : ExtractionTermMap
18
19
19
20
variables : ContractVariableMap
21
+
22
+ contractTexts : ContractTexts
20
23
}
21
24
22
25
map ExtractionTermMap {
Original file line number Diff line number Diff line change @@ -451,6 +451,7 @@ class ContractExtractionResult(BaseModel):
451
451
parties : list [str ] | None
452
452
terms : ExtractionTermMap | None
453
453
variables : ContractVariableMap | None
454
+ contractTexts : ContractTexts | None
454
455
455
456
456
457
class OWNERSHIP (BaseModel ):
Original file line number Diff line number Diff line change @@ -97,6 +97,7 @@ export type ContractExtractionResult = {
97
97
parties ?: string [ ] ;
98
98
terms ?: ExtractionTermMap ;
99
99
variables ?: ContractVariableMap ;
100
+ contractTexts ?: ContractTexts ;
100
101
} ;
101
102
102
103
export type ContractMetadata = {
Original file line number Diff line number Diff line change @@ -276,6 +276,7 @@ export interface components {
276
276
parties ?: string [ ] ;
277
277
terms ?: components [ "schemas" ] [ "ExtractionTermMap" ] ;
278
278
variables ?: components [ "schemas" ] [ "ContractVariableMap" ] ;
279
+ contractTexts ?: components [ "schemas" ] [ "ContractTexts" ] ;
279
280
} ;
280
281
ContractMetadata : {
281
282
contractId : string ;
You can’t perform that action at this time.
0 commit comments