Root Schema : schema
    
    	Type: object
    	
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
        Show Source
        
        {
    "type":"object",
    "properties":{
        "contactUI":{
            "$ref":"#/components/schemas/ContactsRs"
        }
    }
}
    
    
    
    
    
    
    
 
                            
                              
    Nested Schema : ContactsRs
    
    	
    	
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    Match All
    
        
    
        
    
    Show Source
    
    {
    "allOf":[
        {
            "$ref":"#/components/schemas/GenericRestRs"
        },
        {
            "type":"object",
            "properties":{
                "items":{
                    "type":"array",
                    "items":{
                        "$ref":"#/components/schemas/ContactRs"
                    }
                }
            }
        }
    ]
}
    
    
    
    
    
 
                            
                              
    Nested Schema : GenericRestRs
    
    	Type: object
    	
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
        Show Source
        
        {
    "type":"object",
    "properties":{
        "links":{
            "type":"array",
            "items":{
                "$ref":"#/components/schemas/SuiteLink"
            }
        }
    }
}
    
    
    
    
    
    
    
 
                            
                              
    Nested Schema : ContactsRs-allOf[1]
    
    	Type: object
    	
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
        Show Source
        
        {
    "type":"object",
    "properties":{
        "items":{
            "type":"array",
            "items":{
                "$ref":"#/components/schemas/ContactRs"
            }
        }
    }
}
    
    
    
    
    
    
    
 
                            
                              
    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/ContactRs"
    }
}
    
    
    
    
    
    
 
                            
                              
    Nested Schema : ContactRs
    
    	
    	
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    Match All
    
        
    
        
    
        
    
    Show Source
    
    {
    "allOf":[
        {
            "$ref":"#/components/schemas/IdRs"
        },
        {
            "$ref":"#/components/schemas/GenericRestRs"
        },
        {
            "type":"object",
            "properties":{
                "id":{
                    "type":"string"
                },
                "contactType":{
                    "type":"string"
                },
                "contactValue":{
                    "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 : ContactRs-allOf[2]
    
    	Type: object
    	
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
        Show Source
        
        {
    "type":"object",
    "properties":{
        "id":{
            "type":"string"
        },
        "contactType":{
            "type":"string"
        },
        "contactValue":{
            "type":"string"
        }
    }
}