• 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
  • TenantIds.json
  • Claudine Chiu's avatar
    ONOS-4077: REST API's for virtual networks, devices, ports, links: add missing o… · 1decd539 ...
    1decd539
    …nos.rsModel statements + fix example field in JSON files
    
    Change-Id: I1ae2300143a0a56e5413f8837cea3016d964cb6c
    Claudine Chiu authored 2016-04-29 16:22:14 +0000
TenantIds.json 527 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 26 27 28 29 30
{
  "type": "object",
  "title": "tenants",
  "required": [
    "tenants"
  ],
  "properties": {
    "tenants": {
      "type": "array",
      "xml": {
        "name": "tenants",
        "wrapped": true
      },
      "items": {
        "type": "object",
        "title": "tenant",
        "required": [
          "id"
        ],
        "properties": {
          "id": {
            "type": "String",
            "description": "Tenant identifier",
            "example": "Tenant123"
          }
        }
      }
    }
  }
}