Discovery Schema


Version 0.7.0

JSON-Schema

This document was generated from a JSON-Schema, and is intended to provide a human readable overview and examples of the methods contained in the module.

For the full schema, see the link below.

Table of Contents

Schemas

PurchasedContentResult

type PurchasedContentResult = {
  expires: string
  totalCount: number
  entries: EntityInfo[]
}

See also:

Examples

EntityInfoResult

type EntityInfoResult = {
  expires: string
  entity: EntityInfo       // An EntityInfo object represents an "entity" on the platform. Currently, only entities of type `program` are supported. `programType` must be supplied to identify the program type.
  related?: EntityInfo[]
}

See also:

Examples

Details

The result for an entityInfo() push or pull.


Go To Top