πFields
String Type
{
"key": "name",
"description": "Name of the person",
"example": "Alex Smith",
"type": "string"
}Object Type
{
"key": "personal_info",
"description": "Personal information of the person",
"type": "object",
"properties": [
{
"key": "name",
"description": "Name of the person",
"example": "Alex Smith",
"type": "string"
},
{
"key": "email",
"description": "Email of the person",
"example": "[email protected]",
"type": "string"
}
]
}Array Type
Array of Strings Example:
Array of Objects Example:
Conclusion
1. Create extractionLast updated