forked from MurmurationsNetwork/MurmurationsLibrary
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdemo-v1.json
39 lines (39 loc) · 963 Bytes
/
demo-v1.json
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
{
"$schema": "https://json-schema.org/draft-04/schema#",
"id": "https://cdn.murmurations.tech/schemas/demo-v1.json",
"title": "Demo Schema",
"description": "A demo schema that is to be used only for testing purposes.",
"type": "object",
"properties": {
"linked_schemas": {
"$ref": "../fields/linked_schemas-v1.json"
},
"name": {
"$ref": "../fields/name-v1.json"
},
"url": {
"$ref": "../fields/url-v1.json"
},
"mission": {
"$ref": "../fields/mission-v1.json"
},
"geolocation": {
"$ref": "../fields/geolocation-v1.json"
},
"keywords": {
"$ref": "../fields/keywords-v1.json"
}
},
"required": ["linked_schemas", "name", "url"],
"metadata": {
"creator": {
"name": "Murmurations Network",
"url": "https://murmurations.network"
},
"schema": {
"name": "demo-v1",
"version": 1,
"url": "https://murmurations.network"
}
}
}