Skip to content

Commit

Permalink
feat: add the pattern properties
Browse files Browse the repository at this point in the history
  • Loading branch information
sambhavgupta0705 committed Apr 22, 2024
1 parent 46f33bc commit b8388ec
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 5 deletions.
6 changes: 1 addition & 5 deletions extensions/linkedin/0.1.0/schema.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
{
"type": "string",
"patternProperties": {
"x-linkedin":{
"$ref": "^https://(www\\.)?linkedin\\.com.*$"
}
},
"pattern": "^https://(www\\.)?linkedin\\.com.*$",
"description": "This extension allows you to provide the Linkedin profile URL of the account representing the team/company of the API.",
"example": [
"https://www.linkedin.com/company/asyncapi/",
Expand Down
12 changes: 12 additions & 0 deletions schemas/3.0.0-without-$id.json
Original file line number Diff line number Diff line change
Expand Up @@ -305,6 +305,9 @@
"properties": {
"x-x": {
"$ref": "#/definitions/extensions-x-0.1.0-schema"
},
"x-linkedin": {
"$ref": "#/definitions/extensions-linkedin-0.1.0-schema"
}
}
},
Expand All @@ -316,6 +319,15 @@
"AsyncAPISpec"
]
},
"extensions-linkedin-0.1.0-schema": {
"type": "string",
"pattern": "^https://(www\\.)?linkedin\\.com.*$",
"description": "This extension allows you to provide the Linkedin profile URL of the account representing the team/company of the API.",
"example": [
"https://www.linkedin.com/company/asyncapi/",
"https://www.linkedin.com/in/sambhavgupta0705/"
]
},
"servers": {
"description": "An object representing multiple servers.",
"type": "object",
Expand Down
13 changes: 13 additions & 0 deletions schemas/3.0.0.json
Original file line number Diff line number Diff line change
Expand Up @@ -315,6 +315,9 @@
"properties": {
"x-x": {
"$ref": "http://asyncapi.com/extensions/x/0.1.0/schema.json"
},
"x-linkedin": {
"$ref": "http://asyncapi.com/extensions/linkedin/0.1.0/schema.json"
}
}
},
Expand All @@ -327,6 +330,16 @@
"AsyncAPISpec"
]
},
"http://asyncapi.com/extensions/linkedin/0.1.0/schema.json": {
"$id": "http://asyncapi.com/extensions/linkedin/0.1.0/schema.json",
"type": "string",
"pattern": "^https://(www\\.)?linkedin\\.com.*$",
"description": "This extension allows you to provide the Linkedin profile URL of the account representing the team/company of the API.",
"example": [
"https://www.linkedin.com/company/asyncapi/",
"https://www.linkedin.com/in/sambhavgupta0705/"
]
},
"http://asyncapi.com/definitions/3.0.0/servers.json": {
"$id": "http://asyncapi.com/definitions/3.0.0/servers.json",
"description": "An object representing multiple servers.",
Expand Down

0 comments on commit b8388ec

Please sign in to comment.