emolero commited on
Commit
05abff2
·
verified ·
1 Parent(s): b38fa2e

Unify card: Open-Telco Telecom Standards Corpus

Browse files
Files changed (1) hide show
  1. README.md +33 -1
README.md CHANGED
@@ -1,16 +1,23 @@
1
  ---
2
  license: other
 
 
3
  language:
4
  - en
 
5
  tags:
 
6
  - tmforum
7
  - oda
8
- - telecom
9
  - api
 
10
  ---
11
 
12
  # TM Forum source mirror
13
 
 
 
 
14
  This dataset holds TM Forum's Open API specifications and ODA component definitions, the set TM Forum publishes for open digital architecture. Every source is kept twice: `original/` is the file as TM Forum released it (`apis/` holds the OpenAPI and Swagger specs, `components/` holds the ODA component YAML), and `marked/` is that same file converted to Markdown for search and retrieval, one `raw.md` per file at the matching path. `manifest.jsonl` carries one row per file (path, SHA-256, parse status) and `STATUS.md` reports how much of the corpus has been parsed.
15
 
16
  ```text
@@ -24,3 +31,28 @@ tmforum/
24
  manifest.jsonl # one row per file: path, sha256, parse status
25
  STATUS.md # parse-coverage summary
26
  ```
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: other
3
+ license_name: tmforum
4
+ license_link: https://www.tmforum.org/
5
  language:
6
  - en
7
+ pretty_name: TM Forum Open APIs and ODA Components
8
  tags:
9
+ - telecommunications
10
  - tmforum
11
  - oda
 
12
  - api
13
+ - open-telco
14
  ---
15
 
16
  # TM Forum source mirror
17
 
18
+ > Part of the **[Open-Telco Telecom Standards Corpus](https://huggingface.co/collections/GSMA/telecom-standards-corpus-6a432dc598fc32729754fecf)**.
19
+ > Sibling mirrors: [3GPP](https://huggingface.co/datasets/GSMA/3GPP) · [ETSI](https://huggingface.co/datasets/GSMA/etsi) · [ITU-T](https://huggingface.co/datasets/GSMA/itu) · [O-RAN](https://huggingface.co/datasets/GSMA/oran) · [GSMA](https://huggingface.co/datasets/GSMA/gsma) · **TM Forum** · [CAMARA](https://huggingface.co/datasets/GSMA/camara)
20
+
21
  This dataset holds TM Forum's Open API specifications and ODA component definitions, the set TM Forum publishes for open digital architecture. Every source is kept twice: `original/` is the file as TM Forum released it (`apis/` holds the OpenAPI and Swagger specs, `components/` holds the ODA component YAML), and `marked/` is that same file converted to Markdown for search and retrieval, one `raw.md` per file at the matching path. `manifest.jsonl` carries one row per file (path, SHA-256, parse status) and `STATUS.md` reports how much of the corpus has been parsed.
22
 
23
  ```text
 
31
  manifest.jsonl # one row per file: path, sha256, parse status
32
  STATUS.md # parse-coverage summary
33
  ```
34
+
35
+ ## How it is organized
36
+
37
+ - `original/` holds the files as TM Forum published them: `apis/` carries the OpenAPI and Swagger specs (TMF6xx, TMF9xx), `components/` carries the ODA component YAML (TMFC0xx).
38
+ - `marked/` is the Markdown twin of `original/` at identical paths, one `raw.md` per file.
39
+ - `manifest.jsonl` carries one row per file (path, SHA-256, parse status); `STATUS.md` reports parse coverage.
40
+
41
+ ## How to use
42
+
43
+ Pull only the Markdown twins (skip the heavy `original/` tree) and read them straight:
44
+
45
+ ```python
46
+ from huggingface_hub import snapshot_download
47
+
48
+ path = snapshot_download("GSMA/tmforum", repo_type="dataset", allow_patterns="marked/**")
49
+ # every parsed document is a marked/**/raw.md
50
+ ```
51
+
52
+ ## The corpus
53
+
54
+ This dataset is part of the **Open-Telco Telecom Standards Corpus**, an effort to make telecommunications open by mirroring every major standards body into clean, machine-readable Markdown. The full set: 3GPP, ETSI, ITU-T, O-RAN, GSMA, TM Forum, and CAMARA. Browse them all in the [collection](https://huggingface.co/collections/GSMA/telecom-standards-corpus-6a432dc598fc32729754fecf).
55
+
56
+ ## License and attribution
57
+
58
+ The mirrored documents remain the property of TM Forum and stay subject to its terms; see [www.tmforum.org](https://www.tmforum.org/). This dataset reproduces them in original and Markdown form for research, search, and retrieval. Cite the underlying specification by its TMF number when you use it.