Properties
| Name | Type | Description |
|---|---|---|
| version | string | The application version string. |
| releaseStage | string | The release stage of the application (e.g., production, staging). |
| type | string | The type of application. |
| versionCode | integer | The numeric version code, for Android applications. |
| bundleVersion | string | The bundle version, for iOS applications. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ApplicationInfo",
"title": "ApplicationInfo",
"type": "object",
"description": "Information about the application reporting sessions.",
"properties": {
"version": {
"type": "string",
"description": "The application version string."
},
"releaseStage": {
"type": "string",
"description": "The release stage of the application (e.g., production, staging)."
},
"type": {
"type": "string",
"description": "The type of application."
},
"versionCode": {
"type": "integer",
"description": "The numeric version code, for Android applications."
},
"bundleVersion": {
"type": "string",
"description": "The bundle version, for iOS applications."
}
}
}