CHAPTER 4

Phase 1 - Data Format

Phase 1 establishes the foundational data structures that enable all subsequent functionality in the WIA Biodiversity Index Standard. By defining precise, machine-readable schemas for biodiversity information, this phase solves the data fragmentation problem and creates the interoperability essential for global-scale conservation efforts. This chapter details the core data models, validation rules, and implementation guidance for Phase 1 compliance.

Core Schema Architecture

The WIA data format consists of seven interconnected schemas, each capturing a distinct aspect of biodiversity information while maintaining referential integrity across the system.

Species Occurrence Schema

The species occurrence schema represents the fundamental unit of biodiversity data - a record that a particular species was observed at a specific place and time. This schema extends Darwin Core while adding fields that support modern biodiversity monitoring needs.

{
  "$schema": "https://wia.org/schemas/occurrence/v1.0",
  "occurrence_id": "OCC-2025-123456",
  "dataset_id": "DS-RAINFOREST-2025",

  "species": {
    "scientific_name": "Morpho menelaus",
    "common_name": "Blue Morpho Butterfly",
    "taxonomy": {
      "kingdom": "Animalia",
      "phylum": "Arthropoda",
      "class": "Insecta",
      "order": "Lepidoptera",
      "family": "Nymphalidae",
      "genus": "Morpho",
      "species": "menelaus",
      "subspecies": null
    },
    "taxonomic_authority": "Linnaeus, 1758",
    "taxon_id": "GBIF:1928564",
    "iucn_status": "LC",
    "endemic": false
  },

  "location": {
    "latitude": -3.1190,
    "longitude": -60.0217,
    "coordinate_uncertainty_m": 10,
    "datum": "WGS84",
    "elevation_m": 45,
    "depth_m": null,
    "locality": "Reserva Florestal Adolpho Ducke",
    "country": "Brazil",
    "state_province": "Amazonas",
    "protected_area": true,
    "habitat_type": "tropical_rainforest",
    "habitat_detail": "primary_forest_canopy"
  },

  "temporal": {
    "observation_date": "2025-11-15T09:23:45Z",
    "observation_duration_minutes": 180,
    "season": "wet",
    "time_of_day": "morning"
  },

  "observation": {
    "basis_of_record": "human_observation",
    "sampling_protocol": "transect_walk",
    "individual_count": 3,
    "life_stage": "adult",
    "sex": "unknown",
    "behavior": "nectaring",
    "observer_id": "OBS-2025-BZ047",
    "observer_name": "Dr. Maria Santos",
    "identification_confidence": 0.98,
    "identification_method": "visual",
    "identification_verified_by": null,
    "evidence": {
      "has_photo": true,
      "has_sound": false,
      "has_specimen": false,
      "photo_urls": [
        "https://storage.wia.org/obs/2025/11/15/morpho_001.jpg"
      ]
    }
  },

  "environmental": {
    "temperature_c": 28.5,
    "humidity_percent": 82,
    "cloud_cover_percent": 40,
    "wind_speed_ms": 1.2,
    "canopy_cover_percent": 95
  },

  "quality": {
    "quality_flag": "validated",
    "quality_checks": [
      "coordinate_valid",
      "taxonomy_verified",
      "date_reasonable",
      "habitat_match"
    ],
    "validation_date": "2025-11-16T14:30:00Z",
    "validator_id": "VAL-2025-042"
  },

  "provenance": {
    "data_source": "field_survey",
    "project_name": "Amazon Butterfly Monitoring Program",
    "funding_source": "Brazilian National Science Foundation",
    "permit_number": "ICMBio-12345-2025",
    "created_date": "2025-11-15T12:00:00Z",
    "modified_date": "2025-11-16T14:30:00Z",
    "license": "CC-BY-4.0"
  }
}

Required vs. Optional Fields

The schema defines three tiers of fields to balance completeness with practical constraints:

