The bundledOffering Entity

Description

A bundledOffering represents a list of offering bundled to a parent one (usually a package or an app) in the platform.

Properties

NameDescriptionTypeRequiredExample
uidThe entity identifierstringYes"bc33f12d-98ee-428f-9f65-12bca589cb21"
created_atTimestamp indicating when the entity was createdstring (date-time)No"2024-01-01T09:00:00Z"
updated_atTimestamp of the entity's most recent updatestring (date-time)No"2024-03-20T12:34:56Z"
offering_uidUnique identifier for the parent bundled offeringstringYes"fc33f32c-95ae-4e8f-9f65-18bba589cb43"
bundled_offeringsList of bundled items' unique identifiersarray of stringsYes["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"
  ]
}