Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Inline Option enum requires null added to the list of variant #382

Open
Johnabell opened this issue Mar 13, 2025 · 0 comments
Open

Inline Option enum requires null added to the list of variant #382

Johnabell opened this issue Mar 13, 2025 · 0 comments

Comments

@Johnabell
Copy link

According to the discussion here, when we have an enum which is nullable we should add null as one of the enum values.
json-schema-org/json-schema-spec#258

Here is an example of this change being implemented in another library: vega/ts-json-schema-generator#22

Details

Given the following types:

#[derive(Debug, Deserialize, Serialize, PartialEq, Eq, Clone, Copy, JsonSchema)]
enum FunctionalStatus {
    InService,
    OutOfService,
}

#[derive(Debug, Default, Deserialize, Serialize, PartialEq, Clone, JsonSchema)]
struct Example {
    functional_status: Option<FunctionalStatus>
} 

When we generate the schema without inlining the definitions, we get

{
  "functional_status": {
    "description": "Functional status",
    "anyOf": [
      {
        "$ref": "#/definitions/FunctionalStatus"
      },
      {
        "type": "null"
      }
    ]
  },
}

This is correct and successfully validates request when null is given.

However, if we inline definitions we are given this schema,

{ 
  "functional_status": {
    "description": "Functional status",
    "type": [
      "string",
      "null"
    ],
    "enum": [
      "InService",
      "OutOfService"
    ]
  }
}

which fails to validate when you pass a null value with the following error null is not one of ["InService","OutOfService"].

Instead, the schema that is generated should have the following change

 { 
   "functional_status": {
     "description": "Functional status",
     "type": [
       "string",
       "null"
     ],
     "enum": [
       "InService",
-      "OutOfService"
+      "OutOfService",
+      null
     ]
   }
 }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant