Skip to content

Commit

Permalink
#3323 - Update schema.json for atom query specific properties (#3314)
Browse files Browse the repository at this point in the history
  • Loading branch information
AKZhuk authored Sep 19, 2023
1 parent b4efc67 commit e0ddcdb
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions packages/ketcher-core/src/domain/serializers/ket/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,52 @@
"cip": {
"type": "string",
"enum": ["R", "S", "r", "s"]
},
"queryProperties": {
"type": "object",
"properties": {
"aromaticity": {
"type": "string",
"enum": ["aromatic", "aliphatic"]
},
"degree": {
"type": "integer",
"minimum": 0,
"maximum": 6
},
"ringMembership": {
"type": "integer",
"minimum": 0,
"maximum": 5
},
"ringSize": {
"type": "integer",
"minimum": 0,
"maximum": 5
},
"connectivity": {
"type": "integer",
"minimum": 0,
"maximum": 5
},
"ringConnectivity": {
"type": "integer",
"minimum": 0,
"maximum": 5
},
"atomicMass": {
"type": "integer",
"minimum": 0,
"maximum": 1000
},
"chirality": {
"type": "string",
"enum": ["clockwise", "anticlockwise"]
},
"customQuery": {
"type": "string"
}
}
}
},
"additionalProperties": false
Expand Down

0 comments on commit e0ddcdb

Please sign in to comment.