Mercurial > prosody-modules
comparison mod_http_oauth2/mod_http_oauth2.lua @ 5364:0444953e3247
mod_http_oauth2: Normalize whitespace in client metadata schema
Random extra whitespace?
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Tue, 25 Apr 2023 17:16:12 +0200 |
parents | 230fc6a0c086 |
children | 698fef74ce53 |
comparison
equal
deleted
inserted
replaced
5363:893b9c3c0d20 | 5364:0444953e3247 |
---|---|
657 }; | 657 }; |
658 }; | 658 }; |
659 response_types = { type = "array"; items = { type = "string"; enum = { "code"; "token" } } }; | 659 response_types = { type = "array"; items = { type = "string"; enum = { "code"; "token" } } }; |
660 client_name = { type = "string" }; | 660 client_name = { type = "string" }; |
661 client_uri = { type = "string"; format = "uri"; luaPattern = "^https:" }; | 661 client_uri = { type = "string"; format = "uri"; luaPattern = "^https:" }; |
662 logo_uri = { type = "string"; format = "uri"; luaPattern = "^https:" }; | 662 logo_uri = { type = "string"; format = "uri"; luaPattern = "^https:" }; |
663 scope = { type = "string" }; | 663 scope = { type = "string" }; |
664 contacts = { type = "array"; items = { type = "string" } }; | 664 contacts = { type = "array"; items = { type = "string" } }; |
665 tos_uri = { type = "string"; format = "uri"; luaPattern = "^https:" }; | 665 tos_uri = { type = "string"; format = "uri"; luaPattern = "^https:" }; |
666 policy_uri = { type = "string"; format = "uri"; luaPattern = "^https:" }; | 666 policy_uri = { type = "string"; format = "uri"; luaPattern = "^https:" }; |
667 jwks_uri = { type = "string"; format = "uri"; luaPattern = "^https:" }; | 667 jwks_uri = { type = "string"; format = "uri"; luaPattern = "^https:" }; |
668 jwks = { type = "object"; description = "JSON Web Key Set, RFC 7517" }; | 668 jwks = { type = "object"; description = "JSON Web Key Set, RFC 7517" }; |
669 software_id = { type = "string"; format = "uuid" }; | 669 software_id = { type = "string"; format = "uuid" }; |
670 software_version = { type = "string" }; | 670 software_version = { type = "string" }; |
671 }; | 671 }; |
672 -- Localized versions of descriptive properties and URIs | 672 -- Localized versions of descriptive properties and URIs |
673 luaPatternProperties = { ["^[a-z_]+_uri#"] = { type = "string"; format = "uri"; luaPattern = "^https:" } }; | 673 luaPatternProperties = { ["^[a-z_]+_uri#"] = { type = "string"; format = "uri"; luaPattern = "^https:" } }; |
674 additionalProperties = { type = "string" }; | 674 additionalProperties = { type = "string" }; |
675 } | 675 } |
676 | 676 |
677 function create_client(client_metadata) | 677 function create_client(client_metadata) |
678 if not schema.validate(registration_schema, client_metadata) then | 678 if not schema.validate(registration_schema, client_metadata) then |