Source
This page was generated with Wiki Builder. Do not change the format!
Info
Represents localized, extended content related to Milestones. This is intentionally returned by a separate endpoint and not with Character-level Milestone data because we do not put localized data into standard Destiny responses, both for brevity of response and for caching purposes. If you really need this data, hit the Milestone Content endpoint.
Schema
- Schema Type: Class
- Type: object
Properties
Name | Type | Description |
---|---|---|
about | string | The "About this Milestone" text from the Firehose. |
status | string | The Current Status of the Milestone, as driven by the Firehose. |
tips | string[] | A list of tips, provided by the Firehose. |
itemCategories | DestinyMilestoneContentItemCategory[] | If DPS has defined items related to this Milestone, they can categorize those items in the Firehose. That data will then be returned as item categories here. |
Example
{
// Type: string
"about": "",
// Type: string
"status": "",
// Type: string[]
"tips": [
// Type: string
""
],
// Type: DestinyMilestoneContentItemCategory[]
"itemCategories": [
// Type: DestinyMilestoneContentItemCategory
{
// Type: string
"title": "",
// Type: Destiny.Definitions.DestinyInventoryItemDefinition:integer:uint32[]
"itemHashes": [
// Type: integer:uint32
0
]
}
]
}