Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| type | string | |
| filingDate | string | |
| periodOfReport | string | |
| description | string | |
| secUrl | string | |
| documentUrl | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/archrock/refs/heads/main/json-schema/archrock-investor-relations-api-sec-filing-schema.json",
"title": "SecFiling",
"type": "object",
"properties": {
"id": {
"type": "string"
},
"type": {
"type": "string",
"enum": [
"10-K",
"10-Q",
"8-K",
"DEF14A",
"SC13G"
]
},
"filingDate": {
"type": "string",
"format": "date"
},
"periodOfReport": {
"type": "string"
},
"description": {
"type": "string"
},
"secUrl": {
"type": "string"
},
"documentUrl": {
"type": "string"
}
}
}