-
Notifications
You must be signed in to change notification settings - Fork 0
/
schema.json
78 lines (78 loc) · 2.51 KB
/
schema.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
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
{
"type": "array",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"items": {
"type": "object",
"properties": {
"dateUpdated": {
"type": "string",
"description": "The date and time when the document was last updated.",
"format": "date-time"
},
"departments": {
"type": "array",
"description": "The departments and/or teams that own the document.",
"items": {
"enum": [
"Rubin Observatory Operations",
"Camera",
"Data Production",
"System Performance",
"Education and Public Outreach",
"Director's Office"
]
}
},
"description": {
"type": "string",
"description": "A description or summary of the document, useful for previewing"
},
"identifier": {
"type": "string",
"description": "A unique identifier for this document. If the document's storage repository uses a unique identifier, use that (for example, a DocuShare handle or a Jira item identifier). Otherwise, use the url as the identifier."
},
"scmRepositoryUrl": {
"type": "string",
"description": "The URL of the source code repository from which this document is generated, if available, if available.",
"format": "uri"
},
"seriesIdentifier": {
"type": "string",
"description": "The series this document is part of, if applicable. For example, a handle prefix (LDM)."
},
"storageRepository": {
"type": "string",
"description": "The document's primary storage repository. Specify null if the repository is unknown.",
"enum": [
null,
"lsst.io",
"docushare.lsstcorp.org",
"jira.lsstcorp.org",
"confluence.lsstcorp.org",
"euporie",
"pdm-vault"
]
},
"systems": {
"type": "array",
"$ref": "./schema.systems.json",
"description": "The systems that this document refers to. A document can reference more than one system. Each system is described by an array of increasing specifificity."
},
"title": {
"type": "string",
"description": "The name of the document"
},
"url": {
"type": "string",
"description": "The main URL where the document can be accessed.",
"format": "uri"
}
},
"required": [
"identifier",
"title",
"url",
"storageRepository"
]
}
}