type alias Personimport { type Person } from "https://deno.land/x/shacl_to_type@v0.0.9/types/Person.ts"; definition: { givenName: string; familyName: string; callSign: Array<string>; colleague?: Array<any>; description: Array<string>; abstract: Array<string>; birthDate?: Date; gender?: "female" | "male"; address?: Array<Address>; }