# HG changeset patch # User Kim Alvefur # Date 1682173796 -7200 # Node ID 230fc6a0c08669eec63f5eaa05266d901fe150a4 # Parent 0905d348bd34123ea6af784f4cfca95db35156aa mod_http_oauth2: Use new Lua pattern schema properties diff -r 0905d348bd34 -r 230fc6a0c086 mod_http_oauth2/mod_http_oauth2.lua --- a/mod_http_oauth2/mod_http_oauth2.lua Sat Apr 22 14:22:56 2023 +0200 +++ b/mod_http_oauth2/mod_http_oauth2.lua Sat Apr 22 16:29:56 2023 +0200 @@ -658,19 +658,19 @@ }; response_types = { type = "array"; items = { type = "string"; enum = { "code"; "token" } } }; client_name = { type = "string" }; - client_uri = { type = "string"; format = "uri"; pattern = "^https:" }; - logo_uri = { type = "string"; format = "uri"; pattern = "^https:" }; + client_uri = { type = "string"; format = "uri"; luaPattern = "^https:" }; + logo_uri = { type = "string"; format = "uri"; luaPattern = "^https:" }; scope = { type = "string" }; contacts = { type = "array"; items = { type = "string" } }; - tos_uri = { type = "string"; format = "uri"; pattern = "^https:" }; - policy_uri = { type = "string"; format = "uri"; pattern = "^https:" }; - jwks_uri = { type = "string"; format = "uri"; pattern = "^https:" }; + tos_uri = { type = "string"; format = "uri"; luaPattern = "^https:" }; + policy_uri = { type = "string"; format = "uri"; luaPattern = "^https:" }; + jwks_uri = { type = "string"; format = "uri"; luaPattern = "^https:" }; jwks = { type = "object"; description = "JSON Web Key Set, RFC 7517" }; software_id = { type = "string"; format = "uuid" }; software_version = { type = "string" }; }; -- Localized versions of descriptive properties and URIs - patternProperties = { ["^[a-z_]+_uri#"] = { type = "string"; format = "uri"; pattern = "^https:" } }; + luaPatternProperties = { ["^[a-z_]+_uri#"] = { type = "string"; format = "uri"; luaPattern = "^https:" } }; additionalProperties = { type = "string" }; }