{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ImportSummaryCount", "title": "ImportSummaryCount", "type": "object", "description": "Summary count of items in an import deployment, showing total, imported, failed, and skipped counts.", "properties": { "total": { "type": "integer", "description": "Total number of items in the package.", "minimum": 0 }, "imported": { "type": "integer", "description": "Number of items successfully imported.", "minimum": 0 }, "failed": { "type": "integer", "description": "Number of items that failed to import.", "minimum": 0 }, "skipped": { "type": "integer", "description": "Number of items skipped during import.", "minimum": 0 } } }