# 시드

## 탄소 SEED

탄소 SEED는 GESIA 체인의 핵심 요소로, 탄소 배출 및  상쇄 데이터를 수집, 분석, 집계하기 위해 디지털화된 기본 단위를 의미한다.

<figure><img src="/files/ASgIabdwdUAi6ZD3lPGq" alt=""><figcaption></figcaption></figure>

### **탄소 SEED의 주요 특징**

1. **데이터의 디지털 토큰 단위 화**
   * 탄소 SEED는 실제 탄소 배출 데이터를 **디지털 배출 토큰**으로 변환하는 단위로 사용된다.<br>
2. **메터 데이터 기반 관리**
   * SEED는 메터  데이터를 포함하여 배출 또는 상쇄 데이터를 저장한 위치를 참조한다.

### **탄소 SEED 메터 데이터**

* **Seed\_ID** : 데이터를 고유하게 식별할 수 있는 ID.
* **Timestamp** : 데이터가 기록된 시점.
* **Storage\_Location** : 데이터를 저장한 외부 시스템의 URL.
* **Source** : 데이터를 수집한 장치 또는 출처.
* **Data\_Type** : 데이터 유형 ( 예: 배출 - Emission  , 상쇄 - Offset , N/A - None ).
* **Substance** : 물질의 정보
  * Type : 물질  유형 ( 예: 원소 - Elements , 화합물 - Compounds )
  * Name : 물질 이름 ( 예: 리듐 )
  * Symbol : 물질 기호 ( 예: Li )
  * Measurement\_Unit : 초기 물질의기준이 되는 질량의 단위 ( 예: g ,kg )
* **Base\_Substance\_Amount** : 초기 물질의 기준이 되는 질량.
* **Activity\_Category** : 해당 물질(원소/화합물)과 연관된 활동 유형
* **Per\_Unit** : 해당 물질 (또는 에너지 소비량) 1 단위 당 발생하는 배출량 ( 예: 1 kwh = 424g).
* **Verification\_Status**: 데이터 검증 상태.
* **Geographic\_Location**: 데이터 수집 지역.
* **Aggregated** : 데이터가 개별인지 집계인지 구분.
* **Signed\_Value**: 데이터의 무결성을 보장하는 서명 값.

```json
{
  "Seed_ID": "unique-seed-12345",
  "Timestamp": "2024-12-16T10:30:00Z",
  "Storage_Location": "https://example.com/data/storage",
  "Source": "Sensor-01",
  "Data_Type": "Emission",
  "Substance": {
    "Type": "Element",
    "Name": "Carbon",
    "Symbol": "C",
    "Measurement_Unit": "g"
  },
  "Base_Substance_Amount": 1000,
  "Activity_Category": "Electricity",
  "Per_Unit": "424g",
  "Verification_Status": "Verified",
  "Geographic_Location": "Seoul, Korea",
  "Aggregated": false,
  "Signed_Value": "abc123signature"
}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs-kr.gesia.io/techresearch/seed.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
