changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "count": {
+ "description": "Number of items returned.",
+ "type": "integer"
+ },
+ "items": {
+ "description": "List of job postings with basic details",
+ "items": {
+ "properties": {
+ "created_at": {
+ "description": "ISO date job was created",
+ "type": "string"
+ },
+ "department": {
+ "description": "Department name",
+ "type": "string"
+ },
+ "id": {
+ "description": "Job ID",
+ "type": "number"
+ },
+ "status": {
+ "description": "Job status (open, closed, draft)",
+ "type": "string"
+ },
+ "title": {
+ "description": "Job title",
+ "type": "string"
+ },
+ "updated_at": {
+ "description": "ISO date job was updated",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "items",
+ "count"
+ ],
+ "type": "object"
+}