changedInput schema / properties / include / description
Previous value: -"Related data to inline. \"agenda\" includes the meeting agenda with bill references. \"participants\" includes the committee or chamber hosting the event."New value: +"Related data to inline. \"agenda\" includes the meeting agenda with bill references. \"participants\" includes the committee or chamber hosting the event. \"links\" and \"media\" add related URLs and recordings, \"documents\" the attached files, and \"sources\" the provenance URLs behind the record."
addedOutput schema / properties / results / items / properties / documents
Added value: +{
+ "description": "Document links when include=documents is requested.",
+ "items": {
+ "additionalProperties": false,
+ "description": "Document link record.",
+ "properties": {
+ "note": {
+ "description": "Document description.",
+ "type": "string"
+ },
+ "url": {
+ "description": "Document URL.",
+ "type": "string"
+ }
+ },
+ "required": [
+ "url",
+ "note"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+}
addedOutput schema / properties / results / items / properties / links
Added value: +{
+ "description": "Event links when include=links is requested.",
+ "items": {
+ "additionalProperties": false,
+ "description": "External link record.",
+ "properties": {
+ "note": {
+ "description": "Link description.",
+ "type": "string"
+ },
+ "url": {
+ "description": "Link URL.",
+ "type": "string"
+ }
+ },
+ "required": [
+ "url",
+ "note"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+}
addedOutput schema / properties / results / items / properties / media
Added value: +{
+ "description": "Media links when include=media is requested.",
+ "items": {
+ "additionalProperties": false,
+ "description": "Media link record.",
+ "properties": {
+ "note": {
+ "description": "Media description.",
+ "type": "string"
+ },
+ "url": {
+ "description": "Media URL.",
+ "type": "string"
+ }
+ },
+ "required": [
+ "url",
+ "note"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+}
changedOutput schema / properties / results / items / properties / participants / items / properties / role / description
Previous value: -"Participant role."New value: +"Participant role. Absent when upstream omits it."
changedOutput schema / properties / results / items / properties / participants / items / required
Previous value: -[
- "name",
- "entity_type",
- "role"
-]New value: +[
+ "name",
+ "entity_type"
+]
addedOutput schema / properties / results / items / properties / sources
Added value: +{
+ "description": "Provenance sources when include=sources is requested.",
+ "items": {
+ "additionalProperties": false,
+ "description": "Source record.",
+ "properties": {
+ "note": {
+ "description": "Source note.",
+ "type": "string"
+ },
+ "url": {
+ "description": "Source URL.",
+ "type": "string"
+ }
+ },
+ "required": [
+ "url",
+ "note"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+}