changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "count": {
+ "description": "Number of items returned.",
+ "type": "integer"
+ },
+ "items": {
+ "description": "List of job applications across pipeline",
+ "items": {
+ "properties": {
+ "applied_at": {
+ "description": "ISO date application was submitted",
+ "type": "string"
+ },
+ "candidate": {
+ "properties": {
+ "first_name": {
+ "description": "Candidate first name",
+ "type": "string"
+ },
+ "last_name": {
+ "description": "Candidate last name",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "candidate_id": {
+ "description": "Candidate ID",
+ "type": "number"
+ },
+ "id": {
+ "description": "Application ID",
+ "type": "number"
+ },
+ "job_id": {
+ "description": "Job ID",
+ "type": "number"
+ },
+ "stage": {
+ "description": "Current pipeline stage (e.g., screening, interview)",
+ "type": "string"
+ },
+ "status": {
+ "description": "Application status (active, converted, hired, rejected)",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "items",
+ "count"
+ ],
+ "type": "object"
+}