# 问题一
通过星图 `https://schema-manager.hlgdata.com/common/schemas` 接口请求的数据发现出现事件名重复但是事件 ID 不一样的情况。  
如请求 focodesign 的 schema：  
```bash
curl -X POST \
  https://schema-manager.hlgdata.com/common/schemas \
  -H 'cache-control: no-cache' \
  -H 'content-type: application/json' \
  -H 'postman-token: 97e4fab9-3aaa-e1cb-180e-50d506483a55' \
  -d '{
	"project": "focodesign"
}'
```
出现的重复事件如下：
```ts
// (1) 39022 的 page_duration
{
  "id": 39022,
  "n": "page_duration",
  "meaning": "页面停留时长",
  "d": [
      // ...
  ],
  "iid": 2916
}

// (2) 29030 的 page_duration
{
  "id": 29030,
  "n": "page_duration",
  "meaning": "页面停留时长",
  "d": [
      // ...
  ],
  "iid": 2660
}
```