SubClusterInfo (type)

{
  "description": "Sub-Cluster-info contains the sub-cluster type and the discovered node IDs for the hosts that belong to this sub-cluster.", 
  "id": "SubClusterInfo", 
  "module_id": "SubCluster", 
  "properties": {
    "discovered_node_ids": {
      "description": "Discovered node IDs under this sub-cluster. This is an optional field.", 
      "items": {
        "type": "string"
      }, 
      "required": false, 
      "title": "Discovered node IDs", 
      "type": "array"
    }, 
    "sub_cluster_type": {
      "description": "Sub-cluster-type can be either MANUAL or FAULT_DOMAIN. This is a mandatory field. Currently, all sub-clusters will be of type MANUAL. In the future, we will provide support for creating a sub-cluster for fault domains in VC. This field indicates the same.", 
      "enum": [
        "MANUAL"
      ], 
      "required": true, 
      "title": "Sub-Cluster-Type", 
      "type": "string"
    }
  }, 
  "title": "Sub-cluster-info", 
  "type": "object"
}