---
$schema: "http://json-schema.org/draft-04/schema#"
title: UserGroupContactDetails
type: object
example: {
  "inherited_from": null,
  "address": {
    "company_number": "5568166804",
    "company_name": "Scrive",
    "address": "Grev Turegatan 11A",
    "zip": "114 46",
    "city": "Stockholm",
    "country": "Sweden"
  }
}
description: |
  JSON representation of a User Group's Contact Details.
properties:
  inherited_from:
    type: string
  address:
    type: object
    properties:
     company_number:
        type: string
     company_name:
        type: string
     address:
        type: string
     zip:
        type: string
     city:
        type: string
     country:
        type: string
