Description
A bundledOffering represents a list of offering bundled to a parent one (usually a package or an app) in the platform.
Properties
Name | Description | Type | Required | Example |
---|---|---|---|---|
uid | The entity identifier | string | Yes | "bc33f12d-98ee-428f-9f65-12bca589cb21" |
created_at | Timestamp indicating when the entity was created | string (date-time) | No | "2024-01-01T09:00:00Z" |
updated_at | Timestamp of the entity's most recent update | string (date-time) | No | "2024-03-20T12:34:56Z" |
offering_uid | Unique identifier for the parent bundled offering | string | Yes | "fc33f32c-95ae-4e8f-9f65-18bba589cb43" |
bundled_offerings | List of bundled items' unique identifiers | array of strings | Yes | ["bc33f12d-98ee-428f-9f65-18bba589cb95", "bc33f12d-98ee-428f-9b75-18bba589cb12"] |
Example
{
"uid": "bc33f12d-98ee-428f-9f65-12bca589cb21",
"created_at": "2024-01-01T09:00:00Z",
"updated_at": "2024-03-20T12:34:56Z",
"offering_uid": "fc33f32c-95ae-4e8f-9f65-18bba589cb43",
"bundled_offerings": [
"bc33f12d-98ee-428f-9f65-18bba589cb95",
"bc33f12d-98ee-428f-9b75-18bba589cb12"
]
}