Files
fil/fixtures/plugin_api/mime_detect_image.json

18 lines
381 B
JSON
Raw Normal View History

2026-06-01 23:40:55 +02:00
{
"id": "mime_detect_image",
"category": "mime_utilities",
"description": "Detect MIME type from PNG image bytes",
"tags": ["mime", "detection", "image", "bytes"],
"call": "detect_mime_type_from_bytes",
"input": {
"data": "images/test_hello_world.png"
},
"assertions": [
{
"type": "contains",
"field": "result",
"value": "png"
}
]
}