{ "swagger": "2.0", "info": { "description": "

This Swagger Page is for the FOIA Request Portal. Information about the FOIA Agency API can be found on the API Specs page.

Authorization with API Key

Use the Authorize button below to enter your api_key if you have one. You can signup for an API key or use the following api_key for testing.

N4aCuDuJO8Ucf1FTR2EzVPZqo8NsSl1c7YLYOk8N

Agency Component Entity ID

You can use the Entity ID for Office of Information Policy in the examples below:

8216158f-8089-431d-b866-dc334e8d4758", "title": "National FOIA Portal - JSON API", "version": "Versioning not supported" }, "host": "api.foia.gov", "basePath": "/api", "securityDefinitions": { "APIKeyHeader": { "type": "apiKey", "in": "header", "name": "X-API-Key" } }, "security": [{ "APIKeyHeader": [] }], "schemes": ["https"], "consumes": ["application\/vnd.api+json"], "produces": ["application\/vnd.api+json"], "paths": { "/agency_components": { "get": { "summary": "Get a List of Agency Components", "description": "

Request a list of Agency Components. The ID returned can be used to get more details about the Agency Component. Using parameters such as include and fields allow you to request complex data.

For Example:

A list of agency components with their parent agency.

https://api.foia.gov/api/agency_components?&include=agency&fields[agency]=name,abbreviation&fields[agency_component]=title,abbreviation,agency", "security": [{ "APIKeyHeader": [] }], "parameters": [{ "name": "fields[agency_component]", "required": false, "in": "query", "type": "string", "description": "You can choose which fields to include by using comma separated values in this parameter.

For Example:

This endpoint will return only the title and description.
https://api.foia.gov/api/agency_components?fields[agency_component]=title,description&api_key=N4aCuDuJO8Ucf1FTR2EzVPZqo8NsSl1c7YLYOk8N

Possible values:
title, status, abbreviation, moderation_state, description, email, submission_address" }, { "name": "fields[agency]", "required": false, "in": "query", "type": "string", "description": "You can choose which fields to include by using comma separated values in this parameter.

For Example:

This endpoint will return only the title and description.
https://api.foia.gov/api/agency_components?fields[agency_component]=title,description&api_key=N4aCuDuJO8Ucf1FTR2EzVPZqo8NsSl1c7YLYOk8N

Possible values:
title, status, abbreviation, moderation_state, description, email, submission_address" }, { "name": "page[limit]", "in": "query", "type": "number", "required": false, "description": "You can use page[limit] to return a maximum number of results.

Learn more about Pagination in the Drupal documentation.

" }, { "name": "page[offset]", "in": "query", "type": "string", "required": false, "description": "

The offset is the result you want to start with. An offset of 3 and a page[limit] of 10 will list ten items starting from item 3. Each JSON response from the API will have built in pagination under links.

Learn more about Pagination in the Drupal documentation.

" }, { "name": "include", "in": "query", "type": "string", "required": false, "description": "Embed related entities in the JSON response under relationships.

Learn more in the documentation.

Possible values:
agency, foia_officers, field_misc, public_liaisons, paper_receiver, request_form, service_centers

" } ], "tags": ["Agency Component"], "responses": { "200": { "description": "Successful Operation", "schema": { "title": "paragraph:admin_app_via Schema", "description": "Describes the payload for 'paragraph' entities of the 'admin_app_via' bundle.", "type": "object", "required": [ "data" ], "properties": { "data": { "type": "array", "items": { "$ref": "#/definitions/paragraph--admin_app_via/properties/data" } }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true }, "links": { "type": "object", "additionalProperties": { "description": "A link **MUST** be represented as either: a string containing the link's URL or a link object . ", "type": "object", "required": [ "href" ], "properties": { "href": { "description": "A string containing the link's URL . ", "type": "string", "format": "uri - reference" }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true } } } }, "jsonapi": { "description": "An object describing the server's implementation", "type": "object", "properties": { "version": { "type": "string" }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true } }, "additionalProperties": false } }, "additionalProperties": true } }, "400": { "description": "Syntax error" }, "403": { "description": "Forbidden: The api_key is missing" }, "404": { "description": "Not Found" } } } }, "/agency_components/{entity}": { "get": { "summary": "Get Agency Component Details", "description": "

Request details for an Agency Component by UUID.

", "parameters": [{ "name": "entity", "required": true, "in": "path", "type": "string", "description": "The uuid of the node agency_component" }], "tags": ["Agency Component"], "responses": { "200": { "description": "Successful Operation", "schema": { "$ref": "#/definitions/node--agency_component" } }, "400": { "description": "Syntax error" }, "403": { "description": "Forbidden: The api_key is missing" }, "404": { "description": "Agency Component Not Found" } } } }, "/agency": { "get": { "summary": "List Taxonomy: Agency", "description": "Endpoint for listing the agency taxonomy type. The ID returned can be used to get details on the term.", "parameters": [ { "name": "page[limit]", "in": "query", "type": "number", "required": false, "description": "You can use page[limit] to return a maximum number of results.

Learn more about Pagination in the Drupal documentation.

" }, { "name": "page[offset]", "in": "query", "type": "string", "required": false, "description": "

The offset is the result you want to start with. An offset of 3 and a page[limit] of 10 will list ten items starting from item 3. Each JSON response from the API will have built in pagination under links.

Learn more about Pagination in the Drupal documentation.

" }, { "name": "include", "in": "query", "type": "string", "required": false, "description": "Embed related entities in the JSON response under relationships.

Learn more in the documentation.

Possible values:
revision_user, category

" } ], "tags": [ "Agency Taxonomy" ], "responses": { "200": { "description": "successful operation", "schema": { "title": "taxonomy_term:agency Schema", "description": "Describes the payload for 'taxonomy_term' entities of the 'agency' bundle.", "type": "object", "required": [ "data" ], "properties": { "data": { "type": "array", "items": { "$ref": "#/definitions/taxonomy_term--agency/properties/data" } }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true }, "links": { "type": "object", "additionalProperties": { "description": "A link **MUST** be represented as either: a string containing the link's URL or a link object . ", "type": "object", "required": [ "href" ], "properties": { "href": { "description": "A string containing the link's URL . ", "type": "string", "format": "uri - reference" }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true } } } }, "jsonapi": { "description": "An object describing the server's implementation", "type": "object", "properties": { "version": { "type": "string" }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true } }, "additionalProperties": false } }, "additionalProperties": true } } } } }, "/agency/{entity}": { "get": { "summary": "Get Taxonomy Details: Agency", "description": "Endpoint for the agency taxonomy type. The individual endpoint contains details on the Agency Taxonomy Type.", "parameters": [{ "name": "entity", "required": true, "in": "path", "type": "string", "description": "The uuid of the taxonomy_term agency which can be found using the List Agency endpoint above. You can use the ID 0562281a-9b9f-4f43-89c3-d1661841d5a4 as an example." }], "tags": [ "Agency Taxonomy" ], "responses": { "200": { "description": "successful operation", "schema": { "$ref": "#/definitions/taxonomy_term--agency" } } } } }, "/agency_components/{entity}/request_form": { "get": { "summary": "Get Agency Component Request Form", "description": "Get a Request Form for an Agency by UUID. A Request Form is necessary for submitting a FOIA Request using the webform/submit endpoint.
For Example:

https://api.foia.gov/api/agency_components/8216158f-8089-431d-b866-dc334e8d4758/request_form

You will get back the UUID 3d10c8bd-b803-467d-a9a3-797cf8c760a7 for the NARA-WJCPL form.

", "parameters": [{ "name": "entity", "required": true, "in": "path", "type": "string", "description": "The uuid of the node agency_component" }], "tags": ["Agency Component"], "responses": { "200": { "description": "Successful Operation" }, "400": { "description": "Syntax error" }, "403": { "description": "Forbidden: The api_key is missing" }, "404": { "description": "Not Found" } } } }, "/annual_foia_report": { "get": { "summary": "List Annual FOIA Reports", "description": "Endpoint for listing Annual Reports. You must restrict the results returned when using this endpoint due to the high number of reports.

offset results.

", "parameters": [{ "name": "page[limit]", "in": "query", "type": "number", "required": true, "minimum": 1, "maximum": 10, "description": "Limiting the result set to 10 reports is necessary due to the high number of Annual Reports.

Learn more about Pagination in the Drupal documentation.

" }, { "name": "page[offset]", "in": "query", "type": "string", "required": false, "description": "

The offset is the result you want to start with. An offset of 3 and a page[limit] of 10 will list ten items starting from item 3. Each JSON response from the API will have built in pagination under links.

Learn more about Pagination in the Drupal documentation.

" }, { "name": "sort", "in": "query", "type": "array", "required": false, "description": "

You can sort results in alphabetical order by multiple fields such as title or by author uid.name.

Learn more about sorting in the Drupal documentation.

" }, { "name": "include", "in": "query", "type": "string", "required": false, "description": "Embed related entities in the JSON response under relationships.

Learn more in the documentation.

Possible values:
field_admin_app_via, field_admin_app_vib, field_admin_app_vic1, field_admin_app_vic2, field_admin_app_vic3, field_admin_app_vic4, field_admin_app_vic5, field_admin_app_viie, field_agency, field_agency_components, field_fees_x, field_foia_pers_costs_ix, field_foia_requests_va, field_foia_requests_vb1, field_foia_requests_vb2, field_foia_requests_vb3, field_foia_xiia, field_foia_xiib, field_foia_xiic, field_foia_xiid1, field_foia_xiid2, field_foia_xiie1, field_foia_xiie2, field_pending_requests_vii_d_, field_proc_req_viia, field_proc_req_viib, field_proc_req_viic1, field_proc_req_viic2, field_proc_req_viic3, field_report_files, field_req_viiia, field_req_viiib, field_statute_iv, field_sub_xia, field_sub_xib

" } ], "tags": [ "Annual FOIA Report Data" ], "responses": { "200": { "description": "successful operation", "schema": { "title": "node:annual_foia_report_data Schema", "description": "Annual total data report given by an agency.", "type": "object", "required": [ "data" ], "properties": { "data": { "type": "array", "items": { "$ref": "#/definitions/node--annual_foia_report_data/properties/data" } }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true }, "links": { "type": "object", "additionalProperties": { "description": "A link **MUST** be represented as either: a string containing the link's URL or a link object . ", "type": "object", "required": [ "href" ], "properties": { "href": { "description": "A string containing the link's URL . ", "type": "string", "format": "uri - reference" }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true } } } }, "jsonapi": { "description": "An object describing the server's implementation", "type": "object", "properties": { "version": { "type": "string" }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true } }, "additionalProperties": false } }, "additionalProperties": true } } } } }, "/annual_foia_report/fiscal_years": { "get": { "summary": "Get Annual Report: Fiscal Years", "description": "Request Fiscal Years for Annual Reports.", "security": [{ "APIKeyHeader": [] }], "parameters": [], "tags": ["Annual FOIA Report Data"], "responses": { "200": { "description": "Successful Operation" }, "400": { "description": "Syntax error" }, "403": { "description": "Forbidden: The api_key is missing" }, "404": { "description": "Not Found" } } } }, "/quarterly_foia_report": { "get": { "summary": "List Quarterly FOIA Reports", "description": "Endpoint for the quarterly_foia_report_data resource type.", "parameters": [{ "name": "page[limit]", "in": "query", "type": "number", "required": true, "minimum": 1, "maximum": 10, "description": "Limiting the result set to 10 reports is necessary due to the high number of Annual Reports.

Learn more about Pagination in the Drupal documentation.

" }, { "name": "page[offset]", "in": "query", "type": "string", "required": false, "description": "

The offset is the result you want to start with. An offset of 3 and a page[limit] of 10 will list ten items starting from item 3. Each JSON response from the API will have built in pagination under links.

Learn more about Pagination in the Drupal documentation.

" }, { "name": "sort", "in": "query", "type": "array", "required": false, "description": "

You can sort results in alphabetical order by multiple fields such as title or by author uid.name.

Learn more about sorting in the Drupal documentation.

" }, { "name": "include", "in": "query", "type": "string", "required": false, "description": "Embed related entities in the JSON response under relationships.

Learn more in the documentation.

Possible values:
field_agency, field_agency_components, field_quarterly_component_data

" } ], "tags": [ "Quarterly FOIA Report Data" ], "responses": { "200": { "description": "Successful Operation", "schema": { "title": "node:quarterly_foia_report_data Schema", "description": "Quarterly total data report given by an agency.", "type": "object", "required": [ "data" ], "properties": { "data": { "type": "array", "items": { "$ref": "#/definitions/node--quarterly_foia_report_data/properties/data" } }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true }, "links": { "type": "object", "additionalProperties": { "description": "A link **MUST** be represented as either: a string containing the link's URL or a link object . ", "type": "object", "required": [ "href" ], "properties": { "href": { "description": "A string containing the link's URL . ", "type": "string", "format": "uri - reference" }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true } } } }, "jsonapi": { "description": "An object describing the server's implementation", "type": "object", "properties": { "version": { "type": "string" }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true } }, "additionalProperties": false } }, "additionalProperties": true } } } } }, "/quarterly_foia_report/fiscal_years": { "get": { "summary": "Get Quarterly Report: Fiscal Years", "description": "Request Fiscal Years for Quarterly Reports.", "security": [{ "APIKeyHeader": [] }], "parameters": [], "tags": ["Quarterly FOIA Report Data"], "responses": { "200": { "description": "Successful Operation" }, "400": { "description": "Syntax error" }, "403": { "description": "Forbidden: The api_key is missing" }, "404": { "description": "Not Found" } } } }, "/annual-report-xml/{agency}/{year}": { "get": { "summary": "Individual Annual Reports in XML format are available via the Annual Report XML Endpoint.", "description": "

Annual Report XML

", "parameters": [{ "name": "agency", "in": "path", "type": "string", "required": true, "description": "

Agency Abbreviation such as DOJ.

" }, { "name": "year", "in": "path", "type": "number", "required": true, "description": "

The four digit year to return data from.

" } ], "tags": [ "Annual FOIA Report Data" ], "produces": [ "application/xml" ], "responses": { "200": { "description": "successful operation", "content": { "text/plain": { "schema": { "type": "string" } } } }, "403": { "description": "Forbidden: The api_key is missing" } } } }, "/node/cfo_meeting": { "get": { "summary": "List CFO Meetings", "description": "Endpoint for listing node--cfo_meeting resource type. The ID returned can be used to get details for the CFO Meeting.", "parameters": [{ "name": "page[limit]", "in": "query", "type": "number", "required": false, "description": "Limiting the result set to 10 reports is necessary due to the high number of Annual Reports.

Learn more about Pagination in the Drupal documentation.

" }, { "name": "page[offset]", "in": "query", "type": "string", "required": false, "description": "

The offset is the result you want to start with. An offset of 3 and a page[limit] of 10 will list ten items starting from item 3. Each JSON response from the API will have built in pagination under links.

Learn more about Pagination in the Drupal documentation.

" }, { "name": "sort", "in": "query", "type": "array", "required": false, "description": "
For Example:

You can sort results in alphabetical order by multiple fields such as title. You can also sort by other useful fields such as the author name uid.name.

field_meeting_date, changed, created, moderation_state

Learn more about sorting in the Drupal documentation.

" }, { "name": "sort[sort-created][direction]", "in": "query", "type": "string", "required": false, "description": "You can change the sorting direction by using either DESC and ASC." }, { "name": "include", "in": "query", "type": "string", "required": false, "description": "Embed related entities in the JSON response under relationships.

Learn more in the documentation.

Possible values:
node_type, revision_uid, uid, menu_link, field_meeting_agenda, field_meeting_documents, field_meeting_materials

" } ], "tags": [ "CFO Meeting" ], "responses": { "200": { "description": "successful operation", "schema": { "title": "node:cfo_meeting Schema", "description": "Meetings for the Chief FOIA Officers Council. Contains the date, body, heading, agenda, and links to meeting related documents and information.", "type": "object", "required": [ "data" ], "properties": { "data": { "type": "array", "items": { "$ref": "#/definitions/node--cfo_meeting/properties/data" } }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true }, "links": { "type": "object", "additionalProperties": { "description": "A link **MUST** be represented as either: a string containing the link's URL or a link object . ", "type": "object", "required": [ "href" ], "properties": { "href": { "description": "A string containing the link's URL . ", "type": "string", "format": "uri - reference" }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true } } } }, "jsonapi": { "description": "An object describing the server's implementation", "type": "object", "properties": { "version": { "type": "string" }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true } }, "additionalProperties": false } }, "additionalProperties": true } }, "403": { "description": "Forbidden: The api_key is missing" } } } }, "/cfo_meeting/{entity}": { "get": { "summary": "Get CFO Meeting", "description": "Individual endpoint for the node--cfo_meeting resource type. You can use the following entity ID as an example.

142af11a-14ae-4372-8eda-6aadcb3154a6

", "parameters": [{ "name": "entity", "required": true, "in": "path", "type": "string", "description": "The uuid of the node cfo_meeting which can be found by using the List CFO Meetings above." }], "tags": [ "CFO Meeting" ], "responses": { "200": { "description": "successful operation", "schema": { "type": "object", "properties": { "data": { "description": "An array of objects each containing \\\"type\\\" and \\\"id\\\" members for to-many relationships.", "type": "array", "items": { "description": "The \"type\" and \"id\" to non-empty members.", "type": "object", "required": [ "type", "id" ], "properties": { "type": { "title": "Resource type name", "type": "string", "enum": [ "paragraph--link_or_file" ] }, "id": { "title": "Resource ID", "type": "string", "format": "uuid" }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true, "properties": { } } }, "additionalProperties": false }, "uniqueItems": true } } } }, "400": { "description": "Syntax error" }, "403": { "description": "Forbidden: The api_key is missing" }, "404": { "description": "Not Found" } } } }, "/cfo_meeting/{entity}/field_meeting_agenda": { "get": { "summary": "Get CFO Meeting Agenda Item", "description": "Endpoint for the paragraph--agenda_item resource type through the field_meeting_agenda relationship.", "parameters": [{ "name": "entity", "required": true, "in": "path", "type": "string", "description": "The uuid of the node cfo_meeting" }], "tags": [ "CFO Meeting" ], "responses": { "200": { "description": "Successful Operation", "schema": { "title": "paragraph:agenda_item Schema", "description": "Describes the payload for 'paragraph' entities of the 'agenda_item' bundle.", "type": "object", "required": [ "data" ], "properties": { "data": { "type": "array", "items": { "$ref": "#/definitions/paragraph--agenda_item/properties/data" } }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true }, "links": { "type": "object", "additionalProperties": { "description": "A link **MUST** be represented as either: a string containing the link's URL or a link object . ", "type": "object", "required": [ "href" ], "properties": { "href": { "description": "A string containing the link's URL . ", "type": "string", "format": "uri - reference" }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true } } } }, "jsonapi": { "description": "An object describing the server's implementation", "type": "object", "properties": { "version": { "type": "string" }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true } }, "additionalProperties": false } }, "additionalProperties": true } }, "400": { "description": "Syntax error" }, "403": { "description": "Forbidden: The api_key is missing" }, "404": { "description": "Not Found" } } } }, "/cfo_meeting/{entity}/field_meeting_documents": { "get": { "summary": "Get CFO Meeting Documents", "description": "Endpoint for the paragraph--link_or_file resource type through the field_meeting_documents resource object.", "parameters": [{ "name": "entity", "required": true, "in": "path", "type": "string", "description": "The uuid of the node cfo_meeting." }], "tags": [ "CFO Meeting" ], "responses": { "200": { "description": "Successful Operation", "schema": { "title": "paragraph:link_or_file Schema", "description": "Describes the payload for 'paragraph' entities of the 'link_or_file' bundle.", "type": "object", "required": [ "data" ], "properties": { "data": { "type": "array", "items": { "$ref": "#/definitions/paragraph--link_or_file/properties/data" } }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true }, "links": { "type": "object", "additionalProperties": { "description": "A link **MUST** be represented as either: a string containing the link's URL or a link object . ", "type": "object", "required": [ "href" ], "properties": { "href": { "description": "A string containing the link's URL . ", "type": "string", "format": "uri - reference" }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true } } } }, "jsonapi": { "description": "An object describing the server's implementation", "type": "object", "properties": { "version": { "type": "string" }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true } }, "additionalProperties": false } }, "additionalProperties": true } }, "400": { "description": "Syntax error" }, "403": { "description": "Forbidden: The api_key is missing" }, "404": { "description": "Not Found" } } } }, "/cfo_meeting/{entity}/field_meeting_materials": { "get": { "summary": "Get CFO Meeting Materials", "description": "Endpoint for the paragraph--link_or_file resource type through the field_meeting_materials relationship.", "parameters": [{ "name": "entity", "required": true, "in": "path", "type": "string", "description": "The uuid of the node cfo_meeting" }], "tags": [ "CFO Meeting" ], "responses": { "200": { "description": "Successful Operation", "schema": { "title": "paragraph:link_or_file Schema", "description": "Describes the payload for 'paragraph' entities of the 'link_or_file' bundle.", "type": "object", "required": [ "data" ], "properties": { "data": { "type": "array", "items": { "$ref": "#/definitions/paragraph--link_or_file/properties/data" } }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true }, "links": { "type": "object", "additionalProperties": { "description": "A link **MUST** be represented as either: a string containing the link's URL or a link object . ", "type": "object", "required": [ "href" ], "properties": { "href": { "description": "A string containing the link's URL . ", "type": "string", "format": "uri - reference" }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true } } } }, "jsonapi": { "description": "An object describing the server's implementation", "type": "object", "properties": { "version": { "type": "string" }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true } }, "additionalProperties": false } }, "additionalProperties": true } }, "400": { "description": "Syntax error" }, "403": { "description": "Forbidden: The api_key is missing" }, "404": { "description": "Not Found" } } } }, "/node/cfo_committee": { "get": { "summary": "List CFO Committees", "description": "Endpoint for listing the node--cfo_committee resource type.", "parameters": [{ "name": "page[limit]", "in": "query", "type": "number", "required": false, "description": "Limiting the result set to 10 reports is necessary due to the high number of Annual Reports.

Learn more about Pagination in the Drupal documentation.

" }, { "name": "page[offset]", "in": "query", "type": "string", "required": false, "description": "

The offset is the result you want to start with. An offset of 3 and a page[limit] of 10 will list ten items starting from item 3. Each JSON response from the API will have built in pagination under links.

Learn more about Pagination in the Drupal documentation.

" }, { "name": "sort", "in": "query", "type": "array", "required": false, "description": "

You can sort results in alphabetical order by multiple fields such as title or by author uid.name.

Learn more about sorting in the Drupal documentation.

" }, { "name": "sort[sort-created][direction]", "in": "query", "type": "string", "required": false, "description": "You can change the sorting direction by using either DESC and ASC." }, { "name": "include", "in": "query", "type": "string", "required": false, "description": "Embed related entities in the JSON response under relationships.

Learn more in the documentation.

Possible values:
node_type, revision_uid, uid, menu_link, field_attachments, field_working_groups

" } ], "tags": [ "CFO Committee" ], "responses": { "200": { "description": "successful operation", "schema": { "title": "node:cfo_committee Schema", "description": "Committees of the Chief FOIA Officers Council. Includes title and WYSIWYG description fields.", "type": "object", "required": [ "data" ], "properties": { "data": { "type": "array", "items": { "$ref": "#/definitions/node--cfo_committee/properties/data" } }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true }, "links": { "type": "object", "additionalProperties": { "description": "A link **MUST** be represented as either: a string containing the link's URL or a link object . ", "type": "object", "required": [ "href" ], "properties": { "href": { "description": "A string containing the link's URL . ", "type": "string", "format": "uri - reference" }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true } } } }, "jsonapi": { "description": "An object describing the server's implementation", "type": "object", "properties": { "version": { "type": "string" }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true } }, "additionalProperties": false } }, "additionalProperties": true } }, "400": { "description": "Syntax error" }, "403": { "description": "Forbidden: The api_key is missing" }, "404": { "description": "Not Found" } } } }, "/node/cfo_committee/{entity}": { "get": { "summary": "View CFO Committee Details", "description": "Endpoint for viewing details for the node--cfo_committee resource type. The individual endpoint contains a resource object with the data for a particular resource or entity.
For Example:

You can use the entity ID e324aa8d-341b-4234-be08-3bf3f19c3af8 to look up details for this CFO Committee.

", "parameters": [{ "name": "entity", "required": true, "in": "path", "type": "string", "description": "The uuid of the node cfo_committee" }], "tags": [ "CFO Committee" ], "responses": { "200": { "description": "successful operation", "schema": { "$ref": "#/definitions/node--cfo_committee" } }, "403": { "description": "Forbidden: The api_key is missing" } } } }, "/node/cfo_committee/{entity}/field_working_groups": { "get": { "summary": "CFO Committee Working Groups", "description": "Related endpoint for the paragraph--working_groups resource type through the field_working_groups relationship. The related endpoint contains a resource object with the data for a particular related resource or entity.", "parameters": [{ "name": "entity", "required": true, "in": "path", "type": "string", "description": "The uuid of the node cfo_committee which you can find by using the List CFO Meetings endpoint above. " }], "tags": [ "CFO Committee" ], "responses": { "200": { "description": "successful operation", "schema": { "title": "paragraph:working_groups Schema", "description": "Describes the payload for 'paragraph' entities of the 'working_groups' bundle.", "type": "object", "required": [ "data" ], "properties": { "data": { "type": "array", "items": { "$ref": "#/definitions/paragraph--working_groups/properties/data" } }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true }, "links": { "type": "object", "additionalProperties": { "description": "A link **MUST** be represented as either: a string containing the link's URL or a link object . ", "type": "object", "required": [ "href" ], "properties": { "href": { "description": "A string containing the link's URL . ", "type": "string", "format": "uri - reference" }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true } } } }, "jsonapi": { "description": "An object describing the server's implementation", "type": "object", "properties": { "version": { "type": "string" }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true } }, "additionalProperties": false } }, "additionalProperties": true } }, "400": { "description": "Syntax error" }, "403": { "description": "Forbidden: The api_key is missing" }, "404": { "description": "Not Found" } } } }, "/node/cfo_committee/{entity}/field_attachments": { "get": { "summary": "CFO Committee Attachments", "description": "Endpoint for the paragraph--attachments resource type through the field_attachments relationship.", "parameters": [{ "name": "entity", "required": true, "in": "path", "type": "string", "description": "The uuid of the node cfo_committee" }], "tags": [ "CFO Committee" ], "responses": { "200": { "description": "successful operation", "schema": { "title": "paragraph:attachments Schema", "description": "Describes the payload for 'paragraph' entities of the 'attachments' bundle.", "type": "object", "required": [ "data" ], "properties": { "data": { "type": "array", "items": { "$ref": "#/definitions/paragraph--attachments/properties/data" } }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true }, "links": { "type": "object", "additionalProperties": { "description": "A link **MUST** be represented as either: a string containing the link's URL or a link object . ", "type": "object", "required": [ "href" ], "properties": { "href": { "description": "A string containing the link's URL . ", "type": "string", "format": "uri - reference" }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true } } } }, "jsonapi": { "description": "An object describing the server's implementation", "type": "object", "properties": { "version": { "type": "string" }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true } }, "additionalProperties": false } }, "additionalProperties": true } }, "403": { "description": "Forbidden: The api_key is missing" } } } }, "/node/cfo_council": { "get": { "summary": "List CFO Councils", "description": "Endpoint for the node--cfo_council resource type which will list all CFO Council Nodes.", "parameters": [{ "name": "page[limit]", "in": "query", "type": "number", "required": false, "description": "Limiting the result set to 10 reports is necessary due to the high number of Annual Reports.

Learn more about Pagination in the Drupal documentation.

" }, { "name": "page[offset]", "in": "query", "type": "string", "required": false, "description": "

The offset is the result you want to start with. An offset of 3 and a page[limit] of 10 will list ten items starting from item 3. Each JSON response from the API will have built in pagination under links.

Learn more about Pagination in the Drupal documentation.

" }, { "name": "sort", "in": "query", "type": "array", "required": false, "description": "

You can sort results in alphabetical order by multiple fields such as title or by author uid.name.

Learn more about sorting in the Drupal documentation.

" }, { "name": "sort[sort-created][direction]", "in": "query", "type": "string", "required": false, "description": "You can change the sorting direction by using either DESC and ASC." }, { "name": "include", "in": "query", "type": "string", "required": false, "description": "Embed related entities in the JSON response under relationships.

Learn more in the documentation.

Possible values:
node_type, revision_uid, uid, menu_link, field_council_committees

" } ], "tags": [ "CFO Council" ], "responses": { "200": { "description": "successful operation", "schema": { "title": "node:cfo_council Schema", "description": "The main page for the Chief FOIA Officers Council. Assign committees to the council. Meetings will be automatically attached.", "type": "object", "required": [ "data" ], "properties": { "data": { "type": "array", "items": { "$ref": "#/definitions/node--cfo_council/properties/data" } }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true }, "links": { "type": "object", "additionalProperties": { "description": "A link **MUST** be represented as either: a string containing the link's URL or a link object . ", "type": "object", "required": [ "href" ], "properties": { "href": { "description": "A string containing the link's URL . ", "type": "string", "format": "uri - reference" }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true } } } }, "jsonapi": { "description": "An object describing the server's implementation", "type": "object", "properties": { "version": { "type": "string" }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true } }, "additionalProperties": false } }, "additionalProperties": true } }, "403": { "description": "Forbidden: The api_key is missing" } } } }, "/node/cfo_council/{entity}": { "get": { "summary": "Get CFO Council Details", "description": "Endpoint for the node--cfo_council resource type. The individual endpoint contains the data for a particular CFO Council. You can use the CFO Council Entity ID 79440b59-6640-460a-8589-2ef2ce3f2bfe as an example.", "parameters": [{ "name": "entity", "required": true, "in": "path", "type": "string", "description": "The uuid of the node cfo_council" }], "tags": [ "CFO Council" ], "responses": { "200": { "description": "successful operation", "schema": { "$ref": "#/definitions/node--cfo_council" } }, "400": { "description": "Syntax error" }, "403": { "description": "Forbidden: The api_key is missing" }, "404": { "description": "Not Found" } } } }, "/node/cfo_page": { "get": { "summary": "List CFO Pages", "description": "Endpoint for listing the node--cfo_page resource type. The ID returned can be used to get details on an individual CFO Page.", "parameters": [{ "name": "page[limit]", "in": "query", "type": "number", "required": false, "description": "Limiting the result set to 10 reports is necessary due to the high number of Annual Reports.

Learn more about Pagination in the Drupal documentation.

" }, { "name": "page[offset]", "in": "query", "type": "string", "required": false, "description": "

The offset is the result you want to start with. An offset of 3 and a page[limit] of 10 will list ten items starting from item 3. Each JSON response from the API will have built in pagination under links.

Learn more about Pagination in the Drupal documentation.

" }, { "name": "sort", "in": "query", "type": "array", "required": false, "description": "

You can sort results in alphabetical order by multiple fields such as title or by author uid.name.

Learn more about sorting in the Drupal documentation.

" }, { "name": "include", "in": "query", "type": "string", "required": false, "description": "Embed related entities in the JSON response under relationships.

Learn more in the documentation.

Possible values:
node_type, revision_uid, uid, menu_link, field_attachments.

" } ], "tags": [ "CFO Page" ], "responses": { "200": { "description": "successful operation", "schema": { "title": "node:cfo_page Schema", "description": "Pages for the Chief FOIA Officers Council. CFO Pages have title, body, and URL slug fields. They are available via a JSON feed.", "type": "object", "required": [ "data" ], "properties": { "data": { "type": "array", "items": { "$ref": "#/definitions/node--cfo_page/properties/data" } }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true }, "links": { "type": "object", "additionalProperties": { "description": "A link **MUST** be represented as either: a string containing the link's URL or a link object . ", "type": "object", "required": [ "href" ], "properties": { "href": { "description": "A string containing the link's URL . ", "type": "string", "format": "uri - reference" }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true } } } }, "jsonapi": { "description": "An object describing the server's implementation", "type": "object", "properties": { "version": { "type": "string" }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true } }, "additionalProperties": false } }, "additionalProperties": true } }, "400": { "description": "Syntax error" }, "403": { "description": "Forbidden: The api_key is missing" }, "404": { "description": "Not Found" } } } }, "/node/cfo_page/{entity}": { "get": { "summary": "Get CFO Page Details", "description": "Endpoint for the node--cfo_page resource type details. The individual endpoint contains details for a particular resource or entity.

You can use the entity ID 42b31773-2e87-4251-86b0-9a7af5e40940 to get details on an example page.

", "parameters": [{ "name": "entity", "required": true, "in": "path", "type": "string", "description": "The uuid of the node cfo_page" }], "tags": [ "CFO Page" ], "responses": { "200": { "description": "successful operation", "schema": { "$ref": "#/definitions/node--cfo_page" } }, "400": { "description": "Syntax error" }, "403": { "description": "Forbidden: The api_key is missing" }, "404": { "description": "Not Found" } } } }, "/node/cfo_page/{entity}/field_attachments": { "get": { "summary": "CFO Page Attachments", "description": "Endpoint for the paragraph--attachments resource type through the field_attachments relationship.", "parameters": [{ "name": "entity", "required": true, "in": "path", "type": "string", "description": "The uuid of the node cfo_page" }], "tags": [ "CFO Page" ], "responses": { "200": { "description": "successful operation", "schema": { "title": "paragraph:attachments Schema", "description": "Describes the payload for 'paragraph' entities of the 'attachments' bundle.", "type": "object", "required": [ "data" ], "properties": { "data": { "type": "array", "items": { "$ref": "#/definitions/paragraph--attachments/properties/data" } }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true }, "links": { "type": "object", "additionalProperties": { "description": "A link **MUST** be represented as either: a string containing the link's URL or a link object . ", "type": "object", "required": [ "href" ], "properties": { "href": { "description": "A string containing the link's URL . ", "type": "string", "format": "uri - reference" }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true } } } }, "jsonapi": { "description": "An object describing the server's implementation", "type": "object", "properties": { "version": { "type": "string" }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true } }, "additionalProperties": false } }, "additionalProperties": true } }, "400": { "description": "Syntax error" }, "403": { "description": "Forbidden: The api_key is missing" }, "404": { "description": "Not Found" } } } } }, "definitions": { "node--agency_component": { "title": "node:agency_component Schema", "description": "An Agency Component to which a request can be sent and which will be fulfilling requests.", "type": "object", "required": ["data"], "properties": { "data": { "description": "\\\u0022Resource objects\\\u0022 appear in a JSON:API document to represent resources.", "type": "object", "required": ["type", "id"], "properties": { "type": { "type": "string", "title": "type", "description": "Resource type", "enum": ["agency_component"] }, "id": { "type": "string", "title": "Resource ID", "format": "uuid", "maxLength": 128 }, "attributes": { "description": "Entity attributes", "type": "object", "additionalProperties": false, "properties": { "status": { "type": "boolean", "title": "Published", "default": true }, "title": { "type": "string", "title": "Agency Component Name", "maxLength": 255 }, "moderation_state": { "type": "string", "title": "Moderation state", "maxLength": 255, "description": "The moderation state of this piece of content." }, "description": { "type": "object", "properties": { "value": { "type": "string", "title": "Text" }, "format": { "type": "string", "title": "Text format" }, "summary": { "type": "string", "title": "Summary" } }, "required": ["value"], "title": "Agency Component Description", "description": "Describes the Agency Component, and provides any textual information needed." }, "abbreviation": { "type": "string", "title": "Abbreviation", "maxLength": 50 }, "telephone": { "type": "string", "title": "Telephone" }, "request_data_complex_average_days": { "type": "string", "title": "Complex Average Days", "maxLength": 255 }, "request_data_complex_highest_days": { "type": "string", "title": "Complex Highest Days", "maxLength": 255 }, "request_data_complex_lowest_days": { "type": "string", "title": "Complex Lowest Days", "maxLength": 255 }, "request_data_complex_median_days": { "type": "string", "title": "Complex Median Days", "maxLength": 255 }, "email": { "type": "array", "title": "Email", "items": { "type": "string", "title": "Email", "format": "email" } }, "request_data_expedited_average_days": { "type": "string", "title": "Expedited Average Days", "maxLength": 255 }, "request_data_expedited_highest_days": { "type": "string", "title": "Expedited Highest Days", "maxLength": 255 }, "request_data_expedited_lowest_days": { "type": "string", "title": "Expedited Lowest Days", "maxLength": 255 }, "request_data_expedited_median_days": { "type": "string", "title": "Expedited Median Days", "maxLength": 255 }, "is_centralized": { "type": "boolean", "title": "Is Centralized", "description": "Denotes whether or not this Agency Component belongs to a centralized agency. If it is the only component in the agency, the value should be set to true.", "default": false }, "portal_submission_format": { "type": "string", "title": "Portal Submission Format", "enum": ["email", "api"], "description": "Select the means by which the Portal should submit requests to the Agency Component.", "default": "email" }, "reading_rooms": { "type": "array", "title": "Reading Rooms", "items": { "type": "object", "properties": { "uri": { "type": "string", "title": "URI" }, "title": { "type": "string", "title": "Link text" } }, "title": "Options" } }, "field_rep_exp": { "type": "object", "properties": { "value": { "type": "string", "title": "Date value", "format": "date" } }, "required": ["value"], "title": "Report Expiration Date", "description": "If the agency\/component no longer exists, please enter the last day of the FY for which the agency\/component submitted an Annual FOIA Report. Agencies\/Components with an expiration date will not display data for subsequent FY after that date." }, "field_rep_start": { "type": "object", "properties": { "value": { "type": "string", "title": "Date value", "format": "date" } }, "required": ["value"], "title": "Report Start Date", "description": "Please enter the first day of the FY that this agency\/component began reporting in the Annual FOIA Report. All agencies that have submitted or are submitting Annual FOIA Reports must have a Reporting Start Date." }, "request_data_year": { "type": "string", "title": "Request Data Year", "maxLength": 5 }, "request_data_simple_average_days": { "type": "string", "title": "Simple Average Days", "maxLength": 255 }, "request_data_simple_highest_days": { "type": "string", "title": "Simple Highest Days", "maxLength": 255 }, "request_data_simple_lowest_days": { "type": "string", "title": "Simple Lowest Days", "maxLength": 255 }, "request_data_simple_median_days": { "type": "string", "title": "Simple Median Days", "maxLength": 255 }, "submission_address": { "type": "object", "properties": { "langcode": { "type": "string", "title": "The language code" }, "country_code": { "type": "string", "title": "The two-letter country code" }, "administrative_area": { "type": "string", "title": "The top-level administrative subdivision of the country" }, "locality": { "type": "string", "title": "The locality (i.e. city)" }, "dependent_locality": { "type": "string", "title": "The dependent locality (i.e. neighbourhood)" }, "postal_code": { "type": "string", "title": "The postal code" }, "sorting_code": { "type": "string", "title": "The sorting code" }, "address_line1": { "type": "string", "title": "The first line of the address block" }, "address_line2": { "type": "string", "title": "The second line of the address block" }, "organization": { "type": "string", "title": "The organization" }, "given_name": { "type": "string", "title": "The given name" }, "additional_name": { "type": "string", "title": "The additional name" }, "family_name": { "type": "string", "title": "The family name" } }, "title": "Submission Address", "description": "Note: If the zip-code provided is not valid for that State, an error message saying the zip-code format is invalid will be displayed." }, "submission_fax": { "type": "string", "title": "Submission Fax" }, "submission_web": { "type": "object", "properties": { "uri": { "type": "string", "title": "URI" }, "title": { "type": "string", "title": "Link text" } }, "title": "Submission Web" }, "website": { "type": "object", "properties": { "uri": { "type": "string", "title": "URI" }, "title": { "type": "string", "title": "Link text" } }, "title": "Website", "description": "The full URL of the Agency Component\\\u0027s website." } }, "required": ["title"] }, "relationships": { "description": "Entity relationships", "type": "object", "additionalProperties": false, "properties": { "agency": { "type": "object", "properties": { "data": { "type": "object", "required": ["type", "id"], "properties": { "type": { "type": "string", "title": "Referenced resource", "enum": ["agency"] }, "id": { "type": "string", "title": "Resource ID", "format": "uuid", "maxLength": 128 } } } }, "title": "Agency" }, "foia_officers": { "type": "object", "properties": { "data": { "type": "array", "items": { "type": "object", "required": ["type", "id"], "properties": { "type": { "type": "string", "title": "Referenced resource", "enum": ["foia_personnel"] }, "id": { "type": "string", "title": "Resource ID", "format": "uuid", "maxLength": 128 } } } } }, "title": "FOIA Officers" }, "field_misc": { "type": "object", "properties": { "data": { "type": "array", "items": { "type": "object", "required": ["type", "id"], "properties": { "type": { "type": "string", "title": "Referenced resource", "enum": ["foia_personnel"] }, "id": { "type": "string", "title": "Resource ID", "format": "uuid", "maxLength": 128 } } } } }, "title": "Misc" }, "public_liaisons": { "type": "object", "properties": { "data": { "type": "array", "items": { "type": "object", "required": ["type", "id"], "properties": { "type": { "type": "string", "title": "Referenced resource", "enum": ["foia_personnel"] }, "id": { "type": "string", "title": "Resource ID", "format": "uuid", "maxLength": 128 } } } } }, "title": "Public Liaisons" }, "paper_receiver": { "type": "object", "properties": { "data": { "type": "object", "required": ["type", "id"], "properties": { "type": { "type": "string", "title": "Referenced resource", "enum": ["foia_personnel"] }, "id": { "type": "string", "title": "Resource ID", "format": "uuid", "maxLength": 128 } } } }, "title": "Receiver" }, "request_form": { "type": "object", "properties": { "data": { "type": "object", "required": ["type", "id"], "properties": { "type": { "type": "string", "title": "Referenced resource", "enum": ["webform"] }, "id": { "type": "string", "title": "Resource ID", "format": "uuid", "maxLength": 128 } } } }, "title": "Request Submission Form" }, "service_centers": { "type": "object", "properties": { "data": { "type": "array", "items": { "type": "object", "required": ["type", "id"], "properties": { "type": { "type": "string", "title": "Referenced resource", "enum": ["foia_personnel"] }, "id": { "type": "string", "title": "Resource ID", "format": "uuid", "maxLength": 128 } } } } }, "title": "Service Centers" } } }, "links": { "type": "object", "additionalProperties": { "description": "A link **MUST** be represented as either: a string containing the link\u0027s URL or a link object . ", "type": "object", "required": ["href"], "properties": { "href": { "description": "A string containing the link\u0027s URL . ", "type": "string", "format": "uri - reference" }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true } } } }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true } }, "additionalProperties": false }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true }, "links": { "type": "object", "additionalProperties": { "description": "A link **MUST** be represented as either: a string containing the link\u0027s URL or a link object . ", "type": "object", "required": ["href"], "properties": { "href": { "description": "A string containing the link\u0027s URL . ", "type": "string", "format": "uri - reference" }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true } } } }, "jsonapi": { "description": "An object describing the server\u0027s implementation", "type": "object", "properties": { "version": { "type": "string" }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true } }, "additionalProperties": false } }, "additionalProperties": true }, "paragraph--agenda_item": { "title": "paragraph:agenda_item Schema", "description": "Describes the payload for 'paragraph' entities of the 'agenda_item' bundle.", "type": "object", "required": [ "data" ], "properties": { "data": { "description": "\\\"Resource objects\\\" appear in a JSON:API document to represent resources.", "type": "object", "required": [ "type", "id" ], "properties": { "type": { "type": "string", "title": "type", "description": "Resource type", "enum": [ "paragraph--agenda_item" ] }, "id": { "type": "string", "title": "Resource ID", "format": "uuid", "maxLength": 128 }, "attributes": { "description": "Entity attributes", "type": "object", "additionalProperties": false, "properties": { "drupal_internal__id": { "type": "integer", "title": "ID" }, "drupal_internal__revision_id": { "type": "integer", "title": "Revision ID" }, "langcode": { "type": "object", "properties": { "value": { "type": "string", "title": "Language code" }, "language": { "type": "language_reference", "title": "Language object", "description": "The referenced language" } }, "required": [ "value" ], "title": "Language code", "description": "The paragraphs entity language code." }, "status": { "type": "boolean", "title": "Published", "default": true }, "created": { "type": "number", "title": "Authored on", "format": "utc-millisec", "description": "The time that the Paragraph was created." }, "parent_id": { "type": "string", "title": "Parent ID", "maxLength": 255, "description": "The ID of the parent entity of which this entity is referenced." }, "parent_type": { "type": "string", "title": "Parent type", "maxLength": 32, "description": "The entity parent type to which this entity is referenced." }, "parent_field_name": { "type": "string", "title": "Parent field name", "maxLength": 32, "description": "The entity parent field name to which this entity is referenced." }, "behavior_settings": { "type": "string", "title": "Behavior settings", "description": "The behavior plugin settings", "default": "a:0:{}" }, "default_langcode": { "type": "boolean", "title": "Default translation", "description": "A flag indicating whether this is the default translation.", "default": true }, "revision_default": { "type": "boolean", "title": "Default revision", "description": "A flag indicating whether this was a default revision when it was saved." }, "revision_translation_affected": { "type": "boolean", "title": "Revision translation affected", "description": "Indicates if the last edit of a translation belongs to current revision." }, "field_agenda_item_description": { "type": "string", "title": "Description" }, "field_agenda_item_time": { "type": "integer", "title": "Time" }, "field_agenda_item_title": { "type": "string", "title": "Title", "maxLength": 255 } }, "required": [ "revision_translation_affected" ] }, "relationships": { "description": "Entity relationships", "type": "object", "additionalProperties": false, "properties": { "paragraph_type": { "type": "object", "properties": { "data": { "type": "object", "required": [ "type", "id" ], "properties": { "type": { "type": "string", "title": "Referenced resource", "enum": [ "paragraphs_type--paragraphs_type" ] }, "id": { "type": "string", "title": "Resource ID", "format": "uuid", "maxLength": 128 } } } }, "title": "Paragraph type" } } }, "links": { "type": "object", "additionalProperties": { "description": "A link **MUST** be represented as either: a string containing the link's URL or a link object . ", "type": "object", "required": [ "href" ], "properties": { "href": { "description": "A string containing the link's URL . ", "type": "string", "format": "uri - reference" }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true } } } }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true } }, "additionalProperties": false }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true }, "links": { "type": "object", "additionalProperties": { "description": "A link **MUST** be represented as either: a string containing the link's URL or a link object . ", "type": "object", "required": [ "href" ], "properties": { "href": { "description": "A string containing the link's URL . ", "type": "string", "format": "uri - reference" }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true } } } }, "jsonapi": { "description": "An object describing the server's implementation", "type": "object", "properties": { "version": { "type": "string" }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true } }, "additionalProperties": false } }, "additionalProperties": true }, "node--quarterly_foia_report_data": { "title": "node:quarterly_foia_report_data Schema", "description": "Quarterly total data report given by an agency.", "type": "object", "required": [ "data" ], "properties": { "data": { "description": "\\\"Resource objects\\\" appear in a JSON:API document to represent resources.", "type": "object", "required": [ "type", "id" ], "properties": { "type": { "type": "string", "title": "type", "description": "Resource type", "enum": [ "quarterly_foia_report_data" ] }, "id": { "type": "string", "title": "Resource ID", "format": "uuid", "maxLength": 128 }, "attributes": { "description": "Entity attributes", "type": "object", "additionalProperties": false, "properties": { "status": { "type": "boolean", "title": "Published", "default": false }, "title": { "type": "string", "title": "Title", "maxLength": 255 }, "field_quarterly_backlogged_oa": { "type": "integer", "title": "Agency Overall - Number of requests backlogged" }, "field_quarterly_closed": { "type": "integer", "title": "Ten Oldest Requests Closed", "description": "Of the ten or fewer requests identified in your previous response, please select the number of requests your agency has closed during the current fiscal year." }, "field_quarterly_pending": { "type": "integer", "title": "Ten Oldest Pending Requests", "description": "Did your agency have 10 or more perfected requests pending at the end of the last fiscal year?\r\n\r\n If so, please select the number 10.\r\n If your agency had fewer than 10, please select the correct number.\r\n" }, "field_quarterly_processed_oa": { "type": "integer", "title": "Agency Overall - Number of requests processed" }, "field_quarterly_quarter": { "type": "integer", "title": "Quarter", "enum": [ 1, 2, 3, 4 ] }, "field_quarterly_received_oa": { "type": "integer", "title": "Agency Overall - Number of requests received" }, "field_quarterly_year": { "type": "integer", "title": "Fiscal Year" } }, "required": [ "title", "field_quarterly_closed", "field_quarterly_pending", "field_quarterly_quarter", "field_quarterly_year" ] }, "relationships": { "description": "Entity relationships", "type": "object", "additionalProperties": false, "properties": { "field_agency": { "type": "object", "properties": { "data": { "type": "object", "required": [ "type", "id" ], "properties": { "type": { "type": "string", "title": "Referenced resource", "enum": [ "agency" ] }, "id": { "type": "string", "title": "Resource ID", "format": "uuid", "maxLength": 128 } } } }, "title": "Agency" }, "field_agency_components": { "type": "object", "properties": { "data": { "type": "array", "items": { "type": "object", "required": [ "type", "id" ], "properties": { "type": { "type": "string", "title": "Referenced resource" }, "id": { "type": "string", "title": "Resource ID", "format": "uuid", "maxLength": 128 } } } } }, "title": "Components" }, "field_quarterly_component_data": { "type": "object", "properties": { "data": { "type": "array", "items": { "type": "object", "required": [ "type", "id" ], "properties": { "type": { "type": "string", "title": "Referenced resource", "enum": [ "paragraph--quarterly_component_data" ] }, "id": { "type": "string", "title": "Resource ID", "format": "uuid", "maxLength": 128 } } } } }, "title": "Component data" } } }, "links": { "type": "object", "additionalProperties": { "description": "A link **MUST** be represented as either: a string containing the link's URL or a link object . ", "type": "object", "required": [ "href" ], "properties": { "href": { "description": "A string containing the link's URL . ", "type": "string", "format": "uri - reference" }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true } } } }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true } }, "additionalProperties": false }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true }, "links": { "type": "object", "additionalProperties": { "description": "A link **MUST** be represented as either: a string containing the link's URL or a link object . ", "type": "object", "required": [ "href" ], "properties": { "href": { "description": "A string containing the link's URL . ", "type": "string", "format": "uri - reference" }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true } } } }, "jsonapi": { "description": "An object describing the server's implementation", "type": "object", "properties": { "version": { "type": "string" }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true } }, "additionalProperties": false } }, "additionalProperties": true }, "node--annual_foia_report_data": { "title": "node:annual_foia_report_data Schema", "description": "Annual total data report given by an agency.", "type": "object", "required": [ "data" ], "properties": { "data": { "description": "\\\"Resource objects\\\" appear in a JSON:API document to represent resources.", "type": "object", "required": [ "type", "id" ], "properties": { "type": { "type": "string", "title": "type", "description": "Resource type", "enum": [ "annual_foia_report_data" ] }, "id": { "type": "string", "title": "Resource ID", "format": "uuid", "maxLength": 128 }, "attributes": { "description": "Entity attributes", "type": "object", "additionalProperties": false, "properties": { "status": { "type": "boolean", "title": "Published", "default": false }, "title": { "type": "string", "title": "Title", "maxLength": 255 }, "field_agency_abbr": { "type": "string", "title": "Agency Abbreviation", "maxLength": 255 }, "field_date_prepared": { "type": "string", "title": "Date Prepared", "maxLength": 255, "description": "Date must be formatted as YYYY-MM-DDE.g. 1979-01-29" }, "field_foia_annual_report_yr": { "type": "integer", "title": "FOIA Annual Report Year" }, "field_footnotes_iv": { "type": "array", "title": "Footnotes (IV.)", "description": "Allows entry of any free-format notes associated with this section of the report.", "items": { "type": "object", "properties": { "value": { "type": "string", "title": "Text" }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ] } }, "field_footnotes_ix": { "type": "object", "properties": { "value": { "type": "string", "title": "Text" }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Footnotes (IX.)", "description": "Allows entry of any free-format notes associated with this section of the report." }, "field_footnotes_va": { "type": "array", "title": "Footnotes (V.A.)", "items": { "type": "object", "properties": { "value": { "type": "string", "title": "Text" }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ] } }, "field_footnotes_vb1": { "type": "object", "properties": { "value": { "type": "string", "title": "Text" }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Footnotes (V.B.(1).)" }, "field_footnotes_vb2": { "type": "object", "properties": { "value": { "type": "string", "title": "Text" }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Footnotes (V.B.(2).)", "description": "Allows entry of any free-format notes associated with this section of the report." }, "field_footnotes_vb3": { "type": "object", "properties": { "value": { "type": "string", "title": "Text" }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Footnotes (V.B.(3).)", "description": "Allows entry of any free-format notes associated with this section of the report." }, "field_footnotes_via": { "type": "object", "properties": { "value": { "type": "string", "title": "Text" }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Footnotes (VI.A.)", "description": "Allows entry of any free-format notes associated with this section of the report." }, "field_footnotes_vib": { "type": "object", "properties": { "value": { "type": "string", "title": "Text" }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Footnotes (VI.B.)", "description": "Allows entry of any free-format notes associated with this section of the report." }, "field_footnotes_vic1": { "type": "object", "properties": { "value": { "type": "string", "title": "Text" }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Footnotes (VI.C.(1).)", "description": "Allows entry of any free-format notes associated with this section of the report." }, "field_footnotes_vic2": { "type": "object", "properties": { "value": { "type": "string", "title": "Text" }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Footnotes (VI.C.(2).)", "description": "Allows entry of any free-format notes associated with this section of the report." }, "field_footnotes_vic3": { "type": "object", "properties": { "value": { "type": "string", "title": "Text" }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Footnotes (VI.C.(3).)", "description": "Allows entry of any free-format notes associated with this section of the report." }, "field_footnotes_vic4": { "type": "object", "properties": { "value": { "type": "string", "title": "Text" }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Footnotes (VI.C.(4).)", "description": "Allows entry of any free-format notes associated with this section of the report." }, "field_footnotes_vic5": { "type": "object", "properties": { "value": { "type": "string", "title": "Text" }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Footnotes (VI.C.(5).)", "description": "Allows entry of any free-format notes associated with this section of the report." }, "field_footnotes_viia": { "type": "object", "properties": { "value": { "type": "string", "title": "Text" }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Footnotes (VII.A.)", "description": "Allows entry of any free-format notes associated with this section of the report." }, "field_footnotes_viib": { "type": "object", "properties": { "value": { "type": "string", "title": "Text" }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Footnotes (VII.B.)", "description": "Allows entry of any free-format notes associated with this section of the report." }, "field_footnotes_viic1": { "type": "object", "properties": { "value": { "type": "string", "title": "Text" }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Footnotes (VII.C.(1).)", "description": "Allows entry of any free-format notes associated with this section of the report." }, "field_footnotes_viic2": { "type": "object", "properties": { "value": { "type": "string", "title": "Text" }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Footnotes (VII.C.(2).)", "description": "Allows entry of any free-format notes associated with this section of the report." }, "field_footnotes_viic3": { "type": "object", "properties": { "value": { "type": "string", "title": "Text" }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Footnotes (VII.C.(3).)", "description": "Allows entry of any free-format notes associated with this section of the report." }, "field_footnotes_viid": { "type": "object", "properties": { "value": { "type": "string", "title": "Text" }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Footnotes (VII.D.)", "description": "Allows entry of any free-format notes associated with this section of the report." }, "field_footnotes_viie": { "type": "object", "properties": { "value": { "type": "string", "title": "Text" }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Footnotes (VII.E.)", "description": "Allows entry of any free-format notes associated with this section of the report." }, "field_footnotes_viiia": { "type": "object", "properties": { "value": { "type": "string", "title": "Text" }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Footnotes (VIII.A.)", "description": "Allows entry of any free-format notes associated with this section of the report." }, "field_footnotes_viiib": { "type": "object", "properties": { "value": { "type": "string", "title": "Text" }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Footnotes (VIII.B.)", "description": "Allows entry of any free-format notes associated with this section of the report." }, "field_footnotes_x": { "type": "object", "properties": { "value": { "type": "string", "title": "Text" }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Footnotes (X.)", "description": "Allows entry of any free-format notes associated with this section of the report." }, "field_footnotes_xia": { "type": "object", "properties": { "value": { "type": "string", "title": "Text" }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Footnotes (XI.A.)", "description": "Allows entry of any free-format notes associated with this section of the report." }, "field_footnotes_xib": { "type": "object", "properties": { "value": { "type": "string", "title": "Text" }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Footnotes (XI.B.)", "description": "Allows entry of any free-format notes associated with this section of the report." }, "field_footnotes_xiia": { "type": "object", "properties": { "value": { "type": "string", "title": "Text" }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Footnotes (XII.A.)", "description": "Allows entry of any free-format notes associated with this section of the report." }, "field_footnotes_xiib": { "type": "object", "properties": { "value": { "type": "string", "title": "Text" }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Footnotes (XII.B.)", "description": "Allows entry of any free-format notes associated with this section of the report." }, "field_footnotes_xiic": { "type": "object", "properties": { "value": { "type": "string", "title": "Text" }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Footnotes (XII.C.)", "description": "Allows entry of any free-format notes associated with this section of the report." }, "field_footnotes_xiid1": { "type": "object", "properties": { "value": { "type": "string", "title": "Text" }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Footnotes (XII.D.(1).)", "description": "Allows entry of any free-format notes associated with this section of the report." }, "field_footnotes_xiid2": { "type": "object", "properties": { "value": { "type": "string", "title": "Text" }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Footnotes (XII.D.(2).)" }, "field_footnotes_xiie1": { "type": "object", "properties": { "value": { "type": "string", "title": "Text" }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Footnotes (XII.E.(1).)" }, "field_footnotes_xiie2": { "type": "object", "properties": { "value": { "type": "string", "title": "Text" }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Footnotes (XII.E.(2).)", "description": "Allows entry of any free-format notes associated with this section of the report." }, "field_overall_ix_eq_full_emp": { "type": "string", "title": "Agency Overall Number of \"Equivalent Full-Time FOIA Employees\"" }, "field_overall_ix_full_emp": { "type": "integer", "title": "Agency Overall Number of \"Full-Time FOIA Employees\"" }, "field_overall_ix_lit_costs": { "type": "string", "title": "Agency Overall Litigation-Related Costs" }, "field_overall_ix_proc_costs": { "type": "string", "title": "Agency Overall Processing Costs" }, "field_overall_ix_total_costs": { "type": "string", "title": "Agency Overall Total Costs" }, "field_overall_ix_total_staff": { "type": "string", "title": "Agency Overall Total Number of \"Full-Time FOIA Staff\"" }, "field_overall_req_pend_end_yr": { "type": "integer", "title": "Agency Overall Number of Requests Pending as of End of Fiscal Year" }, "field_overall_req_pend_start_yr": { "type": "integer", "title": "Agency Overall Number of Requests Pending as of Start of Fiscal Year" }, "field_overall_req_processed_yr": { "type": "integer", "title": "Agency Overall Number of Requests Processed in Fiscal Year" }, "field_overall_req_received_yr": { "type": "integer", "title": "Agency Overall Number of Requests Received in Fiscal Year" }, "field_overall_vb1_dup_request": { "type": "integer", "title": "Agency Overall Duplicate Request" }, "field_overall_vb1_fee_related_re": { "type": "integer", "title": "Agency Overall Fee-Related Reason" }, "field_overall_vb1_full_denials_e": { "type": "integer", "title": "Agency Overall Number of Full Denials Based on Exemptions" }, "field_overall_vb1_full_grants": { "type": "integer", "title": "Agency Overall Number of Full Grants" }, "field_overall_vb1_imp_req_oth_re": { "type": "integer", "title": "Agency Overall Improper FOIA Request for Other Reason" }, "field_overall_vb1_no_rec": { "type": "integer", "title": "Agency Overall No Records" }, "field_overall_vb1_not_agency_rec": { "type": "integer", "title": "Agency Overall Not Agency Record" }, "field_overall_vb1_oth": { "type": "integer", "title": "Agency Overall Other*" }, "field_overall_vb1_part_grants_de": { "type": "integer", "title": "Agency Overall Number of Partial Grants/Partial Denials" }, "field_overall_vb1_rec_not_desc": { "type": "integer", "title": "Agency Overall Records Not Reasonably Described" }, "field_overall_vb1_rec_ref_to_an_": { "type": "integer", "title": "Agency Overall All Records Referred to Another Component or Agency" }, "field_overall_vb1_req_withdrawn": { "type": "integer", "title": "Agency Overall Request Withdrawn" }, "field_overall_vb1_total": { "type": "integer", "title": "Agency Overall Total" }, "field_overall_vb2_total": { "type": "integer", "title": "Agency Overall Total", "description": "Must match the number entered in the V. B. (1) section, field \\'Agency Overall Other*\\' for the agency." }, "field_overall_vb3_ex_1": { "type": "integer", "title": "Agency Overall Ex. 1" }, "field_overall_vb3_ex_2": { "type": "integer", "title": "Agency Overall Ex. 2" }, "field_overall_vb3_ex_3": { "type": "integer", "title": "Agency Overall Ex. 3" }, "field_overall_vb3_ex_4": { "type": "integer", "title": "Agency Overall Ex. 4" }, "field_overall_vb3_ex_5": { "type": "integer", "title": "Agency Overall Ex. 5" }, "field_overall_vb3_ex_6": { "type": "integer", "title": "Agency Overall Ex. 6" }, "field_overall_vb3_ex_7_a": { "type": "integer", "title": "Agency Overall Ex. 7(A)" }, "field_overall_vb3_ex_7_b": { "type": "integer", "title": "Agency Overall Ex. 7(B)" }, "field_overall_vb3_ex_7_c": { "type": "integer", "title": "Agency Overall Ex. 7(C)" }, "field_overall_vb3_ex_7_d": { "type": "integer", "title": "Agency Overall Ex. 7(D)" }, "field_overall_vb3_ex_7_e": { "type": "integer", "title": "Agency Overall Ex. 7(E)" }, "field_overall_vb3_ex_7_f": { "type": "integer", "title": "Agency Overall Ex. 7(F)" }, "field_overall_vb3_ex_8": { "type": "integer", "title": "Agency Overall Ex. 8" }, "field_overall_vb3_ex_9": { "type": "integer", "title": "Agency Overall Ex. 9" }, "field_overall_via_app_pend_endyr": { "type": "integer", "title": "Agency Overall Number of Appeals Pending as of End of Fiscal Year" }, "field_overall_via_app_pend_start": { "type": "integer", "title": "Agency Overall Number of Appeals Pending as of Start of Fiscal Year" }, "field_overall_via_app_proc_yr": { "type": "integer", "title": "Agency Overall Number of Appeals Processed in Fiscal Year" }, "field_overall_via_app_recd_yr": { "type": "integer", "title": "Agency Overall Number of Appeals Received in Fiscal Year" }, "field_overall_vib_affirm_on_app": { "type": "integer", "title": "Agency Overall Number Affirmed on Appeal" }, "field_overall_vib_closed_oth_app": { "type": "integer", "title": "Agency Overall Number of Appeals Closed for Other Reasons" }, "field_overall_vib_comp_on_app": { "type": "integer", "title": "Agency Overall Number Completely Reversed/Remanded on Appeal" }, "field_overall_vib_part_on_app": { "type": "integer", "title": "Agency Overall Number Partially Affirmed & Partially Reversed/Remanded on Appeal" }, "field_overall_vib_total": { "type": "integer", "title": "Agency Overall Total" }, "field_overall_vic1_ex_1": { "type": "integer", "title": "Agency Overall Ex. 1" }, "field_overall_vic1_ex_2": { "type": "integer", "title": "Agency Overall Ex. 2" }, "field_overall_vic1_ex_3": { "type": "integer", "title": "Agency Overall Ex. 3" }, "field_overall_vic1_ex_4": { "type": "integer", "title": "Agency Overall Ex. 4" }, "field_overall_vic1_ex_5": { "type": "integer", "title": "Agency Overall Ex. 5" }, "field_overall_vic1_ex_6": { "type": "integer", "title": "Agency Overall Ex. 6" }, "field_overall_vic1_ex_7_a": { "type": "integer", "title": "Agency Overall Ex. 7(A)" }, "field_overall_vic1_ex_7_b": { "type": "integer", "title": "Agency Overall Ex. 7(B)" }, "field_overall_vic1_ex_7_c": { "type": "integer", "title": "Agency Overall Ex. 7(C)" }, "field_overall_vic1_ex_7_d": { "type": "integer", "title": "Agency Overall Ex. 7(D)" }, "field_overall_vic1_ex_7_e": { "type": "integer", "title": "Agency Overall Ex. 7(E)" }, "field_overall_vic1_ex_7_f": { "type": "integer", "title": "Agency Overall Ex. 7(F)" }, "field_overall_vic1_ex_8": { "type": "integer", "title": "Agency Overall Ex. 8" }, "field_overall_vic1_ex_9": { "type": "integer", "title": "Agency Overall Ex. 9" }, "field_overall_vic2_app_denial_ex": { "type": "integer", "title": "Agency Overall Appeal Based Solely on Denial of Request for Expedited Processing" }, "field_overall_vic2_dup_req": { "type": "integer", "title": "Agency Overall Duplicate Request or Appeal" }, "field_overall_vic2_fee_rel_reas": { "type": "integer", "title": "Agency Overall Fee-Related Reason" }, "field_overall_vic2_imp_req_oth": { "type": "integer", "title": "Agency Overall Improper Request for Other Reason" }, "field_overall_vic2_no_rec": { "type": "integer", "title": "Agency Overall No Records" }, "field_overall_vic2_not_agency_re": { "type": "integer", "title": "Agency Overall Not Agency Record" }, "field_overall_vic2_oth": { "type": "integer", "title": "Agency Overall Other" }, "field_overall_vic2_rec_not_desc": { "type": "integer", "title": "Agency Overall Records Not Reasonably Described" }, "field_overall_vic2_rec_refer_ini": { "type": "integer", "title": "Agency Overall Records Referred at Initial Request Level" }, "field_overall_vic2_req_in_lit": { "type": "integer", "title": "Agency Overall Request in Litigation" }, "field_overall_vic2_req_withdrawn": { "type": "integer", "title": "Agency Overall Request Withdrawn" }, "field_overall_vic3_total": { "type": "integer", "title": "Agency Overall Total" }, "field_overall_vic4_avg_num_days": { "type": "string", "title": "Agency Overall Average Number of Days", "maxLength": 255 }, "field_overall_vic4_high_num_days": { "type": "string", "title": "Agency Overall Highest Number of Days", "maxLength": 255 }, "field_overall_vic4_low_num_days": { "type": "string", "title": "Agency Overall Lowest Number of Days", "maxLength": 255 }, "field_overall_vic4_med_num_days": { "type": "string", "title": "Agency Overall Median Number of Days", "maxLength": 255 }, "field_overall_vic5_date_1": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Date of Appeal", "description": "Date must be formatted as YYYY-MM-DDE.g. 1979-01-29" }, "field_overall_vic5_date_10": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Date of Appeal", "description": "Date must be formatted as YYYY-MM-DDE.g. 1979-01-29" }, "field_overall_vic5_date_2": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Date of Appeal", "description": "Date must be formatted as YYYY-MM-DDE.g. 1979-01-29" }, "field_overall_vic5_date_3": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Date of Appeal", "description": "Date must be formatted as YYYY-MM-DDE.g. 1979-01-29" }, "field_overall_vic5_date_4": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Date of Appeal", "description": "Date must be formatted as YYYY-MM-DDE.g. 1979-01-29" }, "field_overall_vic5_date_5": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Date of Appeal", "description": "Date must be formatted as YYYY-MM-DDE.g. 1979-01-29" }, "field_overall_vic5_date_6": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Date of Appeal", "description": "Date must be formatted as YYYY-MM-DDE.g. 1979-01-29" }, "field_overall_vic5_date_7": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Date of Appeal", "description": "Date must be formatted as YYYY-MM-DDE.g. 1979-01-29" }, "field_overall_vic5_date_8": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Date of Appeal", "description": "Date must be formatted as YYYY-MM-DDE.g. 1979-01-29" }, "field_overall_vic5_date_9": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Date of Appeal", "description": "Date must be formatted as YYYY-MM-DDE.g. 1979-01-29" }, "field_overall_vic5_num_day_1": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Number of Days Pending" }, "field_overall_vic5_num_day_10": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Number of Days Pending" }, "field_overall_vic5_num_day_2": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Number of Days Pending" }, "field_overall_vic5_num_day_3": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Number of Days Pending" }, "field_overall_vic5_num_day_4": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Number of Days Pending" }, "field_overall_vic5_num_day_5": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Number of Days Pending" }, "field_overall_vic5_num_day_6": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Number of Days Pending" }, "field_overall_vic5_num_day_7": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Number of Days Pending" }, "field_overall_vic5_num_day_8": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Number of Days Pending" }, "field_overall_vic5_num_day_9": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Number of Days Pending" }, "field_overall_viia_comp_avg": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Average Number of Days" }, "field_overall_viia_comp_high": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Highest Number of Days" }, "field_overall_viia_comp_low": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Lowest Number of Days" }, "field_overall_viia_comp_med": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Median Number of Days" }, "field_overall_viia_exp_avg": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Average Number of Days" }, "field_overall_viia_exp_high": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Highest Number of Days" }, "field_overall_viia_exp_low": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Lowest Number of Days" }, "field_overall_viia_exp_med": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Median Number of Days" }, "field_overall_viia_sim_avg": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Average Number of Days" }, "field_overall_viia_sim_high": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Highest Number of Days" }, "field_overall_viia_sim_low": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Lowest Number of Days" }, "field_overall_viia_sim_med": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Median Number of Days" }, "field_overall_viib_comp_avg": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Average Number of Days" }, "field_overall_viib_comp_high": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Highest Number of Days" }, "field_overall_viib_comp_low": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Lowest Number of Days" }, "field_overall_viib_comp_med": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Median Number of Days" }, "field_overall_viib_exp_avg": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Average Number of Days" }, "field_overall_viib_exp_high": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Highest Number of Days" }, "field_overall_viib_exp_low": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Lowest Number of Days" }, "field_overall_viib_exp_med": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Median Number of Days" }, "field_overall_viib_sim_avg": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Average Number of Days" }, "field_overall_viib_sim_high": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Highest Number of Days" }, "field_overall_viib_sim_low": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Lowest Number of Days" }, "field_overall_viib_sim_med": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Median Number of Days" }, "field_overall_viic1_101_120_days": { "type": "integer", "title": "Agency Overall 101-120 Days" }, "field_overall_viic1_121_140_days": { "type": "integer", "title": "Agency Overall 121-140 Days" }, "field_overall_viic1_141_160_days": { "type": "integer", "title": "Agency Overall 141-160 Days" }, "field_overall_viic1_161_180_days": { "type": "integer", "title": "Agency Overall 161-180 Days" }, "field_overall_viic1_181_200_days": { "type": "integer", "title": "Agency Overall 181-200 Days" }, "field_overall_viic1_1_20_days": { "type": "integer", "title": "Agency Overall <1-20 Days" }, "field_overall_viic1_201_300_days": { "type": "integer", "title": "Agency Overall 201-300 Days" }, "field_overall_viic1_21_40_days": { "type": "integer", "title": "Agency Overall 21-40 Days" }, "field_overall_viic1_301_400_days": { "type": "integer", "title": "Agency Overall 301-400 Days" }, "field_overall_viic1_400_up_days": { "type": "integer", "title": "Agency Overall 400+ Days" }, "field_overall_viic1_41_60_days": { "type": "integer", "title": "Agency Overall 41-60 Days" }, "field_overall_viic1_61_80_days": { "type": "integer", "title": "Agency Overall 61-80 Days" }, "field_overall_viic1_81_100_days": { "type": "integer", "title": "Agency Overall 81-100 Days" }, "field_overall_viic1_total": { "type": "integer", "title": "Agency Overall Total" }, "field_overall_viic2_101_120_days": { "type": "integer", "title": "Agency Overall 101-120 Days" }, "field_overall_viic2_121_140_days": { "type": "integer", "title": "Agency Overall 121-140 Days" }, "field_overall_viic2_141_160_days": { "type": "integer", "title": "Agency Overall 141-160 Days" }, "field_overall_viic2_161_180_days": { "type": "integer", "title": "Agency Overall 161-180 Days" }, "field_overall_viic2_181_200_days": { "type": "integer", "title": "Agency Overall 181-200 Days" }, "field_overall_viic2_1_20_days": { "type": "integer", "title": "Agency Overall <1-20 Days" }, "field_overall_viic2_201_300_days": { "type": "integer", "title": "Agency Overall 201-300 Days" }, "field_overall_viic2_21_40_days": { "type": "integer", "title": "Agency Overall 21-40 Days" }, "field_overall_viic2_301_400_days": { "type": "integer", "title": "Agency Overall 301-400 Days" }, "field_overall_viic2_400_up_days": { "type": "integer", "title": "Agency Overall 400+ Days" }, "field_overall_viic2_41_60_days": { "type": "integer", "title": "Agency Overall 41-60 Days" }, "field_overall_viic2_61_80_days": { "type": "integer", "title": "Agency Overall 61-80 Days" }, "field_overall_viic2_81_100_days": { "type": "integer", "title": "Agency Overall 81-100 Days" }, "field_overall_viic2_total": { "type": "integer", "title": "Agency Overall Total" }, "field_overall_viic3_101_120_days": { "type": "integer", "title": "Agency Overall 101-120 Days" }, "field_overall_viic3_121_140_days": { "type": "integer", "title": "Agency Overall 121-140 Days" }, "field_overall_viic3_141_160_days": { "type": "integer", "title": "Agency Overall 141-160 Days" }, "field_overall_viic3_161_180_days": { "type": "integer", "title": "Agency Overall 161-180 Days" }, "field_overall_viic3_181_200_days": { "type": "integer", "title": "Agency Overall 181-200 Days" }, "field_overall_viic3_1_20_days": { "type": "integer", "title": "Agency Overall <1-20 Days" }, "field_overall_viic3_201_300_days": { "type": "integer", "title": "Agency Overall 201-300 Days" }, "field_overall_viic3_21_40_days": { "type": "integer", "title": "Agency Overall 21-40 Days" }, "field_overall_viic3_301_400_days": { "type": "integer", "title": "Agency Overall 301-400 Days" }, "field_overall_viic3_400_up_days": { "type": "integer", "title": "Agency Overall 400+ Days" }, "field_overall_viic3_41_60_days": { "type": "integer", "title": "Agency Overall 41-60 Days" }, "field_overall_viic3_61_80_days": { "type": "integer", "title": "Agency Overall 61-80 Days" }, "field_overall_viic3_81_100_days": { "type": "integer", "title": "Agency Overall 81-100 Days" }, "field_overall_viic3_total": { "type": "integer", "title": "Agency Overall Total" }, "field_overall_viid_comp_avg": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Average Number of Days" }, "field_overall_viid_comp_med": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Median Number of Days" }, "field_overall_viid_comp_pend": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Number Pending" }, "field_overall_viid_exp_avg": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Average Number of Days" }, "field_overall_viid_exp_med": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Median Number of Days" }, "field_overall_viid_exp_pend": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Number Pending" }, "field_overall_viid_sim_avg": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Average Number of Days" }, "field_overall_viid_sim_med": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Median Number of Days" }, "field_overall_viid_sim_pend": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Number Pending" }, "field_overall_viie_date_1": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Date of Receipt", "description": "Date must be formatted as YYYY-MM-DDE.g. 1979-01-29" }, "field_overall_viie_date_10": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Date of Receipt", "description": "Date must be formatted as YYYY-MM-DDE.g. 1979-01-29" }, "field_overall_viie_date_2": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Date of Receipt", "description": "Date must be formatted as YYYY-MM-DDE.g. 1979-01-29" }, "field_overall_viie_date_3": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Date of Receipt", "description": "Date must be formatted as YYYY-MM-DDE.g. 1979-01-29" }, "field_overall_viie_date_4": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Date of Receipt", "description": "Date must be formatted as YYYY-MM-DDE.g. 1979-01-29" }, "field_overall_viie_date_5": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Date of Receipt", "description": "Date must be formatted as YYYY-MM-DDE.g. 1979-01-29" }, "field_overall_viie_date_6": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Date of Receipt", "description": "Date must be formatted as YYYY-MM-DDE.g. 1979-01-29" }, "field_overall_viie_date_7": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Date of Receipt", "description": "Date must be formatted as YYYY-MM-DDE.g. 1979-01-29" }, "field_overall_viie_date_8": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Date of Receipt", "description": "Date must be formatted as YYYY-MM-DDE.g. 1979-01-29" }, "field_overall_viie_date_9": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Date of Receipt", "description": "Date must be formatted as YYYY-MM-DDE.g. 1979-01-29" }, "field_overall_viie_num_days_1": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Number of Days Pending" }, "field_overall_viie_num_days_10": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Number of Days Pending" }, "field_overall_viie_num_days_2": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Number of Days Pending" }, "field_overall_viie_num_days_3": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Number of Days Pending" }, "field_overall_viie_num_days_4": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Number of Days Pending" }, "field_overall_viie_num_days_5": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Number of Days Pending" }, "field_overall_viie_num_days_6": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Number of Days Pending" }, "field_overall_viie_num_days_7": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Number of Days Pending" }, "field_overall_viie_num_days_8": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Number of Days Pending" }, "field_overall_viie_num_days_9": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Number of Days Pending" }, "field_overall_viiia_avg_days_jud": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Average Number of Days to Adjudicate" }, "field_overall_viiia_med_days_jud": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Median Number of Days to Adjudicate" }, "field_overall_viiia_num_denied": { "type": "integer", "title": "Agency Overall Number Denied" }, "field_overall_viiia_num_grant": { "type": "integer", "title": "Agency Overall Number Granted" }, "field_overall_viiia_num_jud_w10": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Number Adjudicated Within Ten Calendar Days" }, "field_overall_viiib_avg_days_jud": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Average Number of Days to Adjudicate" }, "field_overall_viiib_med_days_jud": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Median Number of Days to Adjudicate" }, "field_overall_viiib_num_denied": { "type": "integer", "title": "Agency Overall Number Denied" }, "field_overall_viiib_num_grant": { "type": "integer", "title": "Agency Overall Number Granted" }, "field_overall_x_perc_costs": { "type": "string", "title": "Agency Overall Percentage of Total Costs", "description": "The \\\"Percentage of Total Costs\\\" field is calculated by comparing the \\\"Fees Collected\\\" field with \\\"Processing Costs\\\" from section IX." }, "field_overall_x_total_fees": { "type": "string", "title": "Agency Overall Total Amount of Fees Collected" }, "field_overall_xia_sub_used": { "type": "integer", "title": "Agency Overall Number of Times Subsection Used" }, "field_overall_xib_rec_post_foia": { "type": "integer", "title": "Agency Overall Number of Records Posted by the FOIA Office" }, "field_overall_xib_rec_post_prog": { "type": "integer", "title": "Agency Overall Number of Records Posted by Program Offices" }, "field_overall_xiia_back_app_end_": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Number of Backlogged Appeals as of End of Fiscal Year" }, "field_overall_xiia_back_req_end_": { "type": "integer", "title": "Agency Overall Number of Backlogged Requests as of End of Fiscal Year" }, "field_overall_xiib_con_during_yr": { "type": "integer", "title": "Agency Overall Number of Consultations Received from Other Agencies During the Fiscal Year" }, "field_overall_xiib_pend_end_yr": { "type": "integer", "title": "Agency Overall Number of Consultations Received from Other Agencies that were Pending at the Agency as of End of the Fiscal Year" }, "field_overall_xiib_pend_start_yr": { "type": "integer", "title": "Agency Overall Number of Consultations Received from Other Agencies that were Pending at the Agency as of Start of Fiscal Year" }, "field_overall_xiib_proc_start_yr": { "type": "integer", "title": "Agency Overall Number of Consultations Received from Other Agencies that were Processed by the Agency During the Fiscal Year" }, "field_overall_xiic_date_1": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Date of Receipt", "description": "Date must be formatted as YYYY-MM-DDE.g. 1979-01-29" }, "field_overall_xiic_date_10": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Date of Receipt", "description": "Date must be formatted as YYYY-MM-DDE.g. 1979-01-29" }, "field_overall_xiic_date_2": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Date of Receipt", "description": "Date must be formatted as YYYY-MM-DDE.g. 1979-01-29" }, "field_overall_xiic_date_3": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Date of Receipt", "description": "Date must be formatted as YYYY-MM-DDE.g. 1979-01-29" }, "field_overall_xiic_date_4": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Date of Receipt", "description": "Date must be formatted as YYYY-MM-DDE.g. 1979-01-29" }, "field_overall_xiic_date_5": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Date of Receipt", "description": "Date must be formatted as YYYY-MM-DDE.g. 1979-01-29" }, "field_overall_xiic_date_6": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Date of Receipt", "description": "Date must be formatted as YYYY-MM-DDE.g. 1979-01-29" }, "field_overall_xiic_date_7": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Date of Receipt", "description": "Date must be formatted as YYYY-MM-DDE.g. 1979-01-29" }, "field_overall_xiic_date_8": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Date of Receipt", "description": "Date must be formatted as YYYY-MM-DDE.g. 1979-01-29" }, "field_overall_xiic_date_9": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Date of Receipt", "description": "Date must be formatted as YYYY-MM-DDE.g. 1979-01-29" }, "field_overall_xiic_num_days_1": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Number of Days Pending" }, "field_overall_xiic_num_days_10": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Number of Days Pending" }, "field_overall_xiic_num_days_2": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Number of Days Pending" }, "field_overall_xiic_num_days_3": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Number of Days Pending" }, "field_overall_xiic_num_days_4": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Number of Days Pending" }, "field_overall_xiic_num_days_5": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Number of Days Pending" }, "field_overall_xiic_num_days_6": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Number of Days Pending" }, "field_overall_xiic_num_days_7": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Number of Days Pending" }, "field_overall_xiic_num_days_8": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Number of Days Pending" }, "field_overall_xiic_num_days_9": { "type": "object", "properties": { "value": { "type": "string", "title": "Text", "maxLength": 255 }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Agency Overall Number of Days Pending" }, "field_overall_xiid1_proc_cur_yr": { "type": "integer", "title": "Agency Overall Number Processed During Fiscal Year from Current Annual Report" }, "field_overall_xiid1_proc_last_yr": { "type": "integer", "title": "Agency Overall Number Processed During Fiscal Year from Last Year's Annual Report" }, "field_overall_xiid1_received_cur": { "type": "integer", "title": "Agency Overall Number Received During Fiscal Year from Current Annual Report" }, "field_overall_xiid1_received_las": { "type": "integer", "title": "Agency Overall Number Received During Fiscal Year from Last Year's Annual Report" }, "field_overall_xiid2_back_cur_yr": { "type": "integer", "title": "Agency Overall Number of Backlogged Requests as of End of the Fiscal Year from Current Annual Report" }, "field_overall_xiid2_back_prev_yr": { "type": "integer", "title": "Agency Overall Number of Backlogged Requests as of End of the Fiscal Year from Previous Annual Report" }, "field_overall_xiie1_proc_cur_yr": { "type": "integer", "title": "Agency Overall Number Processed During Fiscal Year from Current Annual Report" }, "field_overall_xiie1_proc_last_yr": { "type": "integer", "title": "Agency Overall Number Processed During Fiscal Year from Last Year's Annual Report" }, "field_overall_xiie1_received_cur": { "type": "integer", "title": "Agency Overall Number Received During Fiscal Year from Current Annual Report" }, "field_overall_xiie1_received_las": { "type": "integer", "title": "Agency Overall Number Received During Fiscal Year from Last Year's Annual Report" }, "field_overall_xiie2_back_cur_yr": { "type": "integer", "title": "Agency Overall Number of Backlogged Appeals as of End of the Fiscal Year from Current Annual Report" }, "field_overall_xiie2_back_prev_yr": { "type": "integer", "title": "Agency Overall Number of Backlogged Appeals as of End of the Fiscal Year from Previous Annual Report" } }, "required": [ "title" ] }, "relationships": { "description": "Entity relationships", "type": "object", "additionalProperties": false, "properties": { "field_admin_app_via": { "type": "object", "properties": { "data": { "type": "array", "items": { "type": "object", "required": [ "type", "id" ], "properties": { "type": { "type": "string", "title": "Referenced resource", "enum": [ "paragraph--admin_app_via" ] }, "id": { "type": "string", "title": "Resource ID", "format": "uuid", "maxLength": 128 } } } } }, "title": "Agency Overall Administrative Appeals VI. A. of Appeals Pending as of Start of Fiscal Year" }, "field_admin_app_vib": { "type": "object", "properties": { "data": { "type": "array", "items": { "type": "object", "required": [ "type", "id" ], "properties": { "type": { "type": "string", "title": "Referenced resource", "enum": [ "paragraph--admin_app_vib" ] }, "id": { "type": "string", "title": "Resource ID", "format": "uuid", "maxLength": 128 } } } } }, "title": "Administrative Appeals VI. B." }, "field_admin_app_vic1": { "type": "object", "properties": { "data": { "type": "array", "items": { "type": "object", "required": [ "type", "id" ], "properties": { "type": { "type": "string", "title": "Referenced resource", "enum": [ "paragraph--admin_app_vic1" ] }, "id": { "type": "string", "title": "Resource ID", "format": "uuid", "maxLength": 128 } } } } }, "title": "Administrative Appeals VI. C. (1)" }, "field_admin_app_vic2": { "type": "object", "properties": { "data": { "type": "array", "items": { "type": "object", "required": [ "type", "id" ], "properties": { "type": { "type": "string", "title": "Referenced resource", "enum": [ "paragraph--admin_app_vic2" ] }, "id": { "type": "string", "title": "Resource ID", "format": "uuid", "maxLength": 128 } } } } }, "title": "Administrative Appeals VI. C. (2)" }, "field_admin_app_vic3": { "type": "object", "properties": { "data": { "type": "array", "items": { "type": "object", "required": [ "type", "id" ], "properties": { "type": { "type": "string", "title": "Referenced resource", "enum": [ "paragraph--admin_app_vic3" ] }, "id": { "type": "string", "title": "Resource ID", "format": "uuid", "maxLength": 128 } } } } }, "title": "Administrative Appeals VI. C. (3)" }, "field_admin_app_vic4": { "type": "object", "properties": { "data": { "type": "array", "items": { "type": "object", "required": [ "type", "id" ], "properties": { "type": { "type": "string", "title": "Referenced resource", "enum": [ "paragraph--admin_app_vic4" ] }, "id": { "type": "string", "title": "Resource ID", "format": "uuid", "maxLength": 128 } } } } }, "title": "Administrative Appeals VI. C. (4)" }, "field_admin_app_vic5": { "type": "object", "properties": { "data": { "type": "array", "items": { "type": "object", "required": [ "type", "id" ], "properties": { "type": { "type": "string", "title": "Referenced resource", "enum": [ "paragraph--oldest_days" ] }, "id": { "type": "string", "title": "Resource ID", "format": "uuid", "maxLength": 128 } } } } }, "title": "Administrative Appeals VI. C. (5)" }, "field_admin_app_viie": { "type": "object", "properties": { "data": { "type": "array", "items": { "type": "object", "required": [ "type", "id" ], "properties": { "type": { "type": "string", "title": "Referenced resource", "enum": [ "paragraph--oldest_days" ] }, "id": { "type": "string", "title": "Resource ID", "format": "uuid", "maxLength": 128 } } } } }, "title": "Pending Requests VII. E." }, "field_agency": { "type": "object", "properties": { "data": { "type": "object", "required": [ "type", "id" ], "properties": { "type": { "type": "string", "title": "Referenced resource", "enum": [ "agency" ] }, "id": { "type": "string", "title": "Resource ID", "format": "uuid", "maxLength": 128 } } } }, "title": "Agency" }, "field_agency_components": { "type": "object", "properties": { "data": { "type": "array", "items": { "type": "object", "required": [ "type", "id" ], "properties": { "type": { "type": "string", "title": "Referenced resource" }, "id": { "type": "string", "title": "Resource ID", "format": "uuid", "maxLength": 128 } } } } }, "title": "Components" }, "field_fees_x": { "type": "object", "properties": { "data": { "type": "array", "items": { "type": "object", "required": [ "type", "id" ], "properties": { "type": { "type": "string", "title": "Referenced resource", "enum": [ "paragraph--fees_x" ] }, "id": { "type": "string", "title": "Resource ID", "format": "uuid", "maxLength": 128 } } } } }, "title": "Fees X." }, "field_foia_pers_costs_ix": { "type": "object", "properties": { "data": { "type": "array", "items": { "type": "object", "required": [ "type", "id" ], "properties": { "type": { "type": "string", "title": "Referenced resource", "enum": [ "paragraph--foia_pers_costs_ix" ] }, "id": { "type": "string", "title": "Resource ID", "format": "uuid", "maxLength": 128 } } } } }, "title": "FOIA Personnel and Costs IX." }, "field_foia_requests_va": { "type": "object", "properties": { "data": { "type": "array", "items": { "type": "object", "required": [ "type", "id" ], "properties": { "type": { "type": "string", "title": "Referenced resource", "enum": [ "paragraph--foia_req_va" ] }, "id": { "type": "string", "title": "Resource ID", "format": "uuid", "maxLength": 128 } } } } }, "title": "FOIA Requests V. A." }, "field_foia_requests_vb1": { "type": "object", "properties": { "data": { "type": "array", "items": { "type": "object", "required": [ "type", "id" ], "properties": { "type": { "type": "string", "title": "Referenced resource", "enum": [ "paragraph--foia_req_vb1" ] }, "id": { "type": "string", "title": "Resource ID", "format": "uuid", "maxLength": 128 } } } } }, "title": "FOIA Requests V. B. (1)" }, "field_foia_requests_vb2": { "type": "object", "properties": { "data": { "type": "array", "items": { "type": "object", "required": [ "type", "id" ], "properties": { "type": { "type": "string", "title": "Referenced resource", "enum": [ "paragraph--foia_req_vb2" ] }, "id": { "type": "string", "title": "Resource ID", "format": "uuid", "maxLength": 128 } } } } }, "title": "FOIA Requests V. B (2)" }, "field_foia_requests_vb3": { "type": "object", "properties": { "data": { "type": "array", "items": { "type": "object", "required": [ "type", "id" ], "properties": { "type": { "type": "string", "title": "Referenced resource", "enum": [ "paragraph--admin_app_vic1" ] }, "id": { "type": "string", "title": "Resource ID", "format": "uuid", "maxLength": 128 } } } } }, "title": "FOIA Requests V. B (3)" }, "field_foia_xiia": { "type": "object", "properties": { "data": { "type": "array", "items": { "type": "object", "required": [ "type", "id" ], "properties": { "type": { "type": "string", "title": "Referenced resource", "enum": [ "paragraph--foia_xiia" ] }, "id": { "type": "string", "title": "Resource ID", "format": "uuid", "maxLength": 128 } } } } }, "title": "FOIA Requests and Administrative Appeals XII. A." }, "field_foia_xiib": { "type": "object", "properties": { "data": { "type": "array", "items": { "type": "object", "required": [ "type", "id" ], "properties": { "type": { "type": "string", "title": "Referenced resource", "enum": [ "paragraph--foia_xiib" ] }, "id": { "type": "string", "title": "Resource ID", "format": "uuid", "maxLength": 128 } } } } }, "title": "FOIA Requests and Administrative Appeals XII. B." }, "field_foia_xiic": { "type": "object", "properties": { "data": { "type": "array", "items": { "type": "object", "required": [ "type", "id" ], "properties": { "type": { "type": "string", "title": "Referenced resource", "enum": [ "paragraph--oldest_days" ] }, "id": { "type": "string", "title": "Resource ID", "format": "uuid", "maxLength": 128 } } } } }, "title": "FOIA Requests and Administrative Appeals XII. C." }, "field_foia_xiid1": { "type": "object", "properties": { "data": { "type": "array", "items": { "type": "object", "required": [ "type", "id" ], "properties": { "type": { "type": "string", "title": "Referenced resource", "enum": [ "paragraph--foia_xii_received_proc" ] }, "id": { "type": "string", "title": "Resource ID", "format": "uuid", "maxLength": 128 } } } } }, "title": "FOIA Requests and Administrative Appeals XII. D. (1)." }, "field_foia_xiid2": { "type": "object", "properties": { "data": { "type": "array", "items": { "type": "object", "required": [ "type", "id" ], "properties": { "type": { "type": "string", "title": "Referenced resource", "enum": [ "paragraph--foia_xii_backlogged" ] }, "id": { "type": "string", "title": "Resource ID", "format": "uuid", "maxLength": 128 } } } } }, "title": "FOIA Requests and Administrative Appeals XII. D. (2)." }, "field_foia_xiie1": { "type": "object", "properties": { "data": { "type": "array", "items": { "type": "object", "required": [ "type", "id" ], "properties": { "type": { "type": "string", "title": "Referenced resource", "enum": [ "paragraph--foia_xii_received_proc" ] }, "id": { "type": "string", "title": "Resource ID", "format": "uuid", "maxLength": 128 } } } } }, "title": "FOIA Requests and Administrative Appeals XII. E. (1)." }, "field_foia_xiie2": { "type": "object", "properties": { "data": { "type": "array", "items": { "type": "object", "required": [ "type", "id" ], "properties": { "type": { "type": "string", "title": "Referenced resource", "enum": [ "paragraph--foia_xii_backlogged" ] }, "id": { "type": "string", "title": "Resource ID", "format": "uuid", "maxLength": 128 } } } } }, "title": "FOIA Requests and Administrative Appeals XII. E. (2)." }, "field_pending_requests_vii_d_": { "type": "object", "properties": { "data": { "type": "array", "items": { "type": "object", "required": [ "type", "id" ], "properties": { "type": { "type": "string", "title": "Referenced resource", "enum": [ "paragraph--pending_requests_viid" ] }, "id": { "type": "string", "title": "Resource ID", "format": "uuid", "maxLength": 128 } } } } }, "title": "Pending Requests VII. D." }, "field_proc_req_viia": { "type": "object", "properties": { "data": { "type": "array", "items": { "type": "object", "required": [ "type", "id" ], "properties": { "type": { "type": "string", "title": "Referenced resource", "enum": [ "paragraph--processed_requests_vii" ] }, "id": { "type": "string", "title": "Resource ID", "format": "uuid", "maxLength": 128 } } } } }, "title": "Processed Requests VII. A." }, "field_proc_req_viib": { "type": "object", "properties": { "data": { "type": "array", "items": { "type": "object", "required": [ "type", "id" ], "properties": { "type": { "type": "string", "title": "Referenced resource", "enum": [ "paragraph--processed_requests_vii" ] }, "id": { "type": "string", "title": "Resource ID", "format": "uuid", "maxLength": 128 } } } } }, "title": "Processed Requests VII. B." }, "field_proc_req_viic1": { "type": "object", "properties": { "data": { "type": "array", "items": { "type": "object", "required": [ "type", "id" ], "properties": { "type": { "type": "string", "title": "Referenced resource", "enum": [ "paragraph--proc_req_viic" ] }, "id": { "type": "string", "title": "Resource ID", "format": "uuid", "maxLength": 128 } } } } }, "title": "Processed Requests VII. C. (1)" }, "field_proc_req_viic2": { "type": "object", "properties": { "data": { "type": "array", "items": { "type": "object", "required": [ "type", "id" ], "properties": { "type": { "type": "string", "title": "Referenced resource", "enum": [ "paragraph--proc_req_viic" ] }, "id": { "type": "string", "title": "Resource ID", "format": "uuid", "maxLength": 128 } } } } }, "title": "Processed Requests VII. C. (2)" }, "field_proc_req_viic3": { "type": "object", "properties": { "data": { "type": "array", "items": { "type": "object", "required": [ "type", "id" ], "properties": { "type": { "type": "string", "title": "Referenced resource", "enum": [ "paragraph--proc_req_viic" ] }, "id": { "type": "string", "title": "Resource ID", "format": "uuid", "maxLength": 128 } } } } }, "title": "Processed Requests VII. C. (3)" }, "field_report_files": { "type": "object", "properties": { "data": { "type": "array", "items": { "type": "object", "required": [ "type", "id" ], "properties": { "type": { "type": "string", "title": "Referenced resource" }, "id": { "type": "string", "title": "Resource ID", "format": "uuid", "maxLength": 128 } } } } }, "title": "Annual FOIA Report Documents", "maxItems": 2 }, "field_req_viiia": { "type": "object", "properties": { "data": { "type": "array", "items": { "type": "object", "required": [ "type", "id" ], "properties": { "type": { "type": "string", "title": "Referenced resource", "enum": [ "paragraph--req_viiia" ] }, "id": { "type": "string", "title": "Resource ID", "format": "uuid", "maxLength": 128 } } } } }, "title": "Requests VIII. A." }, "field_req_viiib": { "type": "object", "properties": { "data": { "type": "array", "items": { "type": "object", "required": [ "type", "id" ], "properties": { "type": { "type": "string", "title": "Referenced resource", "enum": [ "paragraph--req_viiib" ] }, "id": { "type": "string", "title": "Resource ID", "format": "uuid", "maxLength": 128 } } } } }, "title": "Requests For Fee Waiver VIII. B." }, "field_statute_iv": { "type": "object", "properties": { "data": { "type": "array", "items": { "type": "object", "required": [ "type", "id" ], "properties": { "type": { "type": "string", "title": "Referenced resource", "enum": [ "paragraph--statute" ] }, "id": { "type": "string", "title": "Resource ID", "format": "uuid", "maxLength": 128 } } } } }, "title": "Statute" }, "field_sub_xia": { "type": "object", "properties": { "data": { "type": "array", "items": { "type": "object", "required": [ "type", "id" ], "properties": { "type": { "type": "string", "title": "Referenced resource", "enum": [ "paragraph--sub_xia" ] }, "id": { "type": "string", "title": "Resource ID", "format": "uuid", "maxLength": 128 } } } } }, "title": "Subsection XI. A." }, "field_sub_xib": { "type": "object", "properties": { "data": { "type": "array", "items": { "type": "object", "required": [ "type", "id" ], "properties": { "type": { "type": "string", "title": "Referenced resource", "enum": [ "paragraph--sub_xib" ] }, "id": { "type": "string", "title": "Resource ID", "format": "uuid", "maxLength": 128 } } } } }, "title": "Subsection XI. B." } } }, "links": { "type": "object", "additionalProperties": { "description": "A link **MUST** be represented as either: a string containing the link's URL or a link object . ", "type": "object", "required": [ "href" ], "properties": { "href": { "description": "A string containing the link's URL . ", "type": "string", "format": "uri - reference" }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true } } } }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true } }, "additionalProperties": false }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true }, "links": { "type": "object", "additionalProperties": { "description": "A link **MUST** be represented as either: a string containing the link's URL or a link object . ", "type": "object", "required": [ "href" ], "properties": { "href": { "description": "A string containing the link's URL . ", "type": "string", "format": "uri - reference" }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true } } } }, "jsonapi": { "description": "An object describing the server's implementation", "type": "object", "properties": { "version": { "type": "string" }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true } }, "additionalProperties": false } }, "additionalProperties": true }, "node--cfo_meeting": { "title": "node:cfo_meeting Schema", "description": "Meetings for the Chief FOIA Officers Council. Contains the date, body, heading, agenda, and links to meeting related documents and information.", "type": "object", "required": [ "data" ], "properties": { "data": { "description": "\\\"Resource objects\\\" appear in a JSON:API document to represent resources.", "type": "object", "required": [ "type", "id" ], "properties": { "type": { "type": "string", "title": "type", "description": "Resource type", "enum": [ "node--cfo_meeting" ] }, "id": { "type": "string", "title": "Resource ID", "format": "uuid", "maxLength": 128 }, "attributes": { "description": "Entity attributes", "type": "object", "additionalProperties": false, "properties": { "drupal_internal__nid": { "type": "integer", "title": "ID" }, "drupal_internal__vid": { "type": "integer", "title": "Revision ID" }, "langcode": { "type": "object", "properties": { "value": { "type": "string", "title": "Language code" }, "language": { "type": "language_reference", "title": "Language object", "description": "The referenced language" } }, "required": [ "value" ], "title": "Language" }, "revision_timestamp": { "type": "number", "title": "Revision create time", "format": "utc-millisec", "description": "The time that the current revision was created." }, "revision_log": { "type": "string", "title": "Revision log message", "description": "Briefly describe the changes you have made.", "default": "" }, "status": { "type": "boolean", "title": "Published", "default": true }, "title": { "type": "string", "title": "Title", "maxLength": 255 }, "created": { "type": "number", "title": "Authored on", "format": "utc-millisec", "description": "The time that the node was created." }, "changed": { "type": "number", "title": "Changed", "format": "utc-millisec", "description": "The time that the node was last edited." }, "promote": { "type": "boolean", "title": "Promoted to front page", "default": false }, "sticky": { "type": "boolean", "title": "Sticky at top of lists", "default": false }, "default_langcode": { "type": "boolean", "title": "Default translation", "description": "A flag indicating whether this is the default translation.", "default": true }, "revision_default": { "type": "boolean", "title": "Default revision", "description": "A flag indicating whether this was a default revision when it was saved." }, "revision_translation_affected": { "type": "boolean", "title": "Revision translation affected", "description": "Indicates if the last edit of a translation belongs to current revision." }, "moderation_state": { "type": "string", "title": "Moderation state", "maxLength": 255, "description": "The moderation state of this piece of content." }, "scheduled_transition_date": { "type": "array", "title": "Scheduled transition date", "items": { "type": "object", "properties": { "value": { "type": "string", "title": "Date value", "format": "date" } }, "required": [ "value" ] } }, "scheduled_transition_state": { "type": "array", "title": "Scheduled transition state", "items": { "type": "string", "title": "Text value", "maxLength": 255 } }, "scheduled_publication": { "type": "object", "properties": { "value": { "type": "string", "title": "Date value", "format": "date" } }, "required": [ "value" ] }, "scheduled_moderation_state": { "type": "string", "title": "Text value", "maxLength": 255 }, "metatag": { "type": "object", "title": "Metatags (Hidden field for JSON support)", "description": "The meta tags for the entity." }, "path": { "type": "object", "properties": { "alias": { "type": "string", "title": "Path alias" }, "pid": { "type": "integer", "title": "Path id" }, "langcode": { "type": "string", "title": "Language Code" } }, "title": "URL alias" }, "body": { "type": "object", "properties": { "value": { "type": "string", "title": "Text" }, "format": { "type": "string", "title": "Text format" }, "summary": { "type": "string", "title": "Summary" } }, "required": [ "value" ], "title": "Body" }, "field_meeting_date": { "type": "object", "properties": { "value": { "type": "string", "title": "Date value", "format": "date" } }, "required": [ "value" ], "title": "Meeting Date", "description": "Enter the required meeting date. This will control the sort order of all meetings on the council page." }, "field_meeting_heading": { "type": "object", "properties": { "value": { "type": "string", "title": "Text" }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Heading", "description": "The heading will appear at the top of the agenda page for this meeting." } }, "required": [ "title", "revision_translation_affected", "metatag", "path", "field_meeting_date" ] }, "relationships": { "description": "Entity relationships", "type": "object", "additionalProperties": false, "properties": { "node_type": { "type": "object", "properties": { "data": { "type": "object", "required": [ "type", "id" ], "properties": { "type": { "type": "string", "title": "Referenced resource", "enum": [ "node_type--node_type" ] }, "id": { "type": "string", "title": "Resource ID", "format": "uuid", "maxLength": 128 } } } }, "title": "Content type" }, "revision_uid": { "type": "object", "properties": { "data": { "type": "object", "required": [ "type", "id" ], "properties": { "type": { "type": "string", "title": "Referenced resource", "enum": [ "user--user" ] }, "id": { "type": "string", "title": "Resource ID", "format": "uuid", "maxLength": 128 } } } }, "title": "Revision user" }, "uid": { "type": "object", "properties": { "data": { "type": "object", "required": [ "type", "id" ], "properties": { "type": { "type": "string", "title": "Referenced resource", "enum": [ "user--user" ] }, "id": { "type": "string", "title": "Resource ID", "format": "uuid", "maxLength": 128 } } } }, "title": "Authored by" }, "menu_link": { "type": "object", "properties": { "data": { "type": "object", "required": [ "type", "id" ], "properties": { "type": { "type": "string", "title": "Referenced resource", "enum": [ "menu_link_content--menu_link_content" ] }, "id": { "type": "string", "title": "Resource ID", "format": "uuid", "maxLength": 128 } } } }, "title": "Menu link" }, "field_meeting_agenda": { "type": "object", "properties": { "data": { "type": "array", "items": { "type": "object", "required": [ "type", "id" ], "properties": { "type": { "type": "string", "title": "Referenced resource", "enum": [ "paragraph--agenda_item" ] }, "id": { "type": "string", "title": "Resource ID", "format": "uuid", "maxLength": 128 } } } } }, "title": "Agenda" }, "field_meeting_documents": { "type": "object", "properties": { "data": { "type": "array", "items": { "type": "object", "required": [ "type", "id" ], "properties": { "type": { "type": "string", "title": "Referenced resource", "enum": [ "paragraph--link_or_file" ] }, "id": { "type": "string", "title": "Resource ID", "format": "uuid", "maxLength": 128 } } } } }, "title": "Working Documents" }, "field_meeting_materials": { "type": "object", "properties": { "data": { "type": "array", "items": { "type": "object", "required": [ "type", "id" ], "properties": { "type": { "type": "string", "title": "Referenced resource", "enum": [ "paragraph--link_or_file" ] }, "id": { "type": "string", "title": "Resource ID", "format": "uuid", "maxLength": 128 } } } } }, "title": "Meeting Materials" } } }, "links": { "type": "object", "additionalProperties": { "description": "A link **MUST** be represented as either: a string containing the link's URL or a link object . ", "type": "object", "required": [ "href" ], "properties": { "href": { "description": "A string containing the link's URL . ", "type": "string", "format": "uri - reference" }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true } } } }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true } }, "additionalProperties": false }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true }, "links": { "type": "object", "additionalProperties": { "description": "A link **MUST** be represented as either: a string containing the link's URL or a link object . ", "type": "object", "required": [ "href" ], "properties": { "href": { "description": "A string containing the link's URL . ", "type": "string", "format": "uri - reference" }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true } } } }, "jsonapi": { "description": "An object describing the server's implementation", "type": "object", "properties": { "version": { "type": "string" }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true } }, "additionalProperties": false } }, "additionalProperties": true }, "node--cfo_committee": { "title": "node:cfo_committee Schema", "description": "Committees of the Chief FOIA Officers Council. Includes title and WYSIWYG description fields.", "type": "object", "required": [ "data" ], "properties": { "data": { "description": "\\\"Resource objects\\\" appear in a JSON:API document to represent resources.", "type": "object", "required": [ "type", "id" ], "properties": { "type": { "type": "string", "title": "type", "description": "Resource type", "enum": [ "node--cfo_committee" ] }, "id": { "type": "string", "title": "Resource ID", "format": "uuid", "maxLength": 128 }, "attributes": { "description": "Entity attributes", "type": "object", "additionalProperties": false, "properties": { "drupal_internal__nid": { "type": "integer", "title": "ID" }, "drupal_internal__vid": { "type": "integer", "title": "Revision ID" }, "langcode": { "type": "object", "properties": { "value": { "type": "string", "title": "Language code" }, "language": { "type": "language_reference", "title": "Language object", "description": "The referenced language" } }, "required": [ "value" ], "title": "Language" }, "revision_timestamp": { "type": "number", "title": "Revision create time", "format": "utc-millisec", "description": "The time that the current revision was created." }, "revision_log": { "type": "string", "title": "Revision log message", "description": "Briefly describe the changes you have made.", "default": "" }, "status": { "type": "boolean", "title": "Published", "default": true }, "title": { "type": "string", "title": "Title", "maxLength": 255 }, "created": { "type": "number", "title": "Authored on", "format": "utc-millisec", "description": "The time that the node was created." }, "changed": { "type": "number", "title": "Changed", "format": "utc-millisec", "description": "The time that the node was last edited." }, "promote": { "type": "boolean", "title": "Promoted to front page", "default": false }, "sticky": { "type": "boolean", "title": "Sticky at top of lists", "default": false }, "default_langcode": { "type": "boolean", "title": "Default translation", "description": "A flag indicating whether this is the default translation.", "default": true }, "revision_default": { "type": "boolean", "title": "Default revision", "description": "A flag indicating whether this was a default revision when it was saved." }, "revision_translation_affected": { "type": "boolean", "title": "Revision translation affected", "description": "Indicates if the last edit of a translation belongs to current revision." }, "moderation_state": { "type": "string", "title": "Moderation state", "maxLength": 255, "description": "The moderation state of this piece of content." }, "scheduled_transition_date": { "type": "array", "title": "Scheduled transition date", "items": { "type": "object", "properties": { "value": { "type": "string", "title": "Date value", "format": "date" } }, "required": [ "value" ] } }, "scheduled_transition_state": { "type": "array", "title": "Scheduled transition state", "items": { "type": "string", "title": "Text value", "maxLength": 255 } }, "scheduled_publication": { "type": "object", "properties": { "value": { "type": "string", "title": "Date value", "format": "date" } }, "required": [ "value" ] }, "scheduled_moderation_state": { "type": "string", "title": "Text value", "maxLength": 255 }, "metatag": { "type": "object", "title": "Metatags (Hidden field for JSON support)", "description": "The meta tags for the entity." }, "path": { "type": "object", "properties": { "alias": { "type": "string", "title": "Path alias" }, "pid": { "type": "integer", "title": "Path id" }, "langcode": { "type": "string", "title": "Language Code" } }, "title": "URL alias" }, "body": { "type": "object", "properties": { "value": { "type": "string", "title": "Text" }, "format": { "type": "string", "title": "Text format" }, "summary": { "type": "string", "title": "Summary" } }, "required": [ "value" ], "title": "Body" }, "field_cfo_slug": { "type": "string", "title": "URL Slug", "maxLength": 100, "description": "The URL slug is used to make the browser\\'s address \\\"pretty\\\". Use only lowercase letters and hyphens. A slug is the part of a URL that identifies a particular page on a website in an easy-to-read form." } }, "required": [ "title", "revision_translation_affected", "metatag", "path", "field_cfo_slug" ] }, "relationships": { "description": "Entity relationships", "type": "object", "additionalProperties": false, "properties": { "node_type": { "type": "object", "properties": { "data": { "type": "object", "required": [ "type", "id" ], "properties": { "type": { "type": "string", "title": "Referenced resource", "enum": [ "node_type--node_type" ] }, "id": { "type": "string", "title": "Resource ID", "format": "uuid", "maxLength": 128 } } } }, "title": "Content type" }, "revision_uid": { "type": "object", "properties": { "data": { "type": "object", "required": [ "type", "id" ], "properties": { "type": { "type": "string", "title": "Referenced resource", "enum": [ "user--user" ] }, "id": { "type": "string", "title": "Resource ID", "format": "uuid", "maxLength": 128 } } } }, "title": "Revision user" }, "uid": { "type": "object", "properties": { "data": { "type": "object", "required": [ "type", "id" ], "properties": { "type": { "type": "string", "title": "Referenced resource", "enum": [ "user--user" ] }, "id": { "type": "string", "title": "Resource ID", "format": "uuid", "maxLength": 128 } } } }, "title": "Authored by" }, "menu_link": { "type": "object", "properties": { "data": { "type": "object", "required": [ "type", "id" ], "properties": { "type": { "type": "string", "title": "Referenced resource", "enum": [ "menu_link_content--menu_link_content" ] }, "id": { "type": "string", "title": "Resource ID", "format": "uuid", "maxLength": 128 } } } }, "title": "Menu link" }, "field_attachments": { "type": "object", "properties": { "data": { "type": "array", "items": { "type": "object", "required": [ "type", "id" ], "properties": { "type": { "type": "string", "title": "Referenced resource", "enum": [ "paragraph--attachments" ] }, "id": { "type": "string", "title": "Resource ID", "format": "uuid", "maxLength": 128 } } } } }, "title": "Attachments" }, "field_working_groups": { "type": "object", "properties": { "data": { "type": "array", "items": { "type": "object", "required": [ "type", "id" ], "properties": { "type": { "type": "string", "title": "Referenced resource", "enum": [ "paragraph--working_groups" ] }, "id": { "type": "string", "title": "Resource ID", "format": "uuid", "maxLength": 128 } } } } }, "title": "Working Groups" } } }, "links": { "type": "object", "additionalProperties": { "description": "A link **MUST** be represented as either: a string containing the link's URL or a link object . ", "type": "object", "required": [ "href" ], "properties": { "href": { "description": "A string containing the link's URL . ", "type": "string", "format": "uri - reference" }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true } } } }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true } }, "additionalProperties": false }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true }, "links": { "type": "object", "additionalProperties": { "description": "A link **MUST** be represented as either: a string containing the link's URL or a link object . ", "type": "object", "required": [ "href" ], "properties": { "href": { "description": "A string containing the link's URL . ", "type": "string", "format": "uri - reference" }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true } } } }, "jsonapi": { "description": "An object describing the server's implementation", "type": "object", "properties": { "version": { "type": "string" }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true } }, "additionalProperties": false } }, "additionalProperties": true }, "node--cfo_council": { "title": "node:cfo_council Schema", "description": "The main page for the Chief FOIA Officers Council. Assign committees to the council. Meetings will be automatically attached.", "type": "object", "required": [ "data" ], "properties": { "data": { "description": "\\\"Resource objects\\\" appear in a JSON:API document to represent resources.", "type": "object", "required": [ "type", "id" ], "properties": { "type": { "type": "string", "title": "type", "description": "Resource type", "enum": [ "node--cfo_council" ] }, "id": { "type": "string", "title": "Resource ID", "format": "uuid", "maxLength": 128 }, "attributes": { "description": "Entity attributes", "type": "object", "additionalProperties": false, "properties": { "drupal_internal__nid": { "type": "integer", "title": "ID" }, "drupal_internal__vid": { "type": "integer", "title": "Revision ID" }, "langcode": { "type": "object", "properties": { "value": { "type": "string", "title": "Language code" }, "language": { "type": "language_reference", "title": "Language object", "description": "The referenced language" } }, "required": [ "value" ], "title": "Language" }, "revision_timestamp": { "type": "number", "title": "Revision create time", "format": "utc-millisec", "description": "The time that the current revision was created." }, "revision_log": { "type": "string", "title": "Revision log message", "description": "Briefly describe the changes you have made.", "default": "" }, "status": { "type": "boolean", "title": "Published", "default": true }, "title": { "type": "string", "title": "Title", "maxLength": 255 }, "created": { "type": "number", "title": "Authored on", "format": "utc-millisec", "description": "The time that the node was created." }, "changed": { "type": "number", "title": "Changed", "format": "utc-millisec", "description": "The time that the node was last edited." }, "promote": { "type": "boolean", "title": "Promoted to front page", "default": false }, "sticky": { "type": "boolean", "title": "Sticky at top of lists", "default": false }, "default_langcode": { "type": "boolean", "title": "Default translation", "description": "A flag indicating whether this is the default translation.", "default": true }, "revision_default": { "type": "boolean", "title": "Default revision", "description": "A flag indicating whether this was a default revision when it was saved." }, "revision_translation_affected": { "type": "boolean", "title": "Revision translation affected", "description": "Indicates if the last edit of a translation belongs to current revision." }, "moderation_state": { "type": "string", "title": "Moderation state", "maxLength": 255, "description": "The moderation state of this piece of content." }, "scheduled_transition_date": { "type": "array", "title": "Scheduled transition date", "items": { "type": "object", "properties": { "value": { "type": "string", "title": "Date value", "format": "date" } }, "required": [ "value" ] } }, "scheduled_transition_state": { "type": "array", "title": "Scheduled transition state", "items": { "type": "string", "title": "Text value", "maxLength": 255 } }, "scheduled_publication": { "type": "object", "properties": { "value": { "type": "string", "title": "Date value", "format": "date" } }, "required": [ "value" ] }, "scheduled_moderation_state": { "type": "string", "title": "Text value", "maxLength": 255 }, "metatag": { "type": "object", "title": "Metatags (Hidden field for JSON support)", "description": "The meta tags for the entity." }, "path": { "type": "object", "properties": { "alias": { "type": "string", "title": "Path alias" }, "pid": { "type": "integer", "title": "Path id" }, "langcode": { "type": "string", "title": "Language Code" } }, "title": "URL alias" }, "body": { "type": "object", "properties": { "value": { "type": "string", "title": "Text" }, "format": { "type": "string", "title": "Text format" }, "summary": { "type": "string", "title": "Summary" } }, "required": [ "value" ], "title": "Body" } }, "required": [ "title", "revision_translation_affected", "metatag", "path" ] }, "relationships": { "description": "Entity relationships", "type": "object", "additionalProperties": false, "properties": { "node_type": { "type": "object", "properties": { "data": { "type": "object", "required": [ "type", "id" ], "properties": { "type": { "type": "string", "title": "Referenced resource", "enum": [ "node_type--node_type" ] }, "id": { "type": "string", "title": "Resource ID", "format": "uuid", "maxLength": 128 } } } }, "title": "Content type" }, "revision_uid": { "type": "object", "properties": { "data": { "type": "object", "required": [ "type", "id" ], "properties": { "type": { "type": "string", "title": "Referenced resource", "enum": [ "user--user" ] }, "id": { "type": "string", "title": "Resource ID", "format": "uuid", "maxLength": 128 } } } }, "title": "Revision user" }, "uid": { "type": "object", "properties": { "data": { "type": "object", "required": [ "type", "id" ], "properties": { "type": { "type": "string", "title": "Referenced resource", "enum": [ "user--user" ] }, "id": { "type": "string", "title": "Resource ID", "format": "uuid", "maxLength": 128 } } } }, "title": "Authored by" }, "menu_link": { "type": "object", "properties": { "data": { "type": "object", "required": [ "type", "id" ], "properties": { "type": { "type": "string", "title": "Referenced resource", "enum": [ "menu_link_content--menu_link_content" ] }, "id": { "type": "string", "title": "Resource ID", "format": "uuid", "maxLength": 128 } } } }, "title": "Menu link" }, "field_council_committees": { "type": "object", "properties": { "data": { "type": "array", "items": { "type": "object", "required": [ "type", "id" ], "properties": { "type": { "type": "string", "title": "Referenced resource", "enum": [ "node--cfo_committee" ] }, "id": { "type": "string", "title": "Resource ID", "format": "uuid", "maxLength": 128 } } } } }, "title": "Committees" } } }, "links": { "type": "object", "additionalProperties": { "description": "A link **MUST** be represented as either: a string containing the link's URL or a link object . ", "type": "object", "required": [ "href" ], "properties": { "href": { "description": "A string containing the link's URL . ", "type": "string", "format": "uri - reference" }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true } } } }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true } }, "additionalProperties": false }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true }, "links": { "type": "object", "additionalProperties": { "description": "A link **MUST** be represented as either: a string containing the link's URL or a link object . ", "type": "object", "required": [ "href" ], "properties": { "href": { "description": "A string containing the link's URL . ", "type": "string", "format": "uri - reference" }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true } } } }, "jsonapi": { "description": "An object describing the server's implementation", "type": "object", "properties": { "version": { "type": "string" }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true } }, "additionalProperties": false } }, "additionalProperties": true }, "node--cfo_page": { "title": "node:cfo_page Schema", "description": "Pages for the Chief FOIA Officers Council. CFO Pages have title, body, and URL slug fields. They are available via a JSON feed.", "type": "object", "required": [ "data" ], "properties": { "data": { "description": "\\\"Resource objects\\\" appear in a JSON:API document to represent resources.", "type": "object", "required": [ "type", "id" ], "properties": { "type": { "type": "string", "title": "type", "description": "Resource type", "enum": [ "node--cfo_page" ] }, "id": { "type": "string", "title": "Resource ID", "format": "uuid", "maxLength": 128 }, "attributes": { "description": "Entity attributes", "type": "object", "additionalProperties": false, "properties": { "drupal_internal__nid": { "type": "integer", "title": "ID" }, "drupal_internal__vid": { "type": "integer", "title": "Revision ID" }, "langcode": { "type": "object", "properties": { "value": { "type": "string", "title": "Language code" }, "language": { "type": "language_reference", "title": "Language object", "description": "The referenced language" } }, "required": [ "value" ], "title": "Language" }, "revision_timestamp": { "type": "number", "title": "Revision create time", "format": "utc-millisec", "description": "The time that the current revision was created." }, "revision_log": { "type": "string", "title": "Revision log message", "description": "Briefly describe the changes you have made.", "default": "" }, "status": { "type": "boolean", "title": "Published", "default": true }, "title": { "type": "string", "title": "Title", "maxLength": 255 }, "created": { "type": "number", "title": "Authored on", "format": "utc-millisec", "description": "The time that the node was created." }, "changed": { "type": "number", "title": "Changed", "format": "utc-millisec", "description": "The time that the node was last edited." }, "promote": { "type": "boolean", "title": "Promoted to front page", "default": false }, "sticky": { "type": "boolean", "title": "Sticky at top of lists", "default": false }, "default_langcode": { "type": "boolean", "title": "Default translation", "description": "A flag indicating whether this is the default translation.", "default": true }, "revision_default": { "type": "boolean", "title": "Default revision", "description": "A flag indicating whether this was a default revision when it was saved." }, "revision_translation_affected": { "type": "boolean", "title": "Revision translation affected", "description": "Indicates if the last edit of a translation belongs to current revision." }, "moderation_state": { "type": "string", "title": "Moderation state", "maxLength": 255, "description": "The moderation state of this piece of content." }, "scheduled_transition_date": { "type": "array", "title": "Scheduled transition date", "items": { "type": "object", "properties": { "value": { "type": "string", "title": "Date value", "format": "date" } }, "required": [ "value" ] } }, "scheduled_transition_state": { "type": "array", "title": "Scheduled transition state", "items": { "type": "string", "title": "Text value", "maxLength": 255 } }, "scheduled_publication": { "type": "object", "properties": { "value": { "type": "string", "title": "Date value", "format": "date" } }, "required": [ "value" ] }, "scheduled_moderation_state": { "type": "string", "title": "Text value", "maxLength": 255 }, "metatag": { "type": "object", "title": "Metatags (Hidden field for JSON support)", "description": "The meta tags for the entity." }, "path": { "type": "object", "properties": { "alias": { "type": "string", "title": "Path alias" }, "pid": { "type": "integer", "title": "Path id" }, "langcode": { "type": "string", "title": "Language Code" } }, "title": "URL alias" }, "body": { "type": "object", "properties": { "value": { "type": "string", "title": "Text" }, "format": { "type": "string", "title": "Text format" }, "summary": { "type": "string", "title": "Summary" } }, "required": [ "value" ], "title": "Body" }, "field_cfo_slug": { "type": "string", "title": "URL Slug", "maxLength": 100, "description": "The URL slug is used to make the browser\\'s address \\\"pretty\\\". Use only lowercase letters and hyphens. A slug is the part of a URL that identifies a particular page on a website in an easy-to-read form." } }, "required": [ "title", "revision_translation_affected", "metatag", "path", "field_cfo_slug" ] }, "relationships": { "description": "Entity relationships", "type": "object", "additionalProperties": false, "properties": { "node_type": { "type": "object", "properties": { "data": { "type": "object", "required": [ "type", "id" ], "properties": { "type": { "type": "string", "title": "Referenced resource", "enum": [ "node_type--node_type" ] }, "id": { "type": "string", "title": "Resource ID", "format": "uuid", "maxLength": 128 } } } }, "title": "Content type" }, "revision_uid": { "type": "object", "properties": { "data": { "type": "object", "required": [ "type", "id" ], "properties": { "type": { "type": "string", "title": "Referenced resource", "enum": [ "user--user" ] }, "id": { "type": "string", "title": "Resource ID", "format": "uuid", "maxLength": 128 } } } }, "title": "Revision user" }, "uid": { "type": "object", "properties": { "data": { "type": "object", "required": [ "type", "id" ], "properties": { "type": { "type": "string", "title": "Referenced resource", "enum": [ "user--user" ] }, "id": { "type": "string", "title": "Resource ID", "format": "uuid", "maxLength": 128 } } } }, "title": "Authored by" }, "menu_link": { "type": "object", "properties": { "data": { "type": "object", "required": [ "type", "id" ], "properties": { "type": { "type": "string", "title": "Referenced resource", "enum": [ "menu_link_content--menu_link_content" ] }, "id": { "type": "string", "title": "Resource ID", "format": "uuid", "maxLength": 128 } } } }, "title": "Menu link" }, "field_attachments": { "type": "object", "properties": { "data": { "type": "array", "items": { "type": "object", "required": [ "type", "id" ], "properties": { "type": { "type": "string", "title": "Referenced resource", "enum": [ "paragraph--attachments" ] }, "id": { "type": "string", "title": "Resource ID", "format": "uuid", "maxLength": 128 } } } } }, "title": "Attachments" } } }, "links": { "type": "object", "additionalProperties": { "description": "A link **MUST** be represented as either: a string containing the link's URL or a link object . ", "type": "object", "required": [ "href" ], "properties": { "href": { "description": "A string containing the link's URL . ", "type": "string", "format": "uri - reference" }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true } } } }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true } }, "additionalProperties": false }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true }, "links": { "type": "object", "additionalProperties": { "description": "A link **MUST** be represented as either: a string containing the link's URL or a link object . ", "type": "object", "required": [ "href" ], "properties": { "href": { "description": "A string containing the link's URL . ", "type": "string", "format": "uri - reference" }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true } } } }, "jsonapi": { "description": "An object describing the server's implementation", "type": "object", "properties": { "version": { "type": "string" }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true } }, "additionalProperties": false } }, "additionalProperties": true }, "paragraph--working_groups": { "title": "paragraph:working_groups Schema", "description": "Describes the payload for 'paragraph' entities of the 'working_groups' bundle.", "type": "object", "required": [ "data" ], "properties": { "data": { "description": "\\\"Resource objects\\\" appear in a JSON:API document to represent resources.", "type": "object", "required": [ "type", "id" ], "properties": { "type": { "type": "string", "title": "type", "description": "Resource type", "enum": [ "paragraph--working_groups" ] }, "id": { "type": "string", "title": "Resource ID", "format": "uuid", "maxLength": 128 }, "attributes": { "description": "Entity attributes", "type": "object", "additionalProperties": false, "properties": { "drupal_internal__id": { "type": "integer", "title": "ID" }, "drupal_internal__revision_id": { "type": "integer", "title": "Revision ID" }, "langcode": { "type": "object", "properties": { "value": { "type": "string", "title": "Language code" }, "language": { "type": "language_reference", "title": "Language object", "description": "The referenced language" } }, "required": [ "value" ], "title": "Language code", "description": "The paragraphs entity language code." }, "status": { "type": "boolean", "title": "Published", "default": true }, "created": { "type": "number", "title": "Authored on", "format": "utc-millisec", "description": "The time that the Paragraph was created." }, "parent_id": { "type": "string", "title": "Parent ID", "maxLength": 255, "description": "The ID of the parent entity of which this entity is referenced." }, "parent_type": { "type": "string", "title": "Parent type", "maxLength": 32, "description": "The entity parent type to which this entity is referenced." }, "parent_field_name": { "type": "string", "title": "Parent field name", "maxLength": 32, "description": "The entity parent field name to which this entity is referenced." }, "behavior_settings": { "type": "string", "title": "Behavior settings", "description": "The behavior plugin settings", "default": "a:0:{}" }, "default_langcode": { "type": "boolean", "title": "Default translation", "description": "A flag indicating whether this is the default translation.", "default": true }, "revision_default": { "type": "boolean", "title": "Default revision", "description": "A flag indicating whether this was a default revision when it was saved." }, "revision_translation_affected": { "type": "boolean", "title": "Revision translation affected", "description": "Indicates if the last edit of a translation belongs to current revision." }, "field_body": { "type": "object", "properties": { "value": { "type": "string", "title": "Text" }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Body" }, "field_title": { "type": "string", "title": "Title", "maxLength": 255 } }, "required": [ "revision_translation_affected" ] }, "relationships": { "description": "Entity relationships", "type": "object", "additionalProperties": false, "properties": { "paragraph_type": { "type": "object", "properties": { "data": { "type": "object", "required": [ "type", "id" ], "properties": { "type": { "type": "string", "title": "Referenced resource", "enum": [ "paragraphs_type--paragraphs_type" ] }, "id": { "type": "string", "title": "Resource ID", "format": "uuid", "maxLength": 128 } } } }, "title": "Paragraph type" }, "field_attachments": { "type": "object", "properties": { "data": { "type": "array", "items": { "type": "object", "required": [ "type", "id" ], "properties": { "type": { "type": "string", "title": "Referenced resource", "enum": [ "paragraph--attachments" ] }, "id": { "type": "string", "title": "Resource ID", "format": "uuid", "maxLength": 128 } } } } }, "title": "Attachments" } } }, "links": { "type": "object", "additionalProperties": { "description": "A link **MUST** be represented as either: a string containing the link's URL or a link object . ", "type": "object", "required": [ "href" ], "properties": { "href": { "description": "A string containing the link's URL . ", "type": "string", "format": "uri - reference" }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true } } } }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true } }, "additionalProperties": false }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true }, "links": { "type": "object", "additionalProperties": { "description": "A link **MUST** be represented as either: a string containing the link's URL or a link object . ", "type": "object", "required": [ "href" ], "properties": { "href": { "description": "A string containing the link's URL . ", "type": "string", "format": "uri - reference" }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true } } } } } }, "paragraph--admin_app_via": { "title": "paragraph:admin_app_via Schema", "description": "Describes the payload for 'paragraph' entities of the 'admin_app_via' bundle.", "type": "object", "required": [ "data" ], "properties": { "data": { "description": "\\\"Resource objects\\\" appear in a JSON:API document to represent resources.", "type": "object", "required": [ "type", "id" ], "properties": { "type": { "type": "string", "title": "type", "description": "Resource type", "enum": [ "paragraph--admin_app_via" ] }, "id": { "type": "string", "title": "Resource ID", "format": "uuid", "maxLength": 128 }, "attributes": { "description": "Entity attributes", "type": "object", "additionalProperties": false, "properties": { "field_app_pend_end_yr": { "type": "integer", "title": "Number of Appeals Pending as of End of Fiscal Year" }, "field_app_pend_start_yr": { "type": "integer", "title": "Number of Appeals Pending as of Start of Fiscal Year" }, "field_app_processed_yr": { "type": "integer", "title": "Number of Appeals Processed in Fiscal Year" }, "field_app_received_yr": { "type": "integer", "title": "Number of Appeals Received in Fiscal Year" } } }, "relationships": { "description": "Entity relationships", "type": "object", "additionalProperties": false, "properties": { "field_agency_component": { "type": "object", "properties": { "data": { "type": "object", "required": [ "type", "id" ], "properties": { "type": { "type": "string", "title": "Referenced resource" }, "id": { "type": "string", "title": "Resource ID", "format": "uuid", "maxLength": 128 } } } }, "title": "Agency/Component" } } }, "links": { "type": "object", "additionalProperties": { "description": "A link **MUST** be represented as either: a string containing the link's URL or a link object . ", "type": "object", "required": [ "href" ], "properties": { "href": { "description": "A string containing the link's URL . ", "type": "string", "format": "uri - reference" }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true } } } }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true } }, "additionalProperties": false }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true }, "links": { "type": "object", "additionalProperties": { "description": "A link **MUST** be represented as either: a string containing the link's URL or a link object . ", "type": "object", "required": [ "href" ], "properties": { "href": { "description": "A string containing the link's URL . ", "type": "string", "format": "uri - reference" }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true } } } }, "jsonapi": { "description": "An object describing the server's implementation", "type": "object", "properties": { "version": { "type": "string" }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true } }, "additionalProperties": false } }, "additionalProperties": true }, "paragraph--link_or_file": { "title": "paragraph:link_or_file Schema", "description": "Describes the payload for 'paragraph' entities of the 'link_or_file' bundle.", "type": "object", "required": [ "data" ], "properties": { "data": { "description": "\\\"Resource objects\\\" appear in a JSON:API document to represent resources.", "type": "object", "required": [ "type", "id" ], "properties": { "type": { "type": "string", "title": "type", "description": "Resource type", "enum": [ "paragraph--link_or_file" ] }, "id": { "type": "string", "title": "Resource ID", "format": "uuid", "maxLength": 128 }, "attributes": { "description": "Entity attributes", "type": "object", "additionalProperties": false, "properties": { "drupal_internal__id": { "type": "integer", "title": "ID" }, "drupal_internal__revision_id": { "type": "integer", "title": "Revision ID" }, "langcode": { "type": "object", "properties": { "value": { "type": "string", "title": "Language code" }, "language": { "type": "language_reference", "title": "Language object", "description": "The referenced language" } }, "required": [ "value" ], "title": "Language code", "description": "The paragraphs entity language code." }, "status": { "type": "boolean", "title": "Published", "default": true }, "created": { "type": "number", "title": "Authored on", "format": "utc-millisec", "description": "The time that the Paragraph was created." }, "parent_id": { "type": "string", "title": "Parent ID", "maxLength": 255, "description": "The ID of the parent entity of which this entity is referenced." }, "parent_type": { "type": "string", "title": "Parent type", "maxLength": 32, "description": "The entity parent type to which this entity is referenced." }, "parent_field_name": { "type": "string", "title": "Parent field name", "maxLength": 32, "description": "The entity parent field name to which this entity is referenced." }, "behavior_settings": { "type": "string", "title": "Behavior settings", "description": "The behavior plugin settings", "default": "a:0:{}" }, "default_langcode": { "type": "boolean", "title": "Default translation", "description": "A flag indicating whether this is the default translation.", "default": true }, "revision_default": { "type": "boolean", "title": "Default revision", "description": "A flag indicating whether this was a default revision when it was saved." }, "revision_translation_affected": { "type": "boolean", "title": "Revision translation affected", "description": "Indicates if the last edit of a translation belongs to current revision." }, "field_link_label": { "type": "string", "title": "Label", "maxLength": 100, "description": "Using the fields below, enter either:\r\n\r\na link/URL to an existing piece of content or other external webpage.\r\nupload a file using the \\\"Choose File\\\" browser\r\n" }, "field_link_link": { "type": "object", "properties": { "uri": { "type": "string", "title": "URI" }, "title": { "type": "string", "title": "Link text" } }, "title": "Link" } }, "required": [ "revision_translation_affected" ] }, "relationships": { "description": "Entity relationships", "type": "object", "additionalProperties": false, "properties": { "paragraph_type": { "type": "object", "properties": { "data": { "type": "object", "required": [ "type", "id" ], "properties": { "type": { "type": "string", "title": "Referenced resource", "enum": [ "paragraphs_type--paragraphs_type" ] }, "id": { "type": "string", "title": "Resource ID", "format": "uuid", "maxLength": 128 } } } }, "title": "Paragraph type" }, "field_link_file": { "type": "object", "properties": { "data": { "type": "object", "required": [ "type", "id" ], "properties": { "type": { "type": "string", "title": "Referenced resource" }, "id": { "type": "string", "title": "Resource ID", "format": "uuid", "maxLength": 128 } } } }, "title": "File" } } }, "links": { "type": "object", "additionalProperties": { "description": "A link **MUST** be represented as either: a string containing the link's URL or a link object . ", "type": "object", "required": [ "href" ], "properties": { "href": { "description": "A string containing the link's URL . ", "type": "string", "format": "uri - reference" }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true } } } }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true } }, "additionalProperties": false }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true }, "links": { "type": "object", "additionalProperties": { "description": "A link **MUST** be represented as either: a string containing the link's URL or a link object . ", "type": "object", "required": [ "href" ], "properties": { "href": { "description": "A string containing the link's URL . ", "type": "string", "format": "uri - reference" }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true } } } }, "jsonapi": { "description": "An object describing the server's implementation", "type": "object", "properties": { "version": { "type": "string" }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true } }, "additionalProperties": false } }, "additionalProperties": true }, "paragraph--attachments": { "title": "paragraph:attachments Schema", "description": "Describes the payload for 'paragraph' entities of the 'attachments' bundle.", "type": "object", "required": [ "data" ], "properties": { "data": { "description": "\\\"Resource objects\\\" appear in a JSON:API document to represent resources.", "type": "object", "required": [ "type", "id" ], "properties": { "type": { "type": "string", "title": "type", "description": "Resource type", "enum": [ "paragraph--attachments" ] }, "id": { "type": "string", "title": "Resource ID", "format": "uuid", "maxLength": 128 }, "attributes": { "description": "Entity attributes", "type": "object", "additionalProperties": false, "properties": { "drupal_internal__id": { "type": "integer", "title": "ID" }, "drupal_internal__revision_id": { "type": "integer", "title": "Revision ID" }, "langcode": { "type": "object", "properties": { "value": { "type": "string", "title": "Language code" }, "language": { "type": "language_reference", "title": "Language object", "description": "The referenced language" } }, "required": [ "value" ], "title": "Language code", "description": "The paragraphs entity language code." }, "status": { "type": "boolean", "title": "Published", "default": true }, "created": { "type": "number", "title": "Authored on", "format": "utc-millisec", "description": "The time that the Paragraph was created." }, "parent_id": { "type": "string", "title": "Parent ID", "maxLength": 255, "description": "The ID of the parent entity of which this entity is referenced." }, "parent_type": { "type": "string", "title": "Parent type", "maxLength": 32, "description": "The entity parent type to which this entity is referenced." }, "parent_field_name": { "type": "string", "title": "Parent field name", "maxLength": 32, "description": "The entity parent field name to which this entity is referenced." }, "behavior_settings": { "type": "string", "title": "Behavior settings", "description": "The behavior plugin settings", "default": "a:0:{}" }, "default_langcode": { "type": "boolean", "title": "Default translation", "description": "A flag indicating whether this is the default translation.", "default": true }, "revision_default": { "type": "boolean", "title": "Default revision", "description": "A flag indicating whether this was a default revision when it was saved." }, "revision_translation_affected": { "type": "boolean", "title": "Revision translation affected", "description": "Indicates if the last edit of a translation belongs to current revision." }, "field_title": { "type": "string", "title": "Title", "maxLength": 255 } }, "required": [ "revision_translation_affected" ] }, "relationships": { "description": "Entity relationships", "type": "object", "additionalProperties": false, "properties": { "paragraph_type": { "type": "object", "properties": { "data": { "type": "object", "required": [ "type", "id" ], "properties": { "type": { "type": "string", "title": "Referenced resource", "enum": [ "paragraphs_type--paragraphs_type" ] }, "id": { "type": "string", "title": "Resource ID", "format": "uuid", "maxLength": 128 } } } }, "title": "Paragraph type" }, "field_attachment": { "type": "object", "properties": { "data": { "type": "object", "required": [ "type", "id" ], "properties": { "type": { "type": "string", "title": "Referenced resource" }, "id": { "type": "string", "title": "Resource ID", "format": "uuid", "maxLength": 128 } } } }, "title": "Attachment File" } } }, "links": { "type": "object", "additionalProperties": { "description": "A link **MUST** be represented as either: a string containing the link's URL or a link object . ", "type": "object", "required": [ "href" ], "properties": { "href": { "description": "A string containing the link's URL . ", "type": "string", "format": "uri - reference" }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true } } } }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true } }, "additionalProperties": false }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true }, "links": { "type": "object", "additionalProperties": { "description": "A link **MUST** be represented as either: a string containing the link's URL or a link object . ", "type": "object", "required": [ "href" ], "properties": { "href": { "description": "A string containing the link's URL . ", "type": "string", "format": "uri - reference" }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true } } } }, "jsonapi": { "description": "An object describing the server's implementation", "type": "object", "properties": { "version": { "type": "string" }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true } }, "additionalProperties": false } }, "additionalProperties": true }, "taxonomy_term--agency": { "title": "taxonomy_term:agency Schema", "description": "Describes the payload for 'taxonomy_term' entities of the 'agency' bundle.", "type": "object", "required": [ "data" ], "properties": { "data": { "description": "\\\"Resource objects\\\" appear in a JSON:API document to represent resources.", "type": "object", "required": [ "type", "id" ], "properties": { "type": { "type": "string", "title": "type", "description": "Resource type", "enum": [ "agency" ] }, "id": { "type": "string", "title": "Resource ID", "format": "uuid", "maxLength": 128 }, "attributes": { "description": "Entity attributes", "type": "object", "additionalProperties": false, "properties": { "drupal_internal__tid": { "type": "integer", "title": "Term ID", "description": "The term ID." }, "drupal_internal__revision_id": { "type": "integer", "title": "Revision ID" }, "revision_created": { "type": "number", "title": "Revision create time", "format": "utc-millisec", "description": "The time that the current revision was created." }, "revision_log_message": { "type": "string", "title": "Revision log message", "description": "Briefly describe the changes you have made.", "default": "" }, "status": { "type": "boolean", "title": "Published", "default": true }, "name": { "type": "string", "title": "Name", "maxLength": 255 }, "description": { "type": "object", "properties": { "value": { "type": "string", "title": "Text" }, "format": { "type": "string", "title": "Text format" } }, "required": [ "value" ], "title": "Description" }, "revision_default": { "type": "boolean", "title": "Default revision", "description": "A flag indicating whether this was a default revision when it was saved." }, "revision_translation_affected": { "type": "boolean", "title": "Revision translation affected", "description": "Indicates if the last edit of a translation belongs to current revision." }, "metatag": { "type": "object", "title": "Metatags (Hidden field for JSON support)", "description": "The meta tags for the entity." }, "abbreviation": { "type": "string", "title": "Abbreviation", "maxLength": 10, "description": "Enter the abbreviation for the agency (e.g. DOJ for the Department of Justice)." } }, "required": [ "name", "revision_translation_affected", "metatag" ] }, "relationships": { "description": "Entity relationships", "type": "object", "additionalProperties": false, "properties": { "revision_user": { "type": "object", "properties": { "data": { "type": "object", "required": [ "type", "id" ], "properties": { "type": { "type": "string", "title": "Referenced resource", "enum": [ "user--user" ] }, "id": { "type": "string", "title": "Resource ID", "format": "uuid", "maxLength": 128 } } } }, "title": "Revision user" }, "category": { "type": "object", "properties": { "data": { "type": "object", "required": [ "type", "id" ], "properties": { "type": { "type": "string", "title": "Referenced resource", "enum": [ "agency_category" ] }, "id": { "type": "string", "title": "Resource ID", "format": "uuid", "maxLength": 128 } } } }, "title": "Category" } }, "required": [] }, "links": { "type": "object", "additionalProperties": { "description": "A link **MUST** be represented as either: a string containing the link's URL or a link object . ", "type": "object", "required": [ "href" ], "properties": { "href": { "description": "A string containing the link's URL . ", "type": "string", "format": "uri - reference" }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true } } } }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true } }, "additionalProperties": false }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true }, "links": { "type": "object", "additionalProperties": { "description": "A link **MUST** be represented as either: a string containing the link's URL or a link object . ", "type": "object", "required": [ "href" ], "properties": { "href": { "description": "A string containing the link's URL . ", "type": "string", "format": "uri - reference" }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true } } } }, "jsonapi": { "description": "An object describing the server's implementation", "type": "object", "properties": { "version": { "type": "string" }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true } }, "additionalProperties": false } }, "additionalProperties": true } } }