Android · Schema

SubscriptionListing

Localized listing information for a subscription.

AIAndroidAutomotiveGoogleMachine LearningMobile DevelopmentSDKTVWearables

Properties

Name Type Description
languageCode string BCP-47 language tag (e.g., en-US).
title string The title of the subscription in this locale.
benefits array A list of benefits shown to the user on platforms such as the Play Store. Limited to four benefits.
description string The description of the subscription in this locale.
View JSON Schema on GitHub

JSON Schema

android-subscriptionlisting-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SubscriptionListing",
  "title": "SubscriptionListing",
  "type": "object",
  "description": "Localized listing information for a subscription.",
  "properties": {
    "languageCode": {
      "type": "string",
      "description": "BCP-47 language tag (e.g., en-US).",
      "example": "example_value"
    },
    "title": {
      "type": "string",
      "description": "The title of the subscription in this locale.",
      "example": "Example Title"
    },
    "benefits": {
      "type": "array",
      "description": "A list of benefits shown to the user on platforms such as the Play Store. Limited to four benefits.",
      "items": {
        "type": "string"
      },
      "maxItems": 4,
      "example": []
    },
    "description": {
      "type": "string",
      "description": "The description of the subscription in this locale.",
      "example": "A sample description."
    }
  }
}