• This project
    • Loading...
  • Sign in

홍길동 / onos

%ea%b7%b8%eb%a6%bc1
Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Snippets
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • onos
  • ..
  • definitions
  • RoleInfo.json
  • Jian Li's avatar
    [ONOS-4438] Add REST API for mastership service · f96d41fd ...
    f96d41fd Browse Files
    - Correct some typos in mastership codec
    
    Change-Id: If8a0127d8d897d4b87cae71a194dfece6aa14f49
    Jian Li authored 2016-05-04 00:10:39 +0000
RoleInfo.json 380 Bytes
Raw Blame History Permalink
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
{
  "type": "object",
  "title": "roleInfo",
  "required": [
    "master",
    "backups"
  ],
  "properties": {
    "master": {
      "type": "string",
      "example": "1"
    },
    "backups": {
      "type": "array",
      "xml": {
        "name": "backups",
        "wrapped": true
      },
      "items": {
        "type": "string",
        "example": "1"
      }
    }
  }
}