Lesson 9: Registries & Annotations

These code samples provide a basic introduction on how to check for an existing registry, create a new registry, and register an entity with the created registry. For an in-depth description Registries, please visit our wiki <https://docs.ledr.io/en/the-orchestra-platfrom/avial-model>

Create a Person & Company Registry

module.utils.create_registry.add_company_to_registry(company_registry: AvEntity, company_entity: AvEntity, auth: AvAuthorization)[source]
module.utils.create_registry.add_person_to_registry(person_registry: AvEntity, person_entity: AvEntity, auth: AvAuthorization)[source]
module.utils.create_registry.create_company_registry(auth: AvAuthorization) AvEntity[source]

This function shows how to check for an existing company registry, create a new company registry, and register a company with the company registry. :param auth: The Orchestra server authorization that allows entity operations.

module.utils.create_registry.create_person_registry(auth: AvAuthorization) AvEntity[source]

This function shows how to check for an existing person registry, create a new person registry, and register a person with the person registry.

Parameters:

auth – The Orchestra server authorization that allows entity operations.

Main Driver for Registry lesson

module.lesson_9_registries.main()[source]