{
"id": "mf_abc123",
"domain": "example.com",
"origin": "https://example.com",
"slug": "example-com",
"states": [
{
"id": "state_1",
"name": "HomePage",
"url_pattern": "https://example.com/",
"views": [
{
"name": "featured_products",
"code": "async (page) => { ... }"
}
],
"actions": [
{
"name": "click_login",
"inputs": [],
"code": "async (page, inputs) => { ... }"
}
]
},
{
"id": "state_2",
"name": "LoginPage",
"url_pattern": "https://example.com/login",
"views": [],
"actions": [
{
"name": "fill_email",
"inputs": [{ "name": "email", "type": "string" }],
"code": "async (page, inputs) => { ... }"
},
{
"name": "fill_password",
"inputs": [{ "name": "password", "type": "string" }],
"code": "async (page, inputs) => { ... }"
},
{
"name": "submit_login",
"inputs": [
{ "name": "email", "type": "string" },
{ "name": "password", "type": "string" }
],
"code": "async (page, inputs) => { ... }"
}
]
}
]
}