Skip to content
This repository has been archived by the owner on May 27, 2023. It is now read-only.

Commit

Permalink
added registry_of=transfer value
Browse files Browse the repository at this point in the history
  • Loading branch information
source-c committed Jun 11, 2020
1 parent 7902e9c commit 1c020ad
Showing 1 changed file with 32 additions and 7 deletions.
39 changes: 32 additions & 7 deletions edi/json-schema/fms_contragent_announcement.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,20 @@
"type": "object",
"description": "FMS contragent events",
"required": [
"sender", "timestamp", "contragent_id",
"contragent_reg_id", "action", "reason"
"sender",
"timestamp",
"contragent_id",
"contragent_reg_id",
"action",
"reason"
],
"properties": {
"sender": {
"type": "string",
"description": "Sender name",
"enum": ["tbt"]
"enum": [
"tbt"
]
},
"timestamp": {
"description": "Send time",
Expand All @@ -29,16 +35,35 @@
"action": {
"type": "string",
"description": "action",
"enum": ["created","deleted","updated","blocked","disabled"]
"enum": [
"created",
"deleted",
"updated",
"blocked",
"disabled"
]
},
"reason": {
"type": "string",
"description": "reason",
"enum": ["self","requisites","fraud","disaster","other"]
"enum": [
"self",
"requisites",
"fraud",
"disaster",
"other"
]
},
"merchant_id": {
"type": "string",
"description": "Payment system contragent identifier"
"anyOf": [
{
"type": "string",
"description": "Payment system contragent identifier"
},
{
"type": "null"
}
]
},
"comment": {
"type": "string",
Expand Down

0 comments on commit 1c020ad

Please sign in to comment.