Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: use long property descriptions if available #87

Merged
merged 1 commit into from Jan 24, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
36 changes: 18 additions & 18 deletions spec/json/twilio_accounts_v1.json
Expand Up @@ -10,24 +10,24 @@
"maxLength": 34,
"pattern": "^AC[0-9a-fA-F]{32}$",
"nullable": true,
"description": "The SID of the Account that the secondary Auth Token was created for"
"description": "The SID of the [Account](https://www.twilio.com/docs/iam/api/account) that the secondary Auth Token was created for."
},
"auth_token": {
"type": "string",
"nullable": true,
"description": "The promoted Auth Token"
"description": "The promoted Auth Token that must be used to authenticate future API requests."
},
"date_created": {
"type": "string",
"format": "date-time",
"nullable": true,
"description": "The ISO 8601 formatted date and time in UTC when the resource was created"
"description": "The date and time in UTC when the resource was created specified in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format."
},
"date_updated": {
"type": "string",
"format": "date-time",
"nullable": true,
"description": "The ISO 8601 formatted date and time in UTC when the resource was last updated"
"description": "The date and time in GMT when the resource was last updated specified in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format."
},
"url": {
"type": "string",
Expand All @@ -50,32 +50,32 @@
"maxLength": 34,
"pattern": "^CR[0-9a-fA-F]{32}$",
"nullable": true,
"description": "The unique string that identifies the resource"
"description": "The unique string that we created to identify the AWS resource."
},
"account_sid": {
"type": "string",
"minLength": 34,
"maxLength": 34,
"pattern": "^AC[0-9a-fA-F]{32}$",
"nullable": true,
"description": "The SID of the Account that created the resource"
"description": "The SID of the [Account](https://www.twilio.com/docs/iam/api/account) that created the AWS resource."
},
"friendly_name": {
"type": "string",
"nullable": true,
"description": "The string that you assigned to describe the resource"
"description": "The string that you assigned to describe the resource."
},
"date_created": {
"type": "string",
"format": "date-time",
"nullable": true,
"description": "The RFC 2822 date and time in GMT when the resource was created"
"description": "The date and time in GMT when the resource was created specified in [RFC 2822](https://www.ietf.org/rfc/rfc2822.txt) format."
},
"date_updated": {
"type": "string",
"format": "date-time",
"nullable": true,
"description": "The RFC 2822 date and time in GMT when the resource was last updated"
"description": "The date and time in GMT when the resource was last updated specified in [RFC 2822](https://www.ietf.org/rfc/rfc2822.txt) format."
},
"url": {
"type": "string",
Expand All @@ -94,32 +94,32 @@
"maxLength": 34,
"pattern": "^CR[0-9a-fA-F]{32}$",
"nullable": true,
"description": "The unique string that identifies the resource"
"description": "The unique string that that we created to identify the PublicKey resource."
},
"account_sid": {
"type": "string",
"minLength": 34,
"maxLength": 34,
"pattern": "^AC[0-9a-fA-F]{32}$",
"nullable": true,
"description": "The SID of the Account that created the Credential that the PublicKey resource belongs to"
"description": "The SID of the [Account](https://www.twilio.com/docs/iam/api/account) that created the Credential that the PublicKey resource belongs to."
},
"friendly_name": {
"type": "string",
"nullable": true,
"description": "The string that you assigned to describe the resource"
"description": "The string that you assigned to describe the resource."
},
"date_created": {
"type": "string",
"format": "date-time",
"nullable": true,
"description": "The RFC 2822 date and time in GMT when the resource was created"
"description": "The date and time in GMT when the resource was created specified in [RFC 2822](https://www.ietf.org/rfc/rfc2822.txt) format."
},
"date_updated": {
"type": "string",
"format": "date-time",
"nullable": true,
"description": "The RFC 2822 date and time in GMT when the resource was last updated"
"description": "The date and time in GMT when the resource was last updated specified in [RFC 2822](https://www.ietf.org/rfc/rfc2822.txt) format."
},
"url": {
"type": "string",
Expand All @@ -138,24 +138,24 @@
"maxLength": 34,
"pattern": "^AC[0-9a-fA-F]{32}$",
"nullable": true,
"description": "The SID of the Account that the secondary Auth Token was created for"
"description": "The SID of the [Account](https://www.twilio.com/docs/iam/api/account) that the secondary Auth Token was created for."
},
"date_created": {
"type": "string",
"format": "date-time",
"nullable": true,
"description": "The ISO 8601 formatted date and time in UTC when the resource was created"
"description": "The date and time in UTC when the resource was created specified in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format."
},
"date_updated": {
"type": "string",
"format": "date-time",
"nullable": true,
"description": "The ISO 8601 formatted date and time in UTC when the resource was last updated"
"description": "The date and time in UTC when the resource was last updated specified in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format."
},
"secondary_auth_token": {
"type": "string",
"nullable": true,
"description": "The generated secondary Auth Token"
"description": "The generated secondary Auth Token that can be used to authenticate future API requests."
},
"url": {
"type": "string",
Expand Down