Oracle Beehive
  Oracle® Beehive RESTful Web Services API Reference
  Release 2 (2.0.1.7)
  E16658-04

Contents

Overview

PerformedOnPredicate is used to filter a list of activities based on the performed date d, such that:

StartDate <= d < EndDate

The predicate specifies a date range.

Note: Conceptually the predicate works with ANYTHING (not limited to RecentActivity) that is performed within a date range.

Members

Name Type Description

endDate

dateTime

The end date for the performed range. Should contain no value if matching all activities after the start date.

startDate

dateTime

The start date for the performed range. Should contain no value if matching all activities before the stop date.

Hierarchy

Inherits From

Examples

Below are examples in JSON and XML formats. All examples are shown with all inherited members. Quoting when required is part of the examples, but you must obviously populate with your own data.

XML Example

(show inherited members)

<obh:performedOnPredicate xsi:type="obh:performedOnPredicate" xmlns:obh="http://www.oracle.com/beehive" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
        <obh:endDate>your_dateTime_0</obh:endDate>
        <obh:startDate>your_dateTime_0</obh:startDate>
</obh:performedOnPredicate>

JSON Example

(show inherited members)

{
    "beeType":"performedOnPredicate",
        "endDate":"your_{http://www.oracle.com/beehive}endDate_as_dateTime0",
        "startDate":"your_{http://www.oracle.com/beehive}startDate_as_dateTime0"
}

XML Schema


<xs:complexType name="performedOnPredicate">
    <xs:complexContent>
        <xs:extension base="tns:predicate">
            <xs:sequence>
                <xs:element minOccurs="0" name="endDate" type="xs:dateTime"/>
                <xs:element minOccurs="0" name="startDate" type="xs:dateTime"/>
            </xs:sequence>
        </xs:extension>
    </xs:complexContent>
</xs:complexType>

        

References

The following data represents the references to performedOnPredicate

Referenced By Resources

Not Referenced Directly by Resources

Referenced By Representaions

Not Referenced Directly by Representations