What is Automatic Transfer to Data Tile Description
Purpose
This document explains the automatic transfer feature to data tile description fields in RDE structured processing. You will understand the mechanism and configuration methods for automatically displaying metadata items in description fields.
Challenges and Background
Data set management faced the following challenges:
- Manual Description Creation: Need to manually create description text for each dataset
- Information Consistency: Important metadata information not reflected in description fields
- Work Efficiency: Duplicate work of entering the same information in multiple places
- Visibility: Difficulty in grasping dataset overview at a glance
The automatic transfer feature from metadata was developed to solve these challenges.
Key Concepts
Automatic Transfer Mechanism
flowchart LR
A[metadata-def.json] --> B[description setting]
C[metadata.json] --> D[actual values]
B --> E[automatic transfer process]
D --> E
E --> F[data tile description field]
Configurable Items
| Configuration Item | Description | Required |
|---|---|---|
"description": true |
Setting for display in description field | ○ |
"title" |
Display name definition | ○ |
"type" |
Data type definition | ○ |
Display Rules
- Only items with
description: trueare displayed - Items with
nullor empty values are not displayed - Displayed in definition order
- Supports both Japanese and English
Configuration Method
1. Configuration in metadata-def.json
Add "description": true to items you want to display in the description field:
| metadata-def.json | |
|---|---|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | |
2. Value Setting in Structuring Processing
Set metadata values in custom structured processing:
| Metadata Generation | |
|---|---|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | |
3. Verify Display Results
The data tile description field will display as follows:
1 2 3 | |
Practical Usage Examples
Multiple Data Type Configuration
| Various Data Type Configuration Example | |
|---|---|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | |
Conditional Metadata Generation
| Conditional Metadata Setting | |
|---|---|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | |
Troubleshooting
When Items Don't Appear in Description Field
Configuration Check Checklist
| Configuration Check Script | |
|---|---|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | |
Common Problems and Solutions
| Problem | Cause | Solution |
|---|---|---|
| Items not displayed | description: true not set |
Add setting to metadata-def.json |
| Values displayed as blank | No value in metadata.json | Set value in structured processing |
| Display order differs from intention | Definition order issue | Adjust order in metadata-def.json |
Summary
Key features of the automatic transfer to data tile description field:
- Automation: Automatic transfer from metadata to description field
- Selective Display: Display only important items selectively
- Consistency: Information display in unified format
- Efficiency: Reduction of manual work and centralized information management
Next Steps
To utilize the automatic transfer feature, refer to the following documents:
- Learn schema design in Metadata Definition Files
- Understand processing flows in Structuring Processing Concepts
- Check file operation methods in Directory Path Retrieval