Leapsome · Schema
FeedbackItem
People EnablementPerformance ManagementOKRsGoalsEngagement SurveysHRISSCIMEmployee Development1:1 MeetingsLearning
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Feedback item ID |
| type | string | Type of feedback |
| sender | object | The user who sent the feedback |
| receivers | array | Users or teams who received the feedback |
| message | string | The feedback message content |
| badge | object | Badge attached to the feedback (praise only) |
| visibility | string | Visibility level of the feedback |
| createdAt | string | When the feedback was created |
| likesCount | integer | Number of likes on the feedback |
| commentsCount | integer | Number of comments on the feedback |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "FeedbackItem",
"type": "object",
"properties": {
"id": {
"type": "string",
"pattern": "^[0-9a-f]{24}$",
"example": "58d55e3ffdc2eb20547edd0a",
"description": "Feedback item ID"
},
"type": {
"type": "string",
"enum": [
"praise",
"instantFeedback"
],
"description": "Type of feedback"
},
"sender": {
"type": "object",
"nullable": true,
"properties": {
"id": {
"type": "string",
"pattern": "^[0-9a-f]{24}$",
"nullable": true,
"description": "Sender user ID (null if anonymous)"
},
"name": {
"type": "string",
"description": "Sender display name (\"Anonymous\" if anonymous)"
}
},
"description": "The user who sent the feedback"
},
"receivers": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string",
"pattern": "^[0-9a-f]{24}$",
"description": "Receiver user or team ID"
},
"name": {
"type": "string",
"description": "Receiver display name"
}
}
},
"description": "Users or teams who received the feedback"
},
"message": {
"type": "string",
"nullable": true,
"description": "The feedback message content"
},
"badge": {
"type": "object",
"nullable": true,
"properties": {
"name": {
"type": "string",
"description": "Badge name"
},
"icon": {
"type": "string",
"description": "Badge icon path"
}
},
"description": "Badge attached to the feedback (praise only)"
},
"visibility": {
"type": "string",
"enum": [
"public",
"receiver",
"senderOnly"
],
"description": "Visibility level of the feedback"
},
"createdAt": {
"type": "string",
"format": "date-time",
"description": "When the feedback was created"
},
"likesCount": {
"type": "integer",
"description": "Number of likes on the feedback"
},
"commentsCount": {
"type": "integer",
"description": "Number of comments on the feedback"
}
}
}
Work with this as data
Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.
MCP server
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
Tools for schemas
4 MCP tools reach this
find_json_schemasBrowse and filter every JSON Schema in the catalog.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.
Call it yourself
curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/leapsome-feedbackitem"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Get an API key
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.