Domains
All functions rely on domains. Without a domain it’s not possible to register any profling or business rule. Domain serve as the authorization gate. Access will be granted based on active directory group, which consists of domain and role.
YAML Example
# Example of a Domain in YAML format
name: IT
description: This is the domain for all IT relevant Data Quality parts.
YAML Reference
name: string # The name of the domain, e.g., "IT".
description: string # A brief description of the domain, e.g., "This domain covers all IT-related Data Quality aspects."
End Points
At the following location the API references can be found: https://app-dq-dev-01.azurewebsites.net/docs#/. For Domains, the following end points can be used:
Manage:
/domains #POST for adding a new domain
/domains/{id} #PUT for changing an existing domain
Find (GET):
/domains #For returning all domains
/domains/{id} #For finding a specific domain
/domains/find_one #To find specific domains without pagination
/domains/find #To find specific domain with pagination