Skip to content
This repository was archived by the owner on Nov 24, 2025. It is now read-only.
This repository was archived by the owner on Nov 24, 2025. It is now read-only.

An RWS should have the option for more than one contact #472

Description

@aselya

Currently, the RWS implementation only allows for a single contact email. While the guidelines indicate that a group alias should be used if available, this is not currently being followed. This could cause issues if the email provided is no longer used or the contact provided is no longer associated with the organization behind the RWS.

I've thought of a few ways that we could change RWS to address the issue.

  1. Allow an RWS to contain a list of contacts, similar to the list of associated sites.
{
    "contacts": [
         "group@example.com", 
         "email2@example.com",
         "email3@example.com"],
}
  1. Allow an RWS to have a primary/organizational contact named and then an optional list of secondary contacts.
{
    "primary contact":"group@example.com",
    "secondary contacts": [
         "email2@example.com",
         "email3@example.com"],
}
  1. Require an RWS to have an organization alias contact and a list of (at least one) individual contacts.
{
    "organization contact":"group@example.com",
    "secondary contacts": [
         "email2@example.com",
         "email3@example.com"],
}

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    enhancementNew feature or request

    Type

    No type

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions