Skip to content
Snippets Groups Projects
Schema.tsx 665 B
export interface ServiceMatrix {
    key: string,
    nrens: Nren[],
    services: Service[][]
}


export interface Nren {
    name: string
    nren_id:number
    tags: string[]
}


export interface Service {
    compendium_id: number,
    country_code:string,
    country_name:string,
    created_at:Date,
    id:number,
    identifier:string,
    kpi: string[],
    nren_abbreviation:string
    nren_id:number,
    public:boolean,
    question_id:number,
    question_style:string,
    response_id:number,
    short:string,
    status:number,
    tags:string[],
    title:string,
    title_detailed:string,
    updated_at:Date,
    url:string,
    value:string
}