forked from ChelseaKR/exitdrill
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcivicrm-case-search-workflow-result-v0.1.schema.json
More file actions
76 lines (76 loc) · 2.2 KB
/
Copy pathcivicrm-case-search-workflow-result-v0.1.schema.json
File metadata and controls
76 lines (76 loc) · 2.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://exitdrill.example/schemas/civicrm-case-search-workflow-result-v0.1.schema.json",
"title": "ExitDrill CiviCRM case-search workflow result v0.1",
"type": "object",
"additionalProperties": false,
"required": [
"decision_scope",
"known_runtime_errors",
"limitations",
"schema_version",
"search_results",
"target_profile"
],
"properties": {
"decision_scope": {
"const": "pinned_synthetic_case_search_browser_workflow_only"
},
"known_runtime_errors": {
"const": [
{
"error_key": "jquery_notify_unavailable",
"occurrence_count": 2
}
]
},
"limitations": {
"const": [
"synthetic_fixture_only",
"target_evidence_is_unsigned_and_unauthenticated",
"single_case_search_browser_workflow_only",
"case_summary_drilldown_succeeded_before_subject_filter_failure",
"exact_subject_filter_returned_http_500",
"case_search_workflow_observed_with_known_jquery_notify_runtime_errors",
"does_not_prove_general_search_or_filter_usability",
"does_not_prove_root_cause_or_behavior_in_another_configuration",
"does_not_prove_operational_equivalence",
"target_version_and_execution_context_are_operator_asserted"
]
},
"schema_version": {
"const": "exitdrill/civicrm-case-search-workflow-result/v0.1"
},
"search_results": {
"type": "array",
"minItems": 1,
"maxItems": 1,
"prefixItems": [
{
"type": "object",
"additionalProperties": false,
"required": [
"evidence_kind",
"id",
"state"
],
"properties": {
"evidence_kind": {
"const": "isolated_headless_chromium_read_only_interaction"
},
"id": {
"const": "exact_subject_filter"
},
"state": {
"const": "http_500_observed"
}
}
}
],
"items": false
},
"target_profile": {
"const": "directus-11.17.4-civic-case-to-civicrm-standalone-6.16.2/v0.1"
}
}
}