字段 类型 约束与默认值 必填性
字段 code类型 number约束与默认值 const: 200必填性 必填
字段 request_id类型 string约束与默认值 minLength: 1必填性 必填
字段 message类型 string约束与默认值 const: "success"必填性 必填
字段 data类型 object约束与默认值 无额外约束必填性 必填
字段 page类型 object约束与默认值 无额外约束必填性 必填
字段 warnings类型 array约束与默认值 无额外约束必填性 必填
字段 meta类型 object约束与默认值 无额外约束必填性 必填
完整响应 JSON Schema {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"code": {
"type": "number",
"const": 200
},
"request_id": {
"type": "string",
"minLength": 1
},
"message": {
"type": "string",
"const": "success"
},
"data": {
"type": "object",
"properties": {
"creator_id": {
"type": "string",
"pattern": "^[a-f0-9]{24}$"
},
"summary": {
"anyOf": [
{
"type": "object",
"properties": {
"note_count": {
"anyOf": [
{
"type": "integer",
"minimum": 0,
"maximum": 9007199254740991
},
{
"type": "null"
}
]
},
"median_impressions": {
"anyOf": [
{
"type": "number",
"minimum": 0
},
{
"type": "null"
}
]
},
"median_reads": {
"anyOf": [
{
"type": "number",
"minimum": 0
},
{
"type": "null"
}
]
},
"median_engagements": {
"anyOf": [
{
"type": "number",
"minimum": 0
},
{
"type": "null"
}
]
},
"engagement_rate": {
"anyOf": [
{
"type": "number",
"minimum": 0
},
{
"type": "null"
}
]
},
"completion_rate": {
"anyOf": [
{
"type": "number",
"minimum": 0
},
{
"type": "null"
}
]
},
"hundred_like_note_rate": {
"anyOf": [
{
"type": "number",
"minimum": 0
},
{
"type": "null"
}
]
},
"thousand_like_note_rate": {
"anyOf": [
{
"type": "number",
"minimum": 0
},
{
"type": "null"
}
]
},
"content_mix": {
"type": "array",
"items": {
"type": "object",
"properties": {
"label": {
"type": "string",
"minLength": 1
},
"percent": {
"anyOf": [
{
"type": "number",
"minimum": 0
},
{
"type": "null"
}
]
}
},
"required": [
"label",
"percent"
],
"additionalProperties": false
}
}
},
"required": [
"note_count",
"median_impressions",
"median_reads",
"median_engagements",
"engagement_rate",
"completion_rate",
"hundred_like_note_rate",
"thousand_like_note_rate",
"content_mix"
],
"additionalProperties": false
},
{
"type": "null"
}
]
}
},
"required": [
"creator_id",
"summary"
],
"additionalProperties": false
},
"page": {
"type": "object",
"properties": {
"next_cursor": {
"type": "null"
}
},
"required": [
"next_cursor"
],
"additionalProperties": false
},
"warnings": {
"type": "array",
"items": {
"type": "string"
}
},
"meta": {
"type": "object",
"properties": {
"listing_id": {
"type": "string",
"const": "xiaohongshu.pgy.bloggers.performance"
},
"version": {
"type": "string",
"const": "v1"
},
"catalog_release_id": {
"type": "string",
"minLength": 1
},
"price_book_version": {
"type": "string",
"minLength": 1
},
"result_status": {
"type": "string",
"enum": [
"complete",
"empty"
]
},
"charged_amount": {
"type": "string"
},
"balance_after": {
"type": "string"
},
"currency": {
"type": "string",
"const": "CNY"
}
},
"required": [
"listing_id",
"version",
"catalog_release_id",
"price_book_version",
"result_status",
"charged_amount",
"balance_after",
"currency"
],
"additionalProperties": false
}
},
"required": [
"code",
"request_id",
"message",
"data",
"page",
"warnings",
"meta"
],
"additionalProperties": false
}