All Downloads are FREE. Search and download functionalities are using the official Maven repository.

src.cdm.observable.event.Observation.py Maven / Gradle / Ivy

There is a newer version: 6.0.0-dev.92
Show newest version
# pylint: disable=line-too-long, invalid-name, missing-function-docstring
# pylint: disable=bad-indentation, trailing-whitespace, superfluous-parens
# pylint: disable=wrong-import-position, unused-import, unused-wildcard-import
# pylint: disable=wildcard-import, wrong-import-order, missing-class-docstring
# pylint: disable=missing-module-docstring
from __future__ import annotations
from typing import List, Optional
import datetime
import inspect
from decimal import Decimal
from pydantic import Field
from rosetta.runtime.utils import (
    BaseDataClass, rosetta_condition, rosetta_resolve_attr
)
from rosetta.runtime.utils import *

__all__ = ['Observation']


class Observation(BaseDataClass):
    """
    Defines a single, numerical value that was observed in the marketplace. Observations of market data are made independently to business events or trade life-cycle events, so data instances of Observation can be created independently of any other model type, hence it is annotated as a root type. Observations will be broadly reused in many situations, so references to Observation are supported via the 'key' annotation.
    """
    observedValue: cdm.observable.asset.Price.Price = Field(..., description="Specifies the observed value as a number.")
    """
    Specifies the observed value as a number.
    """
    observationIdentifier: cdm.observable.event.ObservationIdentifier.ObservationIdentifier = Field(..., description="Represents the observation was made i.e. how to uniquely identify the observed value among the population of all available market data.")
    """
    Represents the observation was made i.e. how to uniquely identify the observed value among the population of all available market data.
    """

import cdm 
import cdm.observable.asset.Price
import cdm.observable.event.ObservationIdentifier




© 2015 - 2025 Weber Informatics LLC | Privacy Policy