Generate schema automatically based on description using AI
JWT token obtained from /auth/login endpoint.
Example:
Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...Description of what data should be extracted
"Extract personal information from Indonesian ID card including name, NIK, birth date, and address"
Auto-generated schema
Generated extraction schema
{
"schema": {
"properties": {
"address": {
"description": "Full residential address as stated on the Indonesian ID card",
"type": "string"
},
"birth_date": {
"description": "Date of birth in YYYY-MM-DD format as stated on the ID card",
"type": "string"
},
"name": {
"description": "Full name as stated on the Indonesian ID card",
"type": "string"
},
"nik": {
"description": "Nomor Induk Kependudukan (NIK), the unique identification number on the Indonesian ID card",
"type": "string"
}
},
"required": ["name", "nik", "birth_date", "address"],
"type": "object"
}
}