Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 16 additions & 4 deletions IETF-RFC.md
Original file line number Diff line number Diff line change
Expand Up @@ -1114,20 +1114,32 @@ format:
Servers exposed by the Directory Service
* REQUIRED: `servers` - a JSON array of objects to describe the list
of OCM Servers with the following string fields:
* REQUIRED: `url` - the OCM Server's FQDN
* REQUIRED: `displayName` - a human-readable name for the OCM Server
* REQUIRED: `url` - an absolute URL identifying the
OCM Server. It MUST:
* include scheme: either `https://` or
(for testing purposes) `http://`
* include host (either a FQDN or an IP address)
* MAY include a non-default port
* MUST NOT include a base path (e.g., `/ocm`)
* MUST NOT include userinfo, query, or fragment
* REQUIRED: `displayName` - a human-readable name
for the OCM Server
Example:
```json
{
"federation" : "The ScienceMesh Directory",
"servers" : [
{
"url" : "https://ocm-server-1.fqdn",
"url" : "https://ocm-server-1.example.org",
"displayName" : "OCM Server 1"
},
{
"url" : "https://ocm-server-2.fqdn",
"url" : "https://ocm-server-2.example.org:4443",
"displayName" : "OCM Server 2"
},
{
"url" : "http://192.168.1.1:8080",
"displayName" : "OCM Server 3"
}
]
}
Expand Down
Loading