Android · Schema

Comment

A comment associated with a review, either a user comment or a developer comment (reply).

AIAndroidAutomotiveGoogleMachine LearningMobile DevelopmentSDKTVWearables

Properties

Name Type Description
userComment object
developerComment object
View JSON Schema on GitHub

JSON Schema

android-comment-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Comment",
  "title": "Comment",
  "type": "object",
  "description": "A comment associated with a review, either a user comment or a developer comment (reply).",
  "properties": {
    "userComment": {
      "$ref": "#/components/schemas/UserComment"
    },
    "developerComment": {
      "$ref": "#/components/schemas/DeveloperComment"
    }
  }
}