Skip to main content

Managing data structures in the console

info
This documentation only applies to Snowplow BDP Enterprise. See the feature comparison page for more information about the different Snowplow offerings.

Creating a new data structure​

To create a new Data Structure, first navigate to Data Structures in the menu and click the 'Create a Data Structure' button.

Now select whether you'd like to create an Event or an Entity. You can always change this selection at a later date.

You can now write the first version of your JSON schema for this Data Structure. Some template JSON is provided in the code window to start you off.

Once you are done, click the 'Validate' button and we'll validate that your schema is valid JSON markup. Assuming it passes validation the 'Publish' button will activate.

Click 'Publish to development environment' to publish your Data Structure to your development environment. As this is the first version of your data structure it will be created as version 1-0-0. Click publish again on the modal dialog to confirm the action.

Your new Data Structure will be published to your development environment ready for you to test.


Editing a data structure​

To edit an existing data structure, navigate to 'Data Structures' and locate the data structure you wish to edit. You can more easily find your Data Structure by:

  • Using the search facility to search by name
  • Ordering the Name column alphabetically
  • Filtering the listing by Type and / or Vendor

Once located either click on the name to view the Data Structure and then click the 'Edit' button, or click the three dots to bring up the action menu where you can select 'Create new version'.

Make the required edits to the JSON schema. You can use the 'Difference' toggle above the editor to see a 'diff' view against the latest Production version of your data structure.

In the example below we have changed the maxLength of example_field_1.

Once you are happy with your changes, click 'Validate' to ensure you have valid JSON markup. Then click 'Publish to development environment' to save your changes to your development environment.

The versioning modal dialog will appear, at this point you have three options:

  • Increment a minor version to indicate a non-breaking change to the schema. In our example, this would increment the schema to from 1-0-1 to 1-0-2.
  • Increment a major version to indicate a breaking change to the schema. In our example, this would increment the schema from 1-0-1 to 2-0-0.
  • Patch the current version, this will overwrite the existing schema without increasing the version. In our example, this would leave the schema at 1-0-1.
Selecting the β€œpatch” option

Patching can be useful in development environments, but should be done carefully and should never be done in production. See amending schemas for an explanation and some suggestions.

For more information see Versioning your data structures.

Once you have selected the appropriate version, click 'Publish to development environment' and your edits will be published to your development environment ready for you to test.

You can identify Data Structures where the Development version is ahead of the Production version by the yellow background on the version number. In this example both user and alert have been edited on development.


Promoting a data structure​

So far we have learned how to create a new schema, and how to edit an existing schema. Both of these operations result in a schema being published to your development environment for testing.

Once you are happy with your changes you will want to promote these changes to your production environment.

note

The action of promoting data structures is only available to Admin users.

Navigate to Data Structures and locate the Data Structure you wish to promote. You can more easily find your Data Structure by:

  • Using the search facility to search by name
  • Ordering the Name column alphabetically
  • Filtering the listing by Type and / or Vendor

Once located either click on the name to view the Data Structure and then click the 'Migrate to production' button, or click the three dots to bring up the action menu where you can select 'Migrate to production****'.

At this stage you will see the publish modal dialog, and depending on how you versioned your edits you will see one of two messages:

If you are publishing a new schema, or have incremented the version whilst editing then you will see a confirmation of the action. Click 'Migrate to Production' to promote the data structure.

If you have patched the version whilst editing then you will see a warning that you must increment before publishing. Patching the version on Production is not a permitted action. Increment the version number according to the changes you have made and click 'Migrate to production' to promote the latest version of your Data Structure to your production environment.

Your data structure will now be available in your production environment to send events against.


Hiding a data structure​

Sometimes you will make errors when creating a Data Structure, or simply be creating new Data Structures as part of a quick experiment. On these occasions you may wish to hide the schema to clean up the listing in Console.

Navigate to Data Structures and locate the Data Structure you wish to hide. You can more easily find your Data Structure by:

  • Using the search facility to search by name
  • Ordering the Name column alphabetically
  • Filtering the listing by Type and / or Vendor

Once located either click on the name to view the Data Structure and then click the 'Hide' button, or click the three dots to bring up the action menu where you can select 'Hide Data Structure****'.

Follow the modal instructions to confirm the action.

note

Hiding a Data Structure will not remove it from the registry, it simply hides it from the console listing, this means:

(1) events can still be sent against this structure
(2) you cannot create a new structure of the same name

Restoring a hidden Data Structure​

If you have hidden a Data Structure and wish to restore it, navigate to the bottom of the list of Data Structures and locate the 'View hidden data structures' link.

This will take you to a list of hidden Data Structures, locate the one you wish to restore and click 'Restore data structure' to show it in the main listing.

Was this page helpful?