forked from cardano-foundation/CIPs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathregistry.schema.json
More file actions
32 lines (31 loc) · 860 Bytes
/
Copy pathregistry.schema.json
File metadata and controls
32 lines (31 loc) · 860 Bytes
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
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://github.com/cardano-foundation/CIPs/blob/master/CIP-0155",
"title": "SRV Registry",
"description": "JSON schema for the SRV registry",
"type": "array",
"items": {
"type": "object",
"properties": {
"service": {
"type": "string",
"description": "A unique identifier for the service name."
},
"prefix": {
"type": "string",
"description": "A unique SRV prefix.",
"maxLength": 255
},
"status": {
"type": "string",
"description": "Status of the entry. Can be one of: \"Active\", \"Revoked\""
}
},
"required": [
"service",
"prefix",
"status"
],
"additionalProperties": false
}
}