File tree Expand file tree Collapse file tree 3 files changed +43
-0
lines changed
src/fmu/datamodels/fmu_results Expand file tree Collapse file tree 3 files changed +43
-0
lines changed Original file line number Diff line number Diff line change 221221 {
222222 "$ref" : " #/$defs/StructureDepthSurfaceStandardResult"
223223 },
224+ {
225+ "$ref" : " #/$defs/StructureDepthFaultSurfaceStandardResult"
226+ },
224227 {
225228 "$ref" : " #/$defs/StructureTimeSurfaceStandardResult"
226229 },
83408343 "title" : " StructureDepthFaultLinesStandardResult" ,
83418344 "type" : " object"
83428345 },
8346+ "StructureDepthFaultSurfaceStandardResult" : {
8347+ "description" : " The ``standard_result`` field contains information about which standard results this\n data object represent.\n This class contains metadata for the 'structure_depth_fault_surface'\n standard result." ,
8348+ "properties" : {
8349+ "file_schema" : {
8350+ "anyOf" : [
8351+ {
8352+ "$ref" : " #/$defs/FileSchema"
8353+ },
8354+ {
8355+ "type" : " null"
8356+ }
8357+ ],
8358+ "default" : null
8359+ },
8360+ "name" : {
8361+ "const" : " structure_depth_fault_surface" ,
8362+ "title" : " Name" ,
8363+ "type" : " string"
8364+ }
8365+ },
8366+ "required" : [
8367+ " name"
8368+ ],
8369+ "title" : " StructureDepthFaultSurfaceStandardResult" ,
8370+ "type" : " object"
8371+ },
83438372 "StructureDepthIsochoreStandardResult" : {
83448373 "description" : " The ``standard_result`` field contains information about which standard results this\n data object represent.\n This class contains metadata for the 'structure_depth_isochore' standard result." ,
83458374 "properties" : {
Original file line number Diff line number Diff line change @@ -51,6 +51,7 @@ class FmuResultsSchema(SchemaBase):
5151 #### 0.14.0
5252
5353 - Correct example name for realization class
54+ - Add new standard result type `StructureDepthFaultSurfaceStandardResult`
5455
5556 #### 0.13.0
5657
Original file line number Diff line number Diff line change @@ -71,6 +71,18 @@ class StructureDepthSurfaceStandardResult(StandardResult):
7171 """The identifying name for the 'structure_depth_surface' standard result."""
7272
7373
74+ class StructureDepthFaultSurfaceStandardResult (StandardResult ):
75+ """
76+ The ``standard_result`` field contains information about which standard results this
77+ data object represent.
78+ This class contains metadata for the 'structure_depth_fault_surface'
79+ standard result.
80+ """
81+
82+ name : Literal [enums .StandardResultName .structure_depth_fault_surface ]
83+ """The identifying name for the 'structure_depth_fault_surface' standard result."""
84+
85+
7486class StructureTimeSurfaceStandardResult (StandardResult ):
7587 """
7688 The ``standard_result`` field contains information about which standard results this
@@ -177,6 +189,7 @@ class AnyStandardResult(RootModel):
177189 FieldOutlineStandardResult
178190 | InplaceVolumesStandardResult
179191 | StructureDepthSurfaceStandardResult
192+ | StructureDepthFaultSurfaceStandardResult
180193 | StructureTimeSurfaceStandardResult
181194 | StructureDepthIsochoreStandardResult
182195 | StructureDepthFaultLinesStandardResult
You can’t perform that action at this time.
0 commit comments