Field Tier Description Examples
Required Must be present for valid record occurrence_id, scientific_name, latitude, longitude, observation_date
Recommended Should be included when available individual_count, habitat_type, observer_id, quality_flag
Optional Enhance record but not critical behavior, sex, life_stage, environmental conditions

eDNA Sample Schema

Environmental DNA (eDNA) monitoring represents a revolutionary approach to biodiversity assessment. The eDNA schema captures both field collection and laboratory processing information.

{
  "$schema": "https://wia.org/schemas/edna/v1.0",
  "sample_id": "EDNA-2025-RW-089",
  "collection": {
    "date": "2025-10-22T11:15:00Z",
    "location": {
      "latitude": 51.4545,
      "longitude": -0.9782,
      "water_body_name": "River Thames",
      "water_body_type": "river",
      "site_description": "100m downstream of Goring Lock"
    },
    "sampling_method": "filtration",
    "volume_liters": 2.0,
    "filter_pore_size_um": 0.45,
    "filter_type": "cellulose_nitrate",
    "replicates": 3,
    "water_parameters": {
      "temperature_c": 12.3,
      "ph": 7.8,
      "conductivity_us_cm": 520,
      "turbidity_ntu": 15
    }
  },

  "processing": {
    "extraction_date": "2025-10-23",
    "extraction_method": "qiagen_dneasy_powerwater",
    "extraction_kit_lot": "QIA-2025-08-B14",
    "dna_concentration_ng_ul": 8.5,
    "dna_quality_260_280": 1.85,
    "sequencing_platform": "illumina_novaseq_6000",
    "sequencing_date": "2025-10-28",
    "target_gene": "COI",
    "primer_set": "mlCOIintF/jgHCO2198",
    "pcr_cycles": 35,
    "sequencing_depth": "50000_reads_per_sample"
  },

  "results": {
    "total_reads": 52847,
    "quality_filtered_reads": 48932,
    "unique_asvs": 247,
    "detected_taxa": [
      {
        "scientific_name": "Salmo trutta",
        "common_name": "Brown Trout",
        "read_count": 15432,
        "asv_count": 8,
        "confidence": 0.97,
        "taxonomy_database": "BOLD_v4.5"
      },
      {
        "scientific_name": "Rutilus rutilus",
        "common_name": "Common Roach",
        "read_count": 8921,
        "asv_count": 5,
        "confidence": 0.94,
        "taxonomy_database": "BOLD_v4.5"
      },
      {
        "scientific_name": "Anguilla anguilla",
        "common_name": "European Eel",
        "read_count": 1247,
        "asv_count": 2,
        "confidence": 0.99,
        "taxonomy_database": "BOLD_v4.5"
      }
    ]
  },

  "quality": {
    "negative_control_contamination": false,
    "positive_control_success": true,
    "primer_dimer_percentage": 3.2,
    "quality_flag": "passed"
  }
}

Habitat Classification Schema

Standardized habitat classification is essential for meaningful biodiversity comparisons. The WIA schema aligns with IUCN habitat classification while adding detail useful for specific ecosystems.

Level 1 Level 2 Level 3 Example
Forest Tropical/Subtropical Moist Lowland Amazon rainforest primary growth
Wetlands Inland Wetlands Permanent Freshwater Lake margins, reed beds
Marine Coastal Coral Reef Fringing reef, 5-15m depth
Grassland Temperate Mesic Grassland Tallgrass prairie, managed for hay
Artificial Agricultural Arable Land Corn field with conservation tillage

Diversity Index Results Schema

Calculated biodiversity indices must be stored with full metadata about calculation methods and input data to ensure reproducibility.

{
  "$schema": "https://wia.org/schemas/diversity-index/v1.0",
  "calculation_id": "CALC-2025-TH-445",
  "dataset_id": "DS-THAMES-2025-Q4",
  "calculation_date": "2025-12-01T10:30:00Z",

  "spatial_extent": {
    "type": "polygon",
    "coordinates": [/* GeoJSON polygon */],
    "area_km2": 125.8
  },

  "temporal_extent": {
    "start_date": "2025-10-01",
    "end_date": "2025-12-31",
    "duration_days": 92
  },

  "input_data": {
    "occurrence_count": 1847,
    "unique_species": 67,
    "total_individuals": 4523,
    "sampling_effort_hours": 240,
    "observer_count": 12
  },

  "indices": {
    "species_richness": {
      "value": 67,
      "rarefied_to_n": 1000,
      "rarefied_value": 58.3,
      "confidence_interval_95": [54.1, 62.8]
    },
    "shannon_diversity": {
      "value": 3.247,
      "confidence_interval_95": [3.102, 3.398],
      "calculation_method": "natural_log",
      "bootstrap_iterations": 1000
    },
    "simpson_index": {
      "value": 0.0521,
      "diversity_1_minus_d": 0.9479,
      "inverse_simpson": 19.19,
      "confidence_interval_95": [0.0487, 0.0559]
    },
    "pielou_evenness": {
      "value": 0.775,
      "interpretation": "moderately_even"
    },
    "margalef_richness": {
      "value": 7.82
    }
  },

  "comparison": {
    "previous_period": "2025-Q3",
    "richness_change_percent": -5.2,
    "shannon_change": -0.154,
    "trend": "declining",
    "statistical_significance": 0.032
  }
}

Taxonomy Reference Schema

Taxonomic information must be traceable to authoritative sources and versioned to handle updates in classification.

{
  "taxon_id": "WIA-TAX-001234",
  "scientific_name": "Panthera tigris tigris",
  "rank": "subspecies",
  "parent_taxon_id": "WIA-TAX-001200",
  "accepted_name": true,
  "synonyms": [
    "Panthera tigris bengalensis"
  ],
  "common_names": [
    {
      "name": "Bengal Tiger",
      "language": "en"
    },
    {
      "name": "बंगाल टाइगर",
      "language": "hi"
    }
  ],
  "conservation_status": {
    "iucn_category": "EN",
    "iucn_version": "2024-1",
    "population_trend": "Increasing",
    "assessment_date": "2023-06-15"
  },
  "external_ids": {
    "gbif": "5219404",
    "ncbi": "9695",
    "bold": "MAMAL:123",
    "iucn": "15955"
  },
  "version": "2025-11-01",
  "source": "WIA Taxonomic Authority v1.2"
}

Validation Rules and Quality Assurance

Each schema includes built-in validation rules that can be automatically checked:

Coordinate Validation

Temporal Validation

Taxonomic Validation

Ecological Validation

Data Exchange Formats

While JSON is the canonical format, the standard supports multiple serialization formats for different use cases:

Format Use Case Advantages Limitations
JSON APIs, web apps Human-readable, nested structures Verbose for large datasets
GeoJSON GIS integration Native GIS tool support Spatial-focused, less rich metadata
CSV Statistical analysis Universal compatibility, compact Cannot represent nested structures
Parquet Big data analytics Columnar, highly compressed Requires specialized tools
Darwin Core Archive GBIF submission Standards-compliant Complex structure

Implementation Guidance

Database Schema Design

For PostgreSQL implementation, the recommended approach uses JSONB columns for flexible nested data with indexed fields for query performance:

CREATE TABLE occurrences (
  occurrence_id TEXT PRIMARY KEY,
  scientific_name TEXT NOT NULL,
  location GEOMETRY(Point, 4326) NOT NULL,
  observation_date TIMESTAMP NOT NULL,
  data JSONB NOT NULL,

  -- Indexes for common queries
  CREATE INDEX idx_species ON occurrences(scientific_name);
  CREATE INDEX idx_location ON occurrences USING GIST(location);
  CREATE INDEX idx_date ON occurrences(observation_date);
  CREATE INDEX idx_habitat ON occurrences((data->>'habitat_type'));
);

Migration from Legacy Data

The WIA standard provides migration tools for common legacy formats. Example migration from simple CSV:

import wia_biodiversity as wia

# Load legacy CSV
legacy_data = pd.read_csv('old_observations.csv')

# Convert to WIA format
wia_data = wia.convert.from_csv(
    legacy_data,
    field_mapping={
        'Species': 'species.scientific_name',
        'Lat': 'location.latitude',
        'Lon': 'location.longitude',
        'Date': 'temporal.observation_date',
        'Count': 'observation.individual_count'
    },
    defaults={
        'observation.basis_of_record': 'human_observation',
        'location.datum': 'WGS84'
    }
)

# Validate
validation_report = wia.validate(wia_data)
print(f"Valid: {validation_report.valid_count}")
print(f"Errors: {validation_report.error_count}")

Chapter Summary

Key Takeaways

  • Comprehensive schemas cover species occurrences, eDNA samples, habitats, diversity indices, and taxonomic information with precise field definitions and validation rules.
  • Three-tier field system (required/recommended/optional) balances completeness with practical data collection constraints across diverse contexts.
  • Built-in validation ensures data quality through automated checks of coordinates, taxonomy, temporal consistency, and ecological plausibility.
  • Multiple serialization formats (JSON, GeoJSON, CSV, Parquet, Darwin Core) support different use cases while maintaining semantic consistency.
  • Migration tools and guidance facilitate conversion from legacy formats, reducing barriers to adoption and preserving existing data investments.

Review Questions

  1. Explain the relationship between the species occurrence schema and eDNA sample schema. How do they complement each other?
  2. Why does the standard define required, recommended, and optional fields rather than making all fields required or all optional?
  3. Describe three validation rules and explain how each prevents common data quality issues.
  4. How does the habitat classification schema balance standardization with ecosystem-specific detail?
  5. Compare JSON and CSV serialization formats. When would you choose each for a biodiversity monitoring project?
  6. How does the diversity index results schema ensure reproducibility of calculations? What metadata is essential for this purpose?

Looking Ahead: Chapter 5 builds on these standardized data formats to present Phase 2: API Interface. You'll learn how RESTful APIs, GraphQL queries, and computational services leverage the Phase 1 data foundation to provide powerful analytical capabilities.

Korea Digital Transformation Detailed Mapping

Korea operates digital transformation through a comprehensive governance system. Digital Government: Digital Platform Government Committee (established September 2022, under the President)·Ministry of the Interior and Safety Digital Government Bureau·e-Government Support Center·Gov.kr·National Citizen Service·KDIS (Korea Digital Information Society)·NIA (National Information Society Agency)·MOIS (Ministry of the Interior and Safety). K-DNS Infrastructure: Korea Internet & Security Agency (KISA) Korea Internet Center·KISA DNS Root Server·KRNIC (Korea Network Information Center)·BGP Korea·National Cyber Security Center (NCSC)·KCC (Korea Communications Commission)·MSIT (Ministry of Science and ICT)·NIA·NIPA. Korean Cloud Infrastructure: KT Cloud·NAVER Cloud (NCloud)·Samsung SDS Cloud·LG U+ Cloud·NHN Cloud·Kakao Enterprise Cloud·SK Telecom Cloud·KISA Cloud Security Assurance Program (CSAP)·KCMVP-validated cloud·ISMS-P (Information Security & Personal Information Management System). Korean Security Certifications: KISA ISMS-P certification·KCMVP (Korean Cryptographic Module Validation Program)·NIS (National Intelligence Service) "National Cryptographic Technology Operation Standards"·NCSC "National Cyber Security Strategy 2024-2028"·CC (Common Criteria) Korean evaluation bodies·EAL4·EAL5·KS X ISO/IEC 15408·19790·24759 Korean Profile. Korean Data Standards: NIA AI Hub·National Data Standardization Committee·Statistics Korea (KOSTAT)·MyData 4 Designated Combination Specialists (Samsung SDS, KICI, KOSTAT, KFTC)·National Institute of Korean Language·National Law Information Center·National Spatial Information Platform·National Spatial Data Center·Korean Spatial Information Standards. Finance and Fintech Standards: FSC (Financial Services Commission)·FSS (Financial Supervisory Service)·FIU (Financial Intelligence Unit)·BOK (Bank of Korea)·FSEC (Financial Security Institute)·KFTC (Korea Financial Telecommunications)·KSD (Korea Securities Depository)·KRX (Korea Exchange) 8-agency cooperation. 5G/6G Communications Infrastructure: 5G subscribers 35 million (2024)·5G base stations 350,000·6G commercialization target 2028·5G dedicated networks 16 operators·6G Acceleration Council (MSIT, 2024). K-Content: KOCCA (Korea Creative Content Agency)·MCST (Ministry of Culture, Sports and Tourism)·KCA (Korea Communications Agency)·Korea Culture Information Service Agency·Korean Film Archive·Korea Publishing Industry Promotion Agency. Data 3 Acts (Personal Information Protection Act·Credit Information Act·Telecommunications Network Act, 2020 enforcement)·Data Industry Act (2021)·Public Data Act (2013)·AI Framework Act (2026)·Digital Platform Government Framework Act (2024 proposed) — Korea digital transformation core legislation.

Korea Industrial, Research, Education Infrastructure Mapping

Korea operates its industrial ecosystem and standardization system through the following core infrastructure. Korea Top 5 Groups: Samsung, Hyundai Motor, LG, SK, Lotte. Each group operates standardization committees and ISO/IEC TC Korean secretariats. Samsung Electronics (semiconductors, displays, home appliances, telecom)·Hyundai Motor (automobiles, mobility)·LG Electronics (home appliances, displays, OLED)·SK hynix (memory)·LG Energy Solution·Samsung SDI (batteries)·POSCO Future M (materials)·Hyundai Mobis (parts). Korean IT Big Tech: NAVER (search, cloud, AI HyperCLOVA)·Kakao (messenger, payment, mobility, banking)·Coupang (e-commerce, logistics)·Karrot Market·Toss·Woowa Brothers. Korea Telcos: SK Telecom·KT·LG U+. 5G·5G dedicated networks·B2B cloud·AI businesses operating. Korea Top 7 Research Universities: Seoul National University·KAIST·POSTECH·Yonsei University·Korea University·UNIST·DGIST·GIST. All serve as standardization R&D bases and ISO/IEC/IEEE Korean chairs. Korea Government-affiliated National Research Institutes (26): KIST, KAERI, KIMM, KIER, KFRI, KRICT, KRIBB, KARI, KASI, KIGAM, KICT, KISTI, KETI, ETRI, NIMS, KIMS, KISDI, KOTRA, STEPI, KOEN, KICCE, KIET, KIPF, KIHASA, KICJ, KLRI. Korea Industrial Complexes / Tech Valleys: Pangyo Techno Valley·Dongtan·Gwanggyo·Songdo IBD·Yeouido·Gangnam·Sihwa·Banwol·Gumi·Ulsan·Changwon·Geoje·Yeosu·Onsan·Cheongju·Iksan·Gwangyang·POSCO Gwangyang Steel Mill·Asan Bay·Seosan·Songdo·Incheon Airport·Sejong·Cheongna·Geomdan. Korea Trade and Finance Infrastructure: Korea International Trade Association (KITA)·Korea Trade-Investment Promotion Agency (KOTRA)·Export-Import Bank of Korea (KEXIM)·Bank of Korea·Kookmin Bank·Shinhan·Hana·Woori·NH Nonghyup·IBK Industrial Bank·SC First Bank·Citi Bank Korea·HSBC Korea·DBS Korea — 14 Korean major banks and foreign banks. Korea K-POP / K-Content: HYBE·SM·YG·JYP 4 major entertainment companies·CJ ENM·tvN·MBC·KBS·SBS·EBS·YTN·Yonhap News TV·JTBC Korean broadcasting·NETFLIX Korea·Disney Plus·TVING·Wavve·Watcha·Coupang Play. Korea Gaming Industry: Nexon·NCsoft·Krafton·Netmarble·Kakao Games·Pearl Abyss·Com2uS·Gamevil·NHN·Smilegate·Webzen. Korea Automotive / Battery: Hyundai Motor·Kia·Genesis·LG Energy Solution·Samsung SDI·SK On·POSCO Future M·EcoPro·L&F battery cathode material suppliers. Korea Semiconductor: Samsung Electronics (HBM3E·HBM4)·SK hynix (HBM3E 12-Hi)·DB HiTek·SK siltron·SK Enpulse·Dongjin Semichem·Seoul Semiconductor·Simmtech·Samsung Display·LG Display.

Korea Standardization Infrastructure Mapping

Korea operates a comprehensive standards governance system through inter-ministerial cooperation. National Standards Council (under Prime Minister's Office, per Framework Act on National Standards Article 5) coordinates KATS (Korean Agency for Technology and Standards), MFDS (Ministry of Food and Drug Safety), MOTIE (Ministry of Trade, Industry and Energy), MSIT (Ministry of Science and ICT), MOIS (Ministry of the Interior and Safety), MOE (Ministry of Environment), MOHW (Ministry of Health and Welfare), MND (Ministry of National Defense), MCST (Ministry of Culture, Sports and Tourism), MOFA (Ministry of Foreign Affairs), MOJ (Ministry of Justice), and FSC (Financial Services Commission). Accreditation and Testing: KOLAS (Korea Laboratory Accreditation Scheme) accredits 800+ testing laboratories. KAS (Korea Accreditation System) accredits 50+ certification bodies. KTC (Korea Testing Certification), KTR (Korea Testing & Research Institute), KTL (Korea Testing Laboratory), and KCL (Korea Conformity Laboratories) provide conformance testing. Telecom and Cyber: KCC (Korea Communications Commission), KCA (Korea Communications Agency), TTA (Telecommunications Technology Association), IITP (Institute for Information & Communications Technology Planning & Evaluation), NIPA (National IT Industry Promotion Agency), KISA (Korea Internet & Security Agency), KCMVP (Korea Cryptographic Module Validation Program), NIS (National Intelligence Service), NSR (National Security Research Institute), and NCSC (National Cyber Security Center). National R&D Centers: KIST, ETRI, KAIST, Seoul National University, Yonsei University, Korea University, POSTECH, UNIST, GIST, DGIST, KISTI, KIER, KIMM, KRICT, KFRI, KRIBB. International Standards Cooperation: ISO TC/SC Korean secretariats, IEC TC/SC Korean secretariats, ITU-T Study Group Korean chairs, 3GPP RAN/SA Korean chairs, IEEE 802 Korean chairs, W3C Korea office, OASIS Korea office, IETF Korea cooperation, OECD CSTP, UN ESCAP, APEC SCSC Korean cooperation. Korean Industrial Standards (KS) Catalog: KS X (Information) 25,000+, KS A (Basic) 15,000+, KS B (Machinery) 25,000+, KS C (Electrical) 18,000+, KS D (Metallurgy) 12,000+, KS E (Mining) 5,000+, KS F (Construction) 18,000+, KS H (Food) 8,000+, KS I (Environment) 5,000+, KS J (Biology) 3,000+, KS K (Textile) 15,000+, KS L (Ceramics) 7,000+, KS M (Chemistry) 12,000+, KS P (Medical) 5,000+, KS Q (Quality Mgmt) 4,000+, KS R (Transport) 12,000+, KS S (Service) 3,000+, KS T (Packaging) 4,000+, KS V (Shipbuilding) 5,000+, KS W (Aerospace) 3,000+ — totaling 220,000+ Korean Industrial Standards. Key Acts: Personal Information Protection Act (Act 19234, effective Sept 15, 2024), Electronic Government Act, Electronic Signature Act, Act on Promotion of Information and Communications Network Utilization and Information Protection, Information and Communications Infrastructure Protection Act, Data Industry Act, Public Data Act, AI Framework Act (Act 20212, effective July 2026), Industrial Technology Innovation Promotion Act, Framework Act on Science and Technology — 70+ Korean standardization-related laws.