validate_mini_app_requirements
Check if your mini app meets Base featured placement requirements by validating manifest and app URLs against platform specifications.
Instructions
Check if your mini app meets Base featured placement requirements.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
app_url | Yes | URL to your mini app | |
manifest_url | No | URL to your manifest file |
Input Schema (JSON Schema)
{
"properties": {
"app_url": {
"description": "URL to your mini app",
"type": "string"
},
"manifest_url": {
"description": "URL to your manifest file",
"type": "string"
}
},
"required": [
"app_url"
],
"type": "object"
}