FasterXML / FasterXML/jackson-module-jsonSchema

How to specify the "id" URI?

Ouverte
#72 2 commentaires 0 réactions 0 personnes assignées Voir sur GitHub
Langage dominant
Java
Étoiles
387
Forks
136
Métriques de merge des PR
Aucune PR mergée en 30 j

Description

I have two classes: `Article` and `User` and their respective schemas are available at:
- http://localhost:8080/api/articles/$schema
- http://localhost:8080/api/users/$schema

Since `Article.author` is of type `User`, how can I have the correct `$ref` in the schema? Now I'm getting this:

``` json
{
"type":"object",
"properties":{
"id":{
"type":"integer"
},
"title":{
"type":"string"
},
"author":{
"type":"object",
"id":"urn:jsonschema:it:saiv:best:common:entity:User",
"properties":{
"id":{
"type":"integer"
},
"cn":{
"type":"string"
}
}
}
}
}
```

but I would expect something like:

``` json
{
"type":"object",
"properties":{
"id":{
"type":"integer"
},
"title":{
"type":"string"
},
"author":{
"$ref":"http://localhost:8080/api/users/$schema"
}
}
}
```

This is the code I'm using to generate the schema:

``` java
@GET
@Path("/$schema")
@Produces(MediaType.APPLICATION_JSON)
public String getSchema() throws IOException {
HyperSchemaFactoryWrapper visitor = new HyperSchemaFactoryWrapper();
ObjectMapper mapper = new ObjectMapper();
mapper.acceptJsonFormatVisitor(Article.class, visitor);
JsonSchema schema = visitor.finalSchema();
return mapper.writeValueAsString(schema);
}
```

Guide de contribution

Aucun guide de contribution indexé pour ce dépôt

Évaluation

Cette issue n'a pas encore été évaluée.

Recevez les nouvelles issues par e-mail

Un résumé court des issues GitHub adaptées aux débutants.