Root Schema : ErrorGroupsRs
Match All
Show Source
{
"allOf":[
{
"$ref":"#/components/schemas/GenericRestRs"
},
{
"required":[
"partnerId"
],
"type":"object",
"properties":{
"items":{
"type":"array",
"items":{
"$ref":"#/components/schemas/ErrorGroupRs"
}
},
"size":{
"type":"integer",
"format":"int32"
},
"partnerId":{
"type":"string"
}
}
}
]
}
Nested Schema : GenericRestRs
Type: object
Show Source
{
"type":"object",
"properties":{
"links":{
"type":"array",
"items":{
"$ref":"#/components/schemas/SuiteLink"
}
}
}
}
Nested Schema : ErrorGroupsRs-allOf[1]
Type: object
Show Source
{
"required":[
"partnerId"
],
"type":"object",
"properties":{
"items":{
"type":"array",
"items":{
"$ref":"#/components/schemas/ErrorGroupRs"
}
},
"size":{
"type":"integer",
"format":"int32"
},
"partnerId":{
"type":"string"
}
}
}
Nested Schema : links
Type: array
Show Source
{
"type":"array",
"items":{
"$ref":"#/components/schemas/SuiteLink"
}
}
Nested Schema : SuiteLink
Type: object
Show Source
{
"type":"object",
"properties":{
"rel":{
"type":"string"
},
"href":{
"type":"string"
},
"media-type":{
"type":"string"
},
"method":{
"type":"string"
}
}
}
Nested Schema : items
Type: array
Show Source
{
"type":"array",
"items":{
"$ref":"#/components/schemas/ErrorGroupRs"
}
}
Nested Schema : ErrorGroupRs
Match All
Show Source
{
"allOf":[
{
"$ref":"#/components/schemas/IdRs"
},
{
"$ref":"#/components/schemas/GenericRestRs"
},
{
"type":"object",
"properties":{
"usage":{
"type":"integer",
"format":"int32"
},
"desc":{
"type":"string"
},
"updatedDate":{
"type":"string"
},
"createdDate":{
"type":"string"
},
"id":{
"type":"string"
},
"name":{
"type":"string"
},
"tradingPartnerId":{
"type":"string"
},
"errorCodes":{
"type":"array",
"items":{
"type":"string"
}
}
}
}
]
}
Nested Schema : IdRs
Match All
Show Source
{
"allOf":[
{
"$ref":"#/components/schemas/GenericRestRs"
},
{
"type":"object",
"properties":{
"id":{
"type":"string"
}
}
}
]
}
Nested Schema : IdRs-allOf[1]
Type: object
Show Source
{
"type":"object",
"properties":{
"id":{
"type":"string"
}
}
}
Nested Schema : ErrorGroupRs-allOf[2]
Type: object
Show Source
{
"type":"object",
"properties":{
"usage":{
"type":"integer",
"format":"int32"
},
"desc":{
"type":"string"
},
"updatedDate":{
"type":"string"
},
"createdDate":{
"type":"string"
},
"id":{
"type":"string"
},
"name":{
"type":"string"
},
"tradingPartnerId":{
"type":"string"
},
"errorCodes":{
"type":"array",
"items":{
"type":"string"
}
}
}
}
Nested Schema : errorCodes
Type: array
Show Source
{
"type":"array",
"items":{
"type":"string"
}
}