Skip to content

Commit 4dfaffe

Browse files
authored
Merge pull request #210 from adcontextprotocol/bokelley/adcp-3-ga-regen
feat(schemas): regen for AdCP 3.0 GA — custom pricing + experimental_features
2 parents 63732c8 + 9ff08c9 commit 4dfaffe

631 files changed

Lines changed: 11820 additions & 6860 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

schemas/cache/a2ui/bound-value.json

Lines changed: 17 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
{
22
"$schema": "http://json-schema.org/draft-07/schema#",
3-
"$id": "/schemas/latest/a2ui/bound-value.json",
43
"title": "A2UI Bound Value",
54
"description": "A value that can be a literal or bound to a path in the data model",
65
"oneOf": [
@@ -13,7 +12,9 @@
1312
"description": "Static string value"
1413
}
1514
},
16-
"required": ["literalString"],
15+
"required": [
16+
"literalString"
17+
],
1718
"additionalProperties": false
1819
},
1920
{
@@ -25,7 +26,9 @@
2526
"description": "Static number value"
2627
}
2728
},
28-
"required": ["literalNumber"],
29+
"required": [
30+
"literalNumber"
31+
],
2932
"additionalProperties": false
3033
},
3134
{
@@ -37,7 +40,9 @@
3740
"description": "Static boolean value"
3841
}
3942
},
40-
"required": ["literalBoolean"],
43+
"required": [
44+
"literalBoolean"
45+
],
4146
"additionalProperties": false
4247
},
4348
{
@@ -49,7 +54,9 @@
4954
"description": "JSON pointer path to value in data model (e.g., '/products/0/title')"
5055
}
5156
},
52-
"required": ["path"],
57+
"required": [
58+
"path"
59+
],
5360
"additionalProperties": false
5461
},
5562
{
@@ -63,8 +70,11 @@
6370
"type": "string"
6471
}
6572
},
66-
"required": ["literalString", "path"],
73+
"required": [
74+
"literalString",
75+
"path"
76+
],
6777
"additionalProperties": false
6878
}
6979
]
70-
}
80+
}

schemas/cache/a2ui/component.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
{
22
"$schema": "http://json-schema.org/draft-07/schema#",
3-
"$id": "/schemas/latest/a2ui/component.json",
43
"title": "A2UI Component",
54
"description": "A component in an A2UI surface",
65
"type": "object",
@@ -24,6 +23,9 @@
2423
}
2524
}
2625
},
27-
"required": ["id", "component"],
26+
"required": [
27+
"id",
28+
"component"
29+
],
2830
"additionalProperties": true
29-
}
31+
}

0 commit comments

Comments
 (0)