dim_app_info_ios.avsc 2.49 KB
Newer Older
wang-jinfeng committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102
{
    "namespace": "mobvista.dmp.datasource.app.bean",
    "type": "record",
    "name": "AppInfoIos",
    "separatorChar": "\t",
    "fields": [
        {
            "name": "package_name",
            "type": "string",
            "doc": "itunes id in ios app store"
        },
        {
            "name": "app_name",
            "type": "string",
            "doc": "app name"
        },
        {
            "name": "file_size_bytes",
            "type": "string",
            "doc": "文件大小,单位字节"
        },
        {
            "name": "support_language",
            "type": "string",
            "doc": "支持的语言,2大写字母"
        },
        {
            "name": "bundle_id",
            "type": "string"
        },
        {
            "name": "release_date",
            "type": "string",
            "doc": "上架时间"
        },
        {
            "name": "primary_category",
            "type": "string",
            "doc": "主分类"
        },
        {
            "name": "primary_category_id",
            "type": "string",
            "doc": "主分类id"
        },
        {
            "name": "category_list",
            "type": "string",
            "doc": "标签名称列表"
        },
        {
            "name": "category_id_list",
            "type": "string",
            "doc": "标签id列表,顺序与category_list对应"
        },
        {
            "name": "user_rating_count",
            "type": "string",
            "doc": "用户评论数"
        },
        {
            "name": "track_view_url",
            "type": "string",
            "doc": "浏览url"
        },
        {
            "name": "update_date",
            "type": "string",
            "doc": "更新日期"
        },
        {
            "name": "artist_id",
            "type": "string",
            "doc": "制作者id"
        },
        {
            "name": "artist_name",
            "type": "string",
            "doc": "制作者名称"
        },
        {
            "name": "seller_name",
            "type": "string",
            "doc": "发行者名称"
        },
        {
            "name": "is_game_center_enabled",
            "type": "string",
            "doc": "苹果游戏中心是否可用"
        },
        {
            "name": "content_advisory_rating",
            "type": "string",
            "doc": "适合年龄"
        },
        {
            "name": "advisories",
            "type": "string",
            "doc": "警告内容"
        }
    ]
}