Skip to content

Commit

Permalink
Fix build error
Browse files Browse the repository at this point in the history
We had two images with same naming, this was provoking an error.
  • Loading branch information
aitormurgu committed Feb 22, 2024
1 parent ac07bb2 commit 2179a38
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/Tutorials/Step 3 - Creating a Schema.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Now that you have created a Message Type, you have to define the shape of the da

Schemas have a set of data types you can choose in order to define the shape of the data you are sending. It ranges from simple types such as **Integers**, **Decimals** and **Boolean** to more complex types like **Objects/Dictionaries** and **Collection/Arrays**. Each with their own properties and restrictions. This tutorial will not dive into the intricacies of each data type but if you wish to get a more detailed explanation about them, please refer to its reference guide \<add link to message type schema reference here>\. With that said, assuming you are still in the **My test message type** page (the one you created in the previous step), click on **New schema**. Once you have done that you will see the following page:

![Data Ingestion Flow](/img/DataIngestionFlow.png)
![Data Ingestion Flow](/img/dataIngestionForm.png)

Schemas are defined with items. They can be a single item or multiple items depending on **Item type** you select. To create your first item click on **Add new item**. This will open up a dropdown with the different item data types you can choose from. For the purpose of this tutorial select the **Object** item type.

Expand Down
10 changes: 6 additions & 4 deletions docusaurus.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,14 @@ const config: Config = {

// GitHub pages deployment config.
// If you aren't using GitHub pages, you don't need these.
organizationName: 'facebook', // Usually your GitHub org/user name.
projectName: 'docusaurus', // Usually your repo name.

organizationName: 'biotz', // Usually your GitHub org/user name.
projectName: 'academy', // Usually your repo name.

deploymentBranch: 'gh-pages',
onBrokenLinks: 'throw',
onBrokenMarkdownLinks: 'warn',


trailingSlash: false,
// Even if you don't use internationalization, you can use this field to set
// useful metadata like html lang. For example, if your site is Chinese, you
// may want to replace "en" with "zh-Hans".
Expand Down
File renamed without changes

0 comments on commit 2179a38

Please sign in to comment.