changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "additionalProperties": true,
+ "properties": {
+ "continuation": {
+ "description": "Token for the next batch; present only when nextAction is call_again",
+ "type": "string"
+ },
+ "coverage": {
+ "additionalProperties": true,
+ "properties": {
+ "countries": {
+ "description": "Per-country live and recent role counts",
+ "items": {
+ "additionalProperties": true,
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "snapshotUpdatedAt": {
+ "description": "When the index this answer came from was last refreshed",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "crawl": {
+ "additionalProperties": true,
+ "description": "What this batch crawled: selected, succeeded, and the sources that failed",
+ "type": "object"
+ },
+ "networkAttempted": {
+ "description": "Whether this call actually reached out to employer boards",
+ "type": "boolean"
+ },
+ "nextAction": {
+ "description": "call_again means pass continuation back for the next batch; retry_later means the network refused and waiting is the fix",
+ "enum": [
+ "ready",
+ "call_again",
+ "retry_later"
+ ],
+ "type": "string"
+ },
+ "note": {
+ "type": "string"
+ },
+ "sources": {
+ "additionalProperties": true,
+ "description": "How many sources are in the catalog, indexed, fresh, stale, missing and pending",
+ "type": "object"
+ },
+ "status": {
+ "description": "ready means searches can run now; partial means sources are still missing",
+ "enum": [
+ "ready",
+ "partial"
+ ],
+ "type": "string"
+ }
+ },
+ "required": [
+ "status",
+ "nextAction",
+ "coverage"
+ ],
+ "type": "object"
+}