{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/V2KeysMigrateKeysResponseData", "title": "V2KeysMigrateKeysResponseData", "type": "object", "required": [ "migrated", "failed" ], "properties": { "migrated": { "type": "array", "description": "Successfully migrated keys with their hash and generated keyId", "items": { "$ref": "#/components/schemas/V2KeysMigrateKeysMigration" } }, "failed": { "type": "array", "description": "Hashes that could not be migrated (e.g., already exist in the system)", "items": { "type": "string", "description": "The hash that failed to migrate", "example": "sha256_ghi789jkl012" } } } }