{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/flipdish/refs/heads/main/json-schema/apps-mobile-apps-statistics-schema.json", "title": "MobileAppsStatistics", "description": "Mobile Apps Statistics", "type": "object", "properties": { "NumberDownload": { "format": "int32", "description": "Number Download", "type": "integer", "example": 3 }, "CurrentRate": { "format": "int32", "description": "Current Rate", "type": "integer", "example": 1 }, "CurrentVersion": { "description": "Current Version", "type": "string", "example": "string" }, "PlayStoreLink": { "description": "Play Store Link", "type": "string", "example": "https://api.flipdish.co/example" }, "AppBundleId": { "description": "App Bundle Id", "type": "string", "example": "500123" }, "LastUpdated": { "format": "date-time", "description": "Last Updated", "type": "string", "example": "2026-06-02T12:00:00Z" }, "Notes": { "description": "Last Updated", "type": "string", "example": "string" }, "Published": { "description": "Published", "type": "boolean", "example": true }, "PlatformType": { "description": "Platform Type", "enum": [ "None", "Android", "IOS" ], "type": "string", "example": "None" } } }