ルート・スキーマ : Roles
タイプ: object
Show Source
{
"type":"object",
"properties":{
"items":{
"type":"array",
"items":{
"$ref":"#/definitions/RoleBean"
}
},
"count":{
"type":"integer",
"format":"int64"
},
"hasMore":{
"type":"boolean"
},
"totalResults":{
"type":"integer",
"format":"int64"
},
"limit":{
"type":"integer",
"format":"int64"
},
"properties":{
"type":"object",
"additionalProperties":{
"type":"string"
}
},
"offset":{
"type":"integer",
"format":"int64"
}
}
}
ネストされたスキーマ : items
タイプ: array
Show Source
{
"type":"array",
"items":{
"$ref":"#/definitions/RoleBean"
}
}
ネストされたスキーマ : properties
タイプ: object
許可される追加プロパティ
Show Source
{
"type":"object",
"additionalProperties":{
"type":"string"
}
}
ネストされたスキーマ : RoleBean
タイプ: object
Show Source
{
"type":"object",
"properties":{
"type":{
"type":"string"
},
"roles":{
"type":"array",
"items":{
"type":"string"
}
},
"defaultRole":{
"type":"string"
}
}
}
ネストされたスキーマ : roles
タイプ: array
Show Source
{
"type":"array",
"items":{
"type":"string"
}
}