Home
Stack Exchange
Stackexchange Api V2 3 Suggested Edit Structure
Stackexchange Api V2 3 Suggested Edit Structure
A pending edit suggested by a user.
Type: object
Properties: 11
Q And A Developer Community Knowledge Graph Stack Overflow Stack Exchange Reputation Tags Community MCP AI Grounding
SuggestedEdit is a JSON Structure definition published by Stack Exchange, describing 11 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.
Properties
suggested_edit_id
post_id
post_type
body
title
tags
comment
creation_date
approval_date
rejection_date
proposing_user
Meta-schema: https://json-structure.org/meta/core/v0/#
JSON Structure
{
"$schema": "https://json-structure.org/meta/core/v0/#",
"name": "SuggestedEdit",
"description": "A pending edit suggested by a user.",
"$id": "https://raw.githubusercontent.com/api-evangelist/stackexchange/refs/heads/main/json-structure/stackexchange-api-v2-3-suggested-edit-structure.json",
"type": "object",
"properties": {
"suggested_edit_id": {
"type": "int32",
"example": 12345
},
"post_id": {
"type": "int32",
"example": 11227809
},
"post_type": {
"type": "string",
"enum": [
"question",
"answer"
],
"example": "question"
},
"body": {
"type": "string"
},
"title": {
"type": "string"
},
"tags": {
"type": "array",
"items": {
"type": "string"
}
},
"comment": {
"type": "string"
},
"creation_date": {
"type": "int64"
},
"approval_date": {
"type": "int64"
},
"rejection_date": {
"type": "int64"
},
"proposing_user": {
"type": "object",
"description": "Lightweight user reference embedded in posts and comments.",
"properties": {
"user_id": {
"type": "int64",
"example": 22656
},
"user_type": {
"type": "string",
"enum": [
"unregistered",
"registered",
"moderator",
"team_admin",
"does_not_exist"
],
"example": "registered"
},
"display_name": {
"type": "string",
"example": "Jon Skeet"
},
"reputation": {
"type": "int32",
"example": 1500000
},
"profile_image": {
"type": "uri",
"example": "https://i.sstatic.net/lLZAr.jpg?s=128"
},
"link": {
"type": "uri",
"example": "https://stackoverflow.com/users/22656/jon-skeet"
},
"accept_rate": {
"type": "int32",
"example": 92
}
}
}
}
}