Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Integrating Third-Party AI Securely
00:00
5 left

Integrating Third-Party AI Securely

MediumSQL · PostgreSQL

Problem

What strategies do you use to ensure data integrity and security when integrating third-party AI platforms?

Write a query that audits approved platforms by evaluating request integrity and security checks. Treat missing or unsuccessful controls as failures.

Output

  1. One row per approved platform with at least one request failure
  2. Columns: platform_id, platform_name, total_requests, failed_requests, and latest_failed_at
  3. Order by failed_requests descending, then platform_id ascending

Schema

ai_platforms
ColumnTypeDescription
platform_idPKINTUnique platform identifier
platform_nameVARCHAR(100)Third-party AI platform name
is_approvedBOOLEANWhether the platform is approved for integration
integration_requests
ColumnTypeDescription
request_idPKINTUnique integration request identifier
platform_idINTReferenced AI platform
payload_hashVARCHAR(128)Hash generated before transmission
received_hashVARCHAR(128)Hash recorded after platform receipt
received_atTIMESTAMPTZTime the request was received
security_checks
ColumnTypeDescription
check_idPKINTUnique security-check identifier
request_idINTReferenced integration request
encryption_verifiedBOOLEANWhether encryption was verified
pii_redactedBOOLEANWhether personally identifiable information was redacted
Tablesai_platformsintegration_requestssecurity_checks
Interviewer

Your question is Integrating Third-Party AI Securely. Start with the requirements and the three tables in the Question tab.

Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.

You need to log in / sign up to run or submit.
CodePostgreSQL
You need to log in / sign up to run or submit.Ln 1
Run your query to see results here.