Advertisement
Guest User

Untitled

a guest
Jun 18th, 2015
284
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.03 KB | None | 0 0
  1. "{\n \"\$schema\": \"http://json-schema.org/draft-04/schema#\",\n \"description\": \"A representation of a person, company, organization, or place\",\n \"type\": \"object\",\n \"required\": [\"familyName\", \"givenName\"],\n \"properties\": {\n \"fn\": {\n \"description\": \"Formatted Name\",\n \"type\": \"string\"\n },\n \"familyName\": { \"type\": \"string\" },\n \"givenName\": { \"type\": \"string\" },\n \"additionalName\": { \"type\": \"array\", \"items\": { \"type\": \"string\" } },\n \"honorificPrefix\": { \"type\": \"array\", \"items\": { \"type\": \"string\" } },\n \"honorificSuffix\": { \"type\": \"array\", \"items\": { \"type\": \"string\" } },\n \"nickname\": { \"type\": \"string\" },\n \"url\": { \"type\": \"string\", \"format\": \"uri\" },\n \"email\": {\n \"type\": \"object\",\n \"properties\": {\n \"type\": { \"type\": \"string\" },\n \"value\": { \"type\": \"string\", \"format\": \"email\" }\n }\n },\n \"tel\": {\n \"type\": \"object\",\n \"properties\": {\n \"type\": { \"type\": \"string\" },\n \"value\": { \"type\": \"string\", \"format\": \"phone\" }\n }\n },\n \"adr\": { \"\$ref\": \"http://json-schema.org/address\" },\n \"geo\": { \"\$ref\": \"http://json-schema.org/geo\" },\n \"tz\": { \"type\": \"string\" },\n \"photo\": { \"type\": \"string\" },\n \"logo\": { \"type\": \"string\" },\n \"sound\": { \"type\": \"string\" },\n \"bday\": { \"type\": \"string\", \"format\": \"date\" },\n \"title\": { \"type\": \"string\" },\n \"role\": { \"type\": \"string\" },\n \"org\": {\n \"type\": \"object\",\n \"properties\": {\n \"organizationName\": { \"type\": \"string\" },\n \"organizationUnit\": { \"type\": \"string\" }\n }\n }\n }\n}\n"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement