changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "concept_groups": {
+ "description": "Groups of drug concepts organized by term type",
+ "items": {
+ "properties": {
+ "concepts": {
+ "description": "Drug concepts in this group",
+ "items": {
+ "properties": {
+ "language": {
+ "description": "Language code (typically ENG)",
+ "type": "string"
+ },
+ "name": {
+ "description": "Drug name",
+ "type": "string"
+ },
+ "rxcui": {
+ "description": "RxNorm concept unique identifier",
+ "type": "string"
+ },
+ "synonym": {
+ "description": "Alternative name or null",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "tty": {
+ "description": "Term type code",
+ "type": "string"
+ }
+ },
+ "required": [
+ "rxcui",
+ "name",
+ "tty",
+ "language"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "term_type": {
+ "description": "RxNorm term type (BN, IN, SBD, SCD, GPCK, BPCK)",
+ "type": "string"
+ }
+ },
+ "required": [
+ "term_type",
+ "concepts"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "name": {
+ "description": "Normalized drug name from search",
+ "type": "string"
+ }
+ },
+ "required": [
+ "name",
+ "concept_groups"
+ ],
+ "type": "object"
+}