Skip to main content

Interface: ApplicationProfile

Represents an ApplicationProfile (Ap for short) as it is used in our libraries. An Ap describes the data model of one or multiple types of graphs. For more information about this, please take a look at this doc.

example

{
"uri": "http://my-domain/my-ap",
"types": {
"Animal": {...},
"Cat": {...},
"Dog": {...}
}
}

Properties​

types​

• types: Object

Map of TypeProfile that constitutes the Ap

Index signature​

â–ª [classId: string]: TypeProfile

Defined in​

application-profile/src/lib/models/application-profile.ts:28


uri​

• uri: string

uri of the Ap

Defined in​

application-profile/src/lib/models/application-profile.ts:24