{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/OtherNameOrganization", "title": "OtherNameOrganization", "allOf": [ { "$ref": "#/components/schemas/Extensible" }, { "type": "object", "description": "Keeps track of other names, for example the old name of an organization.", "properties": { "tradingName": { "type": "string", "description": "The name that the organization trades under" }, "nameType": { "type": "string", "description": "Co. , Inc. , Ltd. , Pty Ltd. , Plc; , Gmbh" }, "name": { "type": "string", "description": "Organization name (department name for example)" }, "validFor": { "$ref": "#/components/schemas/TimePeriod" } } } ], "discriminator": { "propertyName": "@type", "mapping": { "OtherNameOrganization": "#/components/schemas/OtherNameOrganization" } } }