{
  "name": "Galaxy Alliance",
  "description": "Agent action manifest for Galaxy Alliance workforce solutions in Australia.",
  "url": "https://www.galaxyalliance.com.au",
  "contact": {
    "email": "info@galaxyalliance.com.au",
    "phone": "+61 2 9000 0000"
  },
  "actions": [
    {
      "id": "request_quote",
      "name": "Request a workforce services quote",
      "description": "Use this action when a business wants pricing, availability, or a callback for workforce services.",
      "method": "POST",
      "endpoint": "https://www.galaxyalliance.com.au/api/contact",
      "input_schema": {
        "type": "object",
        "required": ["name", "email", "message"],
        "properties": {
          "name": {
            "type": "string",
            "description": "Full name of the requester."
          },
          "company": {
            "type": "string",
            "description": "Business or organisation name."
          },
          "email": {
            "type": "string",
            "format": "email",
            "description": "Email address for follow-up."
          },
          "phone": {
            "type": "string",
            "description": "Phone number for a callback."
          },
          "service": {
            "type": "string",
            "description": "Service area, such as cleaning, warehouse, transport, hospitality, construction, or facilities."
          },
          "message": {
            "type": "string",
            "description": "Workforce need, location, timeframe, and any compliance requirements."
          }
        }
      }
    },
    {
      "id": "apply_for_work",
      "name": "Apply for work",
      "description": "Use this action when a worker wants to apply for available opportunities.",
      "method": "GET",
      "endpoint": "https://www.galaxyalliance.com.au/apply",
      "input_schema": {
        "type": "object",
        "properties": {
          "preferred_industry": {
            "type": "string",
            "description": "Preferred industry or role type."
          },
          "location": {
            "type": "string",
            "description": "Applicant's preferred work location."
          }
        }
      }
    },
    {
      "id": "contact_team",
      "name": "Contact Galaxy Alliance",
      "description": "Use this action for general enquiries, partnerships, media, or support requests.",
      "method": "GET",
      "endpoint": "https://www.galaxyalliance.com.au/contact",
      "input_schema": {
        "type": "object",
        "properties": {
          "reason": {
            "type": "string",
            "description": "Reason for contacting Galaxy Alliance."
          }
        }
      }
    }
  ]
}
