An association type referencing service ID or keys.

{
"associationType": "serviceIdOrKeys",
"values": [
"some-service-key"
]
}
interface ServiceIdOrKeysAssociation {
    associationType: "serviceIdOrKeys";
    values: string[];
}

Hierarchy

  • Record<string, unknown>
    • ServiceIdOrKeysAssociation

Properties

associationType

Defines the association type.

serviceIdOrKeys
values: string[]

The service ID or keys to associate the entity with.

The number of values counted across all associationTypes must not exceed a limit of 500.