Skip to content

Commit

Permalink
remove full node definition
Browse files Browse the repository at this point in the history
operators providing both seed and query capabilities on the same node can still add 2 entries to the nodes array
  • Loading branch information
igorls committed Sep 16, 2020
1 parent 8bb64b9 commit fbb11c8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
6 changes: 2 additions & 4 deletions README.md
Expand Up @@ -41,10 +41,8 @@ The current revision is compliant with the JSON schema Draft v7 - http://json-sc
- longitude: Node longitude in decimal degrees
- node_type: Type of service `producer/full/query/seed`
- producer: Node with signing key
- full: Node in front of producer
- query: Node that provides HTTP(S) API to the public
- seed: Node that provides P2P and/or BNET to the public
- is_producer (deprecated, use node_type = producer)
- query: Node that provides HTTP(S) APIs to the public
- seed: Node that provides P2P access to the public
- p2p_endpoint: EOSIO P2P endpoint `host:port`
- api_endpoint: EOSIO HTTP endpoint `http://host:port`
- ssl_endpoint: EOSIO HTTPS endpoint `https://host:port`
Expand Down
4 changes: 2 additions & 2 deletions schema.json
Expand Up @@ -189,12 +189,12 @@
"uniqueItems": true,
"items": {
"type": "string",
"enum": ["producer", "full", "query", "seed"]
"enum": ["producer", "query", "seed"]
}
},
{
"type": "string",
"enum": ["producer", "full", "query", "seed"]
"enum": ["producer", "query", "seed"]
}
]
},
Expand Down

0 comments on commit fbb11c8

Please sign in to comment.