Sha256: fedc10632368620efc9b2b47c3993f0cc097166a1dfa9fd8158916d72aea0c7e

Contents?: true

Size: 1.79 KB

Versions: 8

Compression:

Stored size: 1.79 KB

Contents

{
  "description":"A representation of a person, company, organization, or place",
  "type":"object",
  "properties":{
    "fn":{
      "description":"Formatted Name",
      "type":"string"
    },
    "familyName":{
      "type":"string",
      "required":true
    },
    "givenName":{
      "type":"string",
      "required":true
    },
    "additionalName":{
      "type":"array",
      "items":{
        "type":"string"
      }
    },
    "honorificPrefix":{
      "type":"array",
      "items":{
        "type":"string"
      }
    },
    "honorificSuffix":{
      "type":"array",
      "items":{
        "type":"string"
      }
    },
    "nickname":{
      "type":"string"
    },
    "url":{
      "type":"string",
      "format":"url"
    },
    "email":{
      "type":"object",
      "properties":{
        "type":{
          "type":"string"
        },
        "value":{
          "type":"string",
          "format":"email"
        }
      }
    },
    "tel":{
      "type":"object",
      "properties":{
        "type":{
          "type":"string"
        },
        "value":{
          "type":"string",
          "format":"phone"
        }
      }
    },
    "adr":{"$ref" : "address.json"},
    "geo":{"$ref" : "geo.json"},
    "tz":{
      "type":"string"
    },
    "photo":{
      "format":"image",
      "type":"string"
    },
    "logo":{
      "format":"image",
      "type":"string"
    },
    "sound":{
      "format":"attachment",
      "type":"string"
    },
    "bday":{
      "type":"string",
      "format":"date"
    },
    "title":{
      "type":"string"
    },
    "role":{
      "type":"string"
    },
    "org":{
      "type":"object",
      "properties":{
        "organizationName":{
          "type":"string"
        },
        "organizationUnit":{
          "type":"string"
        }
      }
    }
  }
}

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
autoparse-0.3.3 spec/data/card.json
autoparse-0.3.2 spec/data/card.json
autoparse-0.3.1 spec/data/card.json
autoparse-0.3.0 spec/data/card.json
autoparse-0.2.3 spec/data/card.json
autoparse-0.2.1 spec/data/card.json
autoparse-0.2.0 spec/data/card.json
autoparse-0.1.0 spec/data/card.json