Skip to content

Rapidata validation set

RapidataValidationSet #

RapidataValidationSet(
    validation_set_id,
    openapi_service: OpenAPIService,
    name: str,
)

A class for interacting with a Rapidata validation set.

Represents a set of all the validation tasks that can be added to an order.

When added to an order, the tasks will be selected randomly from the set.

Attributes:

Name Type Description
id str

The ID of the validation set.

name str

The name of the validation set.

Source code in src/rapidata/rapidata_client/validation/rapidata_validation_set.py
def __init__(self, validation_set_id, openapi_service: OpenAPIService, name: str):
    self.id = validation_set_id
    self.name = name
    self.__openapi_service = openapi_service