Sha256: 773608cead77bd6b84867999b40f61a4b221f2b214eb8e7bc5faa7e4674819f5

Contents?: true

Size: 1.29 KB

Versions: 13

Compression:

Stored size: 1.29 KB

Contents

{
  "$schema": "http://json-schema.org/draft-03/schema#",
  "id": "http://popoloproject.com/schemas/contact_detail.json#",
  "title": "Contact detail",
  "description": "A means of contacting an entity",
  "type": "object",
  "properties": {
    "label": {
      "description": "A human-readable label for the contact detail",
      "type": ["string", "null"]
    },
    "type": {
      "description": "A type of medium, e.g. 'fax' or 'email'",
      "type": "string",
      "required": true
    },
    "value": {
      "description": "A value, e.g. a phone number or email address",
      "type": "string",
      "required": true
    },
    "note": {
      "description": "A note, e.g. for grouping contact details by physical location",
      "type": ["string", "null"]
    },
    "created_at": {
      "description": "The time at which the resource was created",
      "type": ["string", "null"],
      "format": "date-time"
    },
    "updated_at": {
      "description": "The time at which the resource was last modified",
      "type": ["string", "null"],
      "format": "date-time"
    },
    "sources": {
      "description": "URLs to documents from which the contact detail is derived",
      "type": "array",
      "items": {
        "$ref": "http://popoloproject.com/schemas/link.json#"
      }
    }
  }
}

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
pupa-0.0.13 schemas/popolo/contact_detail.json
pupa-0.0.12 schemas/popolo/contact_detail.json
pupa-0.0.11 schemas/popolo/contact_detail.json
pupa-0.0.10 schemas/popolo/contact_detail.json
pupa-0.0.9 schemas/popolo/contact_detail.json
pupa-0.0.8 schemas/popolo/contact_detail.json
pupa-0.0.7 schemas/popolo/contact_detail.json
pupa-0.0.6 schemas/popolo/contact_detail.json
pupa-0.0.5 schemas/popolo/contact_detail.json
pupa-0.0.4 schemas/popolo/contact_detail.json
pupa-0.0.3 schemas/popolo/contact_detail.json
pupa-0.0.2 schemas/popolo/contact_detail.json
pupa-0.0.1 schemas/popolo/contact_detail.json