Skip to content

Commit

Permalink
Update registry schema to allow any https URL for authors (open-telem…
Browse files Browse the repository at this point in the history
  • Loading branch information
svrnm authored and drewby committed Nov 21, 2024
1 parent 0e09925 commit dcf3563
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions data/registry-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -109,9 +109,9 @@
},
"url": {
"type": "string",
"description": "The URL of the author",
"pattern": "^https:\\/\\/github\\.com\\/([a-zA-Z0-9](?:-?[a-zA-Z0-9]){0,38})$",
"errorMessage": "The URL of the author must be a valid GitHub user URL"
"description": "The URL of the author. This can be a website or a GitHub handle URL.",
"format": "uri",
"pattern": "^https://.*$"
}
},
"if": {
Expand Down

0 comments on commit dcf3563

Please sign in to comment.