diff --git a/internal/validator/contexts/contexts.go b/internal/validator/contexts/contexts.go index dd8dd86d..c79cce9f 100644 --- a/internal/validator/contexts/contexts.go +++ b/internal/validator/contexts/contexts.go @@ -30,6 +30,7 @@ var DefaultAMFContext = types.ObjectMap{ func DefaultValidationContext(reportConfig config.ReportConfiguration) types.ObjectMap { return types.ObjectMap{ + "@base": reportConfig.BaseIri, "actual": types.StringMap{ "@id": "http://a.ml/vocabularies/validation#actual", }, @@ -117,6 +118,7 @@ func DefaultValidationContext(reportConfig config.ReportConfiguration) types.Obj func ConformsContext(reportConfig config.ReportConfiguration) types.ObjectMap { return types.ObjectMap{ + "@base": reportConfig.BaseIri, "conforms": types.StringMap{ "@id": "http://www.w3.org/ns/shacl#conforms", }, diff --git a/internal/validator/validate_configuration_test.go b/internal/validator/validate_configuration_test.go index 443c0161..767e09ac 100644 --- a/internal/validator/validate_configuration_test.go +++ b/internal/validator/validate_configuration_test.go @@ -78,3 +78,35 @@ func TestAlternativeSchemas(t *testing.T) { t.Errorf("Actual '%s' does not match expected '%s'", actual, expected) } } + +func TestAlernativeBaseIri(t *testing.T) { + baseIri := "http://a.ml/my-really-cool-custom-iri" + + reportConfig := c.ReportConfiguration{ + BaseIri: baseIri, + } + + profile := read("../../test/data/integration/profile1/profile.yaml") + data := read("../../test/data/integration/profile1/negative.data.jsonld") + + report, err := ValidateWithConfiguration(profile, data, config.Debug, nil, c.TestValidationConfiguration{}, reportConfig) + + if err != nil { + t.Errorf("Error during validation\n") + } + + var output []any + err = json.Unmarshal([]byte(report), &output) + if err != nil { + t.Errorf("Error during report JSON unmarshling\n") + } + doc := output[0].(map[string]any) + context := doc["@context"].(map[string]any) + + actual := context["@base"].(string) + expected := baseIri + + if actual != expected { + t.Errorf("Actual '%s' does not match expected '%s'", actual, expected) + } +} diff --git a/pkg/config/report_configuration.go b/pkg/config/report_configuration.go index 3f2ecbab..3fdb613e 100644 --- a/pkg/config/report_configuration.go +++ b/pkg/config/report_configuration.go @@ -4,6 +4,7 @@ type ReportConfiguration struct { IncludeReportCreationTime bool ReportSchemaIri string LexicalSchemaIri string + BaseIri string } func DefaultReportConfiguration() ReportConfiguration { @@ -11,5 +12,6 @@ func DefaultReportConfiguration() ReportConfiguration { IncludeReportCreationTime: true, ReportSchemaIri: "file:///dialects/validation-report.yaml", LexicalSchemaIri: "file:///dialects/lexical.yaml", + BaseIri: "http://a.ml/vocabularies/validation/report#", } } diff --git a/test/data/integration/profile1/negative.report.jsonld b/test/data/integration/profile1/negative.report.jsonld index c332d355..71caf0db 100644 --- a/test/data/integration/profile1/negative.report.jsonld +++ b/test/data/integration/profile1/negative.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/integration/profile1/negative.report.lexical.jsonld b/test/data/integration/profile1/negative.report.lexical.jsonld index 6bbf5a47..97248cc4 100644 --- a/test/data/integration/profile1/negative.report.lexical.jsonld +++ b/test/data/integration/profile1/negative.report.lexical.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/integration/profile1/positive.report.jsonld b/test/data/integration/profile1/positive.report.jsonld index 7d2e45ad..4caec9e7 100644 --- a/test/data/integration/profile1/positive.report.jsonld +++ b/test/data/integration/profile1/positive.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "conforms": { "@id": "http://www.w3.org/ns/shacl#conforms" }, diff --git a/test/data/integration/profile10/negative.report.jsonld b/test/data/integration/profile10/negative.report.jsonld index b38e7f87..4295eae9 100644 --- a/test/data/integration/profile10/negative.report.jsonld +++ b/test/data/integration/profile10/negative.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/integration/profile10/positive.report.jsonld b/test/data/integration/profile10/positive.report.jsonld index 34da5175..5409ac4b 100644 --- a/test/data/integration/profile10/positive.report.jsonld +++ b/test/data/integration/profile10/positive.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "conforms": { "@id": "http://www.w3.org/ns/shacl#conforms" }, diff --git a/test/data/integration/profile11/negative.report.jsonld b/test/data/integration/profile11/negative.report.jsonld index 3ede1574..af880069 100644 --- a/test/data/integration/profile11/negative.report.jsonld +++ b/test/data/integration/profile11/negative.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/integration/profile11/negative.report.lexical.jsonld b/test/data/integration/profile11/negative.report.lexical.jsonld index 72c8038e..2b670657 100644 --- a/test/data/integration/profile11/negative.report.lexical.jsonld +++ b/test/data/integration/profile11/negative.report.lexical.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/integration/profile11/positive.report.jsonld b/test/data/integration/profile11/positive.report.jsonld index 89a8d503..a654a248 100644 --- a/test/data/integration/profile11/positive.report.jsonld +++ b/test/data/integration/profile11/positive.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "conforms": { "@id": "http://www.w3.org/ns/shacl#conforms" }, diff --git a/test/data/integration/profile12/negative.report.jsonld b/test/data/integration/profile12/negative.report.jsonld index f009e077..f3c7c9a2 100644 --- a/test/data/integration/profile12/negative.report.jsonld +++ b/test/data/integration/profile12/negative.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/integration/profile12/positive.report.jsonld b/test/data/integration/profile12/positive.report.jsonld index 89a8d503..a654a248 100644 --- a/test/data/integration/profile12/positive.report.jsonld +++ b/test/data/integration/profile12/positive.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "conforms": { "@id": "http://www.w3.org/ns/shacl#conforms" }, diff --git a/test/data/integration/profile13/negative.report.jsonld b/test/data/integration/profile13/negative.report.jsonld index 3acd63b9..d8cce6dd 100644 --- a/test/data/integration/profile13/negative.report.jsonld +++ b/test/data/integration/profile13/negative.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/integration/profile13/negative.report.lexical.jsonld b/test/data/integration/profile13/negative.report.lexical.jsonld index 98f4efb3..9f5afb3c 100644 --- a/test/data/integration/profile13/negative.report.lexical.jsonld +++ b/test/data/integration/profile13/negative.report.lexical.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/integration/profile13/positive.report.jsonld b/test/data/integration/profile13/positive.report.jsonld index 82133a3a..b6a4a80f 100644 --- a/test/data/integration/profile13/positive.report.jsonld +++ b/test/data/integration/profile13/positive.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "conforms": { "@id": "http://www.w3.org/ns/shacl#conforms" }, diff --git a/test/data/integration/profile14/negative.report.jsonld b/test/data/integration/profile14/negative.report.jsonld index 266c8f94..9b99f551 100644 --- a/test/data/integration/profile14/negative.report.jsonld +++ b/test/data/integration/profile14/negative.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/integration/profile14/positive.report.jsonld b/test/data/integration/profile14/positive.report.jsonld index 8a938df8..df44cb54 100644 --- a/test/data/integration/profile14/positive.report.jsonld +++ b/test/data/integration/profile14/positive.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "conforms": { "@id": "http://www.w3.org/ns/shacl#conforms" }, diff --git a/test/data/integration/profile15/negative.data.yaml b/test/data/integration/profile15/negative.data.yaml index 8391df61..0c45f93d 100644 --- a/test/data/integration/profile15/negative.data.yaml +++ b/test/data/integration/profile15/negative.data.yaml @@ -19,7 +19,7 @@ components: name: description: a property type: string - required: ["id"] + required: [ "id" ] paths: /users: diff --git a/test/data/integration/profile15/negative.report.jsonld b/test/data/integration/profile15/negative.report.jsonld index d3fc316d..ddd5a868 100644 --- a/test/data/integration/profile15/negative.report.jsonld +++ b/test/data/integration/profile15/negative.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/integration/profile15/negative.report.lexical.jsonld b/test/data/integration/profile15/negative.report.lexical.jsonld index 34bcefb5..9f8523dc 100644 --- a/test/data/integration/profile15/negative.report.lexical.jsonld +++ b/test/data/integration/profile15/negative.report.lexical.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/integration/profile15/positive.data.yaml b/test/data/integration/profile15/positive.data.yaml index e19cb078..2274ab93 100644 --- a/test/data/integration/profile15/positive.data.yaml +++ b/test/data/integration/profile15/positive.data.yaml @@ -19,7 +19,7 @@ components: name: description: a property type: string - required: ["id"] + required: [ "id" ] paths: /users: diff --git a/test/data/integration/profile15/positive.report.jsonld b/test/data/integration/profile15/positive.report.jsonld index 68a8ae9c..0a9e0bea 100644 --- a/test/data/integration/profile15/positive.report.jsonld +++ b/test/data/integration/profile15/positive.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "conforms": { "@id": "http://www.w3.org/ns/shacl#conforms" }, diff --git a/test/data/integration/profile16/negative.data.yaml b/test/data/integration/profile16/negative.data.yaml index 9ca5bb5e..ba688693 100644 --- a/test/data/integration/profile16/negative.data.yaml +++ b/test/data/integration/profile16/negative.data.yaml @@ -19,7 +19,7 @@ components: name: description: a property type: string - required: ["id"] + required: [ "id" ] paths: /users: diff --git a/test/data/integration/profile16/negative.report.jsonld b/test/data/integration/profile16/negative.report.jsonld index 3e96c381..226f8267 100644 --- a/test/data/integration/profile16/negative.report.jsonld +++ b/test/data/integration/profile16/negative.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/integration/profile16/negative.report.lexical.jsonld b/test/data/integration/profile16/negative.report.lexical.jsonld index fcb8b51c..ef659191 100644 --- a/test/data/integration/profile16/negative.report.lexical.jsonld +++ b/test/data/integration/profile16/negative.report.lexical.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/integration/profile16/positive.data.yaml b/test/data/integration/profile16/positive.data.yaml index ea16e868..30ea9392 100644 --- a/test/data/integration/profile16/positive.data.yaml +++ b/test/data/integration/profile16/positive.data.yaml @@ -19,7 +19,7 @@ components: name: description: a property type: string - required: ["id"] + required: [ "id" ] paths: /users: diff --git a/test/data/integration/profile16/positive.report.jsonld b/test/data/integration/profile16/positive.report.jsonld index 68a8ae9c..0a9e0bea 100644 --- a/test/data/integration/profile16/positive.report.jsonld +++ b/test/data/integration/profile16/positive.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "conforms": { "@id": "http://www.w3.org/ns/shacl#conforms" }, diff --git a/test/data/integration/profile17/negative.data.yaml b/test/data/integration/profile17/negative.data.yaml index 5a57aa19..59b0d06a 100644 --- a/test/data/integration/profile17/negative.data.yaml +++ b/test/data/integration/profile17/negative.data.yaml @@ -2,4 +2,4 @@ openapi: 3.0.0 info: title: Example API version: '1.0' -paths: {} +paths: { } diff --git a/test/data/integration/profile17/negative.report.jsonld b/test/data/integration/profile17/negative.report.jsonld index 998578bb..259f6277 100644 --- a/test/data/integration/profile17/negative.report.jsonld +++ b/test/data/integration/profile17/negative.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/integration/profile17/negative.report.lexical.jsonld b/test/data/integration/profile17/negative.report.lexical.jsonld index 5789f4aa..6460f68f 100644 --- a/test/data/integration/profile17/negative.report.lexical.jsonld +++ b/test/data/integration/profile17/negative.report.lexical.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/integration/profile17/positive.data.yaml b/test/data/integration/profile17/positive.data.yaml index a3adcd25..0b4a5fcf 100644 --- a/test/data/integration/profile17/positive.data.yaml +++ b/test/data/integration/profile17/positive.data.yaml @@ -2,4 +2,4 @@ openapi: 3.0.0 info: title: Example API version: 'v1.1.0' -paths: {} +paths: { } diff --git a/test/data/integration/profile17/positive.report.jsonld b/test/data/integration/profile17/positive.report.jsonld index 7d2e45ad..4caec9e7 100644 --- a/test/data/integration/profile17/positive.report.jsonld +++ b/test/data/integration/profile17/positive.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "conforms": { "@id": "http://www.w3.org/ns/shacl#conforms" }, diff --git a/test/data/integration/profile18/negative.report.jsonld b/test/data/integration/profile18/negative.report.jsonld index 4ce00efc..b6076a9e 100644 --- a/test/data/integration/profile18/negative.report.jsonld +++ b/test/data/integration/profile18/negative.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/integration/profile18/positive.data.yaml b/test/data/integration/profile18/positive.data.yaml index a215c7be..c7547835 100644 --- a/test/data/integration/profile18/positive.data.yaml +++ b/test/data/integration/profile18/positive.data.yaml @@ -2,7 +2,7 @@ openapi: "3.0.0" info: title: example API version: "1.0.0" -paths: {} +paths: { } x-wadus: hola: mundo things: diff --git a/test/data/integration/profile18/positive.report.jsonld b/test/data/integration/profile18/positive.report.jsonld index f714d27b..ba6b23bb 100644 --- a/test/data/integration/profile18/positive.report.jsonld +++ b/test/data/integration/profile18/positive.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "conforms": { "@id": "http://www.w3.org/ns/shacl#conforms" }, diff --git a/test/data/integration/profile19/negative.report.jsonld b/test/data/integration/profile19/negative.report.jsonld index f7264350..0d9bc04a 100644 --- a/test/data/integration/profile19/negative.report.jsonld +++ b/test/data/integration/profile19/negative.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/integration/profile19/negative.report.lexical.jsonld b/test/data/integration/profile19/negative.report.lexical.jsonld index ab1cae13..1a8c9ba4 100644 --- a/test/data/integration/profile19/negative.report.lexical.jsonld +++ b/test/data/integration/profile19/negative.report.lexical.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/integration/profile19/positive.report.jsonld b/test/data/integration/profile19/positive.report.jsonld index f714d27b..ba6b23bb 100644 --- a/test/data/integration/profile19/positive.report.jsonld +++ b/test/data/integration/profile19/positive.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "conforms": { "@id": "http://www.w3.org/ns/shacl#conforms" }, diff --git a/test/data/integration/profile2/negative.report.jsonld b/test/data/integration/profile2/negative.report.jsonld index cf11b642..79f132d1 100644 --- a/test/data/integration/profile2/negative.report.jsonld +++ b/test/data/integration/profile2/negative.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/integration/profile2/negative.report.lexical.jsonld b/test/data/integration/profile2/negative.report.lexical.jsonld index 0a876a17..69405d3f 100644 --- a/test/data/integration/profile2/negative.report.lexical.jsonld +++ b/test/data/integration/profile2/negative.report.lexical.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/integration/profile2/positive.report.jsonld b/test/data/integration/profile2/positive.report.jsonld index dba629f3..b7473abd 100644 --- a/test/data/integration/profile2/positive.report.jsonld +++ b/test/data/integration/profile2/positive.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "conforms": { "@id": "http://www.w3.org/ns/shacl#conforms" }, diff --git a/test/data/integration/profile20/negative.report.jsonld b/test/data/integration/profile20/negative.report.jsonld index e88791e4..a10d55b8 100644 --- a/test/data/integration/profile20/negative.report.jsonld +++ b/test/data/integration/profile20/negative.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/integration/profile20/negative.report.lexical.jsonld b/test/data/integration/profile20/negative.report.lexical.jsonld index 993bc327..49b057e8 100644 --- a/test/data/integration/profile20/negative.report.lexical.jsonld +++ b/test/data/integration/profile20/negative.report.lexical.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/integration/profile20/positive.report.jsonld b/test/data/integration/profile20/positive.report.jsonld index f714d27b..ba6b23bb 100644 --- a/test/data/integration/profile20/positive.report.jsonld +++ b/test/data/integration/profile20/positive.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "conforms": { "@id": "http://www.w3.org/ns/shacl#conforms" }, diff --git a/test/data/integration/profile20/profile.yaml b/test/data/integration/profile20/profile.yaml index 7a99d608..65276159 100644 --- a/test/data/integration/profile20/profile.yaml +++ b/test/data/integration/profile20/profile.yaml @@ -8,6 +8,6 @@ validations: message: wadus is a mandatory extension targetClass: data.Scalar propertyConstraints: - apiExt.wadus^ / apiContract.method : + apiExt.wadus^ / apiContract.method: minCount: 1 pattern: "get" \ No newline at end of file diff --git a/test/data/integration/profile21/negative.report.jsonld b/test/data/integration/profile21/negative.report.jsonld index 4c3dd377..de50be89 100644 --- a/test/data/integration/profile21/negative.report.jsonld +++ b/test/data/integration/profile21/negative.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/integration/profile21/negative.report.lexical.jsonld b/test/data/integration/profile21/negative.report.lexical.jsonld index 8209bd73..48e945ae 100644 --- a/test/data/integration/profile21/negative.report.lexical.jsonld +++ b/test/data/integration/profile21/negative.report.lexical.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/integration/profile21/positive.report.jsonld b/test/data/integration/profile21/positive.report.jsonld index f714d27b..ba6b23bb 100644 --- a/test/data/integration/profile21/positive.report.jsonld +++ b/test/data/integration/profile21/positive.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "conforms": { "@id": "http://www.w3.org/ns/shacl#conforms" }, diff --git a/test/data/integration/profile22/negative.report.jsonld b/test/data/integration/profile22/negative.report.jsonld index 0329ac36..ca64f6e2 100644 --- a/test/data/integration/profile22/negative.report.jsonld +++ b/test/data/integration/profile22/negative.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/integration/profile22/negative.report.lexical.jsonld b/test/data/integration/profile22/negative.report.lexical.jsonld index 5d77c570..0e420c3a 100644 --- a/test/data/integration/profile22/negative.report.lexical.jsonld +++ b/test/data/integration/profile22/negative.report.lexical.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/integration/profile22/positive.report.jsonld b/test/data/integration/profile22/positive.report.jsonld index adec0d91..493094a6 100644 --- a/test/data/integration/profile22/positive.report.jsonld +++ b/test/data/integration/profile22/positive.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "conforms": { "@id": "http://www.w3.org/ns/shacl#conforms" }, diff --git a/test/data/integration/profile22/profile.yaml b/test/data/integration/profile22/profile.yaml index 2d7e98e4..98a4f79c 100644 --- a/test/data/integration/profile22/profile.yaml +++ b/test/data/integration/profile22/profile.yaml @@ -14,5 +14,5 @@ validations: validation: propertyConstraints: '@type': - containsAll: - - http://a.ml/vocabularies/apiContract#Trait + containsAll: + - http://a.ml/vocabularies/apiContract#Trait diff --git a/test/data/integration/profile23/negative.report.jsonld b/test/data/integration/profile23/negative.report.jsonld index 0329ac36..ca64f6e2 100644 --- a/test/data/integration/profile23/negative.report.jsonld +++ b/test/data/integration/profile23/negative.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/integration/profile23/negative.report.lexical.jsonld b/test/data/integration/profile23/negative.report.lexical.jsonld index f510281f..028cc463 100644 --- a/test/data/integration/profile23/negative.report.lexical.jsonld +++ b/test/data/integration/profile23/negative.report.lexical.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/integration/profile23/positive.report.jsonld b/test/data/integration/profile23/positive.report.jsonld index adec0d91..493094a6 100644 --- a/test/data/integration/profile23/positive.report.jsonld +++ b/test/data/integration/profile23/positive.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "conforms": { "@id": "http://www.w3.org/ns/shacl#conforms" }, diff --git a/test/data/integration/profile24/negative.report.jsonld b/test/data/integration/profile24/negative.report.jsonld index b03db81e..fb2c350c 100644 --- a/test/data/integration/profile24/negative.report.jsonld +++ b/test/data/integration/profile24/negative.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/integration/profile24/negative.report.lexical.jsonld b/test/data/integration/profile24/negative.report.lexical.jsonld index 6c18a46b..abfd11b8 100644 --- a/test/data/integration/profile24/negative.report.lexical.jsonld +++ b/test/data/integration/profile24/negative.report.lexical.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/integration/profile24/positive.report.jsonld b/test/data/integration/profile24/positive.report.jsonld index adec0d91..493094a6 100644 --- a/test/data/integration/profile24/positive.report.jsonld +++ b/test/data/integration/profile24/positive.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "conforms": { "@id": "http://www.w3.org/ns/shacl#conforms" }, diff --git a/test/data/integration/profile25/negative.report.jsonld b/test/data/integration/profile25/negative.report.jsonld index 11833bb0..8106d5fb 100644 --- a/test/data/integration/profile25/negative.report.jsonld +++ b/test/data/integration/profile25/negative.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/integration/profile25/negative.report.lexical.jsonld b/test/data/integration/profile25/negative.report.lexical.jsonld index df4b1248..1e1703f1 100644 --- a/test/data/integration/profile25/negative.report.lexical.jsonld +++ b/test/data/integration/profile25/negative.report.lexical.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/integration/profile25/positive.report.jsonld b/test/data/integration/profile25/positive.report.jsonld index adec0d91..493094a6 100644 --- a/test/data/integration/profile25/positive.report.jsonld +++ b/test/data/integration/profile25/positive.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "conforms": { "@id": "http://www.w3.org/ns/shacl#conforms" }, diff --git a/test/data/integration/profile26/negative.report.jsonld b/test/data/integration/profile26/negative.report.jsonld index 89205a34..12095962 100644 --- a/test/data/integration/profile26/negative.report.jsonld +++ b/test/data/integration/profile26/negative.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/integration/profile26/positive.report.jsonld b/test/data/integration/profile26/positive.report.jsonld index 630e5ab6..17c3ca5a 100644 --- a/test/data/integration/profile26/positive.report.jsonld +++ b/test/data/integration/profile26/positive.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "conforms": { "@id": "http://www.w3.org/ns/shacl#conforms" }, diff --git a/test/data/integration/profile27/negative.report.jsonld b/test/data/integration/profile27/negative.report.jsonld index 89205a34..12095962 100644 --- a/test/data/integration/profile27/negative.report.jsonld +++ b/test/data/integration/profile27/negative.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/integration/profile27/positive.report.jsonld b/test/data/integration/profile27/positive.report.jsonld index 630e5ab6..17c3ca5a 100644 --- a/test/data/integration/profile27/positive.report.jsonld +++ b/test/data/integration/profile27/positive.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "conforms": { "@id": "http://www.w3.org/ns/shacl#conforms" }, diff --git a/test/data/integration/profile28/negative.report.jsonld b/test/data/integration/profile28/negative.report.jsonld index 356c0287..cf946824 100644 --- a/test/data/integration/profile28/negative.report.jsonld +++ b/test/data/integration/profile28/negative.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/integration/profile28/negative.report.lexical.jsonld b/test/data/integration/profile28/negative.report.lexical.jsonld index 7173f584..1ed068f2 100644 --- a/test/data/integration/profile28/negative.report.lexical.jsonld +++ b/test/data/integration/profile28/negative.report.lexical.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/integration/profile28/positive.report.jsonld b/test/data/integration/profile28/positive.report.jsonld index 5c02f398..ba445ae9 100644 --- a/test/data/integration/profile28/positive.report.jsonld +++ b/test/data/integration/profile28/positive.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "conforms": { "@id": "http://www.w3.org/ns/shacl#conforms" }, diff --git a/test/data/integration/profile29/negative.report.jsonld b/test/data/integration/profile29/negative.report.jsonld index 9dcb1dbb..b148603a 100644 --- a/test/data/integration/profile29/negative.report.jsonld +++ b/test/data/integration/profile29/negative.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/integration/profile29/positive.report.jsonld b/test/data/integration/profile29/positive.report.jsonld index 1962afae..0deefcb1 100644 --- a/test/data/integration/profile29/positive.report.jsonld +++ b/test/data/integration/profile29/positive.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "conforms": { "@id": "http://www.w3.org/ns/shacl#conforms" }, diff --git a/test/data/integration/profile3/negative.report.jsonld b/test/data/integration/profile3/negative.report.jsonld index 690b4147..914b852b 100644 --- a/test/data/integration/profile3/negative.report.jsonld +++ b/test/data/integration/profile3/negative.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/integration/profile3/negative.report.lexical.jsonld b/test/data/integration/profile3/negative.report.lexical.jsonld index 4b435b52..8aa14f53 100644 --- a/test/data/integration/profile3/negative.report.lexical.jsonld +++ b/test/data/integration/profile3/negative.report.lexical.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/integration/profile3/positive.report.jsonld b/test/data/integration/profile3/positive.report.jsonld index a7310419..e0402dc9 100644 --- a/test/data/integration/profile3/positive.report.jsonld +++ b/test/data/integration/profile3/positive.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "conforms": { "@id": "http://www.w3.org/ns/shacl#conforms" }, diff --git a/test/data/integration/profile4/negative.report.jsonld b/test/data/integration/profile4/negative.report.jsonld index fbaa2a98..fd82ebf6 100644 --- a/test/data/integration/profile4/negative.report.jsonld +++ b/test/data/integration/profile4/negative.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/integration/profile4/negative.report.lexical.jsonld b/test/data/integration/profile4/negative.report.lexical.jsonld index 577a5135..cab949f7 100644 --- a/test/data/integration/profile4/negative.report.lexical.jsonld +++ b/test/data/integration/profile4/negative.report.lexical.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/integration/profile4/positive.report.jsonld b/test/data/integration/profile4/positive.report.jsonld index 39f7a4d4..d93ceee5 100644 --- a/test/data/integration/profile4/positive.report.jsonld +++ b/test/data/integration/profile4/positive.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "conforms": { "@id": "http://www.w3.org/ns/shacl#conforms" }, diff --git a/test/data/integration/profile5/negative.data.yaml b/test/data/integration/profile5/negative.data.yaml index 633e6504..d416cb92 100644 --- a/test/data/integration/profile5/negative.data.yaml +++ b/test/data/integration/profile5/negative.data.yaml @@ -10,4 +10,4 @@ components: minLength: 500 maxLength: 100 -paths: {} \ No newline at end of file +paths: { } \ No newline at end of file diff --git a/test/data/integration/profile5/negative.report.jsonld b/test/data/integration/profile5/negative.report.jsonld index 3f48235b..b815d5ee 100644 --- a/test/data/integration/profile5/negative.report.jsonld +++ b/test/data/integration/profile5/negative.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/integration/profile5/negative.report.lexical.jsonld b/test/data/integration/profile5/negative.report.lexical.jsonld index aed4c8db..746d76f5 100644 --- a/test/data/integration/profile5/negative.report.lexical.jsonld +++ b/test/data/integration/profile5/negative.report.lexical.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/integration/profile5/positive.data.yaml b/test/data/integration/profile5/positive.data.yaml index 678837a1..e3de208b 100644 --- a/test/data/integration/profile5/positive.data.yaml +++ b/test/data/integration/profile5/positive.data.yaml @@ -10,4 +10,4 @@ components: minLength: 100 maxLength: 500 -paths: {} \ No newline at end of file +paths: { } \ No newline at end of file diff --git a/test/data/integration/profile5/positive.report.jsonld b/test/data/integration/profile5/positive.report.jsonld index 5ae22672..64919ebf 100644 --- a/test/data/integration/profile5/positive.report.jsonld +++ b/test/data/integration/profile5/positive.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "conforms": { "@id": "http://www.w3.org/ns/shacl#conforms" }, diff --git a/test/data/integration/profile6/negative.report.jsonld b/test/data/integration/profile6/negative.report.jsonld index 01dd0515..f9670a43 100644 --- a/test/data/integration/profile6/negative.report.jsonld +++ b/test/data/integration/profile6/negative.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/integration/profile6/negative.report.lexical.jsonld b/test/data/integration/profile6/negative.report.lexical.jsonld index 445dd5dd..c7e819e1 100644 --- a/test/data/integration/profile6/negative.report.lexical.jsonld +++ b/test/data/integration/profile6/negative.report.lexical.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/integration/profile6/positive.report.jsonld b/test/data/integration/profile6/positive.report.jsonld index 5ae22672..64919ebf 100644 --- a/test/data/integration/profile6/positive.report.jsonld +++ b/test/data/integration/profile6/positive.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "conforms": { "@id": "http://www.w3.org/ns/shacl#conforms" }, diff --git a/test/data/integration/profile7/negative.report.jsonld b/test/data/integration/profile7/negative.report.jsonld index 862e585d..2ce2ba15 100644 --- a/test/data/integration/profile7/negative.report.jsonld +++ b/test/data/integration/profile7/negative.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/integration/profile7/negative.report.lexical.jsonld b/test/data/integration/profile7/negative.report.lexical.jsonld index a99199f7..d5262209 100644 --- a/test/data/integration/profile7/negative.report.lexical.jsonld +++ b/test/data/integration/profile7/negative.report.lexical.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/integration/profile7/positive.report.jsonld b/test/data/integration/profile7/positive.report.jsonld index fbaf1b23..6f00f9db 100644 --- a/test/data/integration/profile7/positive.report.jsonld +++ b/test/data/integration/profile7/positive.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "conforms": { "@id": "http://www.w3.org/ns/shacl#conforms" }, diff --git a/test/data/integration/profile7/profile.yaml b/test/data/integration/profile7/profile.yaml index b1c39bf4..db014674 100644 --- a/test/data/integration/profile7/profile.yaml +++ b/test/data/integration/profile7/profile.yaml @@ -23,7 +23,7 @@ validations: targetClass: apiContract.Operation message: Scalars in parameters must have minLength defined propertyConstraints: - apiContract.expects / (apiContract.parameter / shapes.schema | apiContract.payload / shapes.schema / shacl.property / shapes.range) : + apiContract.expects / (apiContract.parameter / shapes.schema | apiContract.payload / shapes.schema / shacl.property / shapes.range): nested: propertyConstraints: shacl.minLength: diff --git a/test/data/integration/profile8/negative.report.jsonld b/test/data/integration/profile8/negative.report.jsonld index f0168154..70c4961e 100644 --- a/test/data/integration/profile8/negative.report.jsonld +++ b/test/data/integration/profile8/negative.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/integration/profile8/negative.report.lexical.jsonld b/test/data/integration/profile8/negative.report.lexical.jsonld index d24f032c..48fa1ee0 100644 --- a/test/data/integration/profile8/negative.report.lexical.jsonld +++ b/test/data/integration/profile8/negative.report.lexical.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/integration/profile8/positive.report.jsonld b/test/data/integration/profile8/positive.report.jsonld index 9fd59788..3be1dd6a 100644 --- a/test/data/integration/profile8/positive.report.jsonld +++ b/test/data/integration/profile8/positive.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "conforms": { "@id": "http://www.w3.org/ns/shacl#conforms" }, diff --git a/test/data/integration/profile9/negative.report.jsonld b/test/data/integration/profile9/negative.report.jsonld index 98269de6..f722e4fd 100644 --- a/test/data/integration/profile9/negative.report.jsonld +++ b/test/data/integration/profile9/negative.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/integration/profile9/negative.report.lexical.jsonld b/test/data/integration/profile9/negative.report.lexical.jsonld index 2d6b5568..e5d78d4a 100644 --- a/test/data/integration/profile9/negative.report.lexical.jsonld +++ b/test/data/integration/profile9/negative.report.lexical.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/integration/profile9/positive.report.jsonld b/test/data/integration/profile9/positive.report.jsonld index 6599440c..c15f2f58 100644 --- a/test/data/integration/profile9/positive.report.jsonld +++ b/test/data/integration/profile9/positive.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "conforms": { "@id": "http://www.w3.org/ns/shacl#conforms" }, diff --git a/test/data/production/asyncapi/negative1.yaml.report.jsonld b/test/data/production/asyncapi/negative1.yaml.report.jsonld index d7fc4895..1a707800 100644 --- a/test/data/production/asyncapi/negative1.yaml.report.jsonld +++ b/test/data/production/asyncapi/negative1.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/asyncapi/negative10.yaml.report.jsonld b/test/data/production/asyncapi/negative10.yaml.report.jsonld index 8b4780e1..c5ec95f5 100644 --- a/test/data/production/asyncapi/negative10.yaml.report.jsonld +++ b/test/data/production/asyncapi/negative10.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/asyncapi/negative11.yaml.report.jsonld b/test/data/production/asyncapi/negative11.yaml.report.jsonld index eac7dc6f..b753300d 100644 --- a/test/data/production/asyncapi/negative11.yaml.report.jsonld +++ b/test/data/production/asyncapi/negative11.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/asyncapi/negative12.yaml.report.jsonld b/test/data/production/asyncapi/negative12.yaml.report.jsonld index 804a5494..8d518439 100644 --- a/test/data/production/asyncapi/negative12.yaml.report.jsonld +++ b/test/data/production/asyncapi/negative12.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/asyncapi/negative13.yaml.report.jsonld b/test/data/production/asyncapi/negative13.yaml.report.jsonld index 307a5a5d..bf89394f 100644 --- a/test/data/production/asyncapi/negative13.yaml.report.jsonld +++ b/test/data/production/asyncapi/negative13.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/asyncapi/negative14.yaml.report.jsonld b/test/data/production/asyncapi/negative14.yaml.report.jsonld index 42b4c1a1..1a70c131 100644 --- a/test/data/production/asyncapi/negative14.yaml.report.jsonld +++ b/test/data/production/asyncapi/negative14.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/asyncapi/negative15.yaml.report.jsonld b/test/data/production/asyncapi/negative15.yaml.report.jsonld index 28c28123..4009bccd 100644 --- a/test/data/production/asyncapi/negative15.yaml.report.jsonld +++ b/test/data/production/asyncapi/negative15.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/asyncapi/negative16.yaml.report.jsonld b/test/data/production/asyncapi/negative16.yaml.report.jsonld index 9c701485..688b1f14 100644 --- a/test/data/production/asyncapi/negative16.yaml.report.jsonld +++ b/test/data/production/asyncapi/negative16.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/asyncapi/negative17.yaml.report.jsonld b/test/data/production/asyncapi/negative17.yaml.report.jsonld index c17d995a..5d919b53 100644 --- a/test/data/production/asyncapi/negative17.yaml.report.jsonld +++ b/test/data/production/asyncapi/negative17.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/asyncapi/negative18.yaml.report.jsonld b/test/data/production/asyncapi/negative18.yaml.report.jsonld index 729bca75..a875cf7b 100644 --- a/test/data/production/asyncapi/negative18.yaml.report.jsonld +++ b/test/data/production/asyncapi/negative18.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/asyncapi/negative19.yaml.report.jsonld b/test/data/production/asyncapi/negative19.yaml.report.jsonld index fafb6b41..6090b834 100644 --- a/test/data/production/asyncapi/negative19.yaml.report.jsonld +++ b/test/data/production/asyncapi/negative19.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/asyncapi/negative19b.yaml.report.jsonld b/test/data/production/asyncapi/negative19b.yaml.report.jsonld index f037df49..d8144bff 100644 --- a/test/data/production/asyncapi/negative19b.yaml.report.jsonld +++ b/test/data/production/asyncapi/negative19b.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/asyncapi/negative2.yaml.report.jsonld b/test/data/production/asyncapi/negative2.yaml.report.jsonld index daa73179..a2b18a42 100644 --- a/test/data/production/asyncapi/negative2.yaml.report.jsonld +++ b/test/data/production/asyncapi/negative2.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/asyncapi/negative3.yaml.report.jsonld b/test/data/production/asyncapi/negative3.yaml.report.jsonld index 86ce15f6..9ec9b759 100644 --- a/test/data/production/asyncapi/negative3.yaml.report.jsonld +++ b/test/data/production/asyncapi/negative3.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/asyncapi/negative4.yaml.report.jsonld b/test/data/production/asyncapi/negative4.yaml.report.jsonld index 73bd33ce..3855f1b7 100644 --- a/test/data/production/asyncapi/negative4.yaml.report.jsonld +++ b/test/data/production/asyncapi/negative4.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/asyncapi/negative5.yaml.report.jsonld b/test/data/production/asyncapi/negative5.yaml.report.jsonld index 455c0cee..f315157c 100644 --- a/test/data/production/asyncapi/negative5.yaml.report.jsonld +++ b/test/data/production/asyncapi/negative5.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/asyncapi/negative6.yaml.report.jsonld b/test/data/production/asyncapi/negative6.yaml.report.jsonld index 937ac1c5..01659314 100644 --- a/test/data/production/asyncapi/negative6.yaml.report.jsonld +++ b/test/data/production/asyncapi/negative6.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/asyncapi/negative6b.yaml.report.jsonld b/test/data/production/asyncapi/negative6b.yaml.report.jsonld index e64b02f5..44e12f07 100644 --- a/test/data/production/asyncapi/negative6b.yaml.report.jsonld +++ b/test/data/production/asyncapi/negative6b.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/asyncapi/negative7.yaml.report.jsonld b/test/data/production/asyncapi/negative7.yaml.report.jsonld index 525d1992..f10525a4 100644 --- a/test/data/production/asyncapi/negative7.yaml.report.jsonld +++ b/test/data/production/asyncapi/negative7.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/asyncapi/negative8.yaml.report.jsonld b/test/data/production/asyncapi/negative8.yaml.report.jsonld index 477dab7c..84ed392b 100644 --- a/test/data/production/asyncapi/negative8.yaml.report.jsonld +++ b/test/data/production/asyncapi/negative8.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/asyncapi/negative9.yaml.report.jsonld b/test/data/production/asyncapi/negative9.yaml.report.jsonld index 6d8a6bd3..2ac87057 100644 --- a/test/data/production/asyncapi/negative9.yaml.report.jsonld +++ b/test/data/production/asyncapi/negative9.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/asyncapi/positive1.yaml.report.jsonld b/test/data/production/asyncapi/positive1.yaml.report.jsonld index 5284d797..beda3e38 100644 --- a/test/data/production/asyncapi/positive1.yaml.report.jsonld +++ b/test/data/production/asyncapi/positive1.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "conforms": { "@id": "http://www.w3.org/ns/shacl#conforms" }, diff --git a/test/data/production/asyncapi/positive3.yaml.report.jsonld b/test/data/production/asyncapi/positive3.yaml.report.jsonld index 5284d797..beda3e38 100644 --- a/test/data/production/asyncapi/positive3.yaml.report.jsonld +++ b/test/data/production/asyncapi/positive3.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "conforms": { "@id": "http://www.w3.org/ns/shacl#conforms" }, diff --git a/test/data/production/asyncapi/positive4.yaml.report.jsonld b/test/data/production/asyncapi/positive4.yaml.report.jsonld index 5284d797..beda3e38 100644 --- a/test/data/production/asyncapi/positive4.yaml.report.jsonld +++ b/test/data/production/asyncapi/positive4.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "conforms": { "@id": "http://www.w3.org/ns/shacl#conforms" }, diff --git a/test/data/production/best-practices/negative1.raml.report.jsonld b/test/data/production/best-practices/negative1.raml.report.jsonld index 6d93451a..2006d329 100644 --- a/test/data/production/best-practices/negative1.raml.report.jsonld +++ b/test/data/production/best-practices/negative1.raml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/best-practices/negative1.yaml.report.jsonld b/test/data/production/best-practices/negative1.yaml.report.jsonld index cc5e686a..9201b3bf 100644 --- a/test/data/production/best-practices/negative1.yaml.report.jsonld +++ b/test/data/production/best-practices/negative1.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/best-practices/negative10.raml.report.jsonld b/test/data/production/best-practices/negative10.raml.report.jsonld index 009e1ace..fb8b486b 100644 --- a/test/data/production/best-practices/negative10.raml.report.jsonld +++ b/test/data/production/best-practices/negative10.raml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/best-practices/negative11.raml.report.jsonld b/test/data/production/best-practices/negative11.raml.report.jsonld index 1791ea17..c51b2d3f 100644 --- a/test/data/production/best-practices/negative11.raml.report.jsonld +++ b/test/data/production/best-practices/negative11.raml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/best-practices/negative2.yaml.report.jsonld b/test/data/production/best-practices/negative2.yaml.report.jsonld index 079527c4..80a24c3f 100644 --- a/test/data/production/best-practices/negative2.yaml.report.jsonld +++ b/test/data/production/best-practices/negative2.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/best-practices/negative3.yaml.report.jsonld b/test/data/production/best-practices/negative3.yaml.report.jsonld index 4fcc5f9f..a2bf7df6 100644 --- a/test/data/production/best-practices/negative3.yaml.report.jsonld +++ b/test/data/production/best-practices/negative3.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/best-practices/negative4.yaml.report.jsonld b/test/data/production/best-practices/negative4.yaml.report.jsonld index 1f3b0654..806716e5 100644 --- a/test/data/production/best-practices/negative4.yaml.report.jsonld +++ b/test/data/production/best-practices/negative4.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/best-practices/negative5.yaml.report.jsonld b/test/data/production/best-practices/negative5.yaml.report.jsonld index d9002882..0b7fac57 100644 --- a/test/data/production/best-practices/negative5.yaml.report.jsonld +++ b/test/data/production/best-practices/negative5.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/best-practices/negative6.yaml.report.jsonld b/test/data/production/best-practices/negative6.yaml.report.jsonld index c2119711..b08dfd9c 100644 --- a/test/data/production/best-practices/negative6.yaml.report.jsonld +++ b/test/data/production/best-practices/negative6.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/best-practices/negative7.yaml.report.jsonld b/test/data/production/best-practices/negative7.yaml.report.jsonld index 097d9117..e64c76ed 100644 --- a/test/data/production/best-practices/negative7.yaml.report.jsonld +++ b/test/data/production/best-practices/negative7.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/best-practices/negative8.yaml.report.jsonld b/test/data/production/best-practices/negative8.yaml.report.jsonld index fb7ad84d..b7f5a2ff 100644 --- a/test/data/production/best-practices/negative8.yaml.report.jsonld +++ b/test/data/production/best-practices/negative8.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/best-practices/negative9.yaml.report.jsonld b/test/data/production/best-practices/negative9.yaml.report.jsonld index a24fb68f..d03df1c9 100644 --- a/test/data/production/best-practices/negative9.yaml.report.jsonld +++ b/test/data/production/best-practices/negative9.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/best-practices/positive1.yaml.report.jsonld b/test/data/production/best-practices/positive1.yaml.report.jsonld index 430cc0c6..b80993d1 100644 --- a/test/data/production/best-practices/positive1.yaml.report.jsonld +++ b/test/data/production/best-practices/positive1.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "conforms": { "@id": "http://www.w3.org/ns/shacl#conforms" }, diff --git a/test/data/production/best-practices/positive2.raml.report.jsonld b/test/data/production/best-practices/positive2.raml.report.jsonld index 430cc0c6..b80993d1 100644 --- a/test/data/production/best-practices/positive2.raml.report.jsonld +++ b/test/data/production/best-practices/positive2.raml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "conforms": { "@id": "http://www.w3.org/ns/shacl#conforms" }, diff --git a/test/data/production/best-practices/positive3.yaml.report.jsonld b/test/data/production/best-practices/positive3.yaml.report.jsonld index 430cc0c6..b80993d1 100644 --- a/test/data/production/best-practices/positive3.yaml.report.jsonld +++ b/test/data/production/best-practices/positive3.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "conforms": { "@id": "http://www.w3.org/ns/shacl#conforms" }, diff --git a/test/data/production/best-practices/positive4.raml.report.jsonld b/test/data/production/best-practices/positive4.raml.report.jsonld index 430cc0c6..b80993d1 100644 --- a/test/data/production/best-practices/positive4.raml.report.jsonld +++ b/test/data/production/best-practices/positive4.raml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "conforms": { "@id": "http://www.w3.org/ns/shacl#conforms" }, diff --git a/test/data/production/datagraph/negative1.yaml.report.jsonld b/test/data/production/datagraph/negative1.yaml.report.jsonld index ad54f27a..89243bff 100644 --- a/test/data/production/datagraph/negative1.yaml.report.jsonld +++ b/test/data/production/datagraph/negative1.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/datagraph/negative10.yaml.report.jsonld b/test/data/production/datagraph/negative10.yaml.report.jsonld index 505c74a7..45451311 100644 --- a/test/data/production/datagraph/negative10.yaml.report.jsonld +++ b/test/data/production/datagraph/negative10.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/datagraph/negative11.yaml.report.jsonld b/test/data/production/datagraph/negative11.yaml.report.jsonld index 23ab1566..e1b8fb54 100644 --- a/test/data/production/datagraph/negative11.yaml.report.jsonld +++ b/test/data/production/datagraph/negative11.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/datagraph/negative12.yaml.report.jsonld b/test/data/production/datagraph/negative12.yaml.report.jsonld index 80382ca6..dd9586b2 100644 --- a/test/data/production/datagraph/negative12.yaml.report.jsonld +++ b/test/data/production/datagraph/negative12.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/datagraph/negative13.yaml.report.jsonld b/test/data/production/datagraph/negative13.yaml.report.jsonld index c81b0d76..624fcc56 100644 --- a/test/data/production/datagraph/negative13.yaml.report.jsonld +++ b/test/data/production/datagraph/negative13.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/datagraph/negative2.yaml.report.jsonld b/test/data/production/datagraph/negative2.yaml.report.jsonld index 2bd08eb6..99715b6f 100644 --- a/test/data/production/datagraph/negative2.yaml.report.jsonld +++ b/test/data/production/datagraph/negative2.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/datagraph/negative3.yaml.report.jsonld b/test/data/production/datagraph/negative3.yaml.report.jsonld index 8bc5e0d8..37feff8d 100644 --- a/test/data/production/datagraph/negative3.yaml.report.jsonld +++ b/test/data/production/datagraph/negative3.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/datagraph/negative4.yaml.report.jsonld b/test/data/production/datagraph/negative4.yaml.report.jsonld index 902f5331..75804609 100644 --- a/test/data/production/datagraph/negative4.yaml.report.jsonld +++ b/test/data/production/datagraph/negative4.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/datagraph/negative5.yaml.report.jsonld b/test/data/production/datagraph/negative5.yaml.report.jsonld index abdaae7b..78ace860 100644 --- a/test/data/production/datagraph/negative5.yaml.report.jsonld +++ b/test/data/production/datagraph/negative5.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/datagraph/negative6.yaml.report.jsonld b/test/data/production/datagraph/negative6.yaml.report.jsonld index f275a769..e6403c8c 100644 --- a/test/data/production/datagraph/negative6.yaml.report.jsonld +++ b/test/data/production/datagraph/negative6.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/datagraph/negative7.yaml.report.jsonld b/test/data/production/datagraph/negative7.yaml.report.jsonld index 43aca069..de4f5e00 100644 --- a/test/data/production/datagraph/negative7.yaml.report.jsonld +++ b/test/data/production/datagraph/negative7.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/datagraph/negative8.yaml.report.jsonld b/test/data/production/datagraph/negative8.yaml.report.jsonld index 02a02195..27509ae3 100644 --- a/test/data/production/datagraph/negative8.yaml.report.jsonld +++ b/test/data/production/datagraph/negative8.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/datagraph/negative9.yaml.report.jsonld b/test/data/production/datagraph/negative9.yaml.report.jsonld index 5268bcac..2a192e4a 100644 --- a/test/data/production/datagraph/negative9.yaml.report.jsonld +++ b/test/data/production/datagraph/negative9.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/datagraph/positive1.yaml.report.jsonld b/test/data/production/datagraph/positive1.yaml.report.jsonld index cc053825..97e8130d 100644 --- a/test/data/production/datagraph/positive1.yaml.report.jsonld +++ b/test/data/production/datagraph/positive1.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "conforms": { "@id": "http://www.w3.org/ns/shacl#conforms" }, diff --git a/test/data/production/datagraph/positive12.yaml.report.jsonld b/test/data/production/datagraph/positive12.yaml.report.jsonld index cc053825..97e8130d 100644 --- a/test/data/production/datagraph/positive12.yaml.report.jsonld +++ b/test/data/production/datagraph/positive12.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "conforms": { "@id": "http://www.w3.org/ns/shacl#conforms" }, diff --git a/test/data/production/datagraph/positive2.yaml.report.jsonld b/test/data/production/datagraph/positive2.yaml.report.jsonld index cc053825..97e8130d 100644 --- a/test/data/production/datagraph/positive2.yaml.report.jsonld +++ b/test/data/production/datagraph/positive2.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "conforms": { "@id": "http://www.w3.org/ns/shacl#conforms" }, diff --git a/test/data/production/datagraph/positive3.yaml.report.jsonld b/test/data/production/datagraph/positive3.yaml.report.jsonld index cc053825..97e8130d 100644 --- a/test/data/production/datagraph/positive3.yaml.report.jsonld +++ b/test/data/production/datagraph/positive3.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "conforms": { "@id": "http://www.w3.org/ns/shacl#conforms" }, diff --git a/test/data/production/datagraph/positive4.yaml.report.jsonld b/test/data/production/datagraph/positive4.yaml.report.jsonld index cc053825..97e8130d 100644 --- a/test/data/production/datagraph/positive4.yaml.report.jsonld +++ b/test/data/production/datagraph/positive4.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "conforms": { "@id": "http://www.w3.org/ns/shacl#conforms" }, diff --git a/test/data/production/datagraph/positive5.yaml.report.jsonld b/test/data/production/datagraph/positive5.yaml.report.jsonld index cc053825..97e8130d 100644 --- a/test/data/production/datagraph/positive5.yaml.report.jsonld +++ b/test/data/production/datagraph/positive5.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "conforms": { "@id": "http://www.w3.org/ns/shacl#conforms" }, diff --git a/test/data/production/datagraph/positive9.yaml.report.jsonld b/test/data/production/datagraph/positive9.yaml.report.jsonld index cc053825..97e8130d 100644 --- a/test/data/production/datagraph/positive9.yaml.report.jsonld +++ b/test/data/production/datagraph/positive9.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "conforms": { "@id": "http://www.w3.org/ns/shacl#conforms" }, diff --git a/test/data/production/json-api/negative1.yaml.report.jsonld b/test/data/production/json-api/negative1.yaml.report.jsonld index a8c114f1..aa81e0c1 100644 --- a/test/data/production/json-api/negative1.yaml.report.jsonld +++ b/test/data/production/json-api/negative1.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/json-api/negative10.yaml.report.jsonld b/test/data/production/json-api/negative10.yaml.report.jsonld index 8a5d5693..7d1ee7ee 100644 --- a/test/data/production/json-api/negative10.yaml.report.jsonld +++ b/test/data/production/json-api/negative10.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/json-api/negative11.yaml.report.jsonld b/test/data/production/json-api/negative11.yaml.report.jsonld index 4b54fae5..c50d6a75 100644 --- a/test/data/production/json-api/negative11.yaml.report.jsonld +++ b/test/data/production/json-api/negative11.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/json-api/negative2.yaml.report.jsonld b/test/data/production/json-api/negative2.yaml.report.jsonld index df5779fd..7879d0e3 100644 --- a/test/data/production/json-api/negative2.yaml.report.jsonld +++ b/test/data/production/json-api/negative2.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/json-api/negative2b.yaml.report.jsonld b/test/data/production/json-api/negative2b.yaml.report.jsonld index 03a6f942..d700bd65 100644 --- a/test/data/production/json-api/negative2b.yaml.report.jsonld +++ b/test/data/production/json-api/negative2b.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/json-api/negative3.yaml.report.jsonld b/test/data/production/json-api/negative3.yaml.report.jsonld index f6f6c659..b50f4bbc 100644 --- a/test/data/production/json-api/negative3.yaml.report.jsonld +++ b/test/data/production/json-api/negative3.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/json-api/negative3b.yaml.report.jsonld b/test/data/production/json-api/negative3b.yaml.report.jsonld index 86023aaf..fc49a44a 100644 --- a/test/data/production/json-api/negative3b.yaml.report.jsonld +++ b/test/data/production/json-api/negative3b.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/json-api/negative4.yaml.report.jsonld b/test/data/production/json-api/negative4.yaml.report.jsonld index 52b31e06..651b0f95 100644 --- a/test/data/production/json-api/negative4.yaml.report.jsonld +++ b/test/data/production/json-api/negative4.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/json-api/negative4b.yaml.report.jsonld b/test/data/production/json-api/negative4b.yaml.report.jsonld index 91d49d4e..8191b659 100644 --- a/test/data/production/json-api/negative4b.yaml.report.jsonld +++ b/test/data/production/json-api/negative4b.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/json-api/negative5.yaml.report.jsonld b/test/data/production/json-api/negative5.yaml.report.jsonld index a5404831..79054462 100644 --- a/test/data/production/json-api/negative5.yaml.report.jsonld +++ b/test/data/production/json-api/negative5.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/json-api/negative6.yaml.report.jsonld b/test/data/production/json-api/negative6.yaml.report.jsonld index 3533614b..baa1a7c7 100644 --- a/test/data/production/json-api/negative6.yaml.report.jsonld +++ b/test/data/production/json-api/negative6.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/json-api/negative7.yaml.report.jsonld b/test/data/production/json-api/negative7.yaml.report.jsonld index 42d61ec6..5179afe4 100644 --- a/test/data/production/json-api/negative7.yaml.report.jsonld +++ b/test/data/production/json-api/negative7.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/json-api/negative8.yaml.report.jsonld b/test/data/production/json-api/negative8.yaml.report.jsonld index f0e29a3e..f83bb9cc 100644 --- a/test/data/production/json-api/negative8.yaml.report.jsonld +++ b/test/data/production/json-api/negative8.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/json-api/negative9.yaml.report.jsonld b/test/data/production/json-api/negative9.yaml.report.jsonld index 8ebb767b..a5683fb6 100644 --- a/test/data/production/json-api/negative9.yaml.report.jsonld +++ b/test/data/production/json-api/negative9.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/json-api/positive1.yaml.report.jsonld b/test/data/production/json-api/positive1.yaml.report.jsonld index 588154a0..14e895e1 100644 --- a/test/data/production/json-api/positive1.yaml.report.jsonld +++ b/test/data/production/json-api/positive1.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "conforms": { "@id": "http://www.w3.org/ns/shacl#conforms" }, diff --git a/test/data/production/json-api/positive10.yaml.report.jsonld b/test/data/production/json-api/positive10.yaml.report.jsonld index 588154a0..14e895e1 100644 --- a/test/data/production/json-api/positive10.yaml.report.jsonld +++ b/test/data/production/json-api/positive10.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "conforms": { "@id": "http://www.w3.org/ns/shacl#conforms" }, diff --git a/test/data/production/json-api/positive9.yaml.report.jsonld b/test/data/production/json-api/positive9.yaml.report.jsonld index 588154a0..14e895e1 100644 --- a/test/data/production/json-api/positive9.yaml.report.jsonld +++ b/test/data/production/json-api/positive9.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "conforms": { "@id": "http://www.w3.org/ns/shacl#conforms" }, diff --git a/test/data/production/owasp/negative1.yaml.report.jsonld b/test/data/production/owasp/negative1.yaml.report.jsonld index 9bdc887d..0e70eef7 100644 --- a/test/data/production/owasp/negative1.yaml.report.jsonld +++ b/test/data/production/owasp/negative1.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/owasp/negative2.yaml.report.jsonld b/test/data/production/owasp/negative2.yaml.report.jsonld index 1c11898c..47460163 100644 --- a/test/data/production/owasp/negative2.yaml.report.jsonld +++ b/test/data/production/owasp/negative2.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/owasp/negative3.yaml.report.jsonld b/test/data/production/owasp/negative3.yaml.report.jsonld index 22c543e4..74db9613 100644 --- a/test/data/production/owasp/negative3.yaml.report.jsonld +++ b/test/data/production/owasp/negative3.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/owasp/negative4.yaml.report.jsonld b/test/data/production/owasp/negative4.yaml.report.jsonld index 64f03e3b..19279515 100644 --- a/test/data/production/owasp/negative4.yaml.report.jsonld +++ b/test/data/production/owasp/negative4.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/owasp/negative5.yaml.report.jsonld b/test/data/production/owasp/negative5.yaml.report.jsonld index 824ab741..06805337 100644 --- a/test/data/production/owasp/negative5.yaml.report.jsonld +++ b/test/data/production/owasp/negative5.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/owasp/negative6.yaml.report.jsonld b/test/data/production/owasp/negative6.yaml.report.jsonld index f31b3d6a..bbda0164 100644 --- a/test/data/production/owasp/negative6.yaml.report.jsonld +++ b/test/data/production/owasp/negative6.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/owasp/negative6b.yaml.report.jsonld b/test/data/production/owasp/negative6b.yaml.report.jsonld index 5a7bff4d..102bd0fe 100644 --- a/test/data/production/owasp/negative6b.yaml.report.jsonld +++ b/test/data/production/owasp/negative6b.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/owasp/negative7.yaml.report.jsonld b/test/data/production/owasp/negative7.yaml.report.jsonld index 6fd7fc8d..be9064f0 100644 --- a/test/data/production/owasp/negative7.yaml.report.jsonld +++ b/test/data/production/owasp/negative7.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/owasp/negative8.yaml.report.jsonld b/test/data/production/owasp/negative8.yaml.report.jsonld index 7155d0e6..2d175946 100644 --- a/test/data/production/owasp/negative8.yaml.report.jsonld +++ b/test/data/production/owasp/negative8.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/owasp/negative9.yaml.report.jsonld b/test/data/production/owasp/negative9.yaml.report.jsonld index cb3e7337..e4fb867a 100644 --- a/test/data/production/owasp/negative9.yaml.report.jsonld +++ b/test/data/production/owasp/negative9.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/owasp/negative9b.yaml.report.jsonld b/test/data/production/owasp/negative9b.yaml.report.jsonld index 38f694af..84b61fb7 100644 --- a/test/data/production/owasp/negative9b.yaml.report.jsonld +++ b/test/data/production/owasp/negative9b.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/owasp/positive1.yaml.report.jsonld b/test/data/production/owasp/positive1.yaml.report.jsonld index bf3fc5be..ab19b952 100644 --- a/test/data/production/owasp/positive1.yaml.report.jsonld +++ b/test/data/production/owasp/positive1.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "conforms": { "@id": "http://www.w3.org/ns/shacl#conforms" }, diff --git a/test/data/production/owasp/positive2.yaml.report.jsonld b/test/data/production/owasp/positive2.yaml.report.jsonld index bf3fc5be..ab19b952 100644 --- a/test/data/production/owasp/positive2.yaml.report.jsonld +++ b/test/data/production/owasp/positive2.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "conforms": { "@id": "http://www.w3.org/ns/shacl#conforms" }, diff --git a/test/data/production/owasp/positive3.yaml.report.jsonld b/test/data/production/owasp/positive3.yaml.report.jsonld index bf3fc5be..ab19b952 100644 --- a/test/data/production/owasp/positive3.yaml.report.jsonld +++ b/test/data/production/owasp/positive3.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "conforms": { "@id": "http://www.w3.org/ns/shacl#conforms" }, diff --git a/test/data/production/owasp/positive4.yaml.report.jsonld b/test/data/production/owasp/positive4.yaml.report.jsonld index bf3fc5be..ab19b952 100644 --- a/test/data/production/owasp/positive4.yaml.report.jsonld +++ b/test/data/production/owasp/positive4.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "conforms": { "@id": "http://www.w3.org/ns/shacl#conforms" }, diff --git a/test/data/production/owasp/positive5.yaml.report.jsonld b/test/data/production/owasp/positive5.yaml.report.jsonld index bf3fc5be..ab19b952 100644 --- a/test/data/production/owasp/positive5.yaml.report.jsonld +++ b/test/data/production/owasp/positive5.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "conforms": { "@id": "http://www.w3.org/ns/shacl#conforms" }, diff --git a/test/data/production/owasp/positive6.yaml.report.jsonld b/test/data/production/owasp/positive6.yaml.report.jsonld index bf3fc5be..ab19b952 100644 --- a/test/data/production/owasp/positive6.yaml.report.jsonld +++ b/test/data/production/owasp/positive6.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "conforms": { "@id": "http://www.w3.org/ns/shacl#conforms" }, diff --git a/test/data/production/owasp/positive7.yaml.report.jsonld b/test/data/production/owasp/positive7.yaml.report.jsonld index bf3fc5be..ab19b952 100644 --- a/test/data/production/owasp/positive7.yaml.report.jsonld +++ b/test/data/production/owasp/positive7.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "conforms": { "@id": "http://www.w3.org/ns/shacl#conforms" }, diff --git a/test/data/production/owasp/positive8.yaml.report.jsonld b/test/data/production/owasp/positive8.yaml.report.jsonld index bf3fc5be..ab19b952 100644 --- a/test/data/production/owasp/positive8.yaml.report.jsonld +++ b/test/data/production/owasp/positive8.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "conforms": { "@id": "http://www.w3.org/ns/shacl#conforms" }, diff --git a/test/data/production/owasp/positive9.yaml.report.jsonld b/test/data/production/owasp/positive9.yaml.report.jsonld index bf3fc5be..ab19b952 100644 --- a/test/data/production/owasp/positive9.yaml.report.jsonld +++ b/test/data/production/owasp/positive9.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "conforms": { "@id": "http://www.w3.org/ns/shacl#conforms" }, diff --git a/test/data/production/security/negative1.yaml.report.jsonld b/test/data/production/security/negative1.yaml.report.jsonld index 51c26b1a..9c6d3604 100644 --- a/test/data/production/security/negative1.yaml.report.jsonld +++ b/test/data/production/security/negative1.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/security/negative10.yaml.report.jsonld b/test/data/production/security/negative10.yaml.report.jsonld index 420143f9..8a646076 100644 --- a/test/data/production/security/negative10.yaml.report.jsonld +++ b/test/data/production/security/negative10.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/security/negative11.yaml.report.jsonld b/test/data/production/security/negative11.yaml.report.jsonld index 42d46bef..7c263775 100644 --- a/test/data/production/security/negative11.yaml.report.jsonld +++ b/test/data/production/security/negative11.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/security/negative12.yaml.report.jsonld b/test/data/production/security/negative12.yaml.report.jsonld index 21ec7eee..793aa9c3 100644 --- a/test/data/production/security/negative12.yaml.report.jsonld +++ b/test/data/production/security/negative12.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/security/negative13.yaml.report.jsonld b/test/data/production/security/negative13.yaml.report.jsonld index dd122fea..ce9824f6 100644 --- a/test/data/production/security/negative13.yaml.report.jsonld +++ b/test/data/production/security/negative13.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/security/negative14.yaml.report.jsonld b/test/data/production/security/negative14.yaml.report.jsonld index 39f7cc55..b9c6c0f3 100644 --- a/test/data/production/security/negative14.yaml.report.jsonld +++ b/test/data/production/security/negative14.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/security/negative15.yaml.report.jsonld b/test/data/production/security/negative15.yaml.report.jsonld index 926dfe2a..c085139d 100644 --- a/test/data/production/security/negative15.yaml.report.jsonld +++ b/test/data/production/security/negative15.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/security/negative16.yaml.report.jsonld b/test/data/production/security/negative16.yaml.report.jsonld index 48ed8c4a..ee3cca90 100644 --- a/test/data/production/security/negative16.yaml.report.jsonld +++ b/test/data/production/security/negative16.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/security/negative17.yaml.report.jsonld b/test/data/production/security/negative17.yaml.report.jsonld index 9483d7b6..0f5c8396 100644 --- a/test/data/production/security/negative17.yaml.report.jsonld +++ b/test/data/production/security/negative17.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/security/negative2.yaml.report.jsonld b/test/data/production/security/negative2.yaml.report.jsonld index f612e299..a70068cd 100644 --- a/test/data/production/security/negative2.yaml.report.jsonld +++ b/test/data/production/security/negative2.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/security/negative3.yaml.report.jsonld b/test/data/production/security/negative3.yaml.report.jsonld index 55482345..40e7e4d5 100644 --- a/test/data/production/security/negative3.yaml.report.jsonld +++ b/test/data/production/security/negative3.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/security/negative4.yaml.report.jsonld b/test/data/production/security/negative4.yaml.report.jsonld index 5248894a..984b3710 100644 --- a/test/data/production/security/negative4.yaml.report.jsonld +++ b/test/data/production/security/negative4.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/security/negative5.yaml.report.jsonld b/test/data/production/security/negative5.yaml.report.jsonld index 82b58a72..2553c2a1 100644 --- a/test/data/production/security/negative5.yaml.report.jsonld +++ b/test/data/production/security/negative5.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/security/negative6.yaml.report.jsonld b/test/data/production/security/negative6.yaml.report.jsonld index 4d21c466..ff7c483a 100644 --- a/test/data/production/security/negative6.yaml.report.jsonld +++ b/test/data/production/security/negative6.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/security/negative7.yaml.report.jsonld b/test/data/production/security/negative7.yaml.report.jsonld index f49e4dee..9ce06e3f 100644 --- a/test/data/production/security/negative7.yaml.report.jsonld +++ b/test/data/production/security/negative7.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/security/negative8.yaml.report.jsonld b/test/data/production/security/negative8.yaml.report.jsonld index c5ef9874..cf98d44a 100644 --- a/test/data/production/security/negative8.yaml.report.jsonld +++ b/test/data/production/security/negative8.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/security/negative9.yaml.report.jsonld b/test/data/production/security/negative9.yaml.report.jsonld index 63400f38..14c716ff 100644 --- a/test/data/production/security/negative9.yaml.report.jsonld +++ b/test/data/production/security/negative9.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/security/positive1.yaml.report.jsonld b/test/data/production/security/positive1.yaml.report.jsonld index 636e626c..451d21d7 100644 --- a/test/data/production/security/positive1.yaml.report.jsonld +++ b/test/data/production/security/positive1.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "conforms": { "@id": "http://www.w3.org/ns/shacl#conforms" }, diff --git a/test/data/production/security/positive3.yaml.report.jsonld b/test/data/production/security/positive3.yaml.report.jsonld index 636e626c..451d21d7 100644 --- a/test/data/production/security/positive3.yaml.report.jsonld +++ b/test/data/production/security/positive3.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "conforms": { "@id": "http://www.w3.org/ns/shacl#conforms" }, diff --git a/test/data/production/security/positive4.yaml.report.jsonld b/test/data/production/security/positive4.yaml.report.jsonld index 636e626c..451d21d7 100644 --- a/test/data/production/security/positive4.yaml.report.jsonld +++ b/test/data/production/security/positive4.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "conforms": { "@id": "http://www.w3.org/ns/shacl#conforms" }, diff --git a/test/data/production/spectral/negative1.yaml.report.jsonld b/test/data/production/spectral/negative1.yaml.report.jsonld index c205c790..7838906b 100644 --- a/test/data/production/spectral/negative1.yaml.report.jsonld +++ b/test/data/production/spectral/negative1.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/spectral/negative10.yaml.report.jsonld b/test/data/production/spectral/negative10.yaml.report.jsonld index a9e9c70d..2fbf679d 100644 --- a/test/data/production/spectral/negative10.yaml.report.jsonld +++ b/test/data/production/spectral/negative10.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/spectral/negative11.yaml.report.jsonld b/test/data/production/spectral/negative11.yaml.report.jsonld index 038424ea..aac1fe05 100644 --- a/test/data/production/spectral/negative11.yaml.report.jsonld +++ b/test/data/production/spectral/negative11.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/spectral/negative12.yaml.report.jsonld b/test/data/production/spectral/negative12.yaml.report.jsonld index 7f04b1ab..831b9bd6 100644 --- a/test/data/production/spectral/negative12.yaml.report.jsonld +++ b/test/data/production/spectral/negative12.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/spectral/negative13.yaml.report.jsonld b/test/data/production/spectral/negative13.yaml.report.jsonld index 9f693f9d..226f2897 100644 --- a/test/data/production/spectral/negative13.yaml.report.jsonld +++ b/test/data/production/spectral/negative13.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/spectral/negative14.yaml.report.jsonld b/test/data/production/spectral/negative14.yaml.report.jsonld index 2fc7ec75..a8b5dded 100644 --- a/test/data/production/spectral/negative14.yaml.report.jsonld +++ b/test/data/production/spectral/negative14.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/spectral/negative15.yaml.report.jsonld b/test/data/production/spectral/negative15.yaml.report.jsonld index 07ebf743..fa5f3afa 100644 --- a/test/data/production/spectral/negative15.yaml.report.jsonld +++ b/test/data/production/spectral/negative15.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/spectral/negative16.yaml.report.jsonld b/test/data/production/spectral/negative16.yaml.report.jsonld index 1df36b85..8d06af3f 100644 --- a/test/data/production/spectral/negative16.yaml.report.jsonld +++ b/test/data/production/spectral/negative16.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/spectral/negative17.yaml.report.jsonld b/test/data/production/spectral/negative17.yaml.report.jsonld index 0b0df603..ba0be458 100644 --- a/test/data/production/spectral/negative17.yaml.report.jsonld +++ b/test/data/production/spectral/negative17.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/spectral/negative18.yaml.report.jsonld b/test/data/production/spectral/negative18.yaml.report.jsonld index ce0d668e..4d8e72a9 100644 --- a/test/data/production/spectral/negative18.yaml.report.jsonld +++ b/test/data/production/spectral/negative18.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/spectral/negative2.yaml.report.jsonld b/test/data/production/spectral/negative2.yaml.report.jsonld index 2c7d3f27..43a4c866 100644 --- a/test/data/production/spectral/negative2.yaml.report.jsonld +++ b/test/data/production/spectral/negative2.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/spectral/negative3.yaml.report.jsonld b/test/data/production/spectral/negative3.yaml.report.jsonld index d01ae6b5..4815fae0 100644 --- a/test/data/production/spectral/negative3.yaml.report.jsonld +++ b/test/data/production/spectral/negative3.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/spectral/negative4.yaml.report.jsonld b/test/data/production/spectral/negative4.yaml.report.jsonld index db9d908a..245aed57 100644 --- a/test/data/production/spectral/negative4.yaml.report.jsonld +++ b/test/data/production/spectral/negative4.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/spectral/negative5.yaml.report.jsonld b/test/data/production/spectral/negative5.yaml.report.jsonld index 92ab7782..710f3275 100644 --- a/test/data/production/spectral/negative5.yaml.report.jsonld +++ b/test/data/production/spectral/negative5.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/spectral/negative6.yaml.report.jsonld b/test/data/production/spectral/negative6.yaml.report.jsonld index b47b8fd5..fde28605 100644 --- a/test/data/production/spectral/negative6.yaml.report.jsonld +++ b/test/data/production/spectral/negative6.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/spectral/negative7.yaml.report.jsonld b/test/data/production/spectral/negative7.yaml.report.jsonld index 2d629a04..e18ea269 100644 --- a/test/data/production/spectral/negative7.yaml.report.jsonld +++ b/test/data/production/spectral/negative7.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/spectral/negative7b.yaml.report.jsonld b/test/data/production/spectral/negative7b.yaml.report.jsonld index 63cec697..87e2cf8c 100644 --- a/test/data/production/spectral/negative7b.yaml.report.jsonld +++ b/test/data/production/spectral/negative7b.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/spectral/negative8.yaml.report.jsonld b/test/data/production/spectral/negative8.yaml.report.jsonld index 63976cc8..8343626b 100644 --- a/test/data/production/spectral/negative8.yaml.report.jsonld +++ b/test/data/production/spectral/negative8.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/spectral/negative9.yaml.report.jsonld b/test/data/production/spectral/negative9.yaml.report.jsonld index 1b2544c5..4c8e519d 100644 --- a/test/data/production/spectral/negative9.yaml.report.jsonld +++ b/test/data/production/spectral/negative9.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/spectral/positive1.yaml.report.jsonld b/test/data/production/spectral/positive1.yaml.report.jsonld index 5e4d8230..7f0db2f0 100644 --- a/test/data/production/spectral/positive1.yaml.report.jsonld +++ b/test/data/production/spectral/positive1.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "conforms": { "@id": "http://www.w3.org/ns/shacl#conforms" }, diff --git a/test/data/production/spectral/positive10.yaml.report.jsonld b/test/data/production/spectral/positive10.yaml.report.jsonld index 5e4d8230..7f0db2f0 100644 --- a/test/data/production/spectral/positive10.yaml.report.jsonld +++ b/test/data/production/spectral/positive10.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "conforms": { "@id": "http://www.w3.org/ns/shacl#conforms" }, diff --git a/test/data/production/spectral/positive11.yaml.report.jsonld b/test/data/production/spectral/positive11.yaml.report.jsonld index 5e4d8230..7f0db2f0 100644 --- a/test/data/production/spectral/positive11.yaml.report.jsonld +++ b/test/data/production/spectral/positive11.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "conforms": { "@id": "http://www.w3.org/ns/shacl#conforms" }, diff --git a/test/data/production/spectral/positive12.yaml.report.jsonld b/test/data/production/spectral/positive12.yaml.report.jsonld index 5e4d8230..7f0db2f0 100644 --- a/test/data/production/spectral/positive12.yaml.report.jsonld +++ b/test/data/production/spectral/positive12.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "conforms": { "@id": "http://www.w3.org/ns/shacl#conforms" }, diff --git a/test/data/production/spectral/positive13.yaml.report.jsonld b/test/data/production/spectral/positive13.yaml.report.jsonld index 5e4d8230..7f0db2f0 100644 --- a/test/data/production/spectral/positive13.yaml.report.jsonld +++ b/test/data/production/spectral/positive13.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "conforms": { "@id": "http://www.w3.org/ns/shacl#conforms" }, diff --git a/test/data/production/spectral/positive14.yaml.report.jsonld b/test/data/production/spectral/positive14.yaml.report.jsonld index 5e4d8230..7f0db2f0 100644 --- a/test/data/production/spectral/positive14.yaml.report.jsonld +++ b/test/data/production/spectral/positive14.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "conforms": { "@id": "http://www.w3.org/ns/shacl#conforms" }, diff --git a/test/data/production/spectral/positive15.yaml.report.jsonld b/test/data/production/spectral/positive15.yaml.report.jsonld index 5e4d8230..7f0db2f0 100644 --- a/test/data/production/spectral/positive15.yaml.report.jsonld +++ b/test/data/production/spectral/positive15.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "conforms": { "@id": "http://www.w3.org/ns/shacl#conforms" }, diff --git a/test/data/production/spectral/positive16.yaml.report.jsonld b/test/data/production/spectral/positive16.yaml.report.jsonld index 5e4d8230..7f0db2f0 100644 --- a/test/data/production/spectral/positive16.yaml.report.jsonld +++ b/test/data/production/spectral/positive16.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "conforms": { "@id": "http://www.w3.org/ns/shacl#conforms" }, diff --git a/test/data/production/spectral/positive17.yaml.report.jsonld b/test/data/production/spectral/positive17.yaml.report.jsonld index 5e4d8230..7f0db2f0 100644 --- a/test/data/production/spectral/positive17.yaml.report.jsonld +++ b/test/data/production/spectral/positive17.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "conforms": { "@id": "http://www.w3.org/ns/shacl#conforms" }, diff --git a/test/data/production/spectral/positive18.yaml.report.jsonld b/test/data/production/spectral/positive18.yaml.report.jsonld index 5e4d8230..7f0db2f0 100644 --- a/test/data/production/spectral/positive18.yaml.report.jsonld +++ b/test/data/production/spectral/positive18.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "conforms": { "@id": "http://www.w3.org/ns/shacl#conforms" }, diff --git a/test/data/production/spectral/positive2.yaml.report.jsonld b/test/data/production/spectral/positive2.yaml.report.jsonld index 5e4d8230..7f0db2f0 100644 --- a/test/data/production/spectral/positive2.yaml.report.jsonld +++ b/test/data/production/spectral/positive2.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "conforms": { "@id": "http://www.w3.org/ns/shacl#conforms" }, diff --git a/test/data/production/spectral/positive4.yaml.report.jsonld b/test/data/production/spectral/positive4.yaml.report.jsonld index 5e4d8230..7f0db2f0 100644 --- a/test/data/production/spectral/positive4.yaml.report.jsonld +++ b/test/data/production/spectral/positive4.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "conforms": { "@id": "http://www.w3.org/ns/shacl#conforms" }, diff --git a/test/data/production/spectral/positive5.yaml.report.jsonld b/test/data/production/spectral/positive5.yaml.report.jsonld index 5e4d8230..7f0db2f0 100644 --- a/test/data/production/spectral/positive5.yaml.report.jsonld +++ b/test/data/production/spectral/positive5.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "conforms": { "@id": "http://www.w3.org/ns/shacl#conforms" }, diff --git a/test/data/production/spectral/positive6.yaml.report.jsonld b/test/data/production/spectral/positive6.yaml.report.jsonld index 5e4d8230..7f0db2f0 100644 --- a/test/data/production/spectral/positive6.yaml.report.jsonld +++ b/test/data/production/spectral/positive6.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "conforms": { "@id": "http://www.w3.org/ns/shacl#conforms" }, diff --git a/test/data/production/spectral/positive7.yaml.report.jsonld b/test/data/production/spectral/positive7.yaml.report.jsonld index 5e4d8230..7f0db2f0 100644 --- a/test/data/production/spectral/positive7.yaml.report.jsonld +++ b/test/data/production/spectral/positive7.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "conforms": { "@id": "http://www.w3.org/ns/shacl#conforms" }, diff --git a/test/data/production/spectral/positive8.yaml.report.jsonld b/test/data/production/spectral/positive8.yaml.report.jsonld index 5e4d8230..7f0db2f0 100644 --- a/test/data/production/spectral/positive8.yaml.report.jsonld +++ b/test/data/production/spectral/positive8.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "conforms": { "@id": "http://www.w3.org/ns/shacl#conforms" }, diff --git a/test/data/production/spectral/positive9.yaml.report.jsonld b/test/data/production/spectral/positive9.yaml.report.jsonld index 5e4d8230..7f0db2f0 100644 --- a/test/data/production/spectral/positive9.yaml.report.jsonld +++ b/test/data/production/spectral/positive9.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "conforms": { "@id": "http://www.w3.org/ns/shacl#conforms" }, diff --git a/test/data/production/support/negative1.raml.report.jsonld b/test/data/production/support/negative1.raml.report.jsonld index f0017fc0..fd2a5003 100644 --- a/test/data/production/support/negative1.raml.report.jsonld +++ b/test/data/production/support/negative1.raml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/support/positive1.raml.report.jsonld b/test/data/production/support/positive1.raml.report.jsonld index 430cc0c6..b80993d1 100644 --- a/test/data/production/support/positive1.raml.report.jsonld +++ b/test/data/production/support/positive1.raml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "conforms": { "@id": "http://www.w3.org/ns/shacl#conforms" }, diff --git a/test/data/production/zalando/negative1.yaml.report.jsonld b/test/data/production/zalando/negative1.yaml.report.jsonld index d99e12ce..cf01964f 100644 --- a/test/data/production/zalando/negative1.yaml.report.jsonld +++ b/test/data/production/zalando/negative1.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/zalando/negative2.yaml.report.jsonld b/test/data/production/zalando/negative2.yaml.report.jsonld index b0c0b77b..a5282d56 100644 --- a/test/data/production/zalando/negative2.yaml.report.jsonld +++ b/test/data/production/zalando/negative2.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/zalando/negative3.yaml.report.jsonld b/test/data/production/zalando/negative3.yaml.report.jsonld index c5e96393..da42a67e 100644 --- a/test/data/production/zalando/negative3.yaml.report.jsonld +++ b/test/data/production/zalando/negative3.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/production/zalando/positive1.yaml.report.jsonld b/test/data/production/zalando/positive1.yaml.report.jsonld index 84047ca9..c6b7d256 100644 --- a/test/data/production/zalando/positive1.yaml.report.jsonld +++ b/test/data/production/zalando/positive1.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "conforms": { "@id": "http://www.w3.org/ns/shacl#conforms" }, diff --git a/test/data/production/zalando/positive2.yaml.report.jsonld b/test/data/production/zalando/positive2.yaml.report.jsonld index 84047ca9..c6b7d256 100644 --- a/test/data/production/zalando/positive2.yaml.report.jsonld +++ b/test/data/production/zalando/positive2.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "conforms": { "@id": "http://www.w3.org/ns/shacl#conforms" }, diff --git a/test/data/production/zalando/positive3.yaml.report.jsonld b/test/data/production/zalando/positive3.yaml.report.jsonld index 84047ca9..c6b7d256 100644 --- a/test/data/production/zalando/positive3.yaml.report.jsonld +++ b/test/data/production/zalando/positive3.yaml.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "conforms": { "@id": "http://www.w3.org/ns/shacl#conforms" }, diff --git a/test/data/semex/semantic-extension-pagination/api.async.yaml.jsonld.report.jsonld b/test/data/semex/semantic-extension-pagination/api.async.yaml.jsonld.report.jsonld index 66dd9431..20fc7db0 100644 --- a/test/data/semex/semantic-extension-pagination/api.async.yaml.jsonld.report.jsonld +++ b/test/data/semex/semantic-extension-pagination/api.async.yaml.jsonld.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/semex/semantic-extension-pagination/api.oas20.yaml.jsonld.report.jsonld b/test/data/semex/semantic-extension-pagination/api.oas20.yaml.jsonld.report.jsonld index b80086d0..db942840 100644 --- a/test/data/semex/semantic-extension-pagination/api.oas20.yaml.jsonld.report.jsonld +++ b/test/data/semex/semantic-extension-pagination/api.oas20.yaml.jsonld.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/semex/semantic-extension-pagination/api.oas30.yaml.jsonld.report.jsonld b/test/data/semex/semantic-extension-pagination/api.oas30.yaml.jsonld.report.jsonld index e85a0545..0d60269d 100644 --- a/test/data/semex/semantic-extension-pagination/api.oas30.yaml.jsonld.report.jsonld +++ b/test/data/semex/semantic-extension-pagination/api.oas30.yaml.jsonld.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/semex/semantic-extension-pagination/api.raml.jsonld.report.jsonld b/test/data/semex/semantic-extension-pagination/api.raml.jsonld.report.jsonld index 83f3d748..7755709b 100644 --- a/test/data/semex/semantic-extension-pagination/api.raml.jsonld.report.jsonld +++ b/test/data/semex/semantic-extension-pagination/api.raml.jsonld.report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/shacl/misc/deactivated-001/report.jsonld b/test/data/shacl/misc/deactivated-001/report.jsonld index f37f1532..57d9b213 100644 --- a/test/data/shacl/misc/deactivated-001/report.jsonld +++ b/test/data/shacl/misc/deactivated-001/report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "conforms": { "@id": "http://www.w3.org/ns/shacl#conforms" }, diff --git a/test/data/shacl/misc/severity-001/report.jsonld b/test/data/shacl/misc/severity-001/report.jsonld index d3d9f5c6..a926dfde 100644 --- a/test/data/shacl/misc/severity-001/report.jsonld +++ b/test/data/shacl/misc/severity-001/report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/shacl/node/and-001/report.jsonld b/test/data/shacl/node/and-001/report.jsonld index 5d785e73..e05df61b 100644 --- a/test/data/shacl/node/and-001/report.jsonld +++ b/test/data/shacl/node/and-001/report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/shacl/node/and-002/report.jsonld b/test/data/shacl/node/and-002/report.jsonld index 1e497c6a..b4f20d7a 100644 --- a/test/data/shacl/node/and-002/report.jsonld +++ b/test/data/shacl/node/and-002/report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/shacl/node/not-001/report.jsonld b/test/data/shacl/node/not-001/report.jsonld index 66a15288..83bc94a4 100644 --- a/test/data/shacl/node/not-001/report.jsonld +++ b/test/data/shacl/node/not-001/report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/shacl/node/or-001/report.jsonld b/test/data/shacl/node/or-001/report.jsonld index ff7e8b6f..cc893db7 100644 --- a/test/data/shacl/node/or-001/report.jsonld +++ b/test/data/shacl/node/or-001/report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/shacl/node/xone-001/report.jsonld b/test/data/shacl/node/xone-001/report.jsonld index 070d9852..4755653f 100644 --- a/test/data/shacl/node/xone-001/report.jsonld +++ b/test/data/shacl/node/xone-001/report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "conforms": { "@id": "http://www.w3.org/ns/shacl#conforms" }, diff --git a/test/data/shacl/path/path-alternative-001/report.jsonld b/test/data/shacl/path/path-alternative-001/report.jsonld index a281580d..0bb7628d 100644 --- a/test/data/shacl/path/path-alternative-001/report.jsonld +++ b/test/data/shacl/path/path-alternative-001/report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/shacl/path/path-inverse-001/report.jsonld b/test/data/shacl/path/path-inverse-001/report.jsonld index 96460aa1..061867f4 100644 --- a/test/data/shacl/path/path-inverse-001/report.jsonld +++ b/test/data/shacl/path/path-inverse-001/report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/shacl/path/path-inverse-nested/report.jsonld b/test/data/shacl/path/path-inverse-nested/report.jsonld index cfc6cbb5..b2c109f8 100644 --- a/test/data/shacl/path/path-inverse-nested/report.jsonld +++ b/test/data/shacl/path/path-inverse-nested/report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/shacl/path/path-sequence-001/report.jsonld b/test/data/shacl/path/path-sequence-001/report.jsonld index 85d31a98..84213a44 100644 --- a/test/data/shacl/path/path-sequence-001/report.jsonld +++ b/test/data/shacl/path/path-sequence-001/report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/shacl/path/path-sequence-002/report.jsonld b/test/data/shacl/path/path-sequence-002/report.jsonld index 9314ce03..198fc630 100644 --- a/test/data/shacl/path/path-sequence-002/report.jsonld +++ b/test/data/shacl/path/path-sequence-002/report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/shacl/property/datatype-001/report.jsonld b/test/data/shacl/property/datatype-001/report.jsonld index 070d9852..4755653f 100644 --- a/test/data/shacl/property/datatype-001/report.jsonld +++ b/test/data/shacl/property/datatype-001/report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "conforms": { "@id": "http://www.w3.org/ns/shacl#conforms" }, diff --git a/test/data/shacl/property/datatype-002/report.jsonld b/test/data/shacl/property/datatype-002/report.jsonld index 217429c7..482f03b6 100644 --- a/test/data/shacl/property/datatype-002/report.jsonld +++ b/test/data/shacl/property/datatype-002/report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/shacl/property/disjoint-001/report.jsonld b/test/data/shacl/property/disjoint-001/report.jsonld index 4ba98124..d3222c53 100644 --- a/test/data/shacl/property/disjoint-001/report.jsonld +++ b/test/data/shacl/property/disjoint-001/report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/shacl/property/equals-001/report.jsonld b/test/data/shacl/property/equals-001/report.jsonld index 04b14af5..c0e73f44 100644 --- a/test/data/shacl/property/equals-001/report.jsonld +++ b/test/data/shacl/property/equals-001/report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/shacl/property/hasValue-numeric/report.jsonld b/test/data/shacl/property/hasValue-numeric/report.jsonld index 27e342cf..2424dc15 100644 --- a/test/data/shacl/property/hasValue-numeric/report.jsonld +++ b/test/data/shacl/property/hasValue-numeric/report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/shacl/property/in-001/report.jsonld b/test/data/shacl/property/in-001/report.jsonld index 5e9e04db..171f3635 100644 --- a/test/data/shacl/property/in-001/report.jsonld +++ b/test/data/shacl/property/in-001/report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/shacl/property/lessThan-001/report.jsonld b/test/data/shacl/property/lessThan-001/report.jsonld index 808912dd..321866c7 100644 --- a/test/data/shacl/property/lessThan-001/report.jsonld +++ b/test/data/shacl/property/lessThan-001/report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/shacl/property/lessThan-002/report.jsonld b/test/data/shacl/property/lessThan-002/report.jsonld index 070d9852..4755653f 100644 --- a/test/data/shacl/property/lessThan-002/report.jsonld +++ b/test/data/shacl/property/lessThan-002/report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "conforms": { "@id": "http://www.w3.org/ns/shacl#conforms" }, diff --git a/test/data/shacl/property/lessThanOrEquals-001/report.jsonld b/test/data/shacl/property/lessThanOrEquals-001/report.jsonld index a1fab94e..c4638c20 100644 --- a/test/data/shacl/property/lessThanOrEquals-001/report.jsonld +++ b/test/data/shacl/property/lessThanOrEquals-001/report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/shacl/property/maxCount-001/report.jsonld b/test/data/shacl/property/maxCount-001/report.jsonld index 7cb56896..39fe63a2 100644 --- a/test/data/shacl/property/maxCount-001/report.jsonld +++ b/test/data/shacl/property/maxCount-001/report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/shacl/property/maxCount-002/report.jsonld b/test/data/shacl/property/maxCount-002/report.jsonld index 1f595608..d7943676 100644 --- a/test/data/shacl/property/maxCount-002/report.jsonld +++ b/test/data/shacl/property/maxCount-002/report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/shacl/property/maxExclusive-001/report.jsonld b/test/data/shacl/property/maxExclusive-001/report.jsonld index 5a1b7fa5..a1a37a05 100644 --- a/test/data/shacl/property/maxExclusive-001/report.jsonld +++ b/test/data/shacl/property/maxExclusive-001/report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/shacl/property/maxInclusive-001/report.jsonld b/test/data/shacl/property/maxInclusive-001/report.jsonld index 01260308..8d0c9645 100644 --- a/test/data/shacl/property/maxInclusive-001/report.jsonld +++ b/test/data/shacl/property/maxInclusive-001/report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/shacl/property/maxLength-001/report.jsonld b/test/data/shacl/property/maxLength-001/report.jsonld index 199de980..80ae8561 100644 --- a/test/data/shacl/property/maxLength-001/report.jsonld +++ b/test/data/shacl/property/maxLength-001/report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/shacl/property/minCount-001/report.jsonld b/test/data/shacl/property/minCount-001/report.jsonld index 8698cea0..dbd27507 100644 --- a/test/data/shacl/property/minCount-001/report.jsonld +++ b/test/data/shacl/property/minCount-001/report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/shacl/property/minCount-002/report.jsonld b/test/data/shacl/property/minCount-002/report.jsonld index f37f1532..57d9b213 100644 --- a/test/data/shacl/property/minCount-002/report.jsonld +++ b/test/data/shacl/property/minCount-002/report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "conforms": { "@id": "http://www.w3.org/ns/shacl#conforms" }, diff --git a/test/data/shacl/property/minExclusive-001/report.jsonld b/test/data/shacl/property/minExclusive-001/report.jsonld index e8611bc2..e6c21bb6 100644 --- a/test/data/shacl/property/minExclusive-001/report.jsonld +++ b/test/data/shacl/property/minExclusive-001/report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/shacl/property/minExclusive-002/report.jsonld b/test/data/shacl/property/minExclusive-002/report.jsonld index f37f1532..57d9b213 100644 --- a/test/data/shacl/property/minExclusive-002/report.jsonld +++ b/test/data/shacl/property/minExclusive-002/report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "conforms": { "@id": "http://www.w3.org/ns/shacl#conforms" }, diff --git a/test/data/shacl/property/minLength-001/report.jsonld b/test/data/shacl/property/minLength-001/report.jsonld index da2d5ae3..0c514ec7 100644 --- a/test/data/shacl/property/minLength-001/report.jsonld +++ b/test/data/shacl/property/minLength-001/report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/shacl/property/pattern-001/report.jsonld b/test/data/shacl/property/pattern-001/report.jsonld index 0dcdf348..5d51d081 100644 --- a/test/data/shacl/property/pattern-001/report.jsonld +++ b/test/data/shacl/property/pattern-001/report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/shacl/property/pattern-002/report.jsonld b/test/data/shacl/property/pattern-002/report.jsonld index bab72574..5e7db0f4 100644 --- a/test/data/shacl/property/pattern-002/report.jsonld +++ b/test/data/shacl/property/pattern-002/report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/shacl/targets/targetClass-001/report.jsonld b/test/data/shacl/targets/targetClass-001/report.jsonld index 8768d996..cce8a372 100644 --- a/test/data/shacl/targets/targetClass-001/report.jsonld +++ b/test/data/shacl/targets/targetClass-001/report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/tck/and/and-and/report.jsonld b/test/data/tck/and/and-and/report.jsonld index fdeba17c..d86806e2 100644 --- a/test/data/tck/and/and-and/report.jsonld +++ b/test/data/tck/and/and-and/report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/tck/and/and-if-then/report.jsonld b/test/data/tck/and/and-if-then/report.jsonld index cee9380a..e2f8ae77 100644 --- a/test/data/tck/and/and-if-then/report.jsonld +++ b/test/data/tck/and/and-if-then/report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/tck/and/and-nested/report.jsonld b/test/data/tck/and/and-nested/report.jsonld index 22396fde..e2281d0b 100644 --- a/test/data/tck/and/and-nested/report.jsonld +++ b/test/data/tck/and/and-nested/report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/tck/and/and-not/report.jsonld b/test/data/tck/and/and-not/report.jsonld index 88c64e50..4e2f5533 100644 --- a/test/data/tck/and/and-not/report.jsonld +++ b/test/data/tck/and/and-not/report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/tck/and/and-or/report.jsonld b/test/data/tck/and/and-or/report.jsonld index 930b391f..8b20ec9d 100644 --- a/test/data/tck/and/and-or/report.jsonld +++ b/test/data/tck/and/and-or/report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/tck/conditionals/if-and-then-and/report.jsonld b/test/data/tck/conditionals/if-and-then-and/report.jsonld index 047b152b..9a9a4a4a 100644 --- a/test/data/tck/conditionals/if-and-then-and/report.jsonld +++ b/test/data/tck/conditionals/if-and-then-and/report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/tck/conditionals/if-nested-then-nested/report.jsonld b/test/data/tck/conditionals/if-nested-then-nested/report.jsonld index dfa669d5..a0b8db22 100644 --- a/test/data/tck/conditionals/if-nested-then-nested/report.jsonld +++ b/test/data/tck/conditionals/if-nested-then-nested/report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/tck/conditionals/if-not-then-not/report.jsonld b/test/data/tck/conditionals/if-not-then-not/report.jsonld index 6861e3ff..f1f89199 100644 --- a/test/data/tck/conditionals/if-not-then-not/report.jsonld +++ b/test/data/tck/conditionals/if-not-then-not/report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/tck/conditionals/if-not-then/report.jsonld b/test/data/tck/conditionals/if-not-then/report.jsonld index 5fdbb063..d15ffb13 100644 --- a/test/data/tck/conditionals/if-not-then/report.jsonld +++ b/test/data/tck/conditionals/if-not-then/report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/tck/conditionals/if-or-then-or/report.jsonld b/test/data/tck/conditionals/if-or-then-or/report.jsonld index 204d0ed2..5d2232e0 100644 --- a/test/data/tck/conditionals/if-or-then-or/report.jsonld +++ b/test/data/tck/conditionals/if-or-then-or/report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/tck/conditionals/if-then-else/report.jsonld b/test/data/tck/conditionals/if-then-else/report.jsonld index 94cc5da6..9ca272da 100644 --- a/test/data/tck/conditionals/if-then-else/report.jsonld +++ b/test/data/tck/conditionals/if-then-else/report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/tck/conditionals/if-then/report.jsonld b/test/data/tck/conditionals/if-then/report.jsonld index c111d025..881adf47 100644 --- a/test/data/tck/conditionals/if-then/report.jsonld +++ b/test/data/tck/conditionals/if-then/report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/tck/data-types/boolean/report.jsonld b/test/data/tck/data-types/boolean/report.jsonld index f37f1532..57d9b213 100644 --- a/test/data/tck/data-types/boolean/report.jsonld +++ b/test/data/tck/data-types/boolean/report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "conforms": { "@id": "http://www.w3.org/ns/shacl#conforms" }, diff --git a/test/data/tck/data-types/coercion/report.jsonld b/test/data/tck/data-types/coercion/report.jsonld index 57346930..0922c89c 100644 --- a/test/data/tck/data-types/coercion/report.jsonld +++ b/test/data/tck/data-types/coercion/report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/tck/data-types/double/report.jsonld b/test/data/tck/data-types/double/report.jsonld index f37f1532..57d9b213 100644 --- a/test/data/tck/data-types/double/report.jsonld +++ b/test/data/tck/data-types/double/report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "conforms": { "@id": "http://www.w3.org/ns/shacl#conforms" }, diff --git a/test/data/tck/data-types/duration/report.jsonld b/test/data/tck/data-types/duration/report.jsonld index f37f1532..57d9b213 100644 --- a/test/data/tck/data-types/duration/report.jsonld +++ b/test/data/tck/data-types/duration/report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "conforms": { "@id": "http://www.w3.org/ns/shacl#conforms" }, diff --git a/test/data/tck/data-types/float/report.jsonld b/test/data/tck/data-types/float/report.jsonld index f37f1532..57d9b213 100644 --- a/test/data/tck/data-types/float/report.jsonld +++ b/test/data/tck/data-types/float/report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "conforms": { "@id": "http://www.w3.org/ns/shacl#conforms" }, diff --git a/test/data/tck/data-types/integer/report.jsonld b/test/data/tck/data-types/integer/report.jsonld index f37f1532..57d9b213 100644 --- a/test/data/tck/data-types/integer/report.jsonld +++ b/test/data/tck/data-types/integer/report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "conforms": { "@id": "http://www.w3.org/ns/shacl#conforms" }, diff --git a/test/data/tck/data-types/string/report.jsonld b/test/data/tck/data-types/string/report.jsonld index f37f1532..57d9b213 100644 --- a/test/data/tck/data-types/string/report.jsonld +++ b/test/data/tck/data-types/string/report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "conforms": { "@id": "http://www.w3.org/ns/shacl#conforms" }, diff --git a/test/data/tck/nested/nested-and/report.jsonld b/test/data/tck/nested/nested-and/report.jsonld index 0c105936..250271d9 100644 --- a/test/data/tck/nested/nested-and/report.jsonld +++ b/test/data/tck/nested/nested-and/report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/tck/nested/nested-if-then/report.jsonld b/test/data/tck/nested/nested-if-then/report.jsonld index 272cf5c2..ccb00f6b 100644 --- a/test/data/tck/nested/nested-if-then/report.jsonld +++ b/test/data/tck/nested/nested-if-then/report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/tck/nested/nested-nested/report.jsonld b/test/data/tck/nested/nested-nested/report.jsonld index d8e080ee..c09f07ce 100644 --- a/test/data/tck/nested/nested-nested/report.jsonld +++ b/test/data/tck/nested/nested-nested/report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/tck/nested/nested-not/report.jsonld b/test/data/tck/nested/nested-not/report.jsonld index adbd4982..288fd870 100644 --- a/test/data/tck/nested/nested-not/report.jsonld +++ b/test/data/tck/nested/nested-not/report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/tck/nested/nested-or/report.jsonld b/test/data/tck/nested/nested-or/report.jsonld index 072e6406..52689ddf 100644 --- a/test/data/tck/nested/nested-or/report.jsonld +++ b/test/data/tck/nested/nested-or/report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/tck/or/or-and/report.jsonld b/test/data/tck/or/or-and/report.jsonld index bb7136c7..5faa290a 100644 --- a/test/data/tck/or/or-and/report.jsonld +++ b/test/data/tck/or/or-and/report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/tck/or/or-if-then/report.jsonld b/test/data/tck/or/or-if-then/report.jsonld index 09c3996f..7a33a671 100644 --- a/test/data/tck/or/or-if-then/report.jsonld +++ b/test/data/tck/or/or-if-then/report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/tck/or/or-nested/report.jsonld b/test/data/tck/or/or-nested/report.jsonld index 99881cd9..4e43fa35 100644 --- a/test/data/tck/or/or-nested/report.jsonld +++ b/test/data/tck/or/or-nested/report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/tck/or/or-not/report.jsonld b/test/data/tck/or/or-not/report.jsonld index 76695ed9..6d84bd54 100644 --- a/test/data/tck/or/or-not/report.jsonld +++ b/test/data/tck/or/or-not/report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/tck/or/or-or/report.jsonld b/test/data/tck/or/or-or/report.jsonld index b6940ca7..6a16084f 100644 --- a/test/data/tck/or/or-or/report.jsonld +++ b/test/data/tck/or/or-or/report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/tck/property/containsAll/report.jsonld b/test/data/tck/property/containsAll/report.jsonld index a0cf4bc0..952bd7e1 100644 --- a/test/data/tck/property/containsAll/report.jsonld +++ b/test/data/tck/property/containsAll/report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/tck/property/containsSome/report.jsonld b/test/data/tck/property/containsSome/report.jsonld index 03ef75a2..781fbb4f 100644 --- a/test/data/tck/property/containsSome/report.jsonld +++ b/test/data/tck/property/containsSome/report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/tck/property/exactCount/report.jsonld b/test/data/tck/property/exactCount/report.jsonld index b17a0bab..9d14d036 100644 --- a/test/data/tck/property/exactCount/report.jsonld +++ b/test/data/tck/property/exactCount/report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/tck/property/exactLength/report.jsonld b/test/data/tck/property/exactLength/report.jsonld index 35c9ec33..c6712807 100644 --- a/test/data/tck/property/exactLength/report.jsonld +++ b/test/data/tck/property/exactLength/report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/tck/property/uniqueValues-object/report.jsonld b/test/data/tck/property/uniqueValues-object/report.jsonld index 1752c8be..6f5ed58f 100644 --- a/test/data/tck/property/uniqueValues-object/report.jsonld +++ b/test/data/tck/property/uniqueValues-object/report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/tck/property/uniqueValues-scalar/report.jsonld b/test/data/tck/property/uniqueValues-scalar/report.jsonld index d533cf90..4f6d9590 100644 --- a/test/data/tck/property/uniqueValues-scalar/report.jsonld +++ b/test/data/tck/property/uniqueValues-scalar/report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" }, diff --git a/test/data/tck/severity/info/report.jsonld b/test/data/tck/severity/info/report.jsonld index 20965d30..fa7ef9e4 100644 --- a/test/data/tck/severity/info/report.jsonld +++ b/test/data/tck/severity/info/report.jsonld @@ -1,6 +1,7 @@ [ { "@context": { + "@base": "http://a.ml/vocabularies/validation/report#", "actual": { "@id": "http://a.ml/vocabularies/validation#actual" },