import * as React from 'react'; import Accordion from '@mui/material/Accordion'; import AccordionDetails from '@mui/material/AccordionDetails'; import AccordionSummary from '@mui/material/AccordionSummary'; import Box from '@mui/material/Box'; import Container from '@mui/material/Container'; import Typography from '@mui/material/Typography'; import ExpandMoreIcon from '@mui/icons-material/ExpandMore'; export default function FAQ() { const [expanded, setExpanded] = React.useState(false); const handleChange = (panel: string) => (event: React.SyntheticEvent, isExpanded: boolean) => { setExpanded(isExpanded ? panel : false); }; return ( Frequently asked questions } aria-controls="panel1d-content" id="panel1d-header" > May I reuse the data obtained from Domain Watchdog? Although the source code of this project is open source, the license does not extend to the data collected by it.
This data is redistributed under the same conditions as when it was obtained. This means that you must respect the reuse conditions of each of the RDAP servers used.

For each domain, Domain Watchdog tells you which RDAP server was contacted. It is your responsibility to check the conditions of use of this server.
} aria-controls="panel2d-content" id="panel2d-header" > What is an RDAP server? The latest version of the WHOIS protocol was standardized in 2004 by RFC 3912 This protocol allows anyone to retrieve key information concerning a domain name, an IP address, or an entity registered with a registry.

ICANN launched a global vote in 2023 to propose replacing the WHOIS protocol with RDAP. As a result, registries and registrars will no longer be required to support WHOIS from 2025 (WHOIS Sunset Date).

Domain Watchdog uses the RDAP protocol, which will soon be the new standard for retrieving information concerning domain names.
} aria-controls="panel3d-content" id="panel3d-header" > What are Domain Watchdog's data sources? This project relies on open access data. Domain Watchdog uses the RDAP protocol, which will soon be the new standard for retrieving information concerning domain names. } aria-controls="panel4d-content" id="panel4d-header" > What is the added value of Domain Watchdog rather than doing RDAP queries yourself? Although the RDAP and WHOIS protocols allow you to obtain precise information about a domain, it is not possible to perform a reverse search to discover a list of domain names associated with an entity. Additionally, accessing a detailed history of events (ownership changes, renewals, etc.) is not feasible with these protocols. } aria-controls="panel5d-content" id="panel5d-header" > Under what license is the source code for this project released? This entire project is licensed under GNU Affero General Public License v3.0 or later. The source code is published on GitHub and freely accessible.
); }