metosin/malli
Vedi su GitHubAllow more than one pair of `key-schema` `value-schema` for `:map-of`
Open
#881 aperta il 23 mar 2023
enhancementhelp wanted
Metriche repository
- Star
- (1724 star)
- Metriche merge PR
- (Nessuna PR mergiata in 30 g)
Descrizione
[:map-of {}
:keyword :int
[:re #"^([a-z][a-z0-9]*)+(-[a-z0-9]+)*\\-ext$"] [:map ,,,]]
Something similar exists in json-schema:
{
"type": "object",
"patternProperties": {
"^([a-z][a-z0-9]*)+(-[a-z0-9]+)*\\-ext$": {},
"^([a-z][a-z0-9]*)+(-[a-z0-9]+)*\\-ext-definition$": {}
},
"additionalProperties": false
}