Create the configuration file for the browse card
The browse card is configured using the instance-profile.ttl file. Use the syntax explained in this section to create your configuration file.
Important
Before you begin setting up the ttl file, gather the values for the different data.world objects (collections, insights, datasets, etc) you plan to add to the browse card.
Collect configuration details
After you have decided the resources you want to add to your browse card, note down the following information about the resources.
You will capture this information from the URL field of the browser window.
For resource | Gather information | Sample value | Details |
---|---|---|---|
Collection |
|
| This opens the collection page. |
Organization |
NOTE: Copy this information from the URL field of the browser window. |
| This opens the organization profile page. |
Datasets |
NOTE: Copy this information from the URL field of the browser window. |
| This opens the dataset page. |
Projects |
NOTE: Copy this information from the URL field of the browser window. |
| This opens the project page. |
Insights |
NOTE: Copy this information from the URL field of the browser window. |
| This opens the insight available in the project. |
External website links | The URL of the external resource | This opens the external website. |
STEP 1: Add the prefixes for this configuration and declare the instance profile
Use the following syntax to add the the prefixes for this configuration and declare the instance profile and define that this instance profile includes a browse card.
In these configurations, only change the URL of your installation in the first line. Do not change anything else.
Replace YourInstllationName with the name of the installation.
For example, if your application URL is: https://8bank.app.data.world/ 8bank is the name of your installation.
The value will look like: <https://8bank-ddw.app.linked.data.world/d/ddw-instance-profile/>.
@prefix : <https://YourInstllationName-ddw.app.linked.data.world/d/ddw-instance-profile/> . @prefix instance: <https://ontology.data.world/instance-profile#> . @prefix common: <https://ontology.data.world/common-components#> . @prefix kos: <https://open-kos.org/schema/> . : a instance:InstanceProfile ; kos:title "My Instance Profile" ; instance:hasBrowseCardProfile :BrowseCardProfile ; .
STEP 2: Define the title and subtitle of the section
Now, use the following syntax to define the title and subtitle of the section. You can change the values for title and subtitle - Find the right starting point on data.world. and Explore important organizations and collections. to be what you want.
In this section, we are also declaring the Browse Card Profile and creating a presentation for this browse card. We are using a simple sectioned presentation format.
:BrowseCardProfile a instance:BrowseCardProfile ; kos:title "Find the right starting point on data.world." ; common:subTitle "Explore important organizations and collections." ; . :BrowseCardPresentation a instance:SimpleSectionedBrowseCardPresentation . :BrowseCardProfile instance:hasBrowseCardPresentation :BrowseCardPresentation .
STEP 3: Add a section with links to organization profile pages and collections
Use the following syntax to configure the first section.
First, we are adding a link to the organization profile page of the Marketing organization.
Next, we are adding the collection Competitive Analysis. Note that while creating the configurations, you can use any name for the collection as the collection will be recognized by the instance:path (that is the path for the collection). Also, if the name of collection is changed from the UI, this configuration does not need to be updated.
Similarly, add the organization profile page for Sales organization and a collection from it.
Next, define the MarketingAndSales section where we will add all these resources and define their order.
##Add the link to the organization profile page. Note that agentid is the ID of the organization. :MarketingCatalogItemPresentation a instance:BrowseCardAgentEntryPresentation ; instance:agentid "marketing-org" ; kos:title "Marketing catalog" ; . :MarketingCatalogItem a common:Item ; kos:sortOrder 1 ; common:itemPresentation :MarketingCatalogItemPresentation ; . ##Add the link to the collection in the organization and provide the title you want to use on the bowse card. :CompetitiveAnalysisItemPresentation a instance:BrowseCardCollectionLinkPresentation ; instance:path "/marketing-org/catalog/collection/fETwtog2dYPJduxAwDf-lQYDmtJz36U2WtIpqHPsgDY" ; kos:title "Competitive analysis" ; . :CompetitiveAnalysisItem a common:Item ; kos:sortOrder 2 ; common:itemPresentation :CompetitiveAnalysisItemPresentation ; . ##Add the link to the organization profile page. :SalesCatalogItemPresentation a instance:BrowseCardAgentEntryPresentation ; instance:agentid "sales-org" ; kos:title "Sales Catalog" ; . :SalesCatalogItem a common:Item ; kos:sortOrder 3 ; common:itemPresentation :SalesCatalogItemPresentation ; . ##Add the link to the collection in the organization and provide the title you want to use on the bowse card. :SalesPlaybookItemPresentation a instance:BrowseCardCollectionLinkPresentation ; instance:path "/sales-org/catalog/collection/Gd4SyQz2n1uVAN7WgJw3UVDbWlL3UdwKtb53H3kjeRk" ; kos:title "Sales playbook" ; . :SalesPlaybookItem a common:Item ; kos:sortOrder 4 ; common:itemPresentation :SalesPlaybookItemPresentation ; . ##Configure the presentation of the Marketing and Sales section. :MarketingAndSalesSectionPresentation a common:SectionPresentation ; kos:title "Marketing and Sales" ; common:item :MarketingCatalogItem ; common:item :CompetitiveAnalysisItem ; common:item :SalesCatalogItem ; common:item :SalesPlaybookItem ; . :MarketingAndSalesSection a common:Section ; kos:sortOrder 1 ; common:sectionPresentation :MarketingAndSalesSectionPresentation ; .
STEP 4: Add a new type of section with a header that is a link to an organization profile page
In this task, we are defining the header of the section as a clickable link. We will also add a few items in the Customer Support section.
Use the following syntax to configure the second section.
# Support Section #Add a collection :CusomerSupportCollectionItemPresentation a instance:BrowseCardCollectionLinkPresentation ; instance:path "/eng-org/catalog/collection/teROpYDPx3itpvo-UYPpiIHun8xILMTfV4oivZLb4B8" ; kos:title "Support collection" ; . :CusomerSupportCollectionItem a common:Item ; kos:sortOrder 1 ; common:itemPresentation :CusomerSupportCollectionItemPresentation ; . #Add link to the organization profile page for another organization. :DocsCatalogItemPresentation a instance:BrowseCardAgentEntryPresentation ; instance:agentid "docs-gk" ; kos:title "Documentation" ; . :SupportDocsCatalogItem a common:Item ; kos:sortOrder 2 ; common:itemPresentation :DocsCatalogItemPresentation ; . #Define the header of the section to point to the organization profile page of the support organization :SupportCatalogHeaderPresentation a instance:BrowseCardAgentEntryPresentation ; instance:agentid "eng-org" ; kos:title "Customer Support" ; . #Make the header of the section a clickable link. :SupportSectionPresentation a instance:BrowseCardLinkableSectionPresentation ; instance:hasHeaderPresentation :SupportCatalogHeaderPresentation ; common:item :CusomerSupportCollectionItem; common:item :SupportDocsCatalogItem ; . :SupportSection a common:Section ; kos:sortOrder 2 ; common:sectionPresentation :SupportSectionPresentation ; .
Step 5: Add a section with external links, dataset, project, insights
Use the following syntax to add links to variety of resources - datasets, projects, insights in projects, and external websites.
#Add a link to a dataset :DatasetLinkPresentation a instance:BrowseCardDatasetLinkPresentation ; instance:agentid "sales-org" ; instance:datasetid "sales" ; kos:title "Trending dataset" ; . :DatasetItem a common:Item ; kos:sortOrder 1 ; common:itemPresentation :DatasetLinkPresentation ; . #Add a link to a Project :ProjectLinkPresentation a instance:BrowseCardProjectLinkPresentation ; instance:agentid "sales-org" ; instance:projectid "sales-project" ; kos:title "Most popular project" ; . :ProjectItem a common:Item; kos:sortOrder 4 ; common:itemPresentation :ProjectLinkPresentation ; . #Add link to an external website :OtherExternalLinkPresentation a instance:BrowseCardExternalLinkPresentation ; instance:path "https://podcasts.apple.com/us/podcast/catalog-cocktails/id1524652737" ; kos:title "Catalog and cocktails" ; . :ExternalLinkItem a common:Item ; kos:sortOrder 2 ; common:itemPresentation :OtherExternalLinkPresentation ; . #Add link to an insight available in a project :InsightLinkPresentation a instance:BrowseCardInsightLinkPresentation ; instance:agentid "sales-org" ; instance:projectid "sales-project" ; instance:insightid "f3034782-b34e-4558-8719-cc762d6bf8ea" ; kos:title "Insight on next quarter projections" ; . :InsightItem a common:Item ; kos:sortOrder 3 ; common:itemPresentation :InsightLinkPresentation ; . #Configure the section to display all these links :OtherSectionPresentation a common:SectionPresentation ; kos:title "Other useful resources" ; common:item :DatasetItem ; common:item :ExternalLinkItem ; common:item :ProjectItem ; common:item :InsightItem ; . :OtherSection a common:Section ; kos:sortOrder 1 ; common:sectionPresentation :OtherSectionPresentation ; .
STEP 6: Add all 3 sections to the browse card
Finally, define add all these sections to the browse card.
:BrowseCardPresentation common:section :MarketingAndSalesSection ; common:section :SupportSection ; common:section :OtherSection; .
Complete syntax for this task
After you have completed this task, you will have the instance-profile.ttl file ready with the following syntax.
Important
Please ensure that is the is saved as an RDF file type with the extension .ttl.
@prefix : <https://YourInstllationName-ddw.app.linked.data.world/d/ddw-instance-profile/> . @prefix instance: <https://ontology.data.world/instance-profile#> . @prefix common: <https://ontology.data.world/common-components#> . @prefix kos: <https://open-kos.org/schema/> . : a instance:InstanceProfile ; kos:title "My Instance Profile" ; instance:hasBrowseCardProfile :BrowseCardProfile ; . :BrowseCardProfile a instance:BrowseCardProfile ; kos:title "Find the right starting point on data.world." ; common:subTitle "Explore important organizations and collections." ; . :BrowseCardPresentation a instance:SimpleSectionedBrowseCardPresentation . :BrowseCardProfile instance:hasBrowseCardPresentation :BrowseCardPresentation . ##Add the link to the organization profile page. :MarketingCatalogItemPresentation a instance:BrowseCardAgentEntryPresentation ; instance:agentid "marketing-org" ; kos:title "Marketing catalog" ; . :MarketingCatalogItem a common:Item ; kos:sortOrder 1 ; common:itemPresentation :MarketingCatalogItemPresentation ; . ##Add the link to the collection in the organization and provide the title you want to use on the bowse card. :CompetitiveAnalysisItemPresentation a instance:BrowseCardCollectionLinkPresentation ; instance:path "/marketing-org/catalog/collection/fETwtog2dYPJduxAwDf-lQYDmtJz36U2WtIpqHPsgDY" ; kos:title "Competitive analysis" ; . :CompetitiveAnalysisItem a common:Item ; kos:sortOrder 2 ; common:itemPresentation :CompetitiveAnalysisItemPresentation ; . ##Add the link to the organization profile page. :SalesCatalogItemPresentation a instance:BrowseCardAgentEntryPresentation ; instance:agentid "sales-org" ; kos:title "Sales Catalog" ; . :SalesCatalogItem a common:Item ; kos:sortOrder 3 ; common:itemPresentation :SalesCatalogItemPresentation ; . ##Add the link to the collection in the organization and provide the title you want to use on the bowse card. :SalesPlaybookItemPresentation a instance:BrowseCardCollectionLinkPresentation ; instance:path "/sales-org/catalog/collection/Gd4SyQz2n1uVAN7WgJw3UVDbWlL3UdwKtb53H3kjeRk" ; kos:title "Sales playbook" ; . :SalesPlaybookItem a common:Item ; kos:sortOrder 4 ; common:itemPresentation :SalesPlaybookItemPresentation ; . ##Configure the presentation of the Marketing and Sales section. :MarketingAndSalesSectionPresentation a common:SectionPresentation ; kos:title "Marketing and Sales" ; common:item :MarketingCatalogItem ; common:item :CompetitiveAnalysisItem ; common:item :SalesCatalogItem ; common:item :SalesPlaybookItem ; . :MarketingAndSalesSection a common:Section ; kos:sortOrder 1 ; common:sectionPresentation :MarketingAndSalesSectionPresentation ; . # Support Section :CusomerSupportCollectionItemPresentation a instance:BrowseCardCollectionLinkPresentation ; instance:path "/eng-org/catalog/collection/teROpYDPx3itpvo-UYPpiIHun8xILMTfV4oivZLb4B8" ; kos:title "Support collection" ; . :CusomerSupportCollectionItem a common:Item ; kos:sortOrder 1 ; common:itemPresentation :CusomerSupportCollectionItemPresentation ; . :DocsCatalogItemPresentation a instance:BrowseCardAgentEntryPresentation ; instance:agentid "docs-gk" ; kos:title "Documentation" ; . :SupportDocsCatalogItem a common:Item ; kos:sortOrder 2 ; common:itemPresentation :DocsCatalogItemPresentation ; . :SupportCatalogHeaderPresentation a instance:BrowseCardAgentEntryPresentation ; instance:agentid "eng-org" ; kos:title "Customer Support" ; . :SupportSectionPresentation a instance:BrowseCardLinkableSectionPresentation ; instance:hasHeaderPresentation :SupportCatalogHeaderPresentation ; common:item :CusomerSupportCollectionItem; common:item :SupportDocsCatalogItem ; . :SupportSection a common:Section ; kos:sortOrder 2 ; common:sectionPresentation :SupportSectionPresentation . #Other Section #Add a link to a dataset :DatasetLinkPresentation a instance:BrowseCardDatasetLinkPresentation ; instance:agentid "sales-org" ; instance:datasetid "sales" ; kos:title "Trending dataset" ; . :DatasetItem a common:Item ; kos:sortOrder 1 ; common:itemPresentation :DatasetLinkPresentation ; . #Add a link to a Project :ProjectLinkPresentation a instance:BrowseCardProjectLinkPresentation ; instance:agentid "sales-org" ; instance:projectid "sales-project" ; kos:title "Most popular project" ; . :ProjectItem a common:Item; kos:sortOrder 4 ; common:itemPresentation :ProjectLinkPresentation ; . #Add link to an external website :OtherExternalLinkPresentation a instance:BrowseCardExternalLinkPresentation ; instance:path "https://podcasts.apple.com/us/podcast/catalog-cocktails/id1524652737" ; kos:title "Catalog and cocktails" ; . :ExternalLinkItem a common:Item ; kos:sortOrder 2 ; common:itemPresentation :OtherExternalLinkPresentation ; . #Add link to an insight available in a project :InsightLinkPresentation a instance:BrowseCardInsightLinkPresentation ; instance:agentid "sales-org" ; instance:projectid "sales-project" ; instance:insightid "f3034782-b34e-4558-8719-cc762d6bf8ea" ; kos:title "Insight on next quarter projections" ; . :InsightItem a common:Item ; kos:sortOrder 3 ; common:itemPresentation :InsightLinkPresentation ; . #Configure the section to display all these links :OtherSectionPresentation a common:SectionPresentation ; kos:title "Other useful resources" ; common:item :DatasetItem ; common:item :ExternalLinkItem ; common:item :ProjectItem ; common:item :InsightItem ; . :OtherSection a common:Section ; kos:sortOrder 1 ; common:sectionPresentation :OtherSectionPresentation ; . #Add all sections to the browse card :BrowseCardPresentation common:section :MarketingAndSalesSection ; common:section :SupportSection ; common:section :OtherSection; .