Skip to content

Commit

Permalink
Update to PR #747 to resolve conflicts with Master
Browse files Browse the repository at this point in the history
  • Loading branch information
mistryvinay committed Jul 1, 2022
1 parent d0481e9 commit 5d44e13
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions website/static/schemas/next/interaction.schema.json
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"]
}

0 comments on commit 5d44e13

Please sign in to comment.