feat: Add new schema files (no-changelog) (#13062)

This commit is contained in:
Jon
2025-02-05 12:48:45 +00:00
committed by GitHub
parent 32f2ac6773
commit 2a33d07aa0
30 changed files with 4742 additions and 0 deletions

View File

@@ -0,0 +1,168 @@
{
"type": "object",
"properties": {
"Vendor1099": {
"type": "boolean"
},
"CurrencyRef": {
"type": "object",
"properties": {
"value": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"value",
"name"
]
},
"domain": {
"type": "string"
},
"sparse": {
"type": "boolean"
},
"Id": {
"type": "string"
},
"SyncToken": {
"type": "string"
},
"MetaData": {
"type": "object",
"properties": {
"CreateTime": {
"type": "string"
},
"LastUpdatedTime": {
"type": "string"
}
},
"required": [
"CreateTime",
"LastUpdatedTime"
]
},
"DisplayName": {
"type": "string"
},
"PrintOnCheckName": {
"type": "string"
},
"Active": {
"type": "boolean"
},
"BillAddr": {
"type": "object",
"properties": {
"Id": {
"type": "string"
},
"Line1": {
"type": "string"
},
"City": {
"type": "string"
},
"CountrySubDivisionCode": {
"type": "string"
},
"PostalCode": {
"type": "string"
},
"Lat": {
"type": "string"
},
"Long": {
"type": "string"
}
},
"required": [
"Id"
]
},
"AcctNum": {
"type": "string"
},
"GivenName": {
"type": "string"
},
"FamilyName": {
"type": "string"
},
"CompanyName": {
"type": "string"
},
"PrimaryPhone": {
"type": "object",
"properties": {
"FreeFormNumber": {
"type": "string"
}
},
"required": [
"FreeFormNumber"
]
},
"PrimaryEmailAddr": {
"type": "object",
"properties": {
"Address": {
"type": "string"
}
},
"required": [
"Address"
]
},
"WebAddr": {
"type": "object",
"properties": {
"URI": {
"type": "string"
}
},
"required": [
"URI"
]
},
"Mobile": {
"type": "object",
"properties": {
"FreeFormNumber": {
"type": "string"
}
},
"required": [
"FreeFormNumber"
]
},
"Fax": {
"type": "object",
"properties": {
"FreeFormNumber": {
"type": "string"
}
},
"required": [
"FreeFormNumber"
]
}
},
"required": [
"Balance",
"Vendor1099",
"CurrencyRef",
"domain",
"sparse",
"Id",
"SyncToken",
"MetaData",
"DisplayName",
"PrintOnCheckName",
"Active"
]
}