{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/shareworks/main/json-schema/IndividualStakeholderCrudRequest.json", "title": "Individual Stakeholder Body", "required": [ "firstName", "lastName" ], "type": "object", "properties": { "firstName": { "type": "string", "description": "First name for the stakeholder" }, "middleName": { "type": "string", "description": "Middle name for the stakeholder" }, "lastName": { "type": "string", "description": "Last name for the stakeholder" }, "stakeholderNumber": { "type": "string", "description": "Number for the stakeholder, typically generated" } } }