1. Voyager Search Academy

1.1. 19115

1.2. Lineage

This diagram provides information on the metadata fields and codes for lineage

```mermaid flowchart TD;

A[Start] –> B[Process 1]; B –> C[Process 2]; C –> D[End];

```

```mermaid classDiagram

class Animal {

+name: string +age: int +makeSound(): void

}

class Dog {

+breed: string +bark(): void

}

class Cat {

+color: string +meow(): void

}

Animal <|-- Dog Animal <|– Cat

```

%%The below line of code will open the file that is in the current folder with the same name