Text Generation
Transformers
geopolitics
risk-analysis
real-time-intelligence
predictive-analytics
nfsi
Instructions to use neawolf/Naciro with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use neawolf/Naciro with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="neawolf/Naciro")# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("neawolf/Naciro", dtype="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps
- vLLM
How to use neawolf/Naciro with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "neawolf/Naciro" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "neawolf/Naciro", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/neawolf/Naciro
- SGLang
How to use neawolf/Naciro with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "neawolf/Naciro" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "neawolf/Naciro", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "neawolf/Naciro" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "neawolf/Naciro", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use neawolf/Naciro with Docker Model Runner:
docker model run hf.co/neawolf/Naciro
File size: 71,227 Bytes
933069c 9f780c8 933069c 9f780c8 933069c | 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 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 | {
"schema_version": 1,
"description": "Zentrale Begriffe/Abkürzungen für Knowledge-Entity-Seiten. Matching über aliases (Groß/Kleinschreibung ignoriert). i18n: Kurzdefinition je Sprache.",
"terms": [
{
"id": "json-ld",
"aliases": [
"JSON-LD",
"JSON LD"
],
"i18n": {
"de": {
"label": "JSON-LD",
"definition": "Strukturierte Daten im JSON-Format nach schema.org — hilft Suchmaschinen und KI, Seiteninhalte als eindeutige Fakten zu verstehen."
},
"en": {
"label": "JSON-LD",
"definition": "JSON-based structured data using schema.org vocabulary so search engines and AI can interpret page content as explicit facts."
},
"fr": {
"label": "JSON-LD",
"definition": "Données structurées JSON (schema.org) pour que moteurs de recherche et IA interprètent le contenu comme des faits explicites."
},
"es": {
"label": "JSON-LD",
"definition": "Datos estructurados en JSON (schema.org) para que buscadores e IA interpreten el contenido como hechos explícitos."
},
"pt": {
"label": "JSON-LD",
"definition": "Dados estruturados em JSON (schema.org) para motores de busca e IA interpretarem o conteúdo como factos explícitos."
},
"ar": {
"label": "JSON-LD",
"definition": "بيانات منظّمة بصيغة JSON وفق مخطوطات schema.org لتفسير محتوى الصفحة كحقائق صريحة لمحركات البحث وأنظمة الذكاء الاصطناعي."
},
"ja": {
"label": "JSON-LD",
"definition": "schema.org に基づく JSON 形式の構造化データ。検索エンジンや AI がページ内容を明示的な事実として解釈するのに使われます。"
}
}
},
{
"id": "json",
"aliases": [
"JSON"
],
"i18n": {
"de": {
"label": "JSON",
"definition": "Leichtes Datenaustauschformat (JavaScript Object Notation), u. a. für Knowledge-Exporte und APIs."
},
"en": {
"label": "JSON",
"definition": "Lightweight data interchange format (JavaScript Object Notation), used for knowledge exports and APIs."
},
"fr": {
"label": "JSON",
"definition": "Format d’échange de données léger (JavaScript Object Notation), utilisé pour les exports et les API."
},
"es": {
"label": "JSON",
"definition": "Formato ligero de intercambio de datos (JavaScript Object Notation), usado en exportaciones y APIs."
},
"pt": {
"label": "JSON",
"definition": "Formato leve de troca de dados (JavaScript Object Notation), usado em exportações e APIs."
},
"ar": {
"label": "JSON",
"definition": "تنسيق خفيف لتبادل البيانات (JavaScript Object Notation) يُستخدم في التصدير وواجهات البرمجة."
},
"ja": {
"label": "JSON",
"definition": "データ交換用の軽量テキスト形式(JavaScript Object Notation)。エクスポートや API で使われます。"
}
}
},
{
"id": "publications-hub",
"aliases": [
"Medien-Hub",
"Medien Hub",
"Publications hub",
"Media hub",
"Hub médias",
"Hub de medios",
"Hub de media",
"المركز الإعلامي",
"メディア・ハブ",
"メディアハブ"
],
"i18n": {
"de": {
"label": "Medien-Hub (NationFiles)",
"definition": "Kommunikations- und Archivschicht neben dem Publikationskorpus: Pressepfade, auf der Website sichtbare Erklärvideos und kurze offizielle Texte unter denselben faktischen Grenzen wie Exporte und Profile."
},
"en": {
"label": "Publications hub (media)",
"definition": "Communications-facing layer beside the publications corpus: press paths, on-site explainer video, and short official copy that must stay consistent with published country surfaces and exports."
},
"fr": {
"label": "Hub médias (NationFiles)",
"definition": "Couche communication à côté du corpus publications : presse, vidéos explicatives sur le site et phrases officielles alignées sur les surfaces pays et exports publiés."
},
"es": {
"label": "Hub de medios (NationFiles)",
"definition": "Capa de comunicación junto al corpus de publicaciones: prensa, vídeos explicativos en el sitio y textos oficiales breves acordes con perfiles y exportaciones públicas."
},
"pt": {
"label": "Hub de media (NationFiles)",
"definition": "Camada de comunicação junto do corpus de publicações: imprensa, vídeos explicativos no site e texto oficial curto alinhado com perfis e exportações públicas."
},
"ar": {
"label": "المركز الإعلامي (NationFiles)",
"definition": "طبقة اتصال بجانب مجموعة المنشورات: مسارات صحافة وفيديو توضيحي على الموقع ونص رسمي موجز يجب أن يوافق الأسطح والتصدير العلني."
},
"ja": {
"label": "メディア・ハブ(NationFiles)",
"definition": "出版物コーパスに隣接する対外層。プレス経路、サイト上の説明動画、短い公式文を、公開プロフィールやエクスポートと事実上一致させる枠組み。"
}
}
},
{
"id": "expat-metamaps-cluster",
"aliases": [
"Expat Cluster",
"Expat-Cluster",
"Expat metamap cluster",
"Cluster expatriés",
"Cluster expatriados",
"Relocation cluster",
"Meta-Karten Kaufkraft Umzug",
"PPI Metamaps relocation",
"عنقود المغتربين",
"駐在員メタマップ"
],
"i18n": {
"de": {
"label": "Expat-Cluster (Meta-Karten & Kaufkraft)",
"definition": "Knowledge-Lesepfad: Meta-Karten (Megacity, Kernkraft) mit PPI-Makrokontext und optional Kaufkraft-Rechner vor einem Umzug zusammen lesen — kein einzelner Relocation-Score."
},
"en": {
"label": "Expat metamap cluster",
"definition": "Knowledge reading path that pairs metamaps (megacities, nuclear siting) with PPI macro context and optionally the purchasing-power calculator before a move—not one merged relocation score."
},
"fr": {
"label": "Cluster expatriés (méta-cartes)",
"definition": "Parcours Knowledge : méta-cartes (mégapoles, nucléaire) avec le macro PPI et éventuellement le calculateur — pas un indice relocalisation fusionné."
},
"es": {
"label": "Cluster expatriados",
"definition": "Ruta Knowledge: metamapas (megaciudades, nuclear) con macro PPI y calculadora opcional — no un índice único de mudanza."
},
"pt": {
"label": "Cluster expatriados",
"definition": "Percurso Knowledge: metamapas (megacidades, nuclear) com macro PPI e calculadora opcional — não um índice único de relocação."
},
"ar": {
"label": "عنقود المغتربين (ميتامابات)",
"definition": "مسار في Knowledge يقرن ميتامابا المناطق الضخمة والنووي مع سياق PPI ماكرو وحاسبة اختيارية — دون دمج رقم انتقال واحد."
},
"ja": {
"label": "駐在員メタマップ・クラスター",
"definition": "巨大都市・原発メタマップと PPI マクロ文脈(任意で購買力計算)を移住前に併読する Knowledge 上の枠——単一の移住スコアではない。"
}
}
},
{
"id": "nfsi",
"aliases": [
"NFSI",
"NationFiles Stability Index"
],
"i18n": {
"de": {
"label": "NFSI",
"definition": "NationFiles Stability Index — quantifiziert geopolitische Stabilität aus vielen Signalen in einem nachvollziehbaren Score."
},
"en": {
"label": "NFSI",
"definition": "NationFiles Stability Index — quantifies geopolitical stability from many signals in an auditable score."
},
"fr": {
"label": "NFSI",
"definition": "NationFiles Stability Index — quantifie la stabilité géopolitique à partir de nombreux signaux, sous forme de score vérifiable."
},
"es": {
"label": "NFSI",
"definition": "NationFiles Stability Index — cuantifica la estabilidad geopolítica a partir de muchas señales en un puntuación auditable."
},
"pt": {
"label": "NFSI",
"definition": "NationFiles Stability Index — quantifica a estabilidade geopolítica a partir de muitos sinais num score auditável."
},
"ar": {
"label": "NFSI",
"definition": "مؤشر استقرار NationFiles — يقيس الاستقرار الجيوسياسي من إشارات عديدة في درجة قابلة للمراجعة."
},
"ja": {
"label": "NFSI",
"definition": "NationFiles Stability Index — 多数のシグナルから地政学的安定性を監査可能なスコアで定量化します。"
}
}
},
{
"id": "vvr",
"aliases": [
"VVR",
"Validation & Verification Report",
"Validation and Verification Report"
],
"i18n": {
"de": {
"label": "VVR",
"definition": "Validation & Verification Report — beschreibt Methodik, Datenpfade und Prüfschritte der NationFiles-Analysen."
},
"en": {
"label": "VVR",
"definition": "Validation & Verification Report — documents methodology, data paths, and verification steps for NationFiles analytics."
},
"fr": {
"label": "VVR",
"definition": "Rapport de validation et vérification — décrit méthodologie, flux de données et contrôles des analyses NationFiles."
},
"es": {
"label": "VVR",
"definition": "Informe de validación y verificación — describe metodología, rutas de datos y comprobaciones de los análisis NationFiles."
},
"pt": {
"label": "VVR",
"definition": "Relatório de validação e verificação — documenta metodologia, linhas de dados e passos de verificação das análises NationFiles."
},
"ar": {
"label": "VVR",
"definition": "تقرير التحقق والتوثيق — يوثق المنهجية ومسارات البيانات وخطوات التدقيق لتحليلات NationFiles."
},
"ja": {
"label": "VVR",
"definition": "検証・実証レポート。NationFiles 分析の手法、データ経路、検証ステップを文書化します。"
}
}
},
{
"id": "lpu",
"aliases": [
"LPU",
"Language Processing Unit"
],
"i18n": {
"de": {
"label": "LPU",
"definition": "Language Processing Unit — Architektur-/Pipeline-Begriff für sprachnahe Verarbeitungsschichten in Naciro."
},
"en": {
"label": "LPU",
"definition": "Language Processing Unit — architecture/pipeline term for language-oriented processing layers in Naciro."
},
"fr": {
"label": "LPU",
"definition": "Language Processing Unit — terme d’architecture/pipeline pour les couches orientées langage dans Naciro."
},
"es": {
"label": "LPU",
"definition": "Language Processing Unit — término de arquitectura/pipeline para capas de procesamiento orientadas al lenguaje en Naciro."
},
"pt": {
"label": "LPU",
"definition": "Language Processing Unit — termo de arquitetura/pipeline para camadas de processamento orientadas a linguagem no Naciro."
},
"ar": {
"label": "LPU",
"definition": "وحدة معالجة اللغة — مصطلح بنية/مسار للطبقات الموجّهة للغة ضمن Naciro."
},
"ja": {
"label": "LPU",
"definition": "Language Processing Unit — Naciro 内の言語処理に近いレイヤーを指すアーキテクチャ/パイプライン用語です。"
}
}
},
{
"id": "rag",
"aliases": [
"RAG",
"Retrieval-Augmented Generation"
],
"i18n": {
"de": {
"label": "RAG",
"definition": "Retrieval-Augmented Generation — KI-Antworten werden mit abgerufenen Quellen/Fakten gestützt statt nur aus dem Modellgedächtnis."
},
"en": {
"label": "RAG",
"definition": "Retrieval-Augmented Generation — AI answers are grounded with retrieved sources/facts, not only model memory."
},
"fr": {
"label": "RAG",
"definition": "Génération augmentée par récupération — les réponses IA s’appuient sur des sources/faits récupérés, pas seulement sur la mémoire du modèle."
},
"es": {
"label": "RAG",
"definition": "Generación aumentada por recuperación — las respuestas de IA se apoyan en fuentes/hechos recuperados, no solo en la memoria del modelo."
},
"pt": {
"label": "RAG",
"definition": "Geração aumentada por recuperação — respostas de IA fundamentadas em fontes/factos recuperados, não só na memória do modelo."
},
"ar": {
"label": "RAG",
"definition": "توليد معزّز بالاسترجاع — تستند إجابات الذكاء الاصطناعي إلى مصادر/حقائق مُسترجعة وليس إلى ذاكرة النموذج فقط."
},
"ja": {
"label": "RAG",
"definition": "検索拡張生成。取得したソースや事実に根ざした回答を生成し、モデル記憶だけに頼りません。"
}
}
},
{
"id": "lod",
"aliases": [
"LOD",
"Linked Open Data"
],
"i18n": {
"de": {
"label": "LOD",
"definition": "Linked Open Data — verlinkte, offene Datenbestände im Web (oft mit stabilen IDs und Ontologien)."
},
"en": {
"label": "LOD",
"definition": "Linked Open Data — interlinked open datasets on the web, often with stable IDs and ontologies."
},
"fr": {
"label": "LOD",
"definition": "Données ouvertes liées — jeux de données ouverts reliés sur le web, souvent avec identifiants stables et ontologies."
},
"es": {
"label": "LOD",
"definition": "Datos abiertos enlazados — conjuntos de datos abiertos interconectados en la web, a menudo con IDs y ontologías estables."
},
"pt": {
"label": "LOD",
"definition": "Dados abertos ligados — conjuntos de dados abertos interligados na web, muitas vezes com IDs e ontologias estáveis."
},
"ar": {
"label": "LOD",
"definition": "البيانات المفتوحة المترابطة — مجموعات بيانات مفتوحة ومترابطة على الويب غالباً مع معرفات وأنطولوجيا مستقرة."
},
"ja": {
"label": "LOD",
"definition": "リンクドオープンデータ。安定した ID やオントロジーを伴う、ウェブ上の相互につながったオープンデータセット。"
}
}
},
{
"id": "doi",
"aliases": [
"DOI",
"Digital Object Identifier"
],
"i18n": {
"de": {
"label": "DOI",
"definition": "Digital Object Identifier — dauerhafte ID für digitale Objekte (z. B. Zenodo), zitierfähig über doi.org."
},
"en": {
"label": "DOI",
"definition": "Digital Object Identifier — persistent ID for digital objects (e.g. Zenodo), citable via doi.org."
},
"fr": {
"label": "DOI",
"definition": "Identifiant d’objet numérique — identifiant persistant (ex. Zenodo), citable via doi.org."
},
"es": {
"label": "DOI",
"definition": "Identificador de objeto digital — ID persistente (p. ej. Zenodo), citable vía doi.org."
},
"pt": {
"label": "DOI",
"definition": "Identificador de objeto digital — ID persistente (ex. Zenodo), citável via doi.org."
},
"ar": {
"label": "DOI",
"definition": "معرّف الكائن الرقمي — معرف دائم للمواد الرقمية (مثل Zenodo) وقابل للاستشهاد عبر doi.org."
},
"ja": {
"label": "DOI",
"definition": "デジタルオブジェクト識別子。Zenodo などのデジタル資料の永続 ID で、doi.org 経由で引用できます。"
}
}
},
{
"id": "zenodo",
"aliases": [
"Zenodo"
],
"i18n": {
"de": {
"label": "Zenodo",
"definition": "Open-Access-Repository (CERN) für Forschungsartefakte; DOIs werden dort vergeben."
},
"en": {
"label": "Zenodo",
"definition": "Open-access research repository (CERN) where DOIs are minted for artifacts."
},
"fr": {
"label": "Zenodo",
"definition": "Dépôt open access (CERN) pour artefacts de recherche ; les DOI y sont attribués."
},
"es": {
"label": "Zenodo",
"definition": "Repositorio de acceso abierto (CERN) para artefactos de investigación; allí se emiten DOI."
},
"pt": {
"label": "Zenodo",
"definition": "Repositório open access (CERN) para artefactos de investigação; os DOI são emitidos lá."
},
"ar": {
"label": "Zenodo",
"definition": "مستودع بحثي مفتوح الوصول (CERN) تُصدَر فيه معرفات DOI للمواد."
},
"ja": {
"label": "Zenodo",
"definition": "CERN のオープンアクセス研究リポジトリ。DOI が付与されます。"
}
}
},
{
"id": "schema-org",
"aliases": [
"schema.org",
"Schema.org"
],
"i18n": {
"de": {
"label": "schema.org",
"definition": "Gemeinsames Vokabular für strukturierte Daten (Typen/Eigenschaften), u. a. für JSON-LD auf Webseiten."
},
"en": {
"label": "schema.org",
"definition": "Shared vocabulary of types and properties for structured data, including JSON-LD on the web."
},
"fr": {
"label": "schema.org",
"definition": "Vocabulaire partagé de types et propriétés pour données structurées, dont JSON-LD sur le web."
},
"es": {
"label": "schema.org",
"definition": "Vocabulario compartido de tipos y propiedades para datos estructurados, p. ej. JSON-LD."
},
"pt": {
"label": "schema.org",
"definition": "Vocabulário partilhado de tipos e propriedades para dados estruturados, incluindo JSON-LD."
},
"ar": {
"label": "schema.org",
"definition": "مفردات مشتركة للأنواع والخصائص للبيانات المنظّمة بما في ذلك JSON-LD."
},
"ja": {
"label": "schema.org",
"definition": "構造化データ用の共通語彙(型とプロパティ)。Web 上の JSON-LD などで使われます。"
}
}
},
{
"id": "knowledge-graph",
"aliases": [
"Knowledge Graph",
"knowledge graph",
"Knowledge-Graph"
],
"i18n": {
"de": {
"label": "Knowledge Graph",
"definition": "Netz aus Entitäten (Knoten) und Relationen (Kanten) statt nur isolierter Textseiten."
},
"en": {
"label": "Knowledge Graph",
"definition": "Network of entities (nodes) and relations (edges), not just isolated text pages."
},
"fr": {
"label": "Knowledge Graph",
"definition": "Réseau d’entités (nœuds) et de relations (arêtes), au-delà de pages texte isolées."
},
"es": {
"label": "Knowledge Graph",
"definition": "Red de entidades (nodos) y relaciones (aristas), más allá de páginas de texto aisladas."
},
"pt": {
"label": "Knowledge Graph",
"definition": "Rede de entidades (nós) e relações (arestas), para além de páginas de texto isoladas."
},
"ar": {
"label": "Knowledge Graph",
"definition": "شبكة كيانات (عُقد) وعلاقات (حواف) وليس مجرد صفحات نصية منفصلة."
},
"ja": {
"label": "ナレッジグラフ",
"definition": "エンティティ(ノード)と関係(エッジ)のネットワーク。単独のテキストページだけではありません。"
}
}
},
{
"id": "first-party",
"aliases": [
"first-party",
"first party",
"First-Party",
"First Party"
],
"i18n": {
"de": {
"label": "First-Party",
"definition": "Vom Betreiber selbst kuratierte/gehostete Daten — im Gegensatz zu primär aggregierten Drittanbieter-Faktenströmen."
},
"en": {
"label": "First-party",
"definition": "Data curated and hosted by the operator itself, contrasted with relying primarily on third-party fact streams."
},
"fr": {
"label": "First-party",
"definition": "Données hébergées et curatées par l’opérateur lui-même, par opposition à des flux tiers principalement agrégés."
},
"es": {
"label": "First-party",
"definition": "Datos alojados y curados por el propio operador, frente a flujos agregados principalmente de terceros."
},
"pt": {
"label": "First-party",
"definition": "Dados alojados e curados pelo próprio operador, em contraste com fluxos agregados de terceiros."
},
"ar": {
"label": "First-party",
"definition": "بيانات يستضيفها المشغّل ويُديرها بنفسه مقابل الاعتماد بشكل أساسي على تدفقات طرف ثالث."
},
"ja": {
"label": "ファーストパーティ",
"definition": "事業者自身がホスト・キュレーションするデータ。第三者の事実ストリームへの依存が主ではないことと対比されます。"
}
}
},
{
"id": "cc-by-nd",
"aliases": [
"CC BY-ND",
"BY-ND 4.0",
"CC BY-ND 4.0"
],
"i18n": {
"de": {
"label": "CC BY-ND 4.0",
"definition": "Creative-Commons-Lizenz: Namensnennung, keine Bearbeitung (keine Derivative)."
},
"en": {
"label": "CC BY-ND 4.0",
"definition": "Creative Commons license: attribution required; no derivative works."
},
"fr": {
"label": "CC BY-ND 4.0",
"definition": "Licence Creative Commons : paternité, pas de travaux dérivés."
},
"es": {
"label": "CC BY-ND 4.0",
"definition": "Licencia Creative Commons: reconocimiento, sin obras derivadas."
},
"pt": {
"label": "CC BY-ND 4.0",
"definition": "Licença Creative Commons: atribuição, sem obras derivadas."
},
"ar": {
"label": "CC BY-ND 4.0",
"definition": "رخصة المشاع الإبداعي: الإسناد مطلوب، دون أعمال مشتقة."
},
"ja": {
"label": "CC BY-ND 4.0",
"definition": "クリエイティブ・コモンズ(表示・改変禁止)。派生物を作れません。"
}
}
},
{
"id": "utc",
"aliases": [
"UTC",
"ISO 8601",
"ISO8601"
],
"i18n": {
"de": {
"label": "UTC / ISO 8601",
"definition": "UTC: koordinierte Weltzeit für Zeitstempel. ISO 8601: Standardformat für Datums-/Zeitangaben (z. B. Exporte)."
},
"en": {
"label": "UTC / ISO 8601",
"definition": "UTC: coordinated universal time for timestamps. ISO 8601: standard machine-readable date/time format (e.g. in exports)."
},
"fr": {
"label": "UTC / ISO 8601",
"definition": "UTC : temps universel coordonné. ISO 8601 : format normalisé de date/heure (p. ex. dans les exports)."
},
"es": {
"label": "UTC / ISO 8601",
"definition": "UTC: tiempo universal coordinado. ISO 8601: formato estándar de fecha/hora (p. ej. en exportaciones)."
},
"pt": {
"label": "UTC / ISO 8601",
"definition": "UTC: tempo universal coordenado. ISO 8601: formato padrão de data/hora (ex. em exportações)."
},
"ar": {
"label": "UTC / ISO 8601",
"definition": "UTC: التوقيت العالمي المنسّق. ISO 8601: تنسيق قياسي للتاريخ والوقت (مثل التصدير)."
},
"ja": {
"label": "UTC / ISO 8601",
"definition": "UTC は協定世界時。ISO 8601 は日時の標準表記(エクスポートなど)。"
}
}
},
{
"id": "gs1",
"aliases": [
"GS1"
],
"i18n": {
"de": {
"label": "GS1",
"definition": "Standardsorganisation für Lieferketten-Identifikatoren (z. B. GTIN/EAN)."
},
"en": {
"label": "GS1",
"definition": "Standards body for supply-chain identifiers (e.g. GTIN/EAN)."
},
"fr": {
"label": "GS1",
"definition": "Organisme de normalisation pour identifiants de chaîne d’approvisionnement (ex. GTIN/EAN)."
},
"es": {
"label": "GS1",
"definition": "Organismo de estándares para identificadores de cadena de suministro (p. ej. GTIN/EAN)."
},
"pt": {
"label": "GS1",
"definition": "Organismo de normas para identificadores da cadeia de abastecimento (ex. GTIN/EAN)."
},
"ar": {
"label": "GS1",
"definition": "هيئة معايير للمعرفات في سلسلة التوريد (مثل GTIN/EAN)."
},
"ja": {
"label": "GS1",
"definition": "サプライチェーン識別子(GTIN/EAN 等)の標準化団体。"
}
}
},
{
"id": "eori",
"aliases": [
"EORI"
],
"i18n": {
"de": {
"label": "EORI",
"definition": "Economic Operators Registration and Identification — EU-Nummer für Zoll und Handel."
},
"en": {
"label": "EORI",
"definition": "Economic Operators Registration and Identification — EU identifier for customs and trade."
},
"fr": {
"label": "EORI",
"definition": "Economic Operators Registration and Identification — identifiant UE pour douanes et commerce."
},
"es": {
"label": "EORI",
"definition": "Economic Operators Registration and Identification — identificador de la UE para aduanas y comercio."
},
"pt": {
"label": "EORI",
"definition": "Economic Operators Registration and Identification — identificador da UE para alfândega e comércio."
},
"ar": {
"label": "EORI",
"definition": "تسجيل وتعريف المشغلين الاقتصاديين — معرف الاتحاد الأوروبي للجمارك والتجارة."
},
"ja": {
"label": "EORI",
"definition": "経済事業者登録・識別番号。EU の税関・貿易向け識別子。"
}
}
},
{
"id": "api",
"aliases": [
"API",
"APIs"
],
"i18n": {
"de": {
"label": "API",
"definition": "Application Programming Interface — programmierbare Schnittstelle (z. B. Suche oder Datenexport)."
},
"en": {
"label": "API",
"definition": "Application Programming Interface — programmable interface (e.g. search or data export)."
},
"fr": {
"label": "API",
"definition": "Interface de programmation d’application — point d’accès programmable (recherche, export, etc.)."
},
"es": {
"label": "API",
"definition": "Interfaz de programación de aplicaciones — acceso programable (búsqueda, exportación, etc.)."
},
"pt": {
"label": "API",
"definition": "Interface de programação de aplicações — acesso programável (pesquisa, exportação, etc.)."
},
"ar": {
"label": "API",
"definition": "واجهة برمجة التطبيقات — وصول قابل للبرمجة (بحث أو تصدير بيانات)."
},
"ja": {
"label": "API",
"definition": "アプリケーション・プログラミング・インターフェース。検索やデータエクスポートなどのプログラム可能な窓口。"
}
}
},
{
"id": "naciro",
"aliases": [
"Naciro"
],
"i18n": {
"de": {
"label": "Naciro",
"definition": "KI-/Analyse-Engine der NationFiles-Plattform (Produktname)."
},
"en": {
"label": "Naciro",
"definition": "NationFiles platform AI/analysis engine (product name)."
},
"fr": {
"label": "Naciro",
"definition": "Moteur d’analyse / IA de la plateforme NationFiles (nom de produit)."
},
"es": {
"label": "Naciro",
"definition": "Motor de análisis/IA de la plataforma NationFiles (nombre de producto)."
},
"pt": {
"label": "Naciro",
"definition": "Motor de análise/IA da plataforma NationFiles (nome de produto)."
},
"ar": {
"label": "Naciro",
"definition": "محرك التحليل/الذكاء الاصطناعي لمنصة NationFiles (اسم منتج)."
},
"ja": {
"label": "Naciro",
"definition": "NationFiles プラットフォームの AI/分析エンジン(製品名)。"
}
}
},
{
"id": "nfsi-engine",
"aliases": [
"NFSI Engine",
"NFSI-Engine"
],
"i18n": {
"de": {
"label": "NFSI Engine",
"definition": "Laufzeitkomponente, die NFSI-Scores aus Rohsignalen berechnet und versioniert."
},
"en": {
"label": "NFSI Engine",
"definition": "Runtime component that computes and versions NFSI scores from raw signals."
},
"fr": {
"label": "NFSI Engine",
"definition": "Composant d’exécution qui calcule et versionne les scores NFSI à partir de signaux bruts."
},
"es": {
"label": "NFSI Engine",
"definition": "Componente en ejecución que calcula y versiona puntuaciones NFSI a partir de señales en bruto."
},
"pt": {
"label": "NFSI Engine",
"definition": "Componente de execução que calcula e versiona scores NFSI a partir de sinais brutos."
},
"ar": {
"label": "NFSI Engine",
"definition": "مكوّن وقت التشغيل يحسب درجات NFSI ويُصدِر إصداراتها من الإشارات الخام."
},
"ja": {
"label": "NFSI Engine",
"definition": "生シグナルから NFSI スコアを算出し版管理するランタイム部品。"
}
}
},
{
"id": "bibtex",
"aliases": [
"BibTeX"
],
"i18n": {
"de": {
"label": "BibTeX",
"definition": "Dateiformat für Literaturverzeichnisse in LaTeX/BibLaTeX — hier als Zitier-Export bereitgestellt."
},
"en": {
"label": "BibTeX",
"definition": "Bibliography exchange format for LaTeX/BibLaTeX — offered here as a citation export."
},
"fr": {
"label": "BibTeX",
"definition": "Format d’échange de bibliographie pour LaTeX/BibLaTeX — proposé ici comme export de citation."
},
"es": {
"label": "BibTeX",
"definition": "Formato de bibliografía para LaTeX/BibLaTeX — aquí como exportación de citas."
},
"pt": {
"label": "BibTeX",
"definition": "Formato de bibliografia para LaTeX/BibLaTeX — aqui como exportação de citação."
},
"ar": {
"label": "BibTeX",
"definition": "تنسيق ببليوغرافي لـ LaTeX/BibLaTeX — يُعرض هنا كتصدير للاستشهاد."
},
"ja": {
"label": "BibTeX",
"definition": "LaTeX/BibLaTeX 向け文献フォーマット。ここでは引用用エクスポートとして提供。"
}
}
},
{
"id": "apa",
"aliases": [
"APA style",
"APA"
],
"i18n": {
"de": {
"label": "APA-Stil",
"definition": "Zitationsstil der American Psychological Association — hier als kompakte Kurzform angezeigt."
},
"en": {
"label": "APA style",
"definition": "American Psychological Association citation style — shown here in a compact short form."
},
"fr": {
"label": "Style APA",
"definition": "Style de citation de l’American Psychological Association — ici en forme courte."
},
"es": {
"label": "Estilo APA",
"definition": "Estilo de citas de la American Psychological Association — aquí en forma breve."
},
"pt": {
"label": "Estilo APA",
"definition": "Estilo de citação da American Psychological Association — aqui em forma compacta."
},
"ar": {
"label": "أسلوب APA",
"definition": "أسلوب استشهاد الجمعية الأمريكية للعلم النفسي — يُعرض هنا بشكل مختصر."
},
"ja": {
"label": "APA スタイル",
"definition": "アメリカ心理学会の引用スタイル。ここでは簡潔な短形式で表示。"
}
}
},
{
"id": "geo-seo",
"aliases": [
"GEO",
"Generative Engine Optimization"
],
"i18n": {
"de": {
"label": "GEO",
"definition": "Generative Engine Optimization — Inhalte so strukturieren, dass KI-Antwortsysteme sie zuverlässig zitieren können."
},
"en": {
"label": "GEO",
"definition": "Generative Engine Optimization — structuring content so generative answer systems can cite it reliably."
},
"fr": {
"label": "GEO",
"definition": "Generative Engine Optimization — structurer le contenu pour que les moteurs génératifs le citent avec fiabilité."
},
"es": {
"label": "GEO",
"definition": "Generative Engine Optimization — estructurar el contenido para que los sistemas generativos lo citen con fiabilidad."
},
"pt": {
"label": "GEO",
"definition": "Generative Engine Optimization — estruturar conteúdo para sistemas generativos o citarem de forma fiável."
},
"ar": {
"label": "GEO",
"definition": "تحسين لمحركات الإجابة التوليدية — تهيئة المحتوى ليقتبسه أنظمة الإجابة بشكل موثوق."
},
"ja": {
"label": "GEO",
"definition": "生成エンジン最適化。生成型回答システムが安定して引用できるよう内容を構造化すること。"
}
}
},
{
"id": "seo",
"aliases": [
"SEO",
"Search Engine Optimization"
],
"i18n": {
"de": {
"label": "SEO",
"definition": "Suchmaschinenoptimierung — technische und inhaltliche Signale für bessere Auffindbarkeit in klassischer Suche."
},
"en": {
"label": "SEO",
"definition": "Search engine optimization — technical and content signals for discoverability in classic search."
},
"fr": {
"label": "SEO",
"definition": "Optimisation pour moteurs de recherche — signaux techniques et éditoriaux pour la visibilité."
},
"es": {
"label": "SEO",
"definition": "Optimización para buscadores — señales técnicas y de contenido para visibilidad orgánica."
},
"pt": {
"label": "SEO",
"definition": "Otimização para motores de busca — sinais técnicos e de conteúdo para visibilidade."
},
"ar": {
"label": "SEO",
"definition": "تحسين محركات البحث — إشارات تقنية ومحتوى لزيادة الظهور في البحث التقليدي."
},
"ja": {
"label": "SEO",
"definition": "検索エンジン最適化。従来型検索での発見性のための技術・コンテンツ上の信号。"
}
}
},
{
"id": "vat",
"aliases": [
"USt-IdNr",
"VAT ID",
"VAT number",
"Umsatzsteuer"
],
"i18n": {
"de": {
"label": "USt-IdNr.",
"definition": "EU-weite Umsatzsteuer-Identifikationsnummer für Unternehmen."
},
"en": {
"label": "VAT ID",
"definition": "European value-added tax identification number for businesses."
},
"fr": {
"label": "Numéro de TVA",
"definition": "Identifiant de TVA intracommunautaire pour les entreprises."
},
"es": {
"label": "NIF-IVA",
"definition": "Número de identificación fiscal intracomunitario para IVA."
},
"pt": {
"label": "NIF-IVA",
"definition": "Número de identificação fiscal intracomunitário para IVA."
},
"ar": {
"label": "رقم ضريبة القيمة المضافة",
"definition": "معرّف ضريبة القيمة المضافة داخل الاتحاد الأوروبي للشركات."
},
"ja": {
"label": "VAT ID",
"definition": "EU域内の付加価値税(VAT)識別番号。"
}
}
},
{
"id": "llms-txt",
"aliases": [
"llms.txt"
],
"i18n": {
"de": {
"label": "llms.txt",
"definition": "Datei im Webroot mit Crawler-/KI-Hinweisen (Etikette für automatisierte Clients)."
},
"en": {
"label": "llms.txt",
"definition": "Webroot file with crawler/AI guidance (etiquette for automated clients)."
},
"fr": {
"label": "llms.txt",
"definition": "Fichier à la racine du site avec consignes pour crawlers/IA."
},
"es": {
"label": "llms.txt",
"definition": "Archivo en la raíz del sitio con pautas para rastreadores/IA."
},
"pt": {
"label": "llms.txt",
"definition": "Ficheiro na raiz do site com orientações para crawlers/IA."
},
"ar": {
"label": "llms.txt",
"definition": "ملف في جذر الموقع يوجّه الزاحفات وأنظمة الذكاء الاصطناعي."
},
"ja": {
"label": "llms.txt",
"definition": "サイトルートのファイル。クローラー/AI向けの利用上の注意を記します。"
}
}
},
{
"id": "nationfile-json",
"aliases": [
"Nationfile JSON",
"Nationfile-JSON",
"Nationfile JSON profile",
"Nationfile-JSON-Profil"
],
"i18n": {
"de": {
"label": "Nationfile JSON",
"definition": "Standardisiertes, maschinenlesbares Länderprofilformat auf NationFiles — gemeinsame Basis für Engine, NFSI, Charts und Exporte."
},
"en": {
"label": "Nationfile JSON",
"definition": "NationFiles’ standardized machine-readable country profile format — shared backbone for the engine, NFSI, charts, and exports."
},
"fr": {
"label": "Nationfile JSON",
"definition": "Format de profil pays standardisé et machine-readable sur NationFiles — socle commun pour le moteur, le NFSI, les graphiques et les exports."
},
"es": {
"label": "Nationfile JSON",
"definition": "Formato de perfil país estandarizado y machine-readable en NationFiles — base común para el motor, NFSI, gráficos y exportaciones."
},
"pt": {
"label": "Nationfile JSON",
"definition": "Formato de perfil por país padronizado e machine-readable na NationFiles — base comum para o motor, NFSI, gráficos e exportações."
},
"ar": {
"label": "Nationfile JSON",
"definition": "تنسيق ملفات تعريف دول موحّد وmachine-readable على NationFiles — قاعدة مشتركة للمحرك وNFSI والمخططات والتصدير."
},
"ja": {
"label": "Nationfile JSON",
"definition": "NationFiles の標準化された machine-readable 国別プロファイル形式。エンジン・NFSI・チャート・エクスポートの共通基盤。"
}
}
},
{
"id": "governance-institutions-index",
"aliases": [
"GGI",
"Governance & Institutions Index",
"Governance Institutions Index",
"Governance Institutions",
"indice governance institutions",
"índice de gobernanza e instituciones"
],
"i18n": {
"de": {
"label": "GGI",
"definition": "Governance & Institutions Index auf NationFiles: World-Bank-/WGI-basierte Governance-Dimensionen als ein kompositabler 0–100-Score; zweite KPI-Snapshot-Säule neben PPI, unabhängig von NFSI."
},
"en": {
"label": "GGI",
"definition": "Governance & Institutions Index on NationFiles: Worldwide Governance-style pillars rolled into one comparable composite (0–100); second KPI-snapshot pillar alongside PPI, distinct from NFSI."
},
"fr": {
"label": "GGI",
"definition": "Governance & Institutions Index sur NationFiles : agrégation de dimensions WGI Banque mondiale en composite 0–100 ; second pilier du snapshot KPI à côté du PPI, séparé du NFSI."
},
"es": {
"label": "GGI",
"definition": "Governance & Institutions Index en NationFiles: dimensiones tipo WGI del Banco Mundial en un composite 0–100; segundo pilar del snapshot KPI junto al PPI; distinto del NFSI."
},
"pt": {
"label": "GGI",
"definition": "Governance & Institutions Index na NationFiles: dimensões estilo WGI do Banco Mundial num compósito 0–100; segundo pilar do snapshot KPI ao lado do PPI; distinto do NFSI."
},
"ar": {
"label": "GGI",
"definition": "مؤشر الحوكمة والمؤسسات على NationFiles: أبعاد حوكمية وفق مجموعة المؤشرات العالمية للبنك الدولي، مجمَّعة إلى درجة مركبة 100–0؛ ثاني ركن في لقطات KPI بجانب PPI؛ منفصل عن NFSI."
},
"ja": {
"label": "GGI",
"definition": "NationFiles における Governance & Institutions Index — WGI 系の次元を総合ヘッドライン(0–100)に統合。PPI と並ぶ KPI スナップショットの第 2 柱で、NFSI とは別。"
}
}
},
{
"id": "purchasing-power-index",
"aliases": [
"PPI",
"Purchasing Power Index",
"Kaufkraftindex",
"indice de pouvoir d'achat",
"índice de poder adquisitivo",
"índice de poder aquisitivo"
],
"i18n": {
"de": {
"label": "PPI",
"definition": "Purchasing Power Index — auf NationFiles das kuratierte Makrolagepaket (v. a. BIP KKP pro Kopf, Inflation, Arbeitsmarkt, Reserven, MwSt.-Kontext) neben NFSI; kein Ersatz für NFSI oder amtliche Statistik."
},
"en": {
"label": "PPI",
"definition": "Purchasing Power Index — NationFiles’ curated country macro bundle (notably GDP PPP per capita, inflation, labour, reserves, VAT context) alongside NFSI; not a substitute for NFSI or official statistics."
},
"fr": {
"label": "PPI",
"definition": "Purchasing Power Index — sur NationFiles, paquet macro pays curaté (notamment PIB PPA/habitant, inflation, emploi, réserves, TVA) à côté du NFSI ; ne remplace ni le NFSI ni les statistiques officielles."
},
"es": {
"label": "PPI",
"definition": "Purchasing Power Index — en NationFiles, paquete macro curado por país (p. ej. PIB PPA per cápita, inflación, empleo, reservas, IVA) junto a NFSI; no sustituye al NFSI ni a estadísticas oficiales."
},
"pt": {
"label": "PPI",
"definition": "Purchasing Power Index — na NationFiles, pacote macro curado por país (p.ex. PIB PPC per capita, inflação, emprego, reservas, IVA) junto ao NFSI; não substitui o NFSI nem estatísticas oficiais."
},
"ar": {
"label": "PPI",
"definition": "مؤشر قوة الشراء — على NationFiles حزمة ماكرو منسّقة للدولة (مثل الناتج بتعادل القوة الشرائية للفرد والتضخم والعمل والاحتياطيات وضريبة القيمة المضافة) بجانب NFSI؛ لا يحل محل NFSI أو الإحصاءات الرسمية."
},
"ja": {
"label": "PPI",
"definition": "Purchasing Power Index — NationFiles の国別マクロ・バンドル(主に一人当たり GDP PPP、インフレ、雇用、準備金、VAT 文脈)を NFSI と併せて示すもの。NFSI や公式統計の代替ではない。"
}
}
},
{
"id": "predictive-layer",
"aliases": [
"Predictive Layer",
"prediction layer",
"prévisionnel",
"capa predictiva"
],
"i18n": {
"de": {
"label": "Predictive Layer",
"definition": "Auf NationFiles die komprimierte Vorlauf-Schicht im Länder-Dashboard mit typischerweise 24-Stunden- und 7-Tage-Horizont für Briefing-Snapshots — keine übertriebene Einzel-Ereignisprognose."
},
"en": {
"label": "Predictive Layer",
"definition": "On NationFiles, the compressed forward window in the Country Intelligence Dashboard — usually 24-hour and 7-day horizons for briefing snapshots, not overstated single-event prediction."
},
"fr": {
"label": "Predictive Layer",
"definition": "Sur NationFiles, la couche prospective condensée du tableau pays — horizons 24 h et 7 j pour instantanés de briefing, sans prédiction ponctuelle exagérée."
},
"es": {
"label": "Predictive Layer",
"definition": "En NationFiles, la capa prospectiva comprimida del panel país — horizontes 24 h y 7 d para instantáneas de briefing, sin predicción puntual exagerada."
},
"pt": {
"label": "Predictive Layer",
"definition": "Na NationFiles, a camada prospectiva comprimida do painel país — horizontes 24 h e 7 d para instantâneos de briefing, sem previsão pontual exagerada."
},
"ar": {
"label": "Predictive Layer",
"definition": "على NationFiles: طبقة أفقية مضغوطة في لوحة الدولة — غالباً 24 ساعة و7 أيام للقطات إحاطة، دون تنبؤ مبالغ فيه لحدث واحد."
},
"ja": {
"label": "Predictive Layer",
"definition": "NationFiles の国情報ダッシュボード上の短い先行地平線層。通常 24 時間と 7 日のブリーフ用スナップショットで、単一事象の過大予測ではない。"
}
}
},
{
"id": "flora-fauna-live-nf",
"aliases": [
"Flora & Fauna Live",
"Flora Fauna Live",
"Flora Live",
"Fauna Tracker",
"Wildlife Tracker nationfiles"
],
"i18n": {
"de": {
"label": "Flora & Fauna Live",
"definition": "Laut Legal Notice: Umwelt-Monitoring auf Basis ausgewerteter Bildinformationen auf NationFiles — kein Ersatz für behördliche Natur- oder Wetterverfahren."
},
"en": {
"label": "Flora & Fauna Live",
"definition": "Per legal notice: environmental monitoring using evaluated imagery on NationFiles—not a substitute for statutory nature or meteorological services."
},
"fr": {
"label": "Flora & Fauna Live",
"definition": "Selon la notice légale : suivi environnemental par imagerie évaluée sur NationFiles — pas un substitut aux services nationaux de nature ou météo."
},
"es": {
"label": "Flora & Fauna Live",
"definition": "Según el aviso legal: monitoreo ambiental con imagen evaluada en NationFiles — no sustituye servicios oficiales de naturaleza o meteorología."
},
"pt": {
"label": "Flora & Fauna Live",
"definition": "Segundo o aviso legal: monitorização ambiental com imagem avaliada na NationFiles — não substitui serviços estatutários de natureza ou meteorologia."
},
"ar": {
"label": "Flora & Fauna Live",
"definition": "وفق الإشعار القانوني: مراقبة بيئية بالصور المُقيَّمة على NationFiles — لا يغني عن خدمات الطبيعة أو الأرصاد الرسمية."
},
"ja": {
"label": "Flora & Fauna Live",
"definition": "リーガルノーティス上:評価画像に基づく環境モニタリング(NationFiles)— 法定の自然・気象行政の代替ではない。"
}
}
},
{
"id": "economy-vertical-nf",
"aliases": [
"Wirtschaftssparte NationFiles",
"Economy vertical NationFiles",
"Verticale économique NationFiles",
"vertical económica NationFiles",
"経済領域 NationFiles",
"المحور الاقتصادي"
],
"i18n": {
"de": {
"label": "Wirtschaftssparte (NationFiles)",
"definition": "Redaktioneller Rahmen, in dem NationFiles Makrovergleiche, Institutionen und Stabilität auf Länderseiten bündelt — ohne ein undokumentiertes Prognosemodell zu behaupten."
},
"en": {
"label": "Economy vertical (NationFiles)",
"definition": "Editorial frame for how NationFiles groups macro comparability, institutional scores, and stability on country pages—without claiming a hidden forecast engine."
},
"fr": {
"label": "Verticale économique (NationFiles)",
"definition": "Cadre rédactionnel qui assemble comparaisons macro, scores institutionnels et stabilité sur les pages pays — sans prétendre disposer d’un moteur de prévision secret."
},
"es": {
"label": "Vertical económica (NationFiles)",
"definition": "Marco editorial en el que NationFiles agrupa macrocomparación, gobernanza y estabilidad en fichas país — sin afirmar un motor de pronóstico oculto."
},
"pt": {
"label": "Vertical económica (NationFiles)",
"definition": "Moldura editorial em que a NationFiles junta macrocomparação, governação e estabilidade nas páginas país — sem reivindicar um motor de previsão oculto."
},
"ar": {
"label": "المحور الاقتصادي (NationFiles)",
"definition": "إطار تحريري يجمع NationFiles بين مقارنة ماكرو والحوكمة والاستقرار في صفحات الدول — دون ادّعاء محرّك توقّع مخفي."
},
"ja": {
"label": "経済領域(NationFiles)",
"definition": "NationFiles が国ページでマクロ比較・制度・安定性を束ねる編集上の枠であり、隠れた予測エンジンを前提とはしない。"
}
}
},
{
"id": "security-radar",
"aliases": [
"Security Radar",
"security radar",
"radar sécurité",
"radar de seguridad"
],
"i18n": {
"de": {
"label": "Security Radar",
"definition": "Im Länder-Dashboard der sicherheits- und strategierelevante Kontext zu einem Land, ausgerichtet am Sicherheits-Kartenhub auf NationFiles — ergänzend zu NFSI und Medien-Sentiment."
},
"en": {
"label": "Security Radar",
"definition": "In the Country Intelligence Dashboard, the security- and strategy-relevant lens for a country, aligned with NationFiles’ security maps hub — alongside NFSI and media sentiment."
},
"fr": {
"label": "Security Radar",
"definition": "Dans le tableau pays, la lecture sécurité et contexte stratégique, alignée sur le hub des cartes Sécurité NationFiles — en complément du NFSI et du sentiment médias."
},
"es": {
"label": "Security Radar",
"definition": "En el panel país, la lectura de seguridad y contexto estratégico, alineada con el centro de mapas de seguridad de NationFiles — junto al NFSI y al sentimiento mediático."
},
"pt": {
"label": "Security Radar",
"definition": "No painel país, a leitura de segurança e contexto estratégico, alinhada ao hub de mapas de segurança da NationFiles — junto do NFSI e do sentimento mediático."
},
"ar": {
"label": "Security Radar",
"definition": "في لوحة الدولة: زاوية الأمن والسياق الاستراتيجي للبلد، متوافقة مع مركز خرائط الأمن على NationFiles — إلى جانب NFSI ومعنى الإعلام."
},
"ja": {
"label": "Security Radar",
"definition": "国情報ダッシュボードにおける安全保障・戦略文脈の読み。NationFiles のセキュリティ地図ハブに沿い、NFSI やメディア・センチメントと併せて使う。"
}
}
}
],
"_distribution": {
"schema_version": "nf-distribution-1.0",
"updated_utc": "2026-04-28T00:00:00Z",
"dataset": {
"id": "nationfiles-knowledge-data",
"name": "NationFiles Knowledge Data (NFKG)",
"description": "Structured knowledge graph records (entities, FAQs, glossary) and optional markdown companions published by NationFiles for machine-readable grounding. Mirror targets include GitHub and Hugging Face under Neawolf Media Group.",
"homepage": "https://nationfiles.com/en/knowledge/",
"same_as": [
"https://github.com/Neawolf-Media-Group/",
"https://huggingface.co/Neawolf-Media-Group",
"https://www.linkedin.com/company/nationfiles"
]
},
"copyright": {
"holder": "Neawolf Media Group",
"holder_url": "https://nationfiles.com/en/company/",
"years": "2025–2026",
"notice_en": "© 2025–2026 Neawolf Media Group. NationFiles and related marks and datasets are proprietary unless a separate written license applies. Unauthorized commercial redistribution of derived database extracts may infringe database rights and copyright.",
"notice_de": "© 2025–2026 Neawolf Media Group. NationFiles und zugehörige Marken sowie Datensätze sind urheberrechtlich geschützt; kommerzielle Weitergabe oder Aufbereitung ohne gesonderte Lizenz ist unzulässig, soweit nicht ausdrücklich erlaubt.",
"jurisdiction_note": "Operator/imprint: Germany — see nationfiles.com legal pages for registered details."
},
"license": {
"name": "NationFiles data & AI usage policy (canonical)",
"url": "https://nationfiles.com/en/ai-guidelines/",
"spdx_expression": "LicenseRef-NationFiles-AI-Guidelines",
"summary_en": "Automated access follows robots.txt; prefer citation of canonical HTTPS pages; machine-readable exports may be used for grounding under the conditions described at the license URL and llms.txt.",
"summary_de": "Automatisierter Zugriff richtet sich nach robots.txt; bitte kanonische HTTPS-Seiten zitieren; maschinenlesbare Exporte dürfen für Grounding genutzt werden, sofern die Bedingungen unter der Lizenz-URL und llms.txt eingehalten werden."
},
"publisher": {
"@type": "Organization",
"name": "Neawolf Media Group",
"legal_name": "Neawolf Media Group",
"url": "https://nationfiles.com/en/company/",
"email_general": "info@nationfiles.com",
"email_ai_licensing": "ai-questions@nationfiles.com",
"email_privacy": "privacy@nationfiles.com",
"vat_id": "DE323880906",
"project_brand": "NationFiles",
"project_url": "https://nationfiles.com"
},
"references": {
"llms_txt": "https://nationfiles.com/llms.txt",
"llms_full_txt": "https://nationfiles.com/llms-full.txt",
"legal_sources": "https://nationfiles.com/en/legal/sources/",
"privacy_en": "https://nationfiles.com/en/legal/privacy/",
"imprint_en": "https://nationfiles.com/en/legal/imprint/"
},
"attribution": {
"required": true,
"cite_as_en": "NationFiles Knowledge (Neawolf Media Group), <canonical URL of the NationFiles HTML page or this file’s export URL>, retrieved <date>.",
"cite_as_de": "NationFiles Knowledge (Neawolf Media Group), <kanonische URL der HTML-Seite bzw. Export-URL dieser Datei>, abgerufen am <Datum>."
},
"huggingface_github": {
"github_org": "https://github.com/Neawolf-Media-Group/",
"public_docs": "https://github.com/Neawolf-Media-Group/nationfiles-public-docs",
"huggingface_org": "https://huggingface.co/Neawolf-Media-Group"
},
"artifact": {
"kind": "glossary",
"id": "glossary"
},
"repository_relative_path": "knowledge-data/glossary.json"
}
}
|