Search Response Schema
Search Response Schema for Combined Name Lookup
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"criteria": {
"type": "string"
},
"type": {
"type": "string"
},
"status": {
"type": "string"
},
"sources": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
}
}
}
},
"requestIdWebmii": {
"type": "string"
},
"responsesCounter": {
"type": ["integer", "null"]
},
"data": {
"type": "array",
"items": {
"type": "object",
"properties": {
"webmii": {
"type": "array",
"items": {
"type": "object",
"properties": {
"social_network": {
"type": "string"
},
"profileName": {
"type": "string"
},
"profileImageUrl": {
"type": "string",
"format": "uri"
},
"profileData": {
"type": "object",
"properties": {
"webmii_score": {
"type": "string"
},
"linkedin_id": {
"type": "string"
},
"facebook_id": {
"type": "string"
},
"twitter_id": {
"type": "string"
},
"instagram_id": {
"type": "string"
},
"youtube_videos": {
"type": "array",
"items": {
"type": "string"
}
},
"contact_names": {
"type": "array",
"items": {
"type": "string"
}
},
"web_results": {
"type": "array",
"items": {
"type": "object",
"properties": {
"result_title": {
"type": "string"
},
"result_link": {
"type": "string",
"format": "uri"
},
"result_preview": {
"type": "string"
},
"result_image": {
"type": ["string", "null"],
"format": "uri"
}
}
}
}
}
},
"type": {
"type": "string"
},
"post_id": {
"type": ["string", "null"]
},
"post_url": {
"type": "string",
"format": "uri"
},
"total_reactions_count": {
"type": ["integer", "null"]
},
"like_count": {
"type": ["integer", "null"]
},
"comments_count": {
"type": ["integer", "null"]
},
"images_url": {
"type": "array",
"items": {
"type": "string",
"format": "uri"
}
},
"videos_url": {
"type": "array",
"items": {
"type": "string",
"format": "uri"
}
},
"external_link_url": {
"type": "array",
"items": {
"type": "string",
"format": "uri"
}
},
"timeStamp": {
"type": ["string", "null"],
"format": "date-time"
},
"text": {
"type": "string"
},
"location": {
"type": ["string", "null"]
},
"comments": {
"type": "array",
"items": {
"type": "string"
}
},
"likes": {
"type": "array",
"items": {
"type": "string"
}
},
"created_date": {
"type": "string",
"format": "date-time"
}
}
}
}
}
}
}
},
"required": ["criteria", "type", "status", "sources", "data"]
}
Last updated