Lesson 1: Entities

In order to be able to store and retrieve data from entities through the use of facts and properties, we create avial object(Created using avials crete_object function) which is an entity connected to the Avial Object Adapter. The Avial Object Adapter gives additional functionality to entities connected to it, enabling enriching entities with data.

With a raw entity created using the avials crete_entity function you cannot store or retrieve data from it.

These code samples provide a basic introduction on creating entities. For an in-depth description of entities, please visit our wiki <https://docs.ledr.io/the-orchestra-platfrom/entities>

Create a Person Entity

module.utils.create_person_entity.create_entity(name: str, auth: AvAuthorization) AvEntity[source]

This function shows how to create an entity representing a person.

Parameters:
  • name – The name of the person to create.

  • auth – The Orchestra server authorization that allows entity operations.

Returns:

The created person entity.

Create a Company Entity

module.utils.create_company_entity.create_company(name: str, auth: AvAuthorization) AvEntity[source]

This function shows how to create an entity representing a person.

Parameters:
  • name – The name of the person to create.

  • auth – The Orchestra server authorization that allows entity operations.

Returns:

The created person entity.

Main Driver for Create Entities Lesson

module.lesson_1_entities.main()[source]