Skip to content

Commit

Permalink
[#134] JSON schema correction
Browse files Browse the repository at this point in the history
chore: Correct incorrectly nested property in JSON schema
  • Loading branch information
nickdnk authored Oct 25, 2024
2 parents 08075b6 + 832b4d2 commit 0ea2c09
Showing 1 changed file with 23 additions and 25 deletions.
48 changes: 23 additions & 25 deletions schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,31 +44,29 @@
"patternProperties": {
"additionalProperties": false,
"^[a-zA-Z0-9._-]+$": {
"properties": {
"oneOf": [
{
"$ref": "https://raw.githubusercontent.com/roadrunner-server/amqp/refs/heads/master/schema.json#/definitions/pipeline"
},
{
"$ref": "https://raw.githubusercontent.com/roadrunner-server/beanstalk/refs/heads/master/schema.json#/definitions/pipeline"
},
{
"$ref": "https://raw.githubusercontent.com/roadrunner-server/boltdb/refs/heads/master/schema.json#/definitions/pipeline"
},
{
"$ref": "https://raw.githubusercontent.com/roadrunner-server/kafka/refs/heads/master/schema.json#/definitions/pipeline"
},
{
"$ref": "https://raw.githubusercontent.com/roadrunner-server/memory/refs/heads/master/schema.json#/definitions/pipeline"
},
{
"$ref": "https://raw.githubusercontent.com/roadrunner-server/nats/refs/heads/master/schema.json#/definitions/pipeline"
},
{
"$ref": "https://raw.githubusercontent.com/roadrunner-server/sqs/refs/heads/master/schema.json#/definitions/pipeline"
}
]
}
"oneOf": [
{
"$ref": "https://raw.githubusercontent.com/roadrunner-server/amqp/refs/heads/master/schema.json#/definitions/pipeline"
},
{
"$ref": "https://raw.githubusercontent.com/roadrunner-server/beanstalk/refs/heads/master/schema.json#/definitions/pipeline"
},
{
"$ref": "https://raw.githubusercontent.com/roadrunner-server/boltdb/refs/heads/master/schema.json#/definitions/pipeline"
},
{
"$ref": "https://raw.githubusercontent.com/roadrunner-server/kafka/refs/heads/master/schema.json#/definitions/pipeline"
},
{
"$ref": "https://raw.githubusercontent.com/roadrunner-server/memory/refs/heads/master/schema.json#/definitions/pipeline"
},
{
"$ref": "https://raw.githubusercontent.com/roadrunner-server/nats/refs/heads/master/schema.json#/definitions/pipeline"
},
{
"$ref": "https://raw.githubusercontent.com/roadrunner-server/sqs/refs/heads/master/schema.json#/definitions/pipeline"
}
]
}
}
}
Expand Down

0 comments on commit 0ea2c09

Please sign in to comment.