{ "type": "object", "properties": { "id": { "type": "integer", "example": 500123 }, "firstName": { "type": "string", "example": "Acme Corporation" }, "lastName": { "type": "string", "example": "Acme Corporation" }, "jobTitle": { "type": "string", "example": "Vice President of Sales" }, "jobFunction": { "type": "array", "description": "", "example": [], "items": { "type": "object", "properties": { "name": { "type": "string", "example": "Acme Corporation" }, "department": { "type": "string", "example": "example_value" } }, "required": [ "name", "department" ] } } }, "required": [ "id", "firstName", "lastName", "jobTitle", "jobFunction" ], "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "RecommendedContact" }