{
  "version": "1.0",
  "site": "https://aivoryems.com",
  "name": "Aivory EMS",
  "description": "Singapore-hosted event management software. AI agents can discover and initiate high-value tasks: book a demo, start a Studio trial, compare plans, or request a security pack.",
  "llms": "https://aivoryems.com/llms.txt",
  "seoManifest": "https://aivoryems.com/api/public/seo",
  "actions": [
    {
      "id": "book-demo",
      "name": "Book a demo",
      "description": "Request a product demo of Aivory EMS registration, onsite check-in, badges, and AivoryONE AI co-planner. Provide work email, name, company, and event scale.",
      "method": "declarative",
      "url": "https://aivoryems.com/contact?intent=demo",
      "http": {
        "endpoint": "https://aivoryems.com/api/public/inbound",
        "method": "POST",
        "contentType": "application/json"
      },
      "parameters": {
        "required": ["email", "name", "message"],
        "optional": ["company", "phone", "eventScale"],
        "properties": {
          "intent": { "const": "demo" },
          "email": { "type": "string", "format": "email" },
          "name": { "type": "string" },
          "company": { "type": "string" },
          "phone": { "type": "string" },
          "eventScale": { "type": "string", "description": "Expected attendees, e.g. 2000" },
          "message": { "type": "string" }
        }
      }
    },
    {
      "id": "contact-sales",
      "name": "Talk to sales",
      "description": "Contact Aivory EMS sales about packages, deployment timelines, and enterprise requirements.",
      "method": "declarative",
      "url": "https://aivoryems.com/contact?intent=sales",
      "http": {
        "endpoint": "https://aivoryems.com/api/public/inbound",
        "method": "POST",
        "contentType": "application/json"
      },
      "parameters": {
        "required": ["email", "name", "message"],
        "optional": ["company", "phone", "eventScale"],
        "properties": {
          "intent": { "const": "sales" }
        }
      }
    },
    {
      "id": "request-security-pack",
      "name": "Request a security pack",
      "description": "Ask for DPA, security questionnaire responses, architecture overview, or other NDA-gated Trust Centre documents.",
      "method": "declarative",
      "url": "https://aivoryems.com/contact?intent=security",
      "http": {
        "endpoint": "https://aivoryems.com/api/public/inbound",
        "method": "POST",
        "contentType": "application/json"
      },
      "parameters": {
        "required": ["email", "name", "message"],
        "optional": ["company"],
        "properties": {
          "intent": { "const": "security" }
        }
      }
    },
    {
      "id": "start-studio-trial",
      "name": "Start Studio trial",
      "description": "Create an Aivory EMS workspace and start a 14-day Studio trial. Requires organization name, work email, password, and owner name. Email OTP verification is required.",
      "method": "declarative",
      "url": "https://aivoryems.com/signup",
      "parameters": {
        "required": ["orgName", "email", "password", "ownerName"],
        "optional": ["billingCycle"],
        "properties": {
          "orgName": { "type": "string", "description": "Organization or company name" },
          "email": { "type": "string", "format": "email" },
          "password": { "type": "string" },
          "ownerName": { "type": "string" },
          "billingCycle": { "type": "string", "enum": ["monthly", "annual"] }
        }
      },
      "notes": "OTP verification is required after the initial signup request; agents should guide the human to complete email verification."
    },
    {
      "id": "compare-plans",
      "name": "Compare plans",
      "description": "View Aivory EMS Starter, Studio, Scale, and Enterprise annual SGD pricing versus legacy registration tools.",
      "method": "declarative",
      "url": "https://aivoryems.com/compare",
      "parameters": { "required": [], "optional": [] }
    },
    {
      "id": "view-trust-centre",
      "name": "View Trust Centre",
      "description": "Read Aivory EMS security, hosting, privacy, and compliance posture.",
      "method": "declarative",
      "url": "https://aivoryems.com/trust",
      "parameters": { "required": [], "optional": [] }
    }
  ]
}
