ObjectMetadata

Display

The display block contains information related to how this data object should/could be displayed.

AnyData

The data block contains information about the data contained in this object.

FMU

The fmu block contains all attributes specific to FMU.

Tracklog

The tracklog block contains a record of events recorded on these data.

SsdlAccess

The access block contains information related to access control for this data object, with legacy SSDL settings.

Masterdata

The masterdata block contains information related to masterdata.

File

The file block contains references to this data object as a file on a disk.

pydantic model ObjectMetadata[source]

The FMU metadata model for a given data object.

Fields:
field masterdata: Masterdata [Required]

The masterdata block contains information related to masterdata. See Masterdata.

field tracklog: Tracklog [Required]

The tracklog block contains a record of events recorded on these data. See Tracklog.

field source: str = 'fmu'

The source of this data. Defaults to ‘fmu’.

field version: VersionStr = '0.9.0'

The version of the schema that generated this data.

Constraints:
  • pattern = ^(0|[1-9]d*).(0|[1-9]d*).(0|[1-9]d*)

field schema_: AnyHttpUrl [Optional] (alias '$schema')

The url of the schema that generated this data.

field class_: Literal[FMUClass.surface, FMUClass.table, FMUClass.cpgrid, FMUClass.cpgrid_property, FMUClass.polygons, FMUClass.cube, FMUClass.well, FMUClass.points, FMUClass.dictionary] [Required] (alias 'class')

The class of the data object being exported and described by the metadata contained herein.

field fmu: FMU [Required]

The fmu block contains all attributes specific to FMU. See FMU.

field access: SsdlAccess [Required]

The access block contains information related to access control for this data object. See SsdlAccess.

field data: AnyData [Required]

The data block contains information about the data contained in this object. See data.AnyData.

field file: File [Required]

The file block contains references to this data object as a file on a disk. See File.

field display: Display [Required]

The display block contains information related to how this data object should/could be displayed. See Display.