Skip to main content

Business Card

Description

Business Card document represents a tangible card that includes an individual's or company's contact information. It is often exchanged during networking events or professional interactions.

Schema Information

{
"type": "object",
"title": "Business Card",
"$schema": "http://json-schema.org/draft-07/schema#",
"properties": {
"name": {
"type": "string"
},
"website": {
"type": "string"
},
"jobTitle": {
"type": "string"
},
"companyName": {
"type": "string"
},
"phoneNumber": {
"type": "string"
},
"emailAddress": {
"type": "string"
},
"additionalInformation": {
"type": "object"
}
},
"additionalProperties": false
}