-
Notifications
You must be signed in to change notification settings - Fork 132
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update to PR #747 to resolve conflicts with Master
- Loading branch information
1 parent
d0481e9
commit 5d44e13
Showing
1 changed file
with
37 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"$id": "https://fdc3.finos.org/schemas/next/interaction.schema.json", | ||
"type": "object", | ||
"title": "Interaction", | ||
"allOf": [{ "$ref": "context.schema.json#" }], | ||
"properties": { | ||
"type": { "const": "fdc3.interaction" }, | ||
"participants": { | ||
"$ref": "contactList.schema.json#" | ||
}, | ||
"timeRange": { | ||
"$ref": "timerange.schema.json#" | ||
}, | ||
"interactionType": { | ||
"anyOf": [ | ||
{ | ||
"type": "string", | ||
"enum": ["Instant Message", "Email", "Call", "Meeting"] | ||
}, | ||
{ | ||
"type": "string" | ||
} | ||
] | ||
}, | ||
"description": { | ||
"type": "string" | ||
}, | ||
"initiator": { | ||
"$ref": "contact.schema.json#" | ||
}, | ||
"origin": { | ||
"type": "string" | ||
} | ||
}, | ||
"required": ["contacts", "timeRange", "interactionType", "description"] | ||
} |