{
  "context": "https://biyadina.com",
  "actions": [
    {"id": "add-to-cart", "title": "Ajouter au panier", "method": "POST", "url": "https://biyadina.com/?add-to-cart={product_id}", "params": {"product_id": {"type": "integer", "required": true}, "quantity": {"type": "integer", "default": 1}}},
    {"id": "send-message", "title": "Contacter Biyadina", "method": "POST", "url": "https://biyadina.com/contact/", "params": {"your-name": {"type": "string", "required": true}, "your-email": {"type": "email", "required": true}, "your-message": {"type": "text", "required": true}}},
    {"id": "login", "title": "Se connecter", "method": "POST", "url": "https://biyadina.com/mon-compte/", "params": {"log": {"type": "string", "required": true}, "pwd": {"type": "password", "required": true}}},
    {"id": "create-account", "title": "Créer un compte", "method": "POST", "url": "https://biyadina.com/mon-compte/", "params": {"user_login": {"type": "string", "required": true}, "user_email": {"type": "email", "required": true}, "user_pass": {"type": "password", "required": true}}},
    {"id": "checkout", "title": "Finaliser la commande", "method": "POST", "url": "https://biyadina.com/checkout/", "params": {"billing_first_name": {"type": "string", "required": true}, "billing_last_name": {"type": "string", "required": true}, "billing_email": {"type": "email", "required": true}}}
  ]
}