-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapis.json
More file actions
32 lines (32 loc) · 1.06 KB
/
apis.json
File metadata and controls
32 lines (32 loc) · 1.06 KB
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
---
layout: none
---
{
"specificationVersion": "0.18",
"aid": "{{ site.node }}",
"name": "{{ site.name }}",
"description": "{{ site.description | strip_html }}",
"image": "{{ site.image }}",
"url": "{{ site.url }}/apis.json",
"created": "2024/04/13",
"modified": "2024/04/13",
"tags": {{ site.keywords | jsonify }},
"include": [{% for include in site.apis %}{% assign path = include.url | replace:'/apis/','' %}
{
"name": "{{ include.name }}",
"url": "https://raw.githubusercontent.com/api-search/{{ site.node}}-node/refs/heads/main/_apis/{{ path }}/apis.md"
}{% unless forloop.last %},{% endunless %}{% endfor %}
],
"networksss": [{% for network in site.data.apis.network %}
{
"name": "{{ network.name }}",
"url": "{{ network.url }}"
}{% unless forloop.last %},{% endunless %}{% endfor %}
],
"maintainers": [{% for maintainer in site.data.apis.maintainers %}
{
"FN": "{{ maintainer.FN }}",
"email": "{{ maintainer.email }}"
}{% unless forloop.last %},{% endunless %}{% endfor %}
]
}