Skip to content

Commit

Permalink
Try to add other possible values to score_image response
Browse files Browse the repository at this point in the history
  • Loading branch information
kueda committed Jul 5, 2024
1 parent 25b173b commit eea460f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion openapi/schema/response/taxon.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,10 @@ module.exports = Joi.object( ).keys( {
id: Joi.number( ).integer( ),
name: Joi.string( ),
display_name: Joi.string( ),
ancestry: Joi.string( )
ancestor_place_ids: Joi.array( ).items(
Joi.number( ).integer( )
).valid( null ),
admin_level: Joi.number( )
} )
} ),
preferred_establishment_means: Joi.string( ),
Expand Down

0 comments on commit eea460f

Please sign in to comment